less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

61562 satır
1.5 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.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. "food": {
  2246. name: "Food",
  2247. parents: ["object"]
  2248. },
  2249. "object": {
  2250. name: "Object",
  2251. parents: []
  2252. },
  2253. "honey-badger": {
  2254. name: "honey-badger",
  2255. parents: ["badger"]
  2256. },
  2257. "badger": {
  2258. name: "Badger",
  2259. parents: ["mustelid"]
  2260. },
  2261. "rattlesnake": {
  2262. name: "Rattlesnake",
  2263. parents: ["snake"]
  2264. },
  2265. "diamondback": {
  2266. name: "Diamondback",
  2267. parents: ["snake"]
  2268. },
  2269. "spidox": {
  2270. name: "Spidox",
  2271. parents: ["spider", "fox"]
  2272. },
  2273. }
  2274. //species
  2275. function getSpeciesInfo(speciesList) {
  2276. let result = new Set();
  2277. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2278. result.add(entry)
  2279. });
  2280. return Array.from(result);
  2281. };
  2282. function getSpeciesInfoHelper(species) {
  2283. if (!speciesData[species]) {
  2284. console.warn(species + " doesn't exist");
  2285. return [];
  2286. }
  2287. if (speciesData[species].parents) {
  2288. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2289. } else {
  2290. return [species];
  2291. }
  2292. }
  2293. characterMakers.push(() => makeCharacter(
  2294. {
  2295. name: "Fen",
  2296. species: ["crux"],
  2297. description: {
  2298. title: "Bio",
  2299. text: "Very furry. Sheds on everything."
  2300. },
  2301. tags: [
  2302. "anthro",
  2303. "goo"
  2304. ]
  2305. },
  2306. {
  2307. front: {
  2308. height: math.unit(12, "feet"),
  2309. weight: math.unit(2400, "lb"),
  2310. preyCapacity: math.unit(1, "people"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/fen/front.svg",
  2314. extra: 1804/1562,
  2315. bottom: 205/2009
  2316. },
  2317. extraAttributes: {
  2318. pawSize: {
  2319. name: "Paw Size",
  2320. power: 2,
  2321. type: "area",
  2322. base: math.unit(0.35, "m^2")
  2323. }
  2324. }
  2325. },
  2326. diving: {
  2327. height: math.unit(4.9, "meters"),
  2328. weight: math.unit(2400, "lb"),
  2329. name: "Diving",
  2330. image: {
  2331. source: "./media/characters/fen/diving.svg"
  2332. }
  2333. },
  2334. sleeby: {
  2335. height: math.unit(3.45, "meters"),
  2336. weight: math.unit(2400, "lb"),
  2337. name: "Sleeby",
  2338. image: {
  2339. source: "./media/characters/fen/sleeby.svg"
  2340. }
  2341. },
  2342. goo: {
  2343. height: math.unit(12, "feet"),
  2344. weight: math.unit(3600, "lb"),
  2345. volume: math.unit(1000, "liters"),
  2346. preyCapacity: math.unit(6, "people"),
  2347. name: "Goo",
  2348. image: {
  2349. source: "./media/characters/fen/goo.svg",
  2350. extra: 1307/1071,
  2351. bottom: 134/1441
  2352. }
  2353. },
  2354. horror: {
  2355. height: math.unit(13.6, "feet"),
  2356. weight: math.unit(2400, "lb"),
  2357. preyCapacity: math.unit(1, "people"),
  2358. name: "Horror",
  2359. image: {
  2360. source: "./media/characters/fen/horror.svg",
  2361. extra: 893/797,
  2362. bottom: 0/893
  2363. }
  2364. },
  2365. gooNsfw: {
  2366. height: math.unit(12, "feet"),
  2367. weight: math.unit(3750, "lb"),
  2368. volume: math.unit(1000, "liters"),
  2369. preyCapacity: math.unit(6, "people"),
  2370. name: "Goo (NSFW)",
  2371. image: {
  2372. source: "./media/characters/fen/goo-nsfw.svg",
  2373. extra: 1875/1734,
  2374. bottom: 122/1997
  2375. }
  2376. },
  2377. maw: {
  2378. height: math.unit(5.03, "feet"),
  2379. name: "Maw",
  2380. image: {
  2381. source: "./media/characters/fen/maw.svg"
  2382. }
  2383. },
  2384. gooCeiling: {
  2385. height: math.unit(6.6, "feet"),
  2386. weight: math.unit(3000, "lb"),
  2387. volume: math.unit(1000, "liters"),
  2388. preyCapacity: math.unit(6, "people"),
  2389. name: "Maw (Goo)",
  2390. image: {
  2391. source: "./media/characters/fen/goo-maw.svg"
  2392. }
  2393. },
  2394. paw: {
  2395. height: math.unit(3.77, "feet"),
  2396. name: "Paw",
  2397. image: {
  2398. source: "./media/characters/fen/paw.svg"
  2399. },
  2400. extraAttributes: {
  2401. "toeSize": {
  2402. name: "Toe Size",
  2403. power: 2,
  2404. type: "area",
  2405. base: math.unit(0.02875, "m^2")
  2406. },
  2407. "pawSize": {
  2408. name: "Paw Size",
  2409. power: 2,
  2410. type: "area",
  2411. base: math.unit(0.378, "m^2")
  2412. },
  2413. }
  2414. },
  2415. tail: {
  2416. height: math.unit(12.1, "feet"),
  2417. name: "Tail",
  2418. image: {
  2419. source: "./media/characters/fen/tail.svg"
  2420. }
  2421. },
  2422. tailFull: {
  2423. height: math.unit(12.1, "feet"),
  2424. name: "Full Tail",
  2425. image: {
  2426. source: "./media/characters/fen/tail-full.svg"
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(12, "feet"),
  2431. weight: math.unit(2400, "lb"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/fen/back.svg",
  2435. },
  2436. info: {
  2437. description: {
  2438. mode: "append",
  2439. text: "\n\nHe is not currently looking at you."
  2440. }
  2441. }
  2442. },
  2443. full: {
  2444. height: math.unit(1.85, "meter"),
  2445. weight: math.unit(3200, "lb"),
  2446. name: "Full",
  2447. image: {
  2448. source: "./media/characters/fen/full.svg",
  2449. extra: 1133/859,
  2450. bottom: 145/1278
  2451. },
  2452. info: {
  2453. description: {
  2454. mode: "append",
  2455. text: "\n\nMunch."
  2456. }
  2457. }
  2458. },
  2459. gooLounging: {
  2460. height: math.unit(4.53, "feet"),
  2461. weight: math.unit(3000, "lb"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (Lounging)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-lounging.svg",
  2466. bottom: 116 / 613
  2467. }
  2468. },
  2469. lounging: {
  2470. height: math.unit(10.52, "feet"),
  2471. weight: math.unit(2400, "lb"),
  2472. name: "Lounging",
  2473. image: {
  2474. source: "./media/characters/fen/lounging.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Small",
  2481. height: math.unit(2.2428, "meter")
  2482. },
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(12, "feet"),
  2486. default: true,
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(20, "feet")
  2491. },
  2492. {
  2493. name: "Minimacro",
  2494. height: math.unit(40, "feet"),
  2495. info: {
  2496. description: {
  2497. mode: "append",
  2498. text: "\n\nTOO DAMN BIG"
  2499. }
  2500. }
  2501. },
  2502. {
  2503. name: "Macro",
  2504. height: math.unit(100, "feet"),
  2505. info: {
  2506. description: {
  2507. mode: "append",
  2508. text: "\n\nTOO DAMN BIG"
  2509. }
  2510. }
  2511. },
  2512. {
  2513. name: "Megamacro",
  2514. height: math.unit(2, "miles")
  2515. },
  2516. {
  2517. name: "Gigamacro",
  2518. height: math.unit(10, "earths")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(183, "cm"),
  2527. weight: math.unit(80, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/sofia-fluttertail/front.svg",
  2531. bottom: 0.01,
  2532. extra: 2154 / 2081
  2533. }
  2534. },
  2535. frontAlt: {
  2536. height: math.unit(183, "cm"),
  2537. weight: math.unit(80, "kg"),
  2538. name: "Front (alt)",
  2539. image: {
  2540. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(183, "cm"),
  2545. weight: math.unit(80, "kg"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/sofia-fluttertail/back.svg"
  2549. }
  2550. },
  2551. kneeling: {
  2552. height: math.unit(125, "cm"),
  2553. weight: math.unit(80, "kg"),
  2554. name: "Kneeling",
  2555. image: {
  2556. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2557. extra: 1033 / 977,
  2558. bottom: 23.7 / 1057
  2559. }
  2560. },
  2561. maw: {
  2562. height: math.unit(183 / 5, "cm"),
  2563. name: "Maw",
  2564. image: {
  2565. source: "./media/characters/sofia-fluttertail/maw.svg"
  2566. }
  2567. },
  2568. mawcloseup: {
  2569. height: math.unit(183 / 5 * 0.41, "cm"),
  2570. name: "Maw (Closeup)",
  2571. image: {
  2572. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2573. }
  2574. },
  2575. paws: {
  2576. height: math.unit(1.17, "feet"),
  2577. name: "Paws",
  2578. image: {
  2579. source: "./media/characters/sofia-fluttertail/paws.svg",
  2580. extra: 851 / 851,
  2581. bottom: 17 / 868
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Normal",
  2588. height: math.unit(1.83, "meter")
  2589. },
  2590. {
  2591. name: "Size Thief",
  2592. height: math.unit(18, "feet")
  2593. },
  2594. {
  2595. name: "50 Foot Collie",
  2596. height: math.unit(50, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(96, "feet"),
  2601. default: true
  2602. },
  2603. {
  2604. name: "Megamerger",
  2605. height: math.unit(650, "feet")
  2606. },
  2607. ]
  2608. ))
  2609. characterMakers.push(() => makeCharacter(
  2610. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2611. {
  2612. front: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Front",
  2616. image: {
  2617. source: "./media/characters/march/front.svg",
  2618. extra: 1992/1851,
  2619. bottom: 39/2031
  2620. }
  2621. },
  2622. foot: {
  2623. height: math.unit(0.9, "feet"),
  2624. name: "Foot",
  2625. image: {
  2626. source: "./media/characters/march/foot.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7.9, "feet")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(220, "meters")
  2638. },
  2639. {
  2640. name: "Megamacro",
  2641. height: math.unit(2.98, "km"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(15963, "km")
  2647. },
  2648. {
  2649. name: "Teramacro",
  2650. height: math.unit(2980000000, "km")
  2651. },
  2652. {
  2653. name: "Examacro",
  2654. height: math.unit(250, "parsecs")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(60, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/noir/front.svg",
  2667. extra: 1,
  2668. bottom: 0.032
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(6.6, "feet")
  2676. },
  2677. {
  2678. name: "Macro",
  2679. height: math.unit(500, "feet")
  2680. },
  2681. {
  2682. name: "Megamacro",
  2683. height: math.unit(2.5, "km"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(22500, "km")
  2689. },
  2690. {
  2691. name: "Teramacro",
  2692. height: math.unit(2500000000, "km")
  2693. },
  2694. {
  2695. name: "Examacro",
  2696. height: math.unit(200, "parsecs")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(7, "feet"),
  2705. weight: math.unit(100, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/okuri/front.svg",
  2709. extra: 739/665,
  2710. bottom: 39/778
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(100, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/okuri/back.svg",
  2719. extra: 734/653,
  2720. bottom: 13/747
  2721. }
  2722. },
  2723. sitting: {
  2724. height: math.unit(2.95, "feet"),
  2725. weight: math.unit(100, "kg"),
  2726. name: "Sitting",
  2727. image: {
  2728. source: "./media/characters/okuri/sitting.svg",
  2729. extra: 370/318,
  2730. bottom: 99/469
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Smallest",
  2737. height: math.unit(5 + 2/12, "feet")
  2738. },
  2739. {
  2740. name: "Smaller",
  2741. height: math.unit(300, "feet")
  2742. },
  2743. {
  2744. name: "Small",
  2745. height: math.unit(1000, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(1, "mile")
  2750. },
  2751. {
  2752. name: "Mega Macro (Small)",
  2753. height: math.unit(20, "km")
  2754. },
  2755. {
  2756. name: "Mega Macro (Large)",
  2757. height: math.unit(600, "km")
  2758. },
  2759. {
  2760. name: "Giga Macro",
  2761. height: math.unit(10000, "km")
  2762. },
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(577560, "km"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Large",
  2770. height: math.unit(4, "galaxies")
  2771. },
  2772. {
  2773. name: "Largest",
  2774. height: math.unit(15, "multiverses")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(7, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/manny/front.svg",
  2787. extra: 1,
  2788. bottom: 0.06
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(7, "feet"),
  2793. weight: math.unit(100, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/manny/back.svg",
  2797. extra: 1,
  2798. bottom: 0.014
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(7, "feet"),
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(78, "feet"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Macro+",
  2814. height: math.unit(300, "meters")
  2815. },
  2816. {
  2817. name: "Macro++",
  2818. height: math.unit(2400, "meters")
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(5167, "meters")
  2823. },
  2824. {
  2825. name: "Gigamacro",
  2826. height: math.unit(41769, "miles")
  2827. },
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(7, "feet"),
  2835. weight: math.unit(100, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/adake/front-1.svg"
  2839. }
  2840. },
  2841. frontAlt: {
  2842. height: math.unit(7, "feet"),
  2843. weight: math.unit(100, "kg"),
  2844. name: "Front (Alt)",
  2845. image: {
  2846. source: "./media/characters/adake/front-2.svg",
  2847. extra: 1,
  2848. bottom: 0.01
  2849. }
  2850. },
  2851. back: {
  2852. height: math.unit(7, "feet"),
  2853. weight: math.unit(100, "kg"),
  2854. name: "Back",
  2855. image: {
  2856. source: "./media/characters/adake/back.svg",
  2857. }
  2858. },
  2859. kneel: {
  2860. height: math.unit(5.385, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Kneeling",
  2863. image: {
  2864. source: "./media/characters/adake/kneel.svg",
  2865. bottom: 0.052
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(7, "feet"),
  2873. },
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(78, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Macro+",
  2881. height: math.unit(300, "meters")
  2882. },
  2883. {
  2884. name: "Macro++",
  2885. height: math.unit(2400, "meters")
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(5167, "meters")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(41769, "miles")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(1.65, "meters"),
  2902. weight: math.unit(50, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/elijah/front.svg",
  2906. extra: 858 / 830,
  2907. bottom: 95.5 / 953.8559
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(1.65, "meters"),
  2912. weight: math.unit(50, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/elijah/back.svg",
  2916. extra: 895 / 850,
  2917. bottom: 5.3 / 897.956
  2918. }
  2919. },
  2920. frontNsfw: {
  2921. height: math.unit(1.65, "meters"),
  2922. weight: math.unit(50, "kg"),
  2923. name: "Front (NSFW)",
  2924. image: {
  2925. source: "./media/characters/elijah/front-nsfw.svg",
  2926. extra: 858 / 830,
  2927. bottom: 95.5 / 953.8559
  2928. }
  2929. },
  2930. backNsfw: {
  2931. height: math.unit(1.65, "meters"),
  2932. weight: math.unit(50, "kg"),
  2933. name: "Back (NSFW)",
  2934. image: {
  2935. source: "./media/characters/elijah/back-nsfw.svg",
  2936. extra: 895 / 850,
  2937. bottom: 5.3 / 897.956
  2938. }
  2939. },
  2940. dick: {
  2941. height: math.unit(1, "feet"),
  2942. name: "Dick",
  2943. image: {
  2944. source: "./media/characters/elijah/dick.svg"
  2945. }
  2946. },
  2947. beakOpen: {
  2948. height: math.unit(1.25, "feet"),
  2949. name: "Beak (Open)",
  2950. image: {
  2951. source: "./media/characters/elijah/beak-open.svg"
  2952. }
  2953. },
  2954. beakShut: {
  2955. height: math.unit(1.25, "feet"),
  2956. name: "Beak (Shut)",
  2957. image: {
  2958. source: "./media/characters/elijah/beak-shut.svg"
  2959. }
  2960. },
  2961. footFlexing: {
  2962. height: math.unit(1.61, "feet"),
  2963. name: "Foot (Flexing)",
  2964. image: {
  2965. source: "./media/characters/elijah/foot-flexing.svg"
  2966. }
  2967. },
  2968. footStepping: {
  2969. height: math.unit(1.44, "feet"),
  2970. name: "Foot (Stepping)",
  2971. image: {
  2972. source: "./media/characters/elijah/foot-stepping.svg"
  2973. }
  2974. },
  2975. plantigradeLeg: {
  2976. height: math.unit(2.34, "feet"),
  2977. name: "Plantigrade Leg",
  2978. image: {
  2979. source: "./media/characters/elijah/plantigrade-leg.svg"
  2980. }
  2981. },
  2982. plantigradeFootLeft: {
  2983. height: math.unit(0.9, "feet"),
  2984. name: "Plantigrade Foot (Left)",
  2985. image: {
  2986. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2987. }
  2988. },
  2989. plantigradeFootRight: {
  2990. height: math.unit(0.9, "feet"),
  2991. name: "Plantigrade Foot (Right)",
  2992. image: {
  2993. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2994. }
  2995. },
  2996. },
  2997. [
  2998. {
  2999. name: "Normal",
  3000. height: math.unit(1.65, "meters")
  3001. },
  3002. {
  3003. name: "Macro",
  3004. height: math.unit(55, "meters"),
  3005. default: true
  3006. },
  3007. {
  3008. name: "Macro+",
  3009. height: math.unit(105, "meters")
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(7 + 2/12, "feet"),
  3018. weight: math.unit(320, "kg"),
  3019. preyCapacity: math.unit(0.276549935, "people"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/rai/front.svg",
  3023. extra: 1802/1696,
  3024. bottom: 68/1870
  3025. },
  3026. form: "anthro",
  3027. default: true
  3028. },
  3029. frontDressed: {
  3030. height: math.unit(7 + 2/12, "feet"),
  3031. weight: math.unit(320, "kg"),
  3032. preyCapacity: math.unit(0.276549935, "people"),
  3033. name: "Front (Dressed)",
  3034. image: {
  3035. source: "./media/characters/rai/front-dressed.svg",
  3036. extra: 1802/1696,
  3037. bottom: 68/1870
  3038. },
  3039. form: "anthro"
  3040. },
  3041. side: {
  3042. height: math.unit(7 + 2/12, "feet"),
  3043. weight: math.unit(320, "kg"),
  3044. preyCapacity: math.unit(0.276549935, "people"),
  3045. name: "Side",
  3046. image: {
  3047. source: "./media/characters/rai/side.svg",
  3048. extra: 1789/1710,
  3049. bottom: 115/1904
  3050. },
  3051. form: "anthro"
  3052. },
  3053. back: {
  3054. height: math.unit(7 + 2/12, "feet"),
  3055. weight: math.unit(320, "kg"),
  3056. preyCapacity: math.unit(0.276549935, "people"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/rai/back.svg",
  3060. extra: 1770/1707,
  3061. bottom: 28/1798
  3062. },
  3063. form: "anthro"
  3064. },
  3065. feral: {
  3066. height: math.unit(9.5, "feet"),
  3067. weight: math.unit(640, "kg"),
  3068. preyCapacity: math.unit(4, "people"),
  3069. name: "Feral",
  3070. image: {
  3071. source: "./media/characters/rai/feral.svg",
  3072. extra: 945/553,
  3073. bottom: 176/1121
  3074. },
  3075. form: "feral",
  3076. default: true
  3077. },
  3078. dragon: {
  3079. height: math.unit(23, "feet"),
  3080. weight: math.unit(50000, "lb"),
  3081. name: "Dragon",
  3082. image: {
  3083. source: "./media/characters/rai/dragon.svg",
  3084. extra: 2498 / 2030,
  3085. bottom: 85.2 / 2584
  3086. },
  3087. form: "dragon",
  3088. default: true
  3089. },
  3090. maw: {
  3091. height: math.unit(1.69, "feet"),
  3092. name: "Maw",
  3093. image: {
  3094. source: "./media/characters/rai/maw.svg"
  3095. },
  3096. form: "anthro"
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Normal",
  3102. height: math.unit(7 + 2/12, "feet"),
  3103. form: "anthro"
  3104. },
  3105. {
  3106. name: "Big",
  3107. height: math.unit(11, "feet"),
  3108. form: "anthro"
  3109. },
  3110. {
  3111. name: "Minimacro",
  3112. height: math.unit(77, "feet"),
  3113. form: "anthro"
  3114. },
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(302, "feet"),
  3118. default: true,
  3119. form: "anthro"
  3120. },
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(9.5, "feet"),
  3124. form: "feral",
  3125. default: true
  3126. },
  3127. {
  3128. name: "Normal",
  3129. height: math.unit(23, "feet"),
  3130. form: "dragon",
  3131. default: true
  3132. }
  3133. ],
  3134. {
  3135. "anthro": {
  3136. name: "Anthro",
  3137. default: true
  3138. },
  3139. "feral": {
  3140. name: "Feral",
  3141. },
  3142. "dragon": {
  3143. name: "Dragon",
  3144. },
  3145. }
  3146. ))
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3149. {
  3150. frontDressed: {
  3151. height: math.unit(216, "feet"),
  3152. weight: math.unit(7000000, "lb"),
  3153. preyCapacity: math.unit(1321, "people"),
  3154. name: "Front (Dressed)",
  3155. image: {
  3156. source: "./media/characters/jazzy/front-dressed.svg",
  3157. extra: 2738 / 2651,
  3158. bottom: 41.8 / 2786
  3159. }
  3160. },
  3161. backDressed: {
  3162. height: math.unit(216, "feet"),
  3163. weight: math.unit(7000000, "lb"),
  3164. preyCapacity: math.unit(1321, "people"),
  3165. name: "Back (Dressed)",
  3166. image: {
  3167. source: "./media/characters/jazzy/back-dressed.svg",
  3168. extra: 2775 / 2673,
  3169. bottom: 36.8 / 2817
  3170. }
  3171. },
  3172. front: {
  3173. height: math.unit(216, "feet"),
  3174. weight: math.unit(7000000, "lb"),
  3175. preyCapacity: math.unit(1321, "people"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/jazzy/front.svg",
  3179. extra: 2738 / 2651,
  3180. bottom: 41.8 / 2786
  3181. }
  3182. },
  3183. back: {
  3184. height: math.unit(216, "feet"),
  3185. weight: math.unit(7000000, "lb"),
  3186. preyCapacity: math.unit(1321, "people"),
  3187. name: "Back",
  3188. image: {
  3189. source: "./media/characters/jazzy/back.svg",
  3190. extra: 2775 / 2673,
  3191. bottom: 36.8 / 2817
  3192. }
  3193. },
  3194. maw: {
  3195. height: math.unit(20, "feet"),
  3196. name: "Maw",
  3197. image: {
  3198. source: "./media/characters/jazzy/maw.svg"
  3199. }
  3200. },
  3201. paws: {
  3202. height: math.unit(27.5, "feet"),
  3203. name: "Paws",
  3204. image: {
  3205. source: "./media/characters/jazzy/paws.svg"
  3206. }
  3207. },
  3208. eye: {
  3209. height: math.unit(4.4, "feet"),
  3210. name: "Eye",
  3211. image: {
  3212. source: "./media/characters/jazzy/eye.svg"
  3213. }
  3214. },
  3215. droneOffense: {
  3216. height: math.unit(9.5, "inches"),
  3217. name: "Drone (Offense)",
  3218. image: {
  3219. source: "./media/characters/jazzy/drone-offense.svg"
  3220. }
  3221. },
  3222. droneRecon: {
  3223. height: math.unit(9.5, "inches"),
  3224. name: "Drone (Recon)",
  3225. image: {
  3226. source: "./media/characters/jazzy/drone-recon.svg"
  3227. }
  3228. },
  3229. droneDefense: {
  3230. height: math.unit(9.5, "inches"),
  3231. name: "Drone (Defense)",
  3232. image: {
  3233. source: "./media/characters/jazzy/drone-defense.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(216, "feet"),
  3241. default: true
  3242. },
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(9 + 6/12, "feet"),
  3250. weight: math.unit(700, "lb"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/flamm/front.svg",
  3254. extra: 1736/1596,
  3255. bottom: 93/1829
  3256. }
  3257. },
  3258. buff: {
  3259. height: math.unit(9 + 6/12, "feet"),
  3260. weight: math.unit(950, "lb"),
  3261. name: "Buff",
  3262. image: {
  3263. source: "./media/characters/flamm/buff.svg",
  3264. extra: 3018/2874,
  3265. bottom: 221/3239
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(9.5, "feet")
  3273. },
  3274. {
  3275. name: "Macro",
  3276. height: math.unit(200, "feet"),
  3277. default: true
  3278. },
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(5 + 3/12, "feet"),
  3286. weight: math.unit(60, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/zephiro/front.svg",
  3290. extra: 1873/1761,
  3291. bottom: 147/2020
  3292. }
  3293. },
  3294. side: {
  3295. height: math.unit(5 + 3/12, "feet"),
  3296. weight: math.unit(60, "kg"),
  3297. name: "Side",
  3298. image: {
  3299. source: "./media/characters/zephiro/side.svg",
  3300. extra: 1929/1827,
  3301. bottom: 65/1994
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(5 + 3/12, "feet"),
  3306. weight: math.unit(60, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/zephiro/back.svg",
  3310. extra: 1926/1816,
  3311. bottom: 41/1967
  3312. }
  3313. },
  3314. hand: {
  3315. height: math.unit(0.68, "feet"),
  3316. name: "Hand",
  3317. image: {
  3318. source: "./media/characters/zephiro/hand.svg"
  3319. }
  3320. },
  3321. paw: {
  3322. height: math.unit(1, "feet"),
  3323. name: "Paw",
  3324. image: {
  3325. source: "./media/characters/zephiro/paw.svg"
  3326. }
  3327. },
  3328. beans: {
  3329. height: math.unit(0.93, "feet"),
  3330. name: "Beans",
  3331. image: {
  3332. source: "./media/characters/zephiro/beans.svg"
  3333. }
  3334. },
  3335. },
  3336. [
  3337. {
  3338. name: "Micro",
  3339. height: math.unit(3, "inches")
  3340. },
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(5 + 3 / 12, "feet"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(118, "feet")
  3349. },
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(5, "feet"),
  3357. weight: math.unit(90, "kg"),
  3358. preyCapacity: math.unit(14, "people"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/fory/front.svg",
  3362. extra: 2862 / 2674,
  3363. bottom: 180 / 3043.8
  3364. },
  3365. form: "weaselbun",
  3366. default: true,
  3367. extraAttributes: {
  3368. "pawSize": {
  3369. name: "Paw Size",
  3370. power: 2,
  3371. type: "area",
  3372. base: math.unit(0.1596, "m^2")
  3373. },
  3374. "pawLength": {
  3375. name: "Paw Length",
  3376. power: 1,
  3377. type: "length",
  3378. base: math.unit(0.7, "m")
  3379. }
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(5, "feet"),
  3384. weight: math.unit(90, "kg"),
  3385. preyCapacity: math.unit(14, "people"),
  3386. name: "Back",
  3387. image: {
  3388. source: "./media/characters/fory/back.svg",
  3389. extra: 1790/1672,
  3390. bottom: 84/1874
  3391. },
  3392. form: "weaselbun",
  3393. extraAttributes: {
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.1596, "m^2")
  3399. },
  3400. "pawLength": {
  3401. name: "Paw Length",
  3402. power: 1,
  3403. type: "length",
  3404. base: math.unit(0.7, "m")
  3405. }
  3406. }
  3407. },
  3408. paw: {
  3409. height: math.unit(2.14, "feet"),
  3410. name: "Paw",
  3411. image: {
  3412. source: "./media/characters/fory/paw.svg"
  3413. },
  3414. form: "weaselbun",
  3415. extraAttributes: {
  3416. "pawSize": {
  3417. name: "Paw Size",
  3418. power: 2,
  3419. type: "area",
  3420. base: math.unit(0.1596, "m^2")
  3421. },
  3422. "pawLength": {
  3423. name: "Paw Length",
  3424. power: 1,
  3425. type: "length",
  3426. base: math.unit(0.48, "m")
  3427. }
  3428. }
  3429. },
  3430. bunBack: {
  3431. height: math.unit(3, "feet"),
  3432. weight: math.unit(20, "kg"),
  3433. preyCapacity: math.unit(3, "people"),
  3434. name: "Back",
  3435. image: {
  3436. source: "./media/characters/fory/bun-back.svg",
  3437. extra: 1749/1564,
  3438. bottom: 246/1995
  3439. },
  3440. form: "bun",
  3441. default: true,
  3442. extraAttributes: {
  3443. "pawSize": {
  3444. name: "Paw Size",
  3445. power: 2,
  3446. type: "area",
  3447. base: math.unit(0.072, "m^2")
  3448. },
  3449. "pawLength": {
  3450. name: "Paw Length",
  3451. power: 1,
  3452. type: "length",
  3453. base: math.unit(0.45, "m")
  3454. }
  3455. }
  3456. },
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(5, "feet"),
  3462. form: "weaselbun"
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(50, "feet"),
  3467. default: true,
  3468. form: "weaselbun"
  3469. },
  3470. {
  3471. name: "Megamacro",
  3472. height: math.unit(10, "miles"),
  3473. form: "weaselbun"
  3474. },
  3475. {
  3476. name: "Gigamacro",
  3477. height: math.unit(5, "earths"),
  3478. form: "weaselbun"
  3479. },
  3480. {
  3481. name: "Normal",
  3482. height: math.unit(3, "feet"),
  3483. default: true,
  3484. form: "bun"
  3485. },
  3486. {
  3487. name: "Fun-Size",
  3488. height: math.unit(12, "feet"),
  3489. form: "bun"
  3490. },
  3491. {
  3492. name: "Macro",
  3493. height: math.unit(100, "feet"),
  3494. form: "bun"
  3495. },
  3496. {
  3497. name: "Planetary",
  3498. height: math.unit(3, "earths"),
  3499. form: "bun"
  3500. },
  3501. ],
  3502. {
  3503. "weaselbun": {
  3504. name: "Weaselbun",
  3505. default: true
  3506. },
  3507. "bun": {
  3508. name: "Bun",
  3509. },
  3510. }
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(7, "feet"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/kurrikage/front.svg",
  3521. extra: 1845/1733,
  3522. bottom: 119/1964
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(7, "feet"),
  3527. weight: math.unit(90, "kg"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/kurrikage/back.svg",
  3531. extra: 1790/1677,
  3532. bottom: 61/1851
  3533. }
  3534. },
  3535. dressed: {
  3536. height: math.unit(7, "feet"),
  3537. weight: math.unit(90, "kg"),
  3538. name: "Dressed",
  3539. image: {
  3540. source: "./media/characters/kurrikage/dressed.svg",
  3541. extra: 1845/1733,
  3542. bottom: 119/1964
  3543. }
  3544. },
  3545. foot: {
  3546. height: math.unit(1.5, "feet"),
  3547. name: "Foot",
  3548. image: {
  3549. source: "./media/characters/kurrikage/foot.svg"
  3550. }
  3551. },
  3552. staff: {
  3553. height: math.unit(6.7, "feet"),
  3554. name: "Staff",
  3555. image: {
  3556. source: "./media/characters/kurrikage/staff.svg"
  3557. }
  3558. },
  3559. peek: {
  3560. height: math.unit(1.05, "feet"),
  3561. name: "Peeking",
  3562. image: {
  3563. source: "./media/characters/kurrikage/peek.svg",
  3564. bottom: 0.08
  3565. }
  3566. },
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(12, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Big",
  3576. height: math.unit(20, "feet")
  3577. },
  3578. {
  3579. name: "Macro",
  3580. height: math.unit(500, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20, "miles")
  3585. },
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(75, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/shingo/front.svg",
  3597. extra: 1900/1825,
  3598. bottom: 82/1982
  3599. }
  3600. },
  3601. side: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(75, "kg"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/shingo/side.svg",
  3607. extra: 1930/1865,
  3608. bottom: 16/1946
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(6, "feet"),
  3613. weight: math.unit(75, "kg"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/shingo/back.svg",
  3617. extra: 1922/1852,
  3618. bottom: 16/1938
  3619. }
  3620. },
  3621. frontDressed: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(150, "lb"),
  3624. name: "Front-dressed",
  3625. image: {
  3626. source: "./media/characters/shingo/front-dressed.svg",
  3627. extra: 1900/1825,
  3628. bottom: 82/1982
  3629. }
  3630. },
  3631. paw: {
  3632. height: math.unit(1.29, "feet"),
  3633. name: "Paw",
  3634. image: {
  3635. source: "./media/characters/shingo/paw.svg"
  3636. }
  3637. },
  3638. hand: {
  3639. height: math.unit(1.07, "feet"),
  3640. name: "Hand",
  3641. image: {
  3642. source: "./media/characters/shingo/hand.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front (Alt)",
  3649. image: {
  3650. source: "./media/characters/shingo/front-alt.svg",
  3651. extra: 3511 / 3338,
  3652. bottom: 0.005
  3653. }
  3654. },
  3655. frontAlt2: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Front (Alt 2)",
  3659. image: {
  3660. source: "./media/characters/shingo/front-alt-2.svg",
  3661. extra: 706/681,
  3662. bottom: 11/717
  3663. }
  3664. },
  3665. pawAlt: {
  3666. height: math.unit(1, "feet"),
  3667. name: "Paw (Alt)",
  3668. image: {
  3669. source: "./media/characters/shingo/paw-alt.svg"
  3670. }
  3671. },
  3672. },
  3673. [
  3674. {
  3675. name: "Micro",
  3676. height: math.unit(4, "inches")
  3677. },
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(6, "feet"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(108, "feet")
  3686. },
  3687. {
  3688. name: "Macro+",
  3689. height: math.unit(1500, "feet")
  3690. },
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3695. {
  3696. side: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(75, "kg"),
  3699. name: "Side",
  3700. image: {
  3701. source: "./media/characters/aigey/side.svg"
  3702. }
  3703. },
  3704. },
  3705. [
  3706. {
  3707. name: "Macro",
  3708. height: math.unit(200, "feet"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Megamacro",
  3713. height: math.unit(100, "miles")
  3714. },
  3715. ]
  3716. )
  3717. )
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(5 + 5 / 12, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/natasha/front.svg",
  3727. extra: 859 / 824,
  3728. bottom: 23 / 879.6
  3729. }
  3730. },
  3731. frontNsfw: {
  3732. height: math.unit(5 + 5 / 12, "feet"),
  3733. weight: math.unit(75, "kg"),
  3734. name: "Front (NSFW)",
  3735. image: {
  3736. source: "./media/characters/natasha/front-nsfw.svg",
  3737. extra: 859 / 824,
  3738. bottom: 23 / 879.6
  3739. }
  3740. },
  3741. frontErect: {
  3742. height: math.unit(5 + 5 / 12, "feet"),
  3743. weight: math.unit(75, "kg"),
  3744. name: "Front (Erect)",
  3745. image: {
  3746. source: "./media/characters/natasha/front-erect.svg",
  3747. extra: 859 / 824,
  3748. bottom: 23 / 879.6
  3749. }
  3750. },
  3751. back: {
  3752. height: math.unit(5 + 5 / 12, "feet"),
  3753. weight: math.unit(75, "kg"),
  3754. name: "Back",
  3755. image: {
  3756. source: "./media/characters/natasha/back.svg",
  3757. extra: 887.9 / 852.6,
  3758. bottom: 9.7 / 896.4
  3759. }
  3760. },
  3761. backAlt: {
  3762. height: math.unit(5 + 5 / 12, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Back (Alt)",
  3765. image: {
  3766. source: "./media/characters/natasha/back-alt.svg",
  3767. extra: 1236.7 / 1192,
  3768. bottom: 22.3 / 1258.2
  3769. }
  3770. },
  3771. dick: {
  3772. height: math.unit(1.772, "feet"),
  3773. name: "Dick",
  3774. image: {
  3775. source: "./media/characters/natasha/dick.svg"
  3776. }
  3777. },
  3778. paw: {
  3779. height: math.unit(0.250, "meters"),
  3780. name: "Paw",
  3781. image: {
  3782. source: "./media/characters/natasha/paw.svg"
  3783. },
  3784. extraAttributes: {
  3785. "toeSize": {
  3786. name: "Toe Size",
  3787. power: 2,
  3788. type: "area",
  3789. base: math.unit(0.0024, "m^2")
  3790. },
  3791. "padSize": {
  3792. name: "Pad Size",
  3793. power: 2,
  3794. type: "area",
  3795. base: math.unit(0.00889, "m^2")
  3796. },
  3797. "pawSize": {
  3798. name: "Paw Size",
  3799. power: 2,
  3800. type: "area",
  3801. base: math.unit(0.023667, "m^2")
  3802. },
  3803. }
  3804. },
  3805. },
  3806. [
  3807. {
  3808. name: "Shortstack",
  3809. height: math.unit(3, "feet"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(5 + 5 / 12, "feet")
  3815. },
  3816. {
  3817. name: "Large",
  3818. height: math.unit(12, "feet")
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(100, "feet")
  3823. },
  3824. {
  3825. name: "Macro+",
  3826. height: math.unit(260, "feet")
  3827. },
  3828. {
  3829. name: "Macro++",
  3830. height: math.unit(1, "mile")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3836. {
  3837. front: {
  3838. height: math.unit(6, "feet"),
  3839. weight: math.unit(75, "kg"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/malik/front.svg",
  3843. extra: 1750/1561,
  3844. bottom: 80/1830
  3845. },
  3846. extraAttributes: {
  3847. "toeSize": {
  3848. name: "Toe Size",
  3849. power: 2,
  3850. type: "area",
  3851. base: math.unit(0.0159, "m^2")
  3852. },
  3853. "pawSize": {
  3854. name: "Paw Size",
  3855. power: 2,
  3856. type: "area",
  3857. base: math.unit(0.09834, "m^2")
  3858. },
  3859. }
  3860. },
  3861. side: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Side",
  3865. image: {
  3866. source: "./media/characters/malik/side.svg",
  3867. extra: 1802/1685,
  3868. bottom: 42/1844
  3869. },
  3870. extraAttributes: {
  3871. "toeSize": {
  3872. name: "Toe Size",
  3873. power: 2,
  3874. type: "area",
  3875. base: math.unit(0.0159, "m^2")
  3876. },
  3877. "pawSize": {
  3878. name: "Paw Size",
  3879. power: 2,
  3880. type: "area",
  3881. base: math.unit(0.09834, "m^2")
  3882. },
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(75, "kg"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/malik/back.svg",
  3891. extra: 1803/1607,
  3892. bottom: 33/1836
  3893. },
  3894. extraAttributes: {
  3895. "toeSize": {
  3896. name: "Toe Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.0159, "m^2")
  3900. },
  3901. "pawSize": {
  3902. name: "Paw Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.09834, "m^2")
  3906. },
  3907. }
  3908. },
  3909. },
  3910. [
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(156, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Macro+",
  3918. height: math.unit(1188, "feet")
  3919. },
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(75, "kg"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/sefer/front.svg",
  3931. extra: 848 / 659,
  3932. bottom: 28.3 / 876.442
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(75, "kg"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/sefer/back.svg",
  3941. extra: 864 / 695,
  3942. bottom: 10 / 871
  3943. }
  3944. },
  3945. frontDressed: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(75, "kg"),
  3948. name: "Dressed",
  3949. image: {
  3950. source: "./media/characters/sefer/dressed.svg",
  3951. extra: 839 / 653,
  3952. bottom: 37.6 / 878
  3953. }
  3954. },
  3955. },
  3956. [
  3957. {
  3958. name: "Normal",
  3959. height: math.unit(6, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Big",
  3964. height: math.unit(8, "meters")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3970. {
  3971. body: {
  3972. height: math.unit(2.2428, "meter"),
  3973. weight: math.unit(124.738, "kg"),
  3974. name: "Body",
  3975. image: {
  3976. extra: 1225 / 1050,
  3977. source: "./media/characters/north/front.svg"
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Micro",
  3984. height: math.unit(4, "inches")
  3985. },
  3986. {
  3987. name: "Macro",
  3988. height: math.unit(63, "meters")
  3989. },
  3990. {
  3991. name: "Megamacro",
  3992. height: math.unit(101, "miles"),
  3993. default: true
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3999. {
  4000. angled: {
  4001. height: math.unit(4, "meter"),
  4002. weight: math.unit(150, "kg"),
  4003. name: "Angled",
  4004. image: {
  4005. source: "./media/characters/talan/angled-sfw.svg",
  4006. bottom: 29 / 3734
  4007. }
  4008. },
  4009. angledNsfw: {
  4010. height: math.unit(4, "meter"),
  4011. weight: math.unit(150, "kg"),
  4012. name: "Angled (NSFW)",
  4013. image: {
  4014. source: "./media/characters/talan/angled-nsfw.svg",
  4015. bottom: 29 / 3734
  4016. }
  4017. },
  4018. frontNsfw: {
  4019. height: math.unit(4, "meter"),
  4020. weight: math.unit(150, "kg"),
  4021. name: "Front (NSFW)",
  4022. image: {
  4023. source: "./media/characters/talan/front-nsfw.svg",
  4024. bottom: 29 / 3734
  4025. }
  4026. },
  4027. sideNsfw: {
  4028. height: math.unit(4, "meter"),
  4029. weight: math.unit(150, "kg"),
  4030. name: "Side (NSFW)",
  4031. image: {
  4032. source: "./media/characters/talan/side-nsfw.svg",
  4033. bottom: 29 / 3734
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(4, "meter"),
  4038. weight: math.unit(150, "kg"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/talan/back.svg"
  4042. }
  4043. },
  4044. dickBottom: {
  4045. height: math.unit(0.621, "meter"),
  4046. name: "Dick (Bottom)",
  4047. image: {
  4048. source: "./media/characters/talan/dick-bottom.svg"
  4049. }
  4050. },
  4051. dickTop: {
  4052. height: math.unit(0.621, "meter"),
  4053. name: "Dick (Top)",
  4054. image: {
  4055. source: "./media/characters/talan/dick-top.svg"
  4056. }
  4057. },
  4058. dickSide: {
  4059. height: math.unit(0.305, "meter"),
  4060. name: "Dick (Side)",
  4061. image: {
  4062. source: "./media/characters/talan/dick-side.svg"
  4063. }
  4064. },
  4065. dickFront: {
  4066. height: math.unit(0.305, "meter"),
  4067. name: "Dick (Front)",
  4068. image: {
  4069. source: "./media/characters/talan/dick-front.svg"
  4070. }
  4071. },
  4072. },
  4073. [
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(4, "meters")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(100, "meters")
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(2, "miles"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Gigamacro",
  4089. height: math.unit(5000, "miles")
  4090. },
  4091. {
  4092. name: "Teramacro",
  4093. height: math.unit(100, "parsecs")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(90, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/gael'rathus/front.svg"
  4106. }
  4107. },
  4108. frontAlt: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(90, "kg"),
  4111. name: "Front (alt)",
  4112. image: {
  4113. source: "./media/characters/gael'rathus/front-alt.svg"
  4114. }
  4115. },
  4116. frontAlt2: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(90, "kg"),
  4119. name: "Front (alt 2)",
  4120. image: {
  4121. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(9, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Large",
  4133. height: math.unit(25, "feet")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(0.25, "miles")
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(10, "miles")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4147. {
  4148. side: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(140, "kg"),
  4151. name: "Side",
  4152. image: {
  4153. source: "./media/characters/sosha/side.svg",
  4154. extra: 1170/1006,
  4155. bottom: 94/1264
  4156. }
  4157. },
  4158. maw: {
  4159. height: math.unit(2.87, "feet"),
  4160. name: "Maw",
  4161. image: {
  4162. source: "./media/characters/sosha/maw.svg",
  4163. extra: 966/865,
  4164. bottom: 0/966
  4165. }
  4166. },
  4167. cooch: {
  4168. height: math.unit(5.6, "feet"),
  4169. name: "Cooch",
  4170. image: {
  4171. source: "./media/characters/sosha/cooch.svg"
  4172. }
  4173. },
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(12, "feet"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4185. {
  4186. side: {
  4187. height: math.unit(5 + 5 / 12, "feet"),
  4188. weight: math.unit(170, "kg"),
  4189. name: "Side",
  4190. image: {
  4191. source: "./media/characters/runnola/side.svg",
  4192. extra: 741 / 448,
  4193. bottom: 0.05
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Small",
  4200. height: math.unit(3, "feet")
  4201. },
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(5 + 5 / 12, "feet"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Big",
  4209. height: math.unit(10, "feet")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(50, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/kurribird/front.svg",
  4222. bottom: 0.015
  4223. }
  4224. },
  4225. frontAlt: {
  4226. height: math.unit(1.5, "meter"),
  4227. weight: math.unit(50, "kg"),
  4228. name: "Front (Alt)",
  4229. image: {
  4230. source: "./media/characters/kurribird/front-alt.svg",
  4231. extra: 1.45
  4232. }
  4233. },
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(7, "feet")
  4239. },
  4240. {
  4241. name: "Big",
  4242. height: math.unit(12, "feet"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "feet")
  4248. },
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(2, "miles")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(80, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/elbial/front.svg",
  4264. extra: 1643 / 1556,
  4265. bottom: 60.2 / 1696
  4266. }
  4267. },
  4268. side: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/elbial/side.svg",
  4274. extra: 1601/1528,
  4275. bottom: 97/1698
  4276. }
  4277. },
  4278. back: {
  4279. height: math.unit(2, "meter"),
  4280. weight: math.unit(80, "kg"),
  4281. name: "Back",
  4282. image: {
  4283. source: "./media/characters/elbial/back.svg",
  4284. extra: 1653/1569,
  4285. bottom: 20/1673
  4286. }
  4287. },
  4288. frontDressed: {
  4289. height: math.unit(2, "meter"),
  4290. weight: math.unit(80, "kg"),
  4291. name: "Front (Dressed)",
  4292. image: {
  4293. source: "./media/characters/elbial/front-dressed.svg",
  4294. extra: 1638/1569,
  4295. bottom: 70/1708
  4296. }
  4297. },
  4298. genitals: {
  4299. height: math.unit(2 / 3.367, "meter"),
  4300. name: "Genitals",
  4301. image: {
  4302. source: "./media/characters/elbial/genitals.svg"
  4303. }
  4304. },
  4305. },
  4306. [
  4307. {
  4308. name: "Large",
  4309. height: math.unit(100, "feet")
  4310. },
  4311. {
  4312. name: "Macro",
  4313. height: math.unit(500, "feet"),
  4314. default: true
  4315. },
  4316. {
  4317. name: "Megamacro",
  4318. height: math.unit(10, "miles")
  4319. },
  4320. {
  4321. name: "Gigamacro",
  4322. height: math.unit(25000, "miles")
  4323. },
  4324. {
  4325. name: "Full-Size",
  4326. height: math.unit(8000000, "gigaparsecs")
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(60, "kg"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/noah/front.svg"
  4339. }
  4340. },
  4341. talons: {
  4342. height: math.unit(0.315, "meter"),
  4343. name: "Talons",
  4344. image: {
  4345. source: "./media/characters/noah/talons.svg"
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Large",
  4352. height: math.unit(50, "feet")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(750, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(50, "miles")
  4362. },
  4363. {
  4364. name: "Gigamacro",
  4365. height: math.unit(100000, "miles")
  4366. },
  4367. {
  4368. name: "Full-Size",
  4369. height: math.unit(3000000000, "miles")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(80, "kg"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/natalya/front.svg"
  4382. }
  4383. },
  4384. back: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(80, "kg"),
  4387. name: "Back",
  4388. image: {
  4389. source: "./media/characters/natalya/back.svg"
  4390. }
  4391. }
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(150, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(5, "miles")
  4402. },
  4403. {
  4404. name: "Full-Size",
  4405. height: math.unit(600, "kiloparsecs")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(50, "kg"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/erestrebah/front.svg",
  4418. extra: 1262/1162,
  4419. bottom: 96/1358
  4420. }
  4421. },
  4422. back: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(50, "kg"),
  4425. name: "Back",
  4426. image: {
  4427. source: "./media/characters/erestrebah/back.svg",
  4428. extra: 1257/1139,
  4429. bottom: 13/1270
  4430. }
  4431. },
  4432. wing: {
  4433. height: math.unit(2, "meter"),
  4434. weight: math.unit(50, "kg"),
  4435. name: "Wing",
  4436. image: {
  4437. source: "./media/characters/erestrebah/wing.svg",
  4438. extra: 1262/1162,
  4439. bottom: 96/1358
  4440. }
  4441. },
  4442. mouth: {
  4443. height: math.unit(0.39, "feet"),
  4444. name: "Mouth",
  4445. image: {
  4446. source: "./media/characters/erestrebah/mouth.svg"
  4447. }
  4448. }
  4449. },
  4450. [
  4451. {
  4452. name: "Normal",
  4453. height: math.unit(10, "feet")
  4454. },
  4455. {
  4456. name: "Large",
  4457. height: math.unit(50, "feet"),
  4458. default: true
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(300, "feet")
  4463. },
  4464. {
  4465. name: "Macro+",
  4466. height: math.unit(750, "feet")
  4467. },
  4468. {
  4469. name: "Megamacro",
  4470. height: math.unit(3, "miles")
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(2, "meter"),
  4479. weight: math.unit(80, "kg"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/jennifer/front.svg",
  4483. bottom: 0.11,
  4484. extra: 1.16
  4485. }
  4486. },
  4487. frontAlt: {
  4488. height: math.unit(2, "meter"),
  4489. weight: math.unit(80, "kg"),
  4490. name: "Front (Alt)",
  4491. image: {
  4492. source: "./media/characters/jennifer/front-alt.svg"
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Canon Height",
  4499. height: math.unit(120, "feet"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Macro+",
  4504. height: math.unit(300, "feet")
  4505. },
  4506. {
  4507. name: "Megamacro",
  4508. height: math.unit(20000, "feet")
  4509. }
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4514. {
  4515. front: {
  4516. height: math.unit(2, "meter"),
  4517. weight: math.unit(50, "kg"),
  4518. name: "Front",
  4519. image: {
  4520. source: "./media/characters/kalista/front.svg",
  4521. extra: 1314/1145,
  4522. bottom: 101/1415
  4523. }
  4524. },
  4525. back: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(50, "kg"),
  4528. name: "Back",
  4529. image: {
  4530. source: "./media/characters/kalista/back.svg",
  4531. extra: 1366 / 1156,
  4532. bottom: 33.9 / 1362.78
  4533. }
  4534. }
  4535. },
  4536. [
  4537. {
  4538. name: "Uncomfortably Small",
  4539. height: math.unit(10, "feet")
  4540. },
  4541. {
  4542. name: "Small",
  4543. height: math.unit(30, "feet")
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(100, "feet"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Macro+",
  4552. height: math.unit(2000, "feet")
  4553. },
  4554. {
  4555. name: "True Form",
  4556. height: math.unit(8924, "miles")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(2, "meter"),
  4565. weight: math.unit(120, "kg"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/ggv/front.svg"
  4569. }
  4570. },
  4571. side: {
  4572. height: math.unit(2, "meter"),
  4573. weight: math.unit(120, "kg"),
  4574. name: "Side",
  4575. image: {
  4576. source: "./media/characters/ggv/side.svg"
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Extremely Puny",
  4583. height: math.unit(9 + 5 / 12, "feet")
  4584. },
  4585. {
  4586. name: "Horribly Small",
  4587. height: math.unit(47.7, "miles"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Reasonably Sized",
  4592. height: math.unit(25000, "parsecs")
  4593. },
  4594. {
  4595. name: "Slightly Uncompressed",
  4596. height: math.unit(7.77e31, "parsecs")
  4597. },
  4598. {
  4599. name: "Omniversal",
  4600. height: math.unit(1e300, "meters")
  4601. },
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4606. {
  4607. front: {
  4608. height: math.unit(2, "meter"),
  4609. weight: math.unit(75, "lb"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/napalm/front.svg"
  4613. }
  4614. },
  4615. back: {
  4616. height: math.unit(2, "meter"),
  4617. weight: math.unit(75, "lb"),
  4618. name: "Back",
  4619. image: {
  4620. source: "./media/characters/napalm/back.svg"
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Standard",
  4627. height: math.unit(55, "feet"),
  4628. default: true
  4629. }
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(7 + 5 / 6, "feet"),
  4637. weight: math.unit(325, "lb"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/asana/front.svg",
  4641. extra: 1133 / 1060,
  4642. bottom: 15.2 / 1148.6
  4643. }
  4644. },
  4645. back: {
  4646. height: math.unit(7 + 5 / 6, "feet"),
  4647. weight: math.unit(325, "lb"),
  4648. name: "Back",
  4649. image: {
  4650. source: "./media/characters/asana/back.svg",
  4651. extra: 1114 / 1043,
  4652. bottom: 5 / 1120
  4653. }
  4654. },
  4655. dressedDark: {
  4656. height: math.unit(7 + 5 / 6, "feet"),
  4657. weight: math.unit(325, "lb"),
  4658. name: "Dressed (Dark)",
  4659. image: {
  4660. source: "./media/characters/asana/dressed-dark.svg",
  4661. extra: 1133 / 1060,
  4662. bottom: 15.2 / 1148.6
  4663. }
  4664. },
  4665. dressedLight: {
  4666. height: math.unit(7 + 5 / 6, "feet"),
  4667. weight: math.unit(325, "lb"),
  4668. name: "Dressed (Light)",
  4669. image: {
  4670. source: "./media/characters/asana/dressed-light.svg",
  4671. extra: 1133 / 1060,
  4672. bottom: 15.2 / 1148.6
  4673. }
  4674. },
  4675. },
  4676. [
  4677. {
  4678. name: "Standard",
  4679. height: math.unit(7 + 5 / 6, "feet"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "Large",
  4684. height: math.unit(10, "meters")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(2500, "meters")
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(5e6, "meters")
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(5e12, "lightyears")
  4697. },
  4698. {
  4699. name: "Max Size",
  4700. height: math.unit(1e31, "lightyears")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(60, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/ebony/front.svg",
  4713. bottom: 0.03,
  4714. extra: 1045 / 810 + 0.03
  4715. }
  4716. },
  4717. side: {
  4718. height: math.unit(2, "meter"),
  4719. weight: math.unit(60, "kg"),
  4720. name: "Side",
  4721. image: {
  4722. source: "./media/characters/ebony/side.svg",
  4723. bottom: 0.03,
  4724. extra: 1045 / 810 + 0.03
  4725. }
  4726. },
  4727. back: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(60, "kg"),
  4730. name: "Back",
  4731. image: {
  4732. source: "./media/characters/ebony/back.svg",
  4733. bottom: 0.01,
  4734. extra: 1045 / 810 + 0.01
  4735. }
  4736. },
  4737. },
  4738. [
  4739. // TODO check why I did this lol
  4740. {
  4741. name: "Standard",
  4742. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4743. default: true
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(200, "feet")
  4748. },
  4749. {
  4750. name: "Gigamacro",
  4751. height: math.unit(13000, "km")
  4752. }
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(175, "lb"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/mountain/front.svg",
  4764. extra: 972 / 955,
  4765. bottom: 64 / 1036.6
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(175, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/mountain/back.svg",
  4774. extra: 970 / 950,
  4775. bottom: 28.25 / 999
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Large",
  4782. height: math.unit(20, "meters")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(300, "meters")
  4787. },
  4788. {
  4789. name: "Gigamacro",
  4790. height: math.unit(10000, "km"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Examacro",
  4795. height: math.unit(10e9, "lightyears")
  4796. }
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4801. {
  4802. front: {
  4803. height: math.unit(8, "feet"),
  4804. weight: math.unit(500, "lb"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/rick/front.svg"
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(8, "feet"),
  4815. default: true
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(5, "km")
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(8, "feet"),
  4828. weight: math.unit(120, "lb"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/ona/front.svg"
  4832. }
  4833. },
  4834. frontAlt: {
  4835. height: math.unit(8, "feet"),
  4836. weight: math.unit(120, "lb"),
  4837. name: "Front (Alt)",
  4838. image: {
  4839. source: "./media/characters/ona/front-alt.svg"
  4840. }
  4841. },
  4842. back: {
  4843. height: math.unit(8, "feet"),
  4844. weight: math.unit(120, "lb"),
  4845. name: "Back",
  4846. image: {
  4847. source: "./media/characters/ona/back.svg"
  4848. }
  4849. },
  4850. foot: {
  4851. height: math.unit(1.1, "feet"),
  4852. name: "Foot",
  4853. image: {
  4854. source: "./media/characters/ona/foot.svg"
  4855. }
  4856. }
  4857. },
  4858. [
  4859. {
  4860. name: "Megamacro",
  4861. height: math.unit(70, "km"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Gigamacro",
  4866. height: math.unit(681818, "miles")
  4867. },
  4868. {
  4869. name: "Examacro",
  4870. height: math.unit(3800000, "lightyears")
  4871. },
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(12, "feet"),
  4879. weight: math.unit(3000, "lb"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/mech/front.svg",
  4883. extra: 2900 / 2770,
  4884. bottom: 110 / 3010
  4885. }
  4886. },
  4887. back: {
  4888. height: math.unit(12, "feet"),
  4889. weight: math.unit(3000, "lb"),
  4890. name: "Back",
  4891. image: {
  4892. source: "./media/characters/mech/back.svg",
  4893. extra: 3011 / 2890,
  4894. bottom: 94 / 3105
  4895. }
  4896. },
  4897. maw: {
  4898. height: math.unit(3.07, "feet"),
  4899. name: "Maw",
  4900. image: {
  4901. source: "./media/characters/mech/maw.svg"
  4902. }
  4903. },
  4904. head: {
  4905. height: math.unit(3.07, "feet"),
  4906. name: "Head",
  4907. image: {
  4908. source: "./media/characters/mech/head.svg"
  4909. }
  4910. },
  4911. dick: {
  4912. height: math.unit(1.43, "feet"),
  4913. name: "Dick",
  4914. image: {
  4915. source: "./media/characters/mech/dick.svg"
  4916. }
  4917. },
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(12, "feet")
  4923. },
  4924. {
  4925. name: "Macro",
  4926. height: math.unit(300, "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro+",
  4931. height: math.unit(1500, "feet")
  4932. },
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(1.3, "meter"),
  4940. weight: math.unit(30, "kg"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/gregory/front.svg",
  4944. }
  4945. }
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(1.3, "meter"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(20, "meter")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(2.8, "meter"),
  4964. weight: math.unit(200, "kg"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/elory/front.svg",
  4968. }
  4969. }
  4970. },
  4971. [
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(2.8, "meter"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(38, "meter")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(470, "feet"),
  4988. weight: math.unit(924, "tons"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/angelpatamon/front.svg",
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(470, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Deity Size I",
  5003. height: math.unit(28651.2, "km")
  5004. },
  5005. {
  5006. name: "Deity Size II",
  5007. height: math.unit(171907.2, "km")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5013. {
  5014. side: {
  5015. height: math.unit(7.2, "meter"),
  5016. weight: math.unit(8.2, "tons"),
  5017. name: "Side",
  5018. image: {
  5019. source: "./media/characters/cryae/side.svg",
  5020. extra: 3500 / 1500
  5021. }
  5022. }
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(7.2, "meter"),
  5028. default: true
  5029. }
  5030. ]
  5031. ))
  5032. characterMakers.push(() => makeCharacter(
  5033. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5034. {
  5035. front: {
  5036. height: math.unit(6, "feet"),
  5037. weight: math.unit(175, "lb"),
  5038. name: "Front",
  5039. image: {
  5040. source: "./media/characters/xera/front.svg",
  5041. extra: 2377 / 1972,
  5042. bottom: 75.5 / 2452
  5043. }
  5044. },
  5045. side: {
  5046. height: math.unit(6, "feet"),
  5047. weight: math.unit(175, "lb"),
  5048. name: "Side",
  5049. image: {
  5050. source: "./media/characters/xera/side.svg",
  5051. extra: 2345 / 2019,
  5052. bottom: 39.7 / 2384
  5053. }
  5054. },
  5055. back: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(175, "lb"),
  5058. name: "Back",
  5059. image: {
  5060. source: "./media/characters/xera/back.svg",
  5061. extra: 2095 / 1984,
  5062. bottom: 67 / 2166
  5063. }
  5064. },
  5065. },
  5066. [
  5067. {
  5068. name: "Small",
  5069. height: math.unit(10, "feet")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(500, "meters"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Macro+",
  5078. height: math.unit(10, "km")
  5079. },
  5080. {
  5081. name: "Gigamacro",
  5082. height: math.unit(25000, "km")
  5083. },
  5084. {
  5085. name: "Teramacro",
  5086. height: math.unit(3e6, "km")
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5092. {
  5093. front: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(175, "lb"),
  5096. name: "Front",
  5097. image: {
  5098. source: "./media/characters/nebula/front.svg",
  5099. extra: 2566 / 2362,
  5100. bottom: 81 / 2644
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Small",
  5107. height: math.unit(4.5, "meters")
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(1500, "meters"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Megamacro",
  5116. height: math.unit(150, "km")
  5117. },
  5118. {
  5119. name: "Gigamacro",
  5120. height: math.unit(27000, "km")
  5121. }
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5126. {
  5127. front: {
  5128. height: math.unit(6, "feet"),
  5129. weight: math.unit(225, "lb"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/abysgar/front.svg",
  5133. extra: 1739/1614,
  5134. bottom: 71/1810
  5135. }
  5136. },
  5137. frontNsfw: {
  5138. height: math.unit(6, "feet"),
  5139. weight: math.unit(225, "lb"),
  5140. name: "Front (NSFW)",
  5141. image: {
  5142. source: "./media/characters/abysgar/front-nsfw.svg",
  5143. extra: 1739/1614,
  5144. bottom: 71/1810
  5145. }
  5146. },
  5147. back: {
  5148. height: math.unit(4.6, "feet"),
  5149. weight: math.unit(225, "lb"),
  5150. name: "Back",
  5151. image: {
  5152. source: "./media/characters/abysgar/back.svg",
  5153. extra: 1384/1327,
  5154. bottom: 0/1384
  5155. }
  5156. },
  5157. head: {
  5158. height: math.unit(1.25, "feet"),
  5159. name: "Head",
  5160. image: {
  5161. source: "./media/characters/abysgar/head.svg",
  5162. extra: 669/569,
  5163. bottom: 0/669
  5164. }
  5165. },
  5166. },
  5167. [
  5168. {
  5169. name: "Small",
  5170. height: math.unit(4.5, "meters")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(1250, "meters"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Megamacro",
  5179. height: math.unit(125, "km")
  5180. },
  5181. {
  5182. name: "Gigamacro",
  5183. height: math.unit(26000, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(180, "lb"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/yakuz/front.svg"
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Small",
  5202. height: math.unit(5, "meters")
  5203. },
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(1500, "meters"),
  5207. default: true
  5208. },
  5209. {
  5210. name: "Megamacro",
  5211. height: math.unit(200, "km")
  5212. },
  5213. {
  5214. name: "Gigamacro",
  5215. height: math.unit(100000, "km")
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(175, "lb"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/mirova/front.svg",
  5228. extra: 3334 / 3071,
  5229. bottom: 42 / 3375.6
  5230. }
  5231. }
  5232. },
  5233. [
  5234. {
  5235. name: "Small",
  5236. height: math.unit(5, "meters")
  5237. },
  5238. {
  5239. name: "Macro",
  5240. height: math.unit(900, "meters"),
  5241. default: true
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(135, "km")
  5246. },
  5247. {
  5248. name: "Gigamacro",
  5249. height: math.unit(20000, "km")
  5250. }
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5255. {
  5256. side: {
  5257. height: math.unit(28.35, "feet"),
  5258. weight: math.unit(99.75, "tons"),
  5259. name: "Side",
  5260. image: {
  5261. source: "./media/characters/asana-mech/side.svg",
  5262. extra: 923 / 699,
  5263. bottom: 50 / 975
  5264. }
  5265. },
  5266. chaingun: {
  5267. height: math.unit(7, "feet"),
  5268. weight: math.unit(2400, "lb"),
  5269. name: "Chaingun",
  5270. image: {
  5271. source: "./media/characters/asana-mech/chaingun.svg"
  5272. }
  5273. },
  5274. laser: {
  5275. height: math.unit(7.12, "feet"),
  5276. weight: math.unit(2000, "lb"),
  5277. name: "Laser",
  5278. image: {
  5279. source: "./media/characters/asana-mech/laser.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(28.35, "feet"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(2500, "feet")
  5292. },
  5293. {
  5294. name: "Megamacro",
  5295. height: math.unit(25, "miles")
  5296. },
  5297. {
  5298. name: "Examacro",
  5299. height: math.unit(6e8, "lightyears")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(5, "meters"),
  5308. weight: math.unit(1000, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/asche/front.svg",
  5312. extra: 1258 / 1190,
  5313. bottom: 47 / 1305
  5314. }
  5315. },
  5316. frontUnderwear: {
  5317. height: math.unit(5, "meters"),
  5318. weight: math.unit(1000, "kg"),
  5319. name: "Front (Underwear)",
  5320. image: {
  5321. source: "./media/characters/asche/front-underwear.svg",
  5322. extra: 1258 / 1190,
  5323. bottom: 47 / 1305
  5324. }
  5325. },
  5326. frontDressed: {
  5327. height: math.unit(5, "meters"),
  5328. weight: math.unit(1000, "kg"),
  5329. name: "Front (Dressed)",
  5330. image: {
  5331. source: "./media/characters/asche/front-dressed.svg",
  5332. extra: 1258 / 1190,
  5333. bottom: 47 / 1305
  5334. }
  5335. },
  5336. frontArmor: {
  5337. height: math.unit(5, "meters"),
  5338. weight: math.unit(1000, "kg"),
  5339. name: "Front (Armored)",
  5340. image: {
  5341. source: "./media/characters/asche/front-armored.svg",
  5342. extra: 1374 / 1308,
  5343. bottom: 23 / 1397
  5344. }
  5345. },
  5346. mp724: {
  5347. height: math.unit(0.96, "meters"),
  5348. weight: math.unit(38, "kg"),
  5349. name: "H&K MP724",
  5350. image: {
  5351. source: "./media/characters/asche/h&k-mp724.svg"
  5352. }
  5353. },
  5354. side: {
  5355. height: math.unit(5, "meters"),
  5356. weight: math.unit(1000, "kg"),
  5357. name: "Side",
  5358. image: {
  5359. source: "./media/characters/asche/side.svg",
  5360. extra: 1717 / 1609,
  5361. bottom: 0.005
  5362. }
  5363. },
  5364. back: {
  5365. height: math.unit(5, "meters"),
  5366. weight: math.unit(1000, "kg"),
  5367. name: "Back",
  5368. image: {
  5369. source: "./media/characters/asche/back.svg",
  5370. extra: 1570 / 1501
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "DEFCON 5",
  5377. height: math.unit(5, "meters")
  5378. },
  5379. {
  5380. name: "DEFCON 4",
  5381. height: math.unit(500, "meters"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "DEFCON 3",
  5386. height: math.unit(5, "km")
  5387. },
  5388. {
  5389. name: "DEFCON 2",
  5390. height: math.unit(500, "km")
  5391. },
  5392. {
  5393. name: "DEFCON 1",
  5394. height: math.unit(500000, "km")
  5395. },
  5396. {
  5397. name: "DEFCON 0",
  5398. height: math.unit(3, "gigaparsecs")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(7, "feet"),
  5407. weight: math.unit(92.7, "kg"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/gale/front.svg",
  5411. extra: 977/919,
  5412. bottom: 105/1082
  5413. }
  5414. },
  5415. side: {
  5416. height: math.unit(6.7, "feet"),
  5417. weight: math.unit(92.7, "kg"),
  5418. name: "Side",
  5419. image: {
  5420. source: "./media/characters/gale/side.svg",
  5421. extra: 978/922,
  5422. bottom: 140/1118
  5423. }
  5424. },
  5425. back: {
  5426. height: math.unit(7, "feet"),
  5427. weight: math.unit(92.7, "kg"),
  5428. name: "Back",
  5429. image: {
  5430. source: "./media/characters/gale/back.svg",
  5431. extra: 966/920,
  5432. bottom: 61/1027
  5433. }
  5434. },
  5435. maw: {
  5436. height: math.unit(2.23, "feet"),
  5437. name: "Maw",
  5438. image: {
  5439. source: "./media/characters/gale/maw.svg"
  5440. }
  5441. },
  5442. foot: {
  5443. height: math.unit(2.1, "feet"),
  5444. name: "Foot",
  5445. image: {
  5446. source: "./media/characters/gale/foot.svg"
  5447. }
  5448. },
  5449. },
  5450. [
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(7, "feet")
  5454. },
  5455. {
  5456. name: "Macro",
  5457. height: math.unit(150, "feet"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Macro+",
  5462. height: math.unit(300, "feet")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5468. {
  5469. front: {
  5470. height: math.unit(5 + 10/12, "feet"),
  5471. weight: math.unit(67, "kg"),
  5472. name: "Front",
  5473. image: {
  5474. source: "./media/characters/draylen/front.svg",
  5475. extra: 832/777,
  5476. bottom: 85/917
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(5 + 10/12, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(150, "feet"),
  5488. default: true
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5494. {
  5495. front: {
  5496. height: math.unit(7 + 9 / 12, "feet"),
  5497. weight: math.unit(379, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/chez/front.svg"
  5501. }
  5502. },
  5503. side: {
  5504. height: math.unit(7 + 9 / 12, "feet"),
  5505. weight: math.unit(379, "lbs"),
  5506. name: "Side",
  5507. image: {
  5508. source: "./media/characters/chez/side.svg"
  5509. }
  5510. }
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(7 + 9 / 12, "feet"),
  5516. default: true
  5517. },
  5518. {
  5519. name: "God King",
  5520. height: math.unit(9750000, "meters")
  5521. }
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(275, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/kaylum/front.svg",
  5533. bottom: 0.01,
  5534. extra: 1166 / 1031
  5535. }
  5536. },
  5537. frontWingless: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(275, "lbs"),
  5540. name: "Front (Wingless)",
  5541. image: {
  5542. source: "./media/characters/kaylum/front-wingless.svg",
  5543. bottom: 0.01,
  5544. extra: 1117 / 1031
  5545. }
  5546. }
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(3.05, "meters")
  5552. },
  5553. {
  5554. name: "Master",
  5555. height: math.unit(5.5, "meters")
  5556. },
  5557. {
  5558. name: "Rampage",
  5559. height: math.unit(19, "meters")
  5560. },
  5561. {
  5562. name: "Macro Lite",
  5563. height: math.unit(37, "meters")
  5564. },
  5565. {
  5566. name: "Hyper Predator",
  5567. height: math.unit(61, "meters")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(138, "meters"),
  5572. default: true
  5573. }
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5578. {
  5579. front: {
  5580. height: math.unit(5 + 5 / 12, "feet"),
  5581. weight: math.unit(120, "lbs"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/geta/front.svg",
  5585. extra: 1003/933,
  5586. bottom: 21/1024
  5587. }
  5588. },
  5589. paw: {
  5590. height: math.unit(0.35, "feet"),
  5591. name: "Paw",
  5592. image: {
  5593. source: "./media/characters/geta/paw.svg"
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Micro",
  5600. height: math.unit(3, "inches"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(5 + 5 / 12, "feet")
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(300, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/tyrnn/front.svg"
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Main Height",
  5624. height: math.unit(355, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Fave. Height",
  5629. height: math.unit(2400, "feet")
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(300, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/appledectomy/front.svg"
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(2500, "feet")
  5649. },
  5650. {
  5651. name: "Megamacro",
  5652. height: math.unit(50, "miles"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Gigamacro",
  5657. height: math.unit(5000, "miles")
  5658. },
  5659. {
  5660. name: "Teramacro",
  5661. height: math.unit(250000, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(200, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/vulpes/front.svg",
  5674. extra: 573 / 543,
  5675. bottom: 0.033
  5676. }
  5677. },
  5678. side: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(200, "lbs"),
  5681. name: "Side",
  5682. image: {
  5683. source: "./media/characters/vulpes/side.svg",
  5684. extra: 577 / 549,
  5685. bottom: 11 / 588
  5686. }
  5687. },
  5688. back: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(200, "lbs"),
  5691. name: "Back",
  5692. image: {
  5693. source: "./media/characters/vulpes/back.svg",
  5694. extra: 573 / 549,
  5695. bottom: 20 / 593
  5696. }
  5697. },
  5698. feet: {
  5699. height: math.unit(1.276, "feet"),
  5700. name: "Feet",
  5701. image: {
  5702. source: "./media/characters/vulpes/feet.svg"
  5703. }
  5704. },
  5705. maw: {
  5706. height: math.unit(1.18, "feet"),
  5707. name: "Maw",
  5708. image: {
  5709. source: "./media/characters/vulpes/maw.svg"
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Micro",
  5716. height: math.unit(2, "inches")
  5717. },
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(6.3, "feet")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(850, "feet")
  5725. },
  5726. {
  5727. name: "Megamacro",
  5728. height: math.unit(7500, "feet"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Gigamacro",
  5733. height: math.unit(570000, "miles")
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5739. {
  5740. front: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(210, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/rain-fallen/front.svg"
  5746. }
  5747. },
  5748. side: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(210, "lbs"),
  5751. name: "Side",
  5752. image: {
  5753. source: "./media/characters/rain-fallen/side.svg"
  5754. }
  5755. },
  5756. back: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(210, "lbs"),
  5759. name: "Back",
  5760. image: {
  5761. source: "./media/characters/rain-fallen/back.svg"
  5762. }
  5763. },
  5764. feral: {
  5765. height: math.unit(9, "feet"),
  5766. weight: math.unit(700, "lbs"),
  5767. name: "Feral",
  5768. image: {
  5769. source: "./media/characters/rain-fallen/feral.svg"
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Meddling with Mortals",
  5776. height: math.unit(8 + 8/12, "feet")
  5777. },
  5778. {
  5779. name: "Normal",
  5780. height: math.unit(5, "meter")
  5781. },
  5782. {
  5783. name: "Macro",
  5784. height: math.unit(150, "meter"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Megamacro",
  5789. height: math.unit(278e6, "meter")
  5790. },
  5791. {
  5792. name: "Gigamacro",
  5793. height: math.unit(2e9, "meter")
  5794. },
  5795. {
  5796. name: "Teramacro",
  5797. height: math.unit(8e12, "meter")
  5798. },
  5799. {
  5800. name: "Devourer",
  5801. height: math.unit(14, "zettameters")
  5802. },
  5803. {
  5804. name: "Scarlet King",
  5805. height: math.unit(18, "yottameters")
  5806. },
  5807. {
  5808. name: "Void",
  5809. height: math.unit(1e88, "yottameters")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5815. {
  5816. standing: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(180, "lbs"),
  5819. name: "Standing",
  5820. image: {
  5821. source: "./media/characters/zaakira/standing.svg",
  5822. extra: 1599/1504,
  5823. bottom: 39/1638
  5824. }
  5825. },
  5826. laying: {
  5827. height: math.unit(3.3, "feet"),
  5828. weight: math.unit(180, "lbs"),
  5829. name: "Laying",
  5830. image: {
  5831. source: "./media/characters/zaakira/laying.svg"
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(12, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(279, "feet"),
  5843. default: true
  5844. }
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5849. {
  5850. femSfw: {
  5851. height: math.unit(8, "feet"),
  5852. weight: math.unit(350, "lb"),
  5853. name: "Fem",
  5854. image: {
  5855. source: "./media/characters/sigvald/fem-sfw.svg",
  5856. extra: 182 / 164,
  5857. bottom: 8.7 / 190.5
  5858. }
  5859. },
  5860. femNsfw: {
  5861. height: math.unit(8, "feet"),
  5862. weight: math.unit(350, "lb"),
  5863. name: "Fem (NSFW)",
  5864. image: {
  5865. source: "./media/characters/sigvald/fem-nsfw.svg",
  5866. extra: 182 / 164,
  5867. bottom: 8.7 / 190.5
  5868. }
  5869. },
  5870. maleNsfw: {
  5871. height: math.unit(8, "feet"),
  5872. weight: math.unit(350, "lb"),
  5873. name: "Male (NSFW)",
  5874. image: {
  5875. source: "./media/characters/sigvald/male-nsfw.svg",
  5876. extra: 182 / 164,
  5877. bottom: 8.7 / 190.5
  5878. }
  5879. },
  5880. hermNsfw: {
  5881. height: math.unit(8, "feet"),
  5882. weight: math.unit(350, "lb"),
  5883. name: "Herm (NSFW)",
  5884. image: {
  5885. source: "./media/characters/sigvald/herm-nsfw.svg",
  5886. extra: 182 / 164,
  5887. bottom: 8.7 / 190.5
  5888. }
  5889. },
  5890. dick: {
  5891. height: math.unit(2.36, "feet"),
  5892. name: "Dick",
  5893. image: {
  5894. source: "./media/characters/sigvald/dick.svg"
  5895. }
  5896. },
  5897. eye: {
  5898. height: math.unit(0.31, "feet"),
  5899. name: "Eye",
  5900. image: {
  5901. source: "./media/characters/sigvald/eye.svg"
  5902. }
  5903. },
  5904. mouth: {
  5905. height: math.unit(0.92, "feet"),
  5906. name: "Mouth",
  5907. image: {
  5908. source: "./media/characters/sigvald/mouth.svg"
  5909. }
  5910. },
  5911. paws: {
  5912. height: math.unit(2.2, "feet"),
  5913. name: "Paws",
  5914. image: {
  5915. source: "./media/characters/sigvald/paws.svg"
  5916. }
  5917. }
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(8, "feet")
  5923. },
  5924. {
  5925. name: "Large",
  5926. height: math.unit(12, "feet")
  5927. },
  5928. {
  5929. name: "Larger",
  5930. height: math.unit(20, "feet")
  5931. },
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(150, "feet")
  5935. },
  5936. {
  5937. name: "Macro+",
  5938. height: math.unit(200, "feet"),
  5939. default: true
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5945. {
  5946. side: {
  5947. height: math.unit(12, "feet"),
  5948. weight: math.unit(2000, "kg"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/scott/side.svg",
  5952. extra: 754 / 724,
  5953. bottom: 0.069
  5954. }
  5955. },
  5956. upright: {
  5957. height: math.unit(12, "feet"),
  5958. weight: math.unit(2000, "kg"),
  5959. name: "Upright",
  5960. image: {
  5961. source: "./media/characters/scott/upright.svg",
  5962. extra: 3881 / 3722,
  5963. bottom: 0.05
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(12, "feet"),
  5971. default: true
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5977. {
  5978. side: {
  5979. height: math.unit(8, "meters"),
  5980. weight: math.unit(84755, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/tobias/side.svg",
  5984. extra: 1474 / 1096,
  5985. bottom: 38.9 / 1513.1235
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(8, "meters"),
  5993. default: true
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5999. {
  6000. front: {
  6001. height: math.unit(5.5, "feet"),
  6002. weight: math.unit(400, "lbs"),
  6003. name: "Front",
  6004. image: {
  6005. source: "./media/characters/kieran/front.svg",
  6006. extra: 2694 / 2364,
  6007. bottom: 217 / 2908
  6008. }
  6009. },
  6010. side: {
  6011. height: math.unit(5.5, "feet"),
  6012. weight: math.unit(400, "lbs"),
  6013. name: "Side",
  6014. image: {
  6015. source: "./media/characters/kieran/side.svg",
  6016. extra: 875 / 777,
  6017. bottom: 84.6 / 959
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(5.5, "feet"),
  6025. default: true
  6026. },
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6031. {
  6032. side: {
  6033. height: math.unit(2, "meters"),
  6034. weight: math.unit(70, "kg"),
  6035. name: "Side",
  6036. image: {
  6037. source: "./media/characters/sanya/side.svg",
  6038. bottom: 0.02,
  6039. extra: 1.02
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Small",
  6046. height: math.unit(2, "meters")
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(3, "meters")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(16, "meters"),
  6055. default: true
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(2, "meters"),
  6064. weight: math.unit(120, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/miranda/front.svg",
  6068. extra: 195 / 185,
  6069. bottom: 10.9 / 206.5
  6070. }
  6071. },
  6072. back: {
  6073. height: math.unit(2, "meters"),
  6074. weight: math.unit(120, "kg"),
  6075. name: "Back",
  6076. image: {
  6077. source: "./media/characters/miranda/back.svg",
  6078. extra: 201 / 193,
  6079. bottom: 2.3 / 203.7
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(10, "feet"),
  6087. default: true
  6088. }
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "James", species: ["deer"], tags: ["anthro"] },
  6093. {
  6094. side: {
  6095. height: math.unit(2, "meters"),
  6096. weight: math.unit(100, "kg"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/james/front.svg",
  6100. extra: 10 / 8.5
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(8.5, "feet"),
  6108. default: true
  6109. }
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6114. {
  6115. side: {
  6116. height: math.unit(9.5, "feet"),
  6117. weight: math.unit(2500, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/heather/side.svg"
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(9.5, "feet"),
  6128. default: true
  6129. }
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6134. {
  6135. side: {
  6136. height: math.unit(6.5, "feet"),
  6137. weight: math.unit(400, "lbs"),
  6138. name: "Side",
  6139. image: {
  6140. source: "./media/characters/lukas/side.svg",
  6141. extra: 7.25 / 6.5
  6142. }
  6143. },
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6.5, "feet"),
  6149. default: true
  6150. }
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6155. {
  6156. side: {
  6157. height: math.unit(5, "feet"),
  6158. weight: math.unit(3000, "lbs"),
  6159. name: "Side",
  6160. image: {
  6161. source: "./media/characters/louise/side.svg"
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Normal",
  6168. height: math.unit(5, "feet"),
  6169. default: true
  6170. }
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6175. {
  6176. side: {
  6177. height: math.unit(6, "feet"),
  6178. weight: math.unit(150, "lbs"),
  6179. name: "Side",
  6180. image: {
  6181. source: "./media/characters/ramona/side.svg",
  6182. extra: 871/854,
  6183. bottom: 41/912
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(6 + 4/12, "feet")
  6191. },
  6192. {
  6193. name: "Minimacro",
  6194. height: math.unit(5.3, "meters"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(20, "stories")
  6200. },
  6201. {
  6202. name: "Macro+",
  6203. height: math.unit(50, "stories")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6209. {
  6210. standing: {
  6211. height: math.unit(5.75, "feet"),
  6212. weight: math.unit(160, "lbs"),
  6213. name: "Standing",
  6214. image: {
  6215. source: "./media/characters/deerpuff/standing.svg",
  6216. extra: 682 / 624
  6217. }
  6218. },
  6219. sitting: {
  6220. height: math.unit(5.75 / 1.79, "feet"),
  6221. weight: math.unit(160, "lbs"),
  6222. name: "Sitting",
  6223. image: {
  6224. source: "./media/characters/deerpuff/sitting.svg",
  6225. bottom: 44 / 400,
  6226. extra: 1
  6227. }
  6228. },
  6229. taurLaying: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(400, "lbs"),
  6232. name: "Taur (Laying)",
  6233. image: {
  6234. source: "./media/characters/deerpuff/taur-laying.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Puffball",
  6241. height: math.unit(6, "inches")
  6242. },
  6243. {
  6244. name: "Normalpuff",
  6245. height: math.unit(5.75, "feet")
  6246. },
  6247. {
  6248. name: "Macropuff",
  6249. height: math.unit(1500, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Megapuff",
  6254. height: math.unit(500, "miles")
  6255. },
  6256. {
  6257. name: "Gigapuff",
  6258. height: math.unit(250000, "miles")
  6259. },
  6260. {
  6261. name: "Omegapuff",
  6262. height: math.unit(1000, "lightyears")
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6268. {
  6269. stomping: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(170, "lbs"),
  6272. name: "Stomping",
  6273. image: {
  6274. source: "./media/characters/vivian/stomping.svg"
  6275. }
  6276. },
  6277. sitting: {
  6278. height: math.unit(6 / 1.75, "feet"),
  6279. weight: math.unit(170, "lbs"),
  6280. name: "Sitting",
  6281. image: {
  6282. source: "./media/characters/vivian/sitting.svg",
  6283. bottom: 1 / 6.4,
  6284. extra: 1,
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(7, "feet"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(10, "stories")
  6297. },
  6298. {
  6299. name: "Macro+",
  6300. height: math.unit(30, "stories")
  6301. },
  6302. {
  6303. name: "Megamacro",
  6304. height: math.unit(10, "miles")
  6305. },
  6306. {
  6307. name: "Megamacro+",
  6308. height: math.unit(2750000, "meters")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(160, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/prince/front.svg",
  6321. extra: 1938/1682,
  6322. bottom: 45/1983
  6323. }
  6324. },
  6325. back: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(160, "lbs"),
  6328. name: "Back",
  6329. image: {
  6330. source: "./media/characters/prince/back.svg",
  6331. extra: 1955/1726,
  6332. bottom: 6/1961
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(7.75, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Not cute",
  6344. height: math.unit(17, "feet")
  6345. },
  6346. {
  6347. name: "I said NOT",
  6348. height: math.unit(91, "feet")
  6349. },
  6350. {
  6351. name: "Please stop",
  6352. height: math.unit(560, "feet")
  6353. },
  6354. {
  6355. name: "What have you done",
  6356. height: math.unit(2200, "feet")
  6357. },
  6358. {
  6359. name: "Deer God",
  6360. height: math.unit(3.6, "miles")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6366. {
  6367. standing: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(300, "lbs"),
  6370. name: "Standing",
  6371. image: {
  6372. source: "./media/characters/psymon/standing.svg",
  6373. extra: 1888 / 1810,
  6374. bottom: 0.05
  6375. }
  6376. },
  6377. slithering: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(300, "lbs"),
  6380. name: "Slithering",
  6381. image: {
  6382. source: "./media/characters/psymon/slithering.svg",
  6383. extra: 1330 / 1224
  6384. }
  6385. },
  6386. slitheringAlt: {
  6387. height: math.unit(6, "feet"),
  6388. weight: math.unit(300, "lbs"),
  6389. name: "Slithering (Alt)",
  6390. image: {
  6391. source: "./media/characters/psymon/slithering-alt.svg",
  6392. extra: 1330 / 1224
  6393. }
  6394. },
  6395. },
  6396. [
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(11.25, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Large",
  6404. height: math.unit(27, "feet")
  6405. },
  6406. {
  6407. name: "Giant",
  6408. height: math.unit(87, "feet")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(365, "feet")
  6413. },
  6414. {
  6415. name: "Megamacro",
  6416. height: math.unit(3, "miles")
  6417. },
  6418. {
  6419. name: "World Serpent",
  6420. height: math.unit(8000, "miles")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(180, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/daimos/front.svg",
  6433. extra: 4160 / 3897,
  6434. bottom: 0.021
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(8, "feet"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Big Dog",
  6446. height: math.unit(22, "feet")
  6447. },
  6448. {
  6449. name: "Macro",
  6450. height: math.unit(127, "feet")
  6451. },
  6452. {
  6453. name: "Megamacro",
  6454. height: math.unit(3600, "feet")
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6460. {
  6461. side: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(180, "lbs"),
  6464. name: "Side",
  6465. image: {
  6466. source: "./media/characters/blake/side.svg",
  6467. extra: 1212 / 1120,
  6468. bottom: 0.05
  6469. }
  6470. },
  6471. crouched: {
  6472. height: math.unit(6 * 0.57, "feet"),
  6473. weight: math.unit(180, "lbs"),
  6474. name: "Crouched",
  6475. image: {
  6476. source: "./media/characters/blake/crouched.svg",
  6477. extra: 840 / 587,
  6478. bottom: 0.04
  6479. }
  6480. },
  6481. bent: {
  6482. height: math.unit(6 * 0.75, "feet"),
  6483. weight: math.unit(180, "lbs"),
  6484. name: "Bent",
  6485. image: {
  6486. source: "./media/characters/blake/bent.svg",
  6487. extra: 592 / 544,
  6488. bottom: 0.035
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(8 + 1 / 6, "feet"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Big Backside",
  6500. height: math.unit(37, "feet")
  6501. },
  6502. {
  6503. name: "Subway Shredder",
  6504. height: math.unit(72, "feet")
  6505. },
  6506. {
  6507. name: "City Carver",
  6508. height: math.unit(1675, "feet")
  6509. },
  6510. {
  6511. name: "Tectonic Tweaker",
  6512. height: math.unit(2300, "miles")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(180, "lbs"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/guisetto/front.svg",
  6525. extra: 856 / 817,
  6526. bottom: 0.06
  6527. }
  6528. },
  6529. airborne: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(180, "lbs"),
  6532. name: "Airborne",
  6533. image: {
  6534. source: "./media/characters/guisetto/airborne.svg",
  6535. extra: 584 / 525
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(10 + 11 / 12, "feet"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Large",
  6547. height: math.unit(35, "feet")
  6548. },
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(475, "feet")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(180, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/luxor/front.svg",
  6564. extra: 2940 / 2152
  6565. }
  6566. },
  6567. back: {
  6568. height: math.unit(6, "feet"),
  6569. weight: math.unit(180, "lbs"),
  6570. name: "Back",
  6571. image: {
  6572. source: "./media/characters/luxor/back.svg",
  6573. extra: 1083 / 960
  6574. }
  6575. },
  6576. },
  6577. [
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(5 + 5 / 6, "feet"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Lamp",
  6585. height: math.unit(50, "feet")
  6586. },
  6587. {
  6588. name: "Lämp",
  6589. height: math.unit(300, "feet")
  6590. },
  6591. {
  6592. name: "The sun is a lamp",
  6593. height: math.unit(250000, "miles")
  6594. },
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6599. {
  6600. front: {
  6601. height: math.unit(6, "feet"),
  6602. weight: math.unit(50, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/huoyan/front.svg"
  6606. }
  6607. },
  6608. side: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(180, "lbs"),
  6611. name: "Side",
  6612. image: {
  6613. source: "./media/characters/huoyan/side.svg"
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Chef",
  6620. height: math.unit(9, "feet")
  6621. },
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(65, "feet"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(780, "feet")
  6630. },
  6631. {
  6632. name: "Flaming Mountain",
  6633. height: math.unit(4.8, "miles")
  6634. },
  6635. {
  6636. name: "Celestial",
  6637. height: math.unit(765000, "miles")
  6638. },
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6643. {
  6644. front: {
  6645. height: math.unit(5 + 3 / 4, "feet"),
  6646. weight: math.unit(120, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/tails/front.svg"
  6650. }
  6651. }
  6652. },
  6653. [
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(5 + 3 / 4, "feet"),
  6657. default: true
  6658. }
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(4, "feet"),
  6666. weight: math.unit(50, "lbs"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/rainy/front.svg"
  6670. }
  6671. }
  6672. },
  6673. [
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(800, "feet"),
  6677. default: true
  6678. }
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(150, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/rainier/front.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(2, "mm"),
  6697. default: true
  6698. }
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6703. {
  6704. front: {
  6705. height: math.unit(8 + 4/12, "feet"),
  6706. weight: math.unit(450, "kilograms"),
  6707. volume: math.unit(5, "cups"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/andy-renard/front.svg",
  6711. extra: 1839/1726,
  6712. bottom: 134/1973
  6713. }
  6714. },
  6715. back: {
  6716. height: math.unit(8 + 4/12, "feet"),
  6717. weight: math.unit(450, "kilograms"),
  6718. volume: math.unit(5, "cups"),
  6719. name: "Back",
  6720. image: {
  6721. source: "./media/characters/andy-renard/back.svg",
  6722. extra: 1838/1710,
  6723. bottom: 105/1943
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Tall",
  6730. height: math.unit(8 + 4/12, "feet")
  6731. },
  6732. {
  6733. name: "Mini Macro",
  6734. height: math.unit(15, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(100, "feet")
  6740. },
  6741. {
  6742. name: "Mega Macro",
  6743. height: math.unit(1000, "feet")
  6744. },
  6745. {
  6746. name: "Giga Macro",
  6747. height: math.unit(10, "miles")
  6748. },
  6749. {
  6750. name: "God Macro",
  6751. height: math.unit(1, "multiverse")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(210, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/cimmaron/front-sfw.svg",
  6764. extra: 701 / 676,
  6765. bottom: 0.046
  6766. }
  6767. },
  6768. back: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(210, "lbs"),
  6771. name: "Back",
  6772. image: {
  6773. source: "./media/characters/cimmaron/back-sfw.svg",
  6774. extra: 701 / 676,
  6775. bottom: 0.046
  6776. }
  6777. },
  6778. frontNsfw: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(210, "lbs"),
  6781. name: "Front (NSFW)",
  6782. image: {
  6783. source: "./media/characters/cimmaron/front-nsfw.svg",
  6784. extra: 701 / 676,
  6785. bottom: 0.046
  6786. }
  6787. },
  6788. backNsfw: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(210, "lbs"),
  6791. name: "Back (NSFW)",
  6792. image: {
  6793. source: "./media/characters/cimmaron/back-nsfw.svg",
  6794. extra: 701 / 676,
  6795. bottom: 0.046
  6796. }
  6797. },
  6798. dick: {
  6799. height: math.unit(1.714, "feet"),
  6800. name: "Dick",
  6801. image: {
  6802. source: "./media/characters/cimmaron/dick.svg"
  6803. }
  6804. },
  6805. },
  6806. [
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(6, "feet"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Macro Mayor",
  6814. height: math.unit(350, "meters")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(200, "lbs"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/akari/front.svg",
  6827. extra: 962 / 901,
  6828. bottom: 0.04
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Micro",
  6835. height: math.unit(5, "inches"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Normal",
  6840. height: math.unit(7, "feet")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(140, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/cynosura/front.svg",
  6853. extra: 437/410,
  6854. bottom: 9/446
  6855. }
  6856. },
  6857. back: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(140, "lbs"),
  6860. name: "Back",
  6861. image: {
  6862. source: "./media/characters/cynosura/back.svg",
  6863. extra: 1304/1160,
  6864. bottom: 71/1375
  6865. }
  6866. },
  6867. },
  6868. [
  6869. {
  6870. name: "Micro",
  6871. height: math.unit(4, "inches")
  6872. },
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(5.75, "feet"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Tall",
  6880. height: math.unit(10, "feet")
  6881. },
  6882. {
  6883. name: "Big",
  6884. height: math.unit(20, "feet")
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(50, "feet")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(13 + 2/12, "feet"),
  6897. weight: math.unit(800, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/gin/front.svg",
  6901. extra: 1312/1191,
  6902. bottom: 45/1357
  6903. }
  6904. },
  6905. mouth: {
  6906. height: math.unit(2.39 * 1.8, "feet"),
  6907. name: "Mouth",
  6908. image: {
  6909. source: "./media/characters/gin/mouth.svg"
  6910. }
  6911. },
  6912. hand: {
  6913. height: math.unit(1.57 * 2.19, "feet"),
  6914. name: "Hand",
  6915. image: {
  6916. source: "./media/characters/gin/hand.svg"
  6917. }
  6918. },
  6919. foot: {
  6920. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6921. name: "Foot",
  6922. image: {
  6923. source: "./media/characters/gin/foot.svg"
  6924. }
  6925. },
  6926. sole: {
  6927. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6928. name: "Sole",
  6929. image: {
  6930. source: "./media/characters/gin/sole.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Very Small",
  6937. height: math.unit(13 + 2 / 12, "feet")
  6938. },
  6939. {
  6940. name: "Micro",
  6941. height: math.unit(600, "miles")
  6942. },
  6943. {
  6944. name: "Regular",
  6945. height: math.unit(20, "earths"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(2.2, "solarradii")
  6951. },
  6952. {
  6953. name: "Teramacro",
  6954. height: math.unit(1.2, "galaxies")
  6955. },
  6956. {
  6957. name: "Omegamacro",
  6958. height: math.unit(200, "universes")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(6 + 1 / 6, "feet"),
  6967. weight: math.unit(178, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/guy/front.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6 + 1 / 6, "feet"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Large",
  6982. height: math.unit(25 + 7 / 12, "feet")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(60 + 9 / 12, "feet")
  6987. },
  6988. {
  6989. name: "Macro+",
  6990. height: math.unit(246, "feet")
  6991. },
  6992. {
  6993. name: "Macro++",
  6994. height: math.unit(878, "feet")
  6995. }
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7000. {
  7001. front: {
  7002. height: math.unit(9, "feet"),
  7003. weight: math.unit(800, "lbs"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/tiberius/front.svg",
  7007. extra: 2295 / 2071
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(9, "feet"),
  7012. weight: math.unit(800, "lbs"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/tiberius/back.svg",
  7016. extra: 2373 / 2160
  7017. }
  7018. },
  7019. },
  7020. [
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(9, "feet"),
  7024. default: true
  7025. }
  7026. ]
  7027. ))
  7028. characterMakers.push(() => makeCharacter(
  7029. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7030. {
  7031. front: {
  7032. height: math.unit(6, "feet"),
  7033. weight: math.unit(600, "lbs"),
  7034. name: "Front",
  7035. image: {
  7036. source: "./media/characters/surgo/front.svg",
  7037. extra: 3591 / 2227
  7038. }
  7039. },
  7040. back: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(600, "lbs"),
  7043. name: "Back",
  7044. image: {
  7045. source: "./media/characters/surgo/back.svg",
  7046. extra: 3557 / 2228
  7047. }
  7048. },
  7049. laying: {
  7050. height: math.unit(6 * 0.85, "feet"),
  7051. weight: math.unit(600, "lbs"),
  7052. name: "Laying",
  7053. image: {
  7054. source: "./media/characters/surgo/laying.svg"
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(6, "feet"),
  7062. default: true
  7063. }
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7068. {
  7069. side: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(150, "lbs"),
  7072. name: "Side",
  7073. image: {
  7074. source: "./media/characters/cibus/side.svg",
  7075. extra: 800 / 400
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(6, "feet"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(240, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/nibbles/front.svg"
  7096. }
  7097. },
  7098. side: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(240, "lbs"),
  7101. name: "Side",
  7102. image: {
  7103. source: "./media/characters/nibbles/side.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(9, "feet"),
  7111. default: true
  7112. }
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7117. {
  7118. side: {
  7119. height: math.unit(5 + 1 / 6, "feet"),
  7120. weight: math.unit(130, "lbs"),
  7121. name: "Side",
  7122. image: {
  7123. source: "./media/characters/rikky/side.svg",
  7124. extra: 851 / 801
  7125. }
  7126. },
  7127. },
  7128. [
  7129. {
  7130. name: "Normal",
  7131. height: math.unit(5 + 1 / 6, "feet")
  7132. },
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(152, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Megamacro",
  7140. height: math.unit(7, "miles")
  7141. }
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7146. {
  7147. side: {
  7148. height: math.unit(370, "cm"),
  7149. weight: math.unit(350, "lbs"),
  7150. name: "Side",
  7151. image: {
  7152. source: "./media/characters/malfressa/side.svg"
  7153. }
  7154. },
  7155. walking: {
  7156. height: math.unit(370, "cm"),
  7157. weight: math.unit(350, "lbs"),
  7158. name: "Walking",
  7159. image: {
  7160. source: "./media/characters/malfressa/walking.svg"
  7161. }
  7162. },
  7163. feral: {
  7164. height: math.unit(2500, "cm"),
  7165. weight: math.unit(100000, "lbs"),
  7166. name: "Feral",
  7167. image: {
  7168. source: "./media/characters/malfressa/feral.svg",
  7169. extra: 2108 / 837,
  7170. bottom: 0.02
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(370, "cm")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(300, "meters"),
  7182. default: true
  7183. }
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(60, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/jaro/front.svg",
  7195. extra: 845/817,
  7196. bottom: 45/890
  7197. }
  7198. },
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(60, "kg"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/jaro/back.svg",
  7205. extra: 847/817,
  7206. bottom: 34/881
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(7, "inches")
  7214. },
  7215. {
  7216. name: "Normal",
  7217. height: math.unit(5.5, "feet"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Minimacro",
  7222. height: math.unit(20, "feet")
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(200, "meters")
  7227. }
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(195, "lb"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/rogue/front.svg"
  7239. }
  7240. },
  7241. },
  7242. [
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(90, "feet"),
  7246. default: true
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7252. {
  7253. standing: {
  7254. height: math.unit(5 + 8 / 12, "feet"),
  7255. weight: math.unit(140, "lb"),
  7256. name: "Standing",
  7257. image: {
  7258. source: "./media/characters/piper/standing.svg",
  7259. extra: 1440/1284,
  7260. bottom: 66/1506
  7261. }
  7262. },
  7263. running: {
  7264. height: math.unit(5 + 8 / 12, "feet"),
  7265. weight: math.unit(140, "lb"),
  7266. name: "Running",
  7267. image: {
  7268. source: "./media/characters/piper/running.svg",
  7269. extra: 3948/3655,
  7270. bottom: 0/3948
  7271. }
  7272. },
  7273. sole: {
  7274. height: math.unit(0.81, "feet"),
  7275. weight: math.unit(2, "kg"),
  7276. name: "Sole",
  7277. image: {
  7278. source: "./media/characters/piper/sole.svg"
  7279. }
  7280. },
  7281. nipple: {
  7282. height: math.unit(0.25, "feet"),
  7283. weight: math.unit(1.5, "lb"),
  7284. name: "Nipple",
  7285. image: {
  7286. source: "./media/characters/piper/nipple.svg"
  7287. }
  7288. },
  7289. head: {
  7290. height: math.unit(1.1, "feet"),
  7291. name: "Head",
  7292. image: {
  7293. source: "./media/characters/piper/head.svg"
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Micro",
  7300. height: math.unit(2, "inches")
  7301. },
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(5 + 8 / 12, "feet")
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(250, "feet"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Megamacro",
  7313. height: math.unit(7, "miles")
  7314. },
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7319. {
  7320. front: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(220, "lb"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/gemini/front.svg"
  7326. }
  7327. },
  7328. back: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(220, "lb"),
  7331. name: "Back",
  7332. image: {
  7333. source: "./media/characters/gemini/back.svg"
  7334. }
  7335. },
  7336. kneeling: {
  7337. height: math.unit(6 / 1.5, "feet"),
  7338. weight: math.unit(220, "lb"),
  7339. name: "Kneeling",
  7340. image: {
  7341. source: "./media/characters/gemini/kneeling.svg",
  7342. bottom: 0.02
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(300, "meters"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Megamacro",
  7354. height: math.unit(6900, "meters")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7360. {
  7361. anthro: {
  7362. height: math.unit(2.35, "meters"),
  7363. weight: math.unit(73, "kg"),
  7364. name: "Anthro",
  7365. image: {
  7366. source: "./media/characters/alicia/anthro.svg",
  7367. extra: 2571 / 2385,
  7368. bottom: 75 / 2648
  7369. }
  7370. },
  7371. paw: {
  7372. height: math.unit(1.32, "feet"),
  7373. name: "Paw",
  7374. image: {
  7375. source: "./media/characters/alicia/paw.svg"
  7376. }
  7377. },
  7378. feral: {
  7379. height: math.unit(1.69, "meters"),
  7380. weight: math.unit(73, "kg"),
  7381. name: "Feral",
  7382. image: {
  7383. source: "./media/characters/alicia/feral.svg",
  7384. extra: 2123 / 1715,
  7385. bottom: 222 / 2349
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(2.35, "meters")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(60, "meters"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(10000, "kilometers")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(7, "feet"),
  7410. weight: math.unit(250, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/archy/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Micro",
  7420. height: math.unit(1, "inch")
  7421. },
  7422. {
  7423. name: "Shorty",
  7424. height: math.unit(5, "feet")
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(7, "feet")
  7429. },
  7430. {
  7431. name: "Macro",
  7432. height: math.unit(600, "meters"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Megamacro",
  7437. height: math.unit(1, "mile")
  7438. },
  7439. ]
  7440. ))
  7441. characterMakers.push(() => makeCharacter(
  7442. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7443. {
  7444. front: {
  7445. height: math.unit(1.65, "meters"),
  7446. weight: math.unit(74, "kg"),
  7447. name: "Front",
  7448. image: {
  7449. source: "./media/characters/berri/front.svg",
  7450. extra: 857 / 837,
  7451. bottom: 18 / 877
  7452. }
  7453. },
  7454. bum: {
  7455. height: math.unit(1.46, "feet"),
  7456. name: "Bum",
  7457. image: {
  7458. source: "./media/characters/berri/bum.svg"
  7459. }
  7460. },
  7461. mouth: {
  7462. height: math.unit(0.44, "feet"),
  7463. name: "Mouth",
  7464. image: {
  7465. source: "./media/characters/berri/mouth.svg"
  7466. }
  7467. },
  7468. paw: {
  7469. height: math.unit(0.826, "feet"),
  7470. name: "Paw",
  7471. image: {
  7472. source: "./media/characters/berri/paw.svg"
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(1.65, "meters")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(60, "m"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(9.213, "km")
  7489. },
  7490. {
  7491. name: "Planet Eater",
  7492. height: math.unit(489, "megameters")
  7493. },
  7494. {
  7495. name: "Teramacro",
  7496. height: math.unit(2471635000000, "meters")
  7497. },
  7498. {
  7499. name: "Examacro",
  7500. height: math.unit(8.0624e+26, "meters")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(1.72, "meters"),
  7509. weight: math.unit(68, "kg"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/lexi/front.svg"
  7513. }
  7514. }
  7515. },
  7516. [
  7517. {
  7518. name: "Very Smol",
  7519. height: math.unit(10, "mm")
  7520. },
  7521. {
  7522. name: "Micro",
  7523. height: math.unit(6.8, "cm"),
  7524. default: true
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(1.72, "m")
  7529. }
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(1.69, "meters"),
  7537. weight: math.unit(68, "kg"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/martin/front.svg",
  7541. extra: 596 / 581
  7542. }
  7543. }
  7544. },
  7545. [
  7546. {
  7547. name: "Micro",
  7548. height: math.unit(6.85, "cm"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(1.69, "m")
  7554. }
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(1.69, "meters"),
  7562. weight: math.unit(68, "kg"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/juno/front.svg"
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(7, "cm")
  7573. },
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(1.89, "m")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(353, "meters"),
  7581. default: true
  7582. }
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(1.93, "meters"),
  7590. weight: math.unit(83, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/samantha/front.svg"
  7594. }
  7595. },
  7596. frontClothed: {
  7597. height: math.unit(1.93, "meters"),
  7598. weight: math.unit(83, "kg"),
  7599. name: "Front (Clothed)",
  7600. image: {
  7601. source: "./media/characters/samantha/front-clothed.svg"
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(1.93, "meters"),
  7606. weight: math.unit(83, "kg"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/samantha/back.svg"
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(1.93, "m")
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(74, "meters"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Macro+",
  7625. height: math.unit(223, "meters"),
  7626. },
  7627. {
  7628. name: "Megamacro",
  7629. height: math.unit(8381, "meters"),
  7630. },
  7631. {
  7632. name: "Megamacro+",
  7633. height: math.unit(12000, "kilometers")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(1.92, "meters"),
  7642. weight: math.unit(80, "kg"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/dr-clay/front.svg"
  7646. }
  7647. },
  7648. frontClothed: {
  7649. height: math.unit(1.92, "meters"),
  7650. weight: math.unit(80, "kg"),
  7651. name: "Front (Clothed)",
  7652. image: {
  7653. source: "./media/characters/dr-clay/front-clothed.svg"
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(1.92, "m")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(214, "meters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Macro+",
  7669. height: math.unit(12.237, "meters"),
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(557, "megameters"),
  7674. },
  7675. {
  7676. name: "Unimaginable",
  7677. height: math.unit(120e9, "lightyears")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(2, "meters"),
  7686. weight: math.unit(80, "kg"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7690. }
  7691. }
  7692. },
  7693. [
  7694. {
  7695. name: "Teramacro",
  7696. height: math.unit(500000, "lightyears"),
  7697. default: true
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7703. {
  7704. crux: {
  7705. height: math.unit(2, "meters"),
  7706. weight: math.unit(150, "kg"),
  7707. name: "Crux",
  7708. image: {
  7709. source: "./media/characters/vemus/crux.svg",
  7710. extra: 1074/936,
  7711. bottom: 23/1097
  7712. }
  7713. },
  7714. skunkTanuki: {
  7715. height: math.unit(2, "meters"),
  7716. weight: math.unit(150, "kg"),
  7717. name: "Skunk-Tanuki",
  7718. image: {
  7719. source: "./media/characters/vemus/skunk-tanuki.svg",
  7720. extra: 926/893,
  7721. bottom: 20/946
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(4, "meters"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Big",
  7733. height: math.unit(8, "meters")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(100, "meters")
  7738. },
  7739. {
  7740. name: "Macro+",
  7741. height: math.unit(1500, "meters")
  7742. },
  7743. {
  7744. name: "Stellar",
  7745. height: math.unit(14e8, "meters")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(2, "meters"),
  7754. weight: math.unit(70, "kg"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/beherit/front.svg",
  7758. extra: 1234/1109,
  7759. bottom: 55/1289
  7760. }
  7761. }
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(6, "feet")
  7767. },
  7768. {
  7769. name: "Lorg",
  7770. height: math.unit(25, "feet"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Lorger",
  7775. height: math.unit(75, "feet")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(200, "meters")
  7780. },
  7781. ]
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(2, "meters"),
  7788. weight: math.unit(150, "kg"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/everett/front.svg",
  7792. extra: 1017/866,
  7793. bottom: 86/1103
  7794. }
  7795. },
  7796. paw: {
  7797. height: math.unit(2 / 3.6, "meters"),
  7798. name: "Paw",
  7799. image: {
  7800. source: "./media/characters/everett/paw.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(15, "feet"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Lorg",
  7812. height: math.unit(70, "feet"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Lorger",
  7817. height: math.unit(250, "feet")
  7818. },
  7819. {
  7820. name: "Macro",
  7821. height: math.unit(500, "meters")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(2, "meters"),
  7830. weight: math.unit(86, "kg"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/rose/front.svg",
  7834. extra: 1785/1636,
  7835. bottom: 30/1815
  7836. },
  7837. form: "liom",
  7838. default: true
  7839. },
  7840. frontSporty: {
  7841. height: math.unit(2, "meters"),
  7842. weight: math.unit(86, "kg"),
  7843. name: "Front (Sporty)",
  7844. image: {
  7845. source: "./media/characters/rose/front-sporty.svg",
  7846. extra: 350/335,
  7847. bottom: 10/360
  7848. },
  7849. form: "liom"
  7850. },
  7851. frontAlt: {
  7852. height: math.unit(1.6, "meters"),
  7853. weight: math.unit(86, "kg"),
  7854. name: "Front (Alt)",
  7855. image: {
  7856. source: "./media/characters/rose/front-alt.svg",
  7857. extra: 299/283,
  7858. bottom: 3/302
  7859. },
  7860. form: "liom"
  7861. },
  7862. plush: {
  7863. height: math.unit(2, "meters"),
  7864. weight: math.unit(86/3, "kg"),
  7865. name: "Plush",
  7866. image: {
  7867. source: "./media/characters/rose/plush.svg",
  7868. extra: 361/337,
  7869. bottom: 11/372
  7870. },
  7871. form: "plush",
  7872. default: true
  7873. },
  7874. faeStanding: {
  7875. height: math.unit(10, "cm"),
  7876. weight: math.unit(10, "grams"),
  7877. name: "Standing",
  7878. image: {
  7879. source: "./media/characters/rose/fae-standing.svg",
  7880. extra: 1189/1060,
  7881. bottom: 27/1216
  7882. },
  7883. form: "fae",
  7884. default: true
  7885. },
  7886. faeSitting: {
  7887. height: math.unit(5, "cm"),
  7888. weight: math.unit(10, "grams"),
  7889. name: "Sitting",
  7890. image: {
  7891. source: "./media/characters/rose/fae-sitting.svg",
  7892. extra: 737/577,
  7893. bottom: 356/1093
  7894. },
  7895. form: "fae"
  7896. },
  7897. faePaw: {
  7898. height: math.unit(1.35, "cm"),
  7899. name: "Paw",
  7900. image: {
  7901. source: "./media/characters/rose/fae-paw.svg"
  7902. },
  7903. form: "fae"
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "True Micro",
  7909. height: math.unit(9, "cm"),
  7910. form: "liom"
  7911. },
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(16, "cm"),
  7915. form: "liom"
  7916. },
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(1.85, "meters"),
  7920. default: true,
  7921. form: "liom"
  7922. },
  7923. {
  7924. name: "Mini-Macro",
  7925. height: math.unit(5, "meters"),
  7926. form: "liom"
  7927. },
  7928. {
  7929. name: "Macro",
  7930. height: math.unit(15, "meters"),
  7931. form: "liom"
  7932. },
  7933. {
  7934. name: "True Macro",
  7935. height: math.unit(40, "meters"),
  7936. form: "liom"
  7937. },
  7938. {
  7939. name: "City Scale",
  7940. height: math.unit(1, "km"),
  7941. form: "liom"
  7942. },
  7943. {
  7944. name: "Plushie",
  7945. height: math.unit(9, "cm"),
  7946. form: "plush",
  7947. default: true
  7948. },
  7949. {
  7950. name: "Fae",
  7951. height: math.unit(10, "cm"),
  7952. form: "fae",
  7953. default: true
  7954. },
  7955. ],
  7956. {
  7957. "liom": {
  7958. name: "Liom"
  7959. },
  7960. "plush": {
  7961. name: "Plush"
  7962. },
  7963. "fae": {
  7964. name: "Fae Fox",
  7965. default: true
  7966. }
  7967. }
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(2, "meters"),
  7974. weight: math.unit(350, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/regal/front.svg"
  7978. }
  7979. },
  7980. back: {
  7981. height: math.unit(2, "meters"),
  7982. weight: math.unit(350, "lbs"),
  7983. name: "Back",
  7984. image: {
  7985. source: "./media/characters/regal/back.svg"
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(350, "feet"),
  7993. default: true
  7994. }
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(4 + 11 / 12, "feet"),
  8002. weight: math.unit(100, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/opal/front.svg"
  8006. }
  8007. },
  8008. frontAlt: {
  8009. height: math.unit(4 + 11 / 12, "feet"),
  8010. weight: math.unit(100, "lbs"),
  8011. name: "Front (Alt)",
  8012. image: {
  8013. source: "./media/characters/opal/front-alt.svg"
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Small",
  8020. height: math.unit(4 + 11 / 12, "feet")
  8021. },
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(20, "feet"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(120, "feet")
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(80, "miles")
  8034. },
  8035. {
  8036. name: "True Size",
  8037. height: math.unit(100000, "lightyears")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(200, "lbs"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/vector-wuff/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Normal",
  8056. height: math.unit(2.8, "meters")
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(450, "meters"),
  8061. default: true
  8062. },
  8063. {
  8064. name: "Megamacro",
  8065. height: math.unit(15, "kilometers")
  8066. }
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(256, "lbs"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/dannik/front.svg"
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(69.57, "meters"),
  8085. default: true
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(120, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/azura-saharah/front.svg"
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(120, "lbs"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/azura-saharah/back.svg"
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(100, "feet"),
  8113. default: true
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8119. {
  8120. side: {
  8121. height: math.unit(5 + 4 / 12, "feet"),
  8122. weight: math.unit(163, "lbs"),
  8123. name: "Side",
  8124. image: {
  8125. source: "./media/characters/kennedy/side.svg"
  8126. }
  8127. }
  8128. },
  8129. [
  8130. {
  8131. name: "Standard Doggo",
  8132. height: math.unit(5 + 4 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Big Doggo",
  8136. height: math.unit(25 + 3 / 12, "feet"),
  8137. default: true
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(5 + 5/12, "feet"),
  8146. weight: math.unit(100, "lbs"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/odios-de-lunar/front.svg",
  8150. extra: 1468/1323,
  8151. bottom: 22/1490
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(3, "inches")
  8159. },
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(5.5, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(100, "feet")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8173. {
  8174. back: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(220, "lbs"),
  8177. name: "Back",
  8178. image: {
  8179. source: "./media/characters/mandake/back.svg"
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(7, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(78, "feet")
  8192. },
  8193. {
  8194. name: "Macro+",
  8195. height: math.unit(300, "meters")
  8196. },
  8197. {
  8198. name: "Macro++",
  8199. height: math.unit(2400, "feet")
  8200. },
  8201. {
  8202. name: "Megamacro",
  8203. height: math.unit(5167, "meters")
  8204. },
  8205. {
  8206. name: "Gigamacro",
  8207. height: math.unit(41769, "miles")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(6, "feet"),
  8216. weight: math.unit(120, "lbs"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/yozey/front.svg"
  8220. }
  8221. },
  8222. frontAlt: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(120, "lbs"),
  8225. name: "Front (Alt)",
  8226. image: {
  8227. source: "./media/characters/yozey/front-alt.svg"
  8228. }
  8229. },
  8230. side: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(120, "lbs"),
  8233. name: "Side",
  8234. image: {
  8235. source: "./media/characters/yozey/side.svg"
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(3, "inches"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(6, "feet")
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(103, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/valeska-voss/front.svg"
  8260. }
  8261. }
  8262. },
  8263. [
  8264. {
  8265. name: "Mini-Sized Sub",
  8266. height: math.unit(3.1, "inches")
  8267. },
  8268. {
  8269. name: "Mid-Sized Sub",
  8270. height: math.unit(6.2, "inches")
  8271. },
  8272. {
  8273. name: "Full-Sized Sub",
  8274. height: math.unit(9.3, "inches")
  8275. },
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(5 + 2 / 12, "foot"),
  8279. default: true
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(160, "lbs"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/gene-zeta/front.svg",
  8292. extra: 3006 / 2826,
  8293. bottom: 182 / 3188
  8294. }
  8295. }
  8296. },
  8297. [
  8298. {
  8299. name: "Micro",
  8300. height: math.unit(6, "inches")
  8301. },
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(5 + 11 / 12, "foot"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(140, "feet")
  8310. },
  8311. {
  8312. name: "Supercharged",
  8313. height: math.unit(2500, "feet")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(6, "feet"),
  8322. weight: math.unit(350, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/razinox/front.svg",
  8326. extra: 1686 / 1548,
  8327. bottom: 28.2 / 1868
  8328. }
  8329. },
  8330. back: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(350, "lbs"),
  8333. name: "Back",
  8334. image: {
  8335. source: "./media/characters/razinox/back.svg",
  8336. extra: 1660 / 1590,
  8337. bottom: 15 / 1665
  8338. }
  8339. },
  8340. },
  8341. [
  8342. {
  8343. name: "Normal",
  8344. height: math.unit(10 + 8 / 12, "foot")
  8345. },
  8346. {
  8347. name: "Minimacro",
  8348. height: math.unit(15, "foot")
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(60, "foot"),
  8353. default: true
  8354. },
  8355. {
  8356. name: "Megamacro",
  8357. height: math.unit(5, "miles")
  8358. },
  8359. {
  8360. name: "Gigamacro",
  8361. height: math.unit(6000, "miles")
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(150, "lbs"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/cobalt/front.svg"
  8374. }
  8375. }
  8376. },
  8377. [
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(8 + 1 / 12, "foot")
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(111, "foot"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Supracosmic",
  8389. height: math.unit(1e42, "feet")
  8390. },
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8395. {
  8396. front: {
  8397. height: math.unit(5, "inches"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/amanda/front.svg",
  8401. extra: 926/791,
  8402. bottom: 38/964
  8403. }
  8404. },
  8405. back: {
  8406. height: math.unit(5, "inches"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/amanda/back.svg",
  8410. extra: 909/805,
  8411. bottom: 43/952
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Micro",
  8418. height: math.unit(5, "inches"),
  8419. default: true
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(2.75, "meters"),
  8428. weight: math.unit(1200, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/teal/front.svg",
  8432. extra: 2463 / 2320,
  8433. bottom: 166 / 2629
  8434. }
  8435. },
  8436. back: {
  8437. height: math.unit(2.75, "meters"),
  8438. weight: math.unit(1200, "lb"),
  8439. name: "Back",
  8440. image: {
  8441. source: "./media/characters/teal/back.svg",
  8442. extra: 2580 / 2489,
  8443. bottom: 151 / 2731
  8444. }
  8445. },
  8446. sitting: {
  8447. height: math.unit(1.9, "meters"),
  8448. weight: math.unit(1200, "lb"),
  8449. name: "Sitting",
  8450. image: {
  8451. source: "./media/characters/teal/sitting.svg",
  8452. extra: 623 / 590,
  8453. bottom: 121 / 744
  8454. }
  8455. },
  8456. standing: {
  8457. height: math.unit(2.75, "meters"),
  8458. weight: math.unit(1200, "lb"),
  8459. name: "Standing",
  8460. image: {
  8461. source: "./media/characters/teal/standing.svg",
  8462. extra: 923 / 893,
  8463. bottom: 60 / 983
  8464. }
  8465. },
  8466. stretching: {
  8467. height: math.unit(3.65, "meters"),
  8468. weight: math.unit(1200, "lb"),
  8469. name: "Stretching",
  8470. image: {
  8471. source: "./media/characters/teal/stretching.svg",
  8472. extra: 1276 / 1244,
  8473. bottom: 0 / 1276
  8474. }
  8475. },
  8476. legged: {
  8477. height: math.unit(1.3, "meters"),
  8478. weight: math.unit(100, "lb"),
  8479. name: "Legged",
  8480. image: {
  8481. source: "./media/characters/teal/legged.svg",
  8482. extra: 462 / 437,
  8483. bottom: 24 / 486
  8484. }
  8485. },
  8486. naga: {
  8487. height: math.unit(5.4, "meters"),
  8488. weight: math.unit(4000, "lb"),
  8489. name: "Naga",
  8490. image: {
  8491. source: "./media/characters/teal/naga.svg",
  8492. extra: 1902 / 1858,
  8493. bottom: 0 / 1902
  8494. }
  8495. },
  8496. hand: {
  8497. height: math.unit(0.52, "meters"),
  8498. name: "Hand",
  8499. image: {
  8500. source: "./media/characters/teal/hand.svg"
  8501. }
  8502. },
  8503. maw: {
  8504. height: math.unit(0.43, "meters"),
  8505. name: "Maw",
  8506. image: {
  8507. source: "./media/characters/teal/maw.svg"
  8508. }
  8509. },
  8510. slit: {
  8511. height: math.unit(0.25, "meters"),
  8512. name: "Slit",
  8513. image: {
  8514. source: "./media/characters/teal/slit.svg"
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(2.75, "meters"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(300, "feet")
  8527. },
  8528. {
  8529. name: "Macro+",
  8530. height: math.unit(2000, "feet")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8536. {
  8537. frontCat: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(180, "lbs"),
  8540. name: "Front (Cat)",
  8541. image: {
  8542. source: "./media/characters/ravin-amulet/front-cat.svg"
  8543. }
  8544. },
  8545. frontCatAlt: {
  8546. height: math.unit(6, "feet"),
  8547. weight: math.unit(180, "lbs"),
  8548. name: "Front (Alt, Cat)",
  8549. image: {
  8550. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8551. }
  8552. },
  8553. frontWerewolf: {
  8554. height: math.unit(6 * 1.2, "feet"),
  8555. weight: math.unit(225, "lbs"),
  8556. name: "Front (Werewolf)",
  8557. image: {
  8558. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8559. }
  8560. },
  8561. backWerewolf: {
  8562. height: math.unit(6 * 1.2, "feet"),
  8563. weight: math.unit(225, "lbs"),
  8564. name: "Back (Werewolf)",
  8565. image: {
  8566. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Nano",
  8573. height: math.unit(1, "micrometer")
  8574. },
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(1, "inch")
  8578. },
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(6, "feet"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(60, "feet")
  8587. }
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(165, "lbs"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/fluoresce/front.svg"
  8599. }
  8600. }
  8601. },
  8602. [
  8603. {
  8604. name: "Micro",
  8605. height: math.unit(6, "cm")
  8606. },
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(5 + 7 / 12, "feet"),
  8610. default: true
  8611. },
  8612. {
  8613. name: "Macro",
  8614. height: math.unit(56, "feet")
  8615. },
  8616. {
  8617. name: "Megamacro",
  8618. height: math.unit(1.9, "miles")
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8624. {
  8625. front: {
  8626. height: math.unit(9 + 6 / 12, "feet"),
  8627. weight: math.unit(523, "lbs"),
  8628. name: "Side",
  8629. image: {
  8630. source: "./media/characters/aurora/side.svg",
  8631. extra: 474/393,
  8632. bottom: 5/479
  8633. }
  8634. }
  8635. },
  8636. [
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(9 + 6 / 12, "feet")
  8640. },
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(96, "feet"),
  8644. default: true
  8645. },
  8646. {
  8647. name: "Macro+",
  8648. height: math.unit(243, "feet")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(194, "cm"),
  8657. weight: math.unit(90, "kg"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/ranek/front.svg",
  8661. extra: 1862/1791,
  8662. bottom: 80/1942
  8663. }
  8664. },
  8665. back: {
  8666. height: math.unit(194, "cm"),
  8667. weight: math.unit(90, "kg"),
  8668. name: "Back",
  8669. image: {
  8670. source: "./media/characters/ranek/back.svg",
  8671. extra: 1853/1787,
  8672. bottom: 74/1927
  8673. }
  8674. },
  8675. feral: {
  8676. height: math.unit(30, "cm"),
  8677. weight: math.unit(1.6, "lbs"),
  8678. name: "Feral",
  8679. image: {
  8680. source: "./media/characters/ranek/feral.svg",
  8681. extra: 990/631,
  8682. bottom: 29/1019
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(194, "cm"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(100, "meters")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(5 + 6 / 12, "feet"),
  8703. weight: math.unit(153, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/andrew-cooper/front.svg"
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Nano",
  8713. height: math.unit(1, "mm")
  8714. },
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(2, "inches")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(5 + 6 / 12, "feet"),
  8722. default: true
  8723. }
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(180, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/akane-sato/front.svg",
  8735. extra: 1219 / 1140
  8736. }
  8737. },
  8738. back: {
  8739. height: math.unit(6, "feet"),
  8740. weight: math.unit(180, "lbs"),
  8741. name: "Back",
  8742. image: {
  8743. source: "./media/characters/akane-sato/back.svg",
  8744. extra: 1219 / 1170
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(2.5, "meters")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(250, "meters"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(25, "km")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(65, "kg"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/rook/front.svg",
  8773. extra: 960 / 950
  8774. }
  8775. }
  8776. },
  8777. [
  8778. {
  8779. name: "Normal",
  8780. height: math.unit(8.8, "feet")
  8781. },
  8782. {
  8783. name: "Macro",
  8784. height: math.unit(88, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Megamacro",
  8789. height: math.unit(8, "miles")
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(12 + 2 / 12, "feet"),
  8798. weight: math.unit(808, "lbs"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/prodigy/front.svg"
  8802. }
  8803. }
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(12 + 2 / 12, "feet"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(143, "feet")
  8814. },
  8815. {
  8816. name: "Macro+",
  8817. height: math.unit(400, "feet")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(225, "lbs"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/daniel/front.svg"
  8830. }
  8831. },
  8832. leaning: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(225, "lbs"),
  8835. name: "Leaning",
  8836. image: {
  8837. source: "./media/characters/daniel/leaning.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Macro",
  8844. height: math.unit(1000, "feet"),
  8845. default: true
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(88, "lbs"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/chiros/front.svg",
  8858. extra: 306 / 226
  8859. }
  8860. },
  8861. side: {
  8862. height: math.unit(6, "feet"),
  8863. weight: math.unit(88, "lbs"),
  8864. name: "Side",
  8865. image: {
  8866. source: "./media/characters/chiros/side.svg",
  8867. extra: 306 / 226
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(6, "cm"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8881. {
  8882. front: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(100, "lbs"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/selka/front.svg",
  8888. extra: 947 / 887
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(5, "cm"),
  8896. default: true
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(8 + 3 / 12, "feet"),
  8905. weight: math.unit(424, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/verin/front.svg",
  8909. extra: 1845 / 1550
  8910. }
  8911. },
  8912. frontArmored: {
  8913. height: math.unit(8 + 3 / 12, "feet"),
  8914. weight: math.unit(424, "lbs"),
  8915. name: "Front (Armored)",
  8916. image: {
  8917. source: "./media/characters/verin/front-armor.svg",
  8918. extra: 1845 / 1550,
  8919. bottom: 0.01
  8920. }
  8921. },
  8922. back: {
  8923. height: math.unit(8 + 3 / 12, "feet"),
  8924. weight: math.unit(424, "lbs"),
  8925. name: "Back",
  8926. image: {
  8927. source: "./media/characters/verin/back.svg",
  8928. bottom: 0.1,
  8929. extra: 1
  8930. }
  8931. },
  8932. foot: {
  8933. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8934. name: "Foot",
  8935. image: {
  8936. source: "./media/characters/verin/foot.svg"
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(8 + 3 / 12, "feet")
  8944. },
  8945. {
  8946. name: "Minimacro",
  8947. height: math.unit(21, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(626, "feet")
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(2.718, "meters"),
  8961. weight: math.unit(150, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/sovrim-terraquian/front.svg",
  8965. extra: 1752/1689,
  8966. bottom: 36/1788
  8967. }
  8968. },
  8969. back: {
  8970. height: math.unit(2.718, "meters"),
  8971. weight: math.unit(150, "lbs"),
  8972. name: "Back",
  8973. image: {
  8974. source: "./media/characters/sovrim-terraquian/back.svg",
  8975. extra: 1698/1657,
  8976. bottom: 58/1756
  8977. }
  8978. },
  8979. tongue: {
  8980. height: math.unit(2.865, "feet"),
  8981. name: "Tongue",
  8982. image: {
  8983. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8984. }
  8985. },
  8986. hand: {
  8987. height: math.unit(1.61, "feet"),
  8988. name: "Hand",
  8989. image: {
  8990. source: "./media/characters/sovrim-terraquian/hand.svg"
  8991. }
  8992. },
  8993. foot: {
  8994. height: math.unit(1.05, "feet"),
  8995. name: "Foot",
  8996. image: {
  8997. source: "./media/characters/sovrim-terraquian/foot.svg"
  8998. }
  8999. },
  9000. footAlt: {
  9001. height: math.unit(0.88, "feet"),
  9002. name: "Foot (Alt)",
  9003. image: {
  9004. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(2, "inches")
  9012. },
  9013. {
  9014. name: "Small",
  9015. height: math.unit(1, "meter")
  9016. },
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(Math.E, "meters"),
  9020. default: true
  9021. },
  9022. {
  9023. name: "Macro",
  9024. height: math.unit(20, "meters")
  9025. },
  9026. {
  9027. name: "Macro+",
  9028. height: math.unit(400, "meters")
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(7, "feet"),
  9037. weight: math.unit(489, "lbs"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/reece-silvermane/front.svg",
  9041. bottom: 0.02,
  9042. extra: 1
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(1.5, "miles"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(78, "kg"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/kane/front.svg",
  9063. extra: 978 / 899
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(2.1, "m"),
  9071. },
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(1, "km"),
  9075. default: true
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(200, "kg"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/tegon/front.svg",
  9088. bottom: 0.01,
  9089. extra: 1
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(1, "inch")
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(6 + 3 / 12, "feet"),
  9101. default: true
  9102. },
  9103. {
  9104. name: "Macro",
  9105. height: math.unit(300, "feet")
  9106. },
  9107. {
  9108. name: "Megamacro",
  9109. height: math.unit(69, "miles")
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9115. {
  9116. side: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(2304, "lbs"),
  9119. name: "Side",
  9120. image: {
  9121. source: "./media/characters/arcturax/side.svg",
  9122. extra: 790 / 376,
  9123. bottom: 0.01
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Micro",
  9130. height: math.unit(2, "inch")
  9131. },
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(6, "feet")
  9135. },
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(39, "feet"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Megamacro",
  9143. height: math.unit(7, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(50, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/sentri/front.svg",
  9156. extra: 1750 / 1570,
  9157. bottom: 0.025
  9158. }
  9159. },
  9160. frontAlt: {
  9161. height: math.unit(6, "feet"),
  9162. weight: math.unit(50, "lbs"),
  9163. name: "Front (Alt)",
  9164. image: {
  9165. source: "./media/characters/sentri/front-alt.svg",
  9166. extra: 1750 / 1570,
  9167. bottom: 0.025
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(15, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(2500, "feet")
  9180. }
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(5 + 8 / 12, "feet"),
  9188. weight: math.unit(130, "lbs"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/corvin/front.svg",
  9192. extra: 1803 / 1629
  9193. }
  9194. },
  9195. frontShirt: {
  9196. height: math.unit(5 + 8 / 12, "feet"),
  9197. weight: math.unit(130, "lbs"),
  9198. name: "Front (Shirt)",
  9199. image: {
  9200. source: "./media/characters/corvin/front-shirt.svg",
  9201. extra: 1803 / 1629
  9202. }
  9203. },
  9204. frontPoncho: {
  9205. height: math.unit(5 + 8 / 12, "feet"),
  9206. weight: math.unit(130, "lbs"),
  9207. name: "Front (Poncho)",
  9208. image: {
  9209. source: "./media/characters/corvin/front-poncho.svg",
  9210. extra: 1803 / 1629
  9211. }
  9212. },
  9213. side: {
  9214. height: math.unit(5 + 8 / 12, "feet"),
  9215. weight: math.unit(130, "lbs"),
  9216. name: "Side",
  9217. image: {
  9218. source: "./media/characters/corvin/side.svg",
  9219. extra: 1012 / 945
  9220. }
  9221. },
  9222. back: {
  9223. height: math.unit(5 + 8 / 12, "feet"),
  9224. weight: math.unit(130, "lbs"),
  9225. name: "Back",
  9226. image: {
  9227. source: "./media/characters/corvin/back.svg",
  9228. extra: 1803 / 1629
  9229. }
  9230. },
  9231. },
  9232. [
  9233. {
  9234. name: "Micro",
  9235. height: math.unit(3, "inches")
  9236. },
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(5 + 8 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Macro",
  9243. height: math.unit(300, "feet"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Megamacro",
  9248. height: math.unit(500, "miles")
  9249. }
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(6, "feet"),
  9257. weight: math.unit(135, "lbs"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/q/front.svg",
  9261. extra: 854 / 752,
  9262. bottom: 0.005
  9263. }
  9264. },
  9265. back: {
  9266. height: math.unit(6, "feet"),
  9267. weight: math.unit(130, "lbs"),
  9268. name: "Back",
  9269. image: {
  9270. source: "./media/characters/q/back.svg",
  9271. extra: 854 / 752
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(90, "feet"),
  9279. default: true
  9280. },
  9281. {
  9282. name: "Extra Macro",
  9283. height: math.unit(300, "feet"),
  9284. },
  9285. {
  9286. name: "BIG WALF",
  9287. height: math.unit(750, "feet"),
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9293. {
  9294. front: {
  9295. height: math.unit(3, "feet"),
  9296. weight: math.unit(28, "lbs"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/citrine/front.svg"
  9300. }
  9301. }
  9302. },
  9303. [
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(3, "feet"),
  9307. default: true
  9308. }
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9313. {
  9314. front: {
  9315. height: math.unit(14, "feet"),
  9316. weight: math.unit(1450, "kg"),
  9317. preyCapacity: math.unit(15, "people"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/aura-starwind/front.svg",
  9321. extra: 1440/1327,
  9322. bottom: 11/1451
  9323. }
  9324. },
  9325. side: {
  9326. height: math.unit(14, "feet"),
  9327. weight: math.unit(1450, "kg"),
  9328. preyCapacity: math.unit(15, "people"),
  9329. name: "Side",
  9330. image: {
  9331. source: "./media/characters/aura-starwind/side.svg",
  9332. extra: 1654 / 1497
  9333. }
  9334. },
  9335. taur: {
  9336. height: math.unit(18, "feet"),
  9337. weight: math.unit(5500, "kg"),
  9338. preyCapacity: math.unit(50, "people"),
  9339. name: "Taur",
  9340. image: {
  9341. source: "./media/characters/aura-starwind/taur.svg",
  9342. extra: 1760 / 1650
  9343. }
  9344. },
  9345. feral: {
  9346. height: math.unit(46, "feet"),
  9347. weight: math.unit(25000, "kg"),
  9348. preyCapacity: math.unit(120, "people"),
  9349. name: "Feral",
  9350. image: {
  9351. source: "./media/characters/aura-starwind/feral.svg"
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Normal",
  9358. height: math.unit(14, "feet"),
  9359. default: true
  9360. },
  9361. {
  9362. name: "Macro",
  9363. height: math.unit(50, "meters")
  9364. },
  9365. {
  9366. name: "Megamacro",
  9367. height: math.unit(5000, "meters")
  9368. },
  9369. {
  9370. name: "Gigamacro",
  9371. height: math.unit(100000, "kilometers")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(2 + 7 / 12, "feet"),
  9380. weight: math.unit(32, "lbs"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/rivet/front.svg",
  9384. extra: 1716 / 1658,
  9385. bottom: 0.03
  9386. }
  9387. },
  9388. foot: {
  9389. height: math.unit(0.551, "feet"),
  9390. name: "Rivet's Foot",
  9391. image: {
  9392. source: "./media/characters/rivet/foot.svg"
  9393. },
  9394. rename: true
  9395. }
  9396. },
  9397. [
  9398. {
  9399. name: "Micro",
  9400. height: math.unit(1.5, "inches"),
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(2 + 7 / 12, "feet"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "Macro",
  9409. height: math.unit(85, "feet")
  9410. },
  9411. {
  9412. name: "Megamacro",
  9413. height: math.unit(2.2, "km")
  9414. }
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9419. {
  9420. front: {
  9421. height: math.unit(5 + 9 / 12, "feet"),
  9422. weight: math.unit(150, "lbs"),
  9423. name: "Front",
  9424. image: {
  9425. source: "./media/characters/coffee/front.svg",
  9426. extra: 946/880,
  9427. bottom: 66/1012
  9428. }
  9429. },
  9430. foot: {
  9431. height: math.unit(1.29, "feet"),
  9432. name: "Foot",
  9433. image: {
  9434. source: "./media/characters/coffee/foot.svg"
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Micro",
  9441. height: math.unit(2, "inches"),
  9442. },
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(5 + 9 / 12, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Macro",
  9450. height: math.unit(800, "feet")
  9451. },
  9452. {
  9453. name: "Megamacro",
  9454. height: math.unit(25, "miles")
  9455. }
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(200, "lbs"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/chari-gal/front.svg",
  9467. extra: 735/649,
  9468. bottom: 55/790
  9469. },
  9470. form: "normal",
  9471. default: true
  9472. },
  9473. back: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(200, "lb"),
  9476. name: "Back",
  9477. image: {
  9478. source: "./media/characters/chari-gal/back.svg",
  9479. extra: 762/666,
  9480. bottom: 31/793
  9481. },
  9482. form: "normal"
  9483. },
  9484. mouth: {
  9485. height: math.unit(1.35, "feet"),
  9486. name: "Mouth",
  9487. image: {
  9488. source: "./media/characters/chari-gal/mouth.svg"
  9489. },
  9490. form: "normal"
  9491. },
  9492. gigantamax: {
  9493. height: math.unit(6 * 16, "feet"),
  9494. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9495. name: "Gigantamax",
  9496. image: {
  9497. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9498. extra: 1507/1149,
  9499. bottom: 254/1761
  9500. },
  9501. form: "gigantamax",
  9502. default: true
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Normal",
  9508. height: math.unit(5 + 7 / 12, "feet"),
  9509. form: "normal",
  9510. },
  9511. {
  9512. name: "Macro",
  9513. height: math.unit(200, "feet"),
  9514. default: true,
  9515. form: "normal"
  9516. },
  9517. {
  9518. name: "Normal",
  9519. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9520. form: "gigantamax",
  9521. },
  9522. {
  9523. name: "Macro",
  9524. height: math.unit(16 * 200, "feet"),
  9525. default: true,
  9526. form: "gigantamax"
  9527. },
  9528. ],
  9529. {
  9530. "normal": {
  9531. name: "Normal",
  9532. default: true
  9533. },
  9534. "gigantamax": {
  9535. name: "Gigantamax",
  9536. },
  9537. }
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9541. {
  9542. front: {
  9543. height: math.unit(6, "feet"),
  9544. weight: math.unit(150, "lbs"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/nova/front.svg",
  9548. extra: 5000 / 4722,
  9549. bottom: 0.02
  9550. }
  9551. }
  9552. },
  9553. [
  9554. {
  9555. name: "Micro-",
  9556. height: math.unit(0.8, "inches")
  9557. },
  9558. {
  9559. name: "Micro",
  9560. height: math.unit(2, "inches"),
  9561. default: true
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9567. {
  9568. koboldFront: {
  9569. height: math.unit(3 + 1 / 12, "feet"),
  9570. weight: math.unit(21.7, "lbs"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/argent/kobold-front.svg",
  9574. extra: 1471 / 1331,
  9575. bottom: 100.8 / 1575.5
  9576. },
  9577. form: "kobold",
  9578. default: true
  9579. },
  9580. dragonFront: {
  9581. height: math.unit(75, "inches"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/argent/dragon-front.svg",
  9585. extra: 1389/1248,
  9586. bottom: 54/1443
  9587. },
  9588. form: "dragon",
  9589. },
  9590. dragonBack: {
  9591. height: math.unit(75, "inches"),
  9592. name: "Back",
  9593. image: {
  9594. source: "./media/characters/argent/dragon-back.svg",
  9595. extra: 1399/1271,
  9596. bottom: 23/1422
  9597. },
  9598. form: "dragon",
  9599. },
  9600. dragonDressed: {
  9601. height: math.unit(75, "inches"),
  9602. name: "Dressed",
  9603. image: {
  9604. source: "./media/characters/argent/dragon-dressed.svg",
  9605. extra: 1350/1215,
  9606. bottom: 26/1376
  9607. },
  9608. form: "dragon"
  9609. },
  9610. dragonHead: {
  9611. height: math.unit(23.5, "inches"),
  9612. name: "Head",
  9613. image: {
  9614. source: "./media/characters/argent/dragon-head.svg"
  9615. },
  9616. form: "dragon",
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Micro",
  9622. height: math.unit(2, "inches"),
  9623. form: "kobold",
  9624. },
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(3 + 1 / 12, "feet"),
  9628. form: "kobold",
  9629. default: true
  9630. },
  9631. {
  9632. name: "Macro",
  9633. height: math.unit(120, "feet"),
  9634. form: "kobold",
  9635. },
  9636. {
  9637. name: "Speck",
  9638. height: math.unit(1, "mm"),
  9639. form: "dragon",
  9640. },
  9641. {
  9642. name: "Tiny",
  9643. height: math.unit(1, "cm"),
  9644. form: "dragon",
  9645. },
  9646. {
  9647. name: "Micro",
  9648. height: math.unit(5, "cm"),
  9649. form: "dragon",
  9650. },
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(75, "inches"),
  9654. form: "dragon",
  9655. default: true
  9656. },
  9657. {
  9658. name: "Extra Tall",
  9659. height: math.unit(9, "feet"),
  9660. form: "dragon",
  9661. },
  9662. {
  9663. name: "Inconvenient",
  9664. height: math.unit(5, "meters"),
  9665. form: "dragon",
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(70, "meters"),
  9670. form: "dragon",
  9671. },
  9672. {
  9673. name: "Macro+",
  9674. height: math.unit(250, "meters"),
  9675. form: "dragon",
  9676. },
  9677. {
  9678. name: "Megamacro",
  9679. height: math.unit(20, "km"),
  9680. form: "dragon",
  9681. },
  9682. {
  9683. name: "Mountainous",
  9684. height: math.unit(100, "km"),
  9685. form: "dragon",
  9686. },
  9687. {
  9688. name: "Continental",
  9689. height: math.unit(2, "megameters"),
  9690. form: "dragon",
  9691. },
  9692. {
  9693. name: "Too Big",
  9694. height: math.unit(900, "megameters"),
  9695. form: "dragon",
  9696. },
  9697. ],
  9698. {
  9699. "kobold": {
  9700. name: "Kobold",
  9701. default: true
  9702. },
  9703. "dragon": {
  9704. name: "Dragon",
  9705. },
  9706. }
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9710. {
  9711. lamp: {
  9712. height: math.unit(7 * 1559 / 989, "feet"),
  9713. name: "Magic Lamp",
  9714. image: {
  9715. source: "./media/characters/mira-al-cul/lamp.svg",
  9716. extra: 1617 / 1559
  9717. }
  9718. },
  9719. front: {
  9720. height: math.unit(7, "feet"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/mira-al-cul/front.svg",
  9724. extra: 1044 / 990
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Heavily Restricted",
  9731. height: math.unit(7 * 1559 / 989, "feet")
  9732. },
  9733. {
  9734. name: "Freshly Freed",
  9735. height: math.unit(50 * 1559 / 989, "feet")
  9736. },
  9737. {
  9738. name: "World Encompassing",
  9739. height: math.unit(10000 * 1559 / 989, "miles")
  9740. },
  9741. {
  9742. name: "Galactic",
  9743. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9744. },
  9745. {
  9746. name: "Palmed Universe",
  9747. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Multiversal Matriarch",
  9752. height: math.unit(8.87e10, "yottameters")
  9753. },
  9754. {
  9755. name: "Void Mother",
  9756. height: math.unit(3.14e110, "yottaparsecs")
  9757. },
  9758. {
  9759. name: "Toying with Transcendence",
  9760. height: math.unit(1e307, "meters")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9766. {
  9767. front: {
  9768. height: math.unit(17 + 1 / 12, "feet"),
  9769. weight: math.unit(476.2 * 5, "lbs"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/kuro-shi-uchū/front.svg",
  9773. extra: 2329 / 1835,
  9774. bottom: 0.02
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Micro",
  9781. height: math.unit(2, "inches")
  9782. },
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(12, "meters")
  9786. },
  9787. {
  9788. name: "Planetary",
  9789. height: math.unit(0.00929, "AU"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Universal",
  9794. height: math.unit(20, "gigaparsecs")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(5 + 2 / 12, "feet"),
  9803. weight: math.unit(120, "lbs"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/katherine/front.svg",
  9807. extra: 2075 / 1969
  9808. }
  9809. },
  9810. dress: {
  9811. height: math.unit(5 + 2 / 12, "feet"),
  9812. weight: math.unit(120, "lbs"),
  9813. name: "Dress",
  9814. image: {
  9815. source: "./media/characters/katherine/dress.svg",
  9816. extra: 2258 / 2064
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Micro",
  9823. height: math.unit(1, "inches"),
  9824. default: true
  9825. },
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 2 / 12, "feet")
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(100, "meters")
  9833. },
  9834. {
  9835. name: "Megamacro",
  9836. height: math.unit(80, "miles")
  9837. },
  9838. ]
  9839. ))
  9840. characterMakers.push(() => makeCharacter(
  9841. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9842. {
  9843. front: {
  9844. height: math.unit(7 + 8 / 12, "feet"),
  9845. weight: math.unit(250, "lbs"),
  9846. name: "Front",
  9847. image: {
  9848. source: "./media/characters/yevis/front.svg",
  9849. extra: 1938 / 1755
  9850. }
  9851. }
  9852. },
  9853. [
  9854. {
  9855. name: "Mortal",
  9856. height: math.unit(7 + 8 / 12, "feet")
  9857. },
  9858. {
  9859. name: "Battle",
  9860. height: math.unit(25 + 11 / 12, "feet")
  9861. },
  9862. {
  9863. name: "Wrath",
  9864. height: math.unit(1654 + 11 / 12, "feet")
  9865. },
  9866. {
  9867. name: "Planet Destroyer",
  9868. height: math.unit(12000, "miles")
  9869. },
  9870. {
  9871. name: "Galaxy Conqueror",
  9872. height: math.unit(1.45, "zettameters"),
  9873. default: true
  9874. },
  9875. {
  9876. name: "Universal War",
  9877. height: math.unit(184, "gigaparsecs")
  9878. },
  9879. {
  9880. name: "Eternity War",
  9881. height: math.unit(1.98e55, "yottaparsecs")
  9882. },
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9887. {
  9888. front: {
  9889. height: math.unit(5 + 8 / 12, "feet"),
  9890. weight: math.unit(63, "kg"),
  9891. name: "Front",
  9892. image: {
  9893. source: "./media/characters/xavier/front.svg",
  9894. extra: 944 / 883
  9895. }
  9896. },
  9897. frontStretch: {
  9898. height: math.unit(5 + 8 / 12, "feet"),
  9899. weight: math.unit(63, "kg"),
  9900. name: "Stretching",
  9901. image: {
  9902. source: "./media/characters/xavier/front-stretch.svg",
  9903. extra: 962 / 820
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(5 + 8 / 12, "feet")
  9911. },
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(100, "meters"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "McLargeHuge",
  9919. height: math.unit(10, "miles")
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9925. {
  9926. front: {
  9927. height: math.unit(5 + 5 / 12, "feet"),
  9928. weight: math.unit(150, "lb"),
  9929. name: "Front",
  9930. image: {
  9931. source: "./media/characters/joshii/front.svg",
  9932. extra: 765 / 653,
  9933. bottom: 51 / 816
  9934. }
  9935. },
  9936. foot: {
  9937. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9938. name: "Foot",
  9939. image: {
  9940. source: "./media/characters/joshii/foot.svg"
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(2, "inches")
  9948. },
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(5 + 5 / 12, "feet")
  9952. },
  9953. {
  9954. name: "Macro",
  9955. height: math.unit(785, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(24.5, "miles")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(150, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/goddess-elizabeth/front.svg",
  9973. extra: 1800 / 1525,
  9974. bottom: 0.005
  9975. }
  9976. },
  9977. foot: {
  9978. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9979. name: "Foot",
  9980. image: {
  9981. source: "./media/characters/goddess-elizabeth/foot.svg"
  9982. }
  9983. },
  9984. mouth: {
  9985. height: math.unit(6, "feet"),
  9986. name: "Mouth",
  9987. image: {
  9988. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Micro",
  9995. height: math.unit(12, "feet")
  9996. },
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(80, "miles"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Macro",
  10004. height: math.unit(15000, "parsecs")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(5 + 9 / 12, "feet"),
  10013. weight: math.unit(144, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/kara/front.svg"
  10017. }
  10018. },
  10019. feet: {
  10020. height: math.unit(6 / 6.765, "feet"),
  10021. name: "Kara's Feet",
  10022. rename: true,
  10023. image: {
  10024. source: "./media/characters/kara/feet.svg"
  10025. }
  10026. },
  10027. },
  10028. [
  10029. {
  10030. name: "Normal",
  10031. height: math.unit(5 + 9 / 12, "feet")
  10032. },
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(174, "feet"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(18, "feet"),
  10045. weight: math.unit(4050, "lb"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/tyrone/front.svg",
  10049. extra: 2405 / 2270,
  10050. bottom: 182 / 2587
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(18, "feet"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Macro",
  10062. height: math.unit(300, "feet")
  10063. },
  10064. {
  10065. name: "Megamacro",
  10066. height: math.unit(15, "km")
  10067. },
  10068. {
  10069. name: "Gigamacro",
  10070. height: math.unit(500, "km")
  10071. },
  10072. {
  10073. name: "Teramacro",
  10074. height: math.unit(0.5, "gigameters")
  10075. },
  10076. {
  10077. name: "Omnimacro",
  10078. height: math.unit(1e252, "yottauniverse")
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10084. {
  10085. front: {
  10086. height: math.unit(7 + 8 / 12, "feet"),
  10087. weight: math.unit(120, "lb"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/danny/front.svg",
  10091. extra: 1490 / 1350
  10092. }
  10093. },
  10094. back: {
  10095. height: math.unit(7 + 8 / 12, "feet"),
  10096. weight: math.unit(120, "lb"),
  10097. name: "Back",
  10098. image: {
  10099. source: "./media/characters/danny/back.svg",
  10100. extra: 1490 / 1350
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(7 + 8 / 12, "feet"),
  10108. default: true
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(3.5, "inches"),
  10117. weight: math.unit(19, "grams"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/mallow/front.svg",
  10121. extra: 471 / 431
  10122. }
  10123. },
  10124. back: {
  10125. height: math.unit(3.5, "inches"),
  10126. weight: math.unit(19, "grams"),
  10127. name: "Back",
  10128. image: {
  10129. source: "./media/characters/mallow/back.svg",
  10130. extra: 471 / 431
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(3.5, "inches"),
  10138. default: true
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(9, "feet"),
  10147. weight: math.unit(230, "kg"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/starry-aqua/front.svg"
  10151. }
  10152. },
  10153. back: {
  10154. height: math.unit(9, "feet"),
  10155. weight: math.unit(230, "kg"),
  10156. name: "Back",
  10157. image: {
  10158. source: "./media/characters/starry-aqua/back.svg"
  10159. }
  10160. },
  10161. hand: {
  10162. height: math.unit(9 * 0.1168, "feet"),
  10163. name: "Hand",
  10164. image: {
  10165. source: "./media/characters/starry-aqua/hand.svg"
  10166. }
  10167. },
  10168. foot: {
  10169. height: math.unit(9 * 0.18, "feet"),
  10170. name: "Foot",
  10171. image: {
  10172. source: "./media/characters/starry-aqua/foot.svg"
  10173. }
  10174. }
  10175. },
  10176. [
  10177. {
  10178. name: "Micro",
  10179. height: math.unit(3, "inches")
  10180. },
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(9, "feet")
  10184. },
  10185. {
  10186. name: "Macro",
  10187. height: math.unit(300, "feet"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Megamacro",
  10192. height: math.unit(3200, "feet")
  10193. }
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(15, "feet"),
  10201. weight: math.unit(5026, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/luka-towers/front.svg",
  10205. extra: 1269/1133,
  10206. bottom: 51/1320
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(15, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Minimacro",
  10218. height: math.unit(25, "feet")
  10219. },
  10220. {
  10221. name: "Macro",
  10222. height: math.unit(320, "feet")
  10223. },
  10224. {
  10225. name: "Megamacro",
  10226. height: math.unit(35000, "feet")
  10227. },
  10228. {
  10229. name: "Gigamacro",
  10230. height: math.unit(4000, "miles")
  10231. },
  10232. {
  10233. name: "Teramacro",
  10234. height: math.unit(15000, "miles")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(150, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/natalie-nightring/front.svg",
  10247. extra: 1,
  10248. bottom: 0.06
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Uh Oh",
  10255. height: math.unit(0.1, "mm")
  10256. },
  10257. {
  10258. name: "Small",
  10259. height: math.unit(3, "inches")
  10260. },
  10261. {
  10262. name: "Human Scale",
  10263. height: math.unit(6, "feet")
  10264. },
  10265. {
  10266. name: "Librarian",
  10267. height: math.unit(50, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Immense",
  10272. height: math.unit(200, "miles")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(180, "lbs"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/danni-rosie/front.svg",
  10285. extra: 1260 / 1128,
  10286. bottom: 0.022
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Micro",
  10293. height: math.unit(2, "inches"),
  10294. default: true
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(5 + 9 / 12, "feet"),
  10303. weight: math.unit(220, "lb"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/samantha-kruse/front.svg",
  10307. extra: (985 / 935),
  10308. bottom: 0.03
  10309. }
  10310. },
  10311. frontUndressed: {
  10312. height: math.unit(5 + 9 / 12, "feet"),
  10313. weight: math.unit(220, "lb"),
  10314. name: "Front (Undressed)",
  10315. image: {
  10316. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10317. extra: (973 / 923),
  10318. bottom: 0.025
  10319. }
  10320. },
  10321. fat: {
  10322. height: math.unit(5 + 9 / 12, "feet"),
  10323. weight: math.unit(900, "lb"),
  10324. name: "Front (Fat)",
  10325. image: {
  10326. source: "./media/characters/samantha-kruse/fat.svg",
  10327. extra: 2688 / 2561
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Normal",
  10334. height: math.unit(5 + 9 / 12, "feet"),
  10335. default: true
  10336. }
  10337. ]
  10338. ))
  10339. characterMakers.push(() => makeCharacter(
  10340. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10341. {
  10342. back: {
  10343. height: math.unit(5 + 4 / 12, "feet"),
  10344. weight: math.unit(4963, "lb"),
  10345. name: "Back",
  10346. image: {
  10347. source: "./media/characters/amelia-rosie/back.svg",
  10348. extra: 1113 / 963,
  10349. bottom: 0.01
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Level 0",
  10356. height: math.unit(5 + 4 / 12, "feet")
  10357. },
  10358. {
  10359. name: "Level 1",
  10360. height: math.unit(164597, "feet"),
  10361. default: true
  10362. },
  10363. {
  10364. name: "Level 2",
  10365. height: math.unit(956243, "miles")
  10366. },
  10367. {
  10368. name: "Level 3",
  10369. height: math.unit(29421709423, "miles")
  10370. },
  10371. {
  10372. name: "Level 4",
  10373. height: math.unit(154, "lightyears")
  10374. },
  10375. {
  10376. name: "Level 5",
  10377. height: math.unit(4738272, "lightyears")
  10378. },
  10379. {
  10380. name: "Level 6",
  10381. height: math.unit(145787152896, "lightyears")
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(5 + 11 / 12, "feet"),
  10390. weight: math.unit(65, "kg"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/rook-kitara/front.svg",
  10394. extra: 1347 / 1274,
  10395. bottom: 0.005
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Totally Unfair",
  10402. height: math.unit(1.8, "mm")
  10403. },
  10404. {
  10405. name: "Lap Rookie",
  10406. height: math.unit(1.4, "feet")
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(5 + 11 / 12, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "How Did This Happen",
  10415. height: math.unit(80, "miles")
  10416. }
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(7, "feet"),
  10424. weight: math.unit(300, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/pisces/front.svg",
  10428. extra: 2255 / 2115,
  10429. bottom: 0.03
  10430. }
  10431. },
  10432. back: {
  10433. height: math.unit(7, "feet"),
  10434. weight: math.unit(300, "lb"),
  10435. name: "Back",
  10436. image: {
  10437. source: "./media/characters/pisces/back.svg",
  10438. extra: 2146 / 2055,
  10439. bottom: 0.04
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Normal",
  10446. height: math.unit(7, "feet"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Swimming Pool",
  10451. height: math.unit(12.2, "meters")
  10452. },
  10453. {
  10454. name: "Olympic Swimming Pool",
  10455. height: math.unit(56.3, "meters")
  10456. },
  10457. {
  10458. name: "Lake Superior",
  10459. height: math.unit(93900, "meters")
  10460. },
  10461. {
  10462. name: "Mediterranean Sea",
  10463. height: math.unit(644457, "meters")
  10464. },
  10465. {
  10466. name: "World's Oceans",
  10467. height: math.unit(4567491, "meters")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(2.3, "meters"),
  10476. weight: math.unit(120, "kg"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/zelas/front.svg"
  10480. }
  10481. },
  10482. side: {
  10483. height: math.unit(2.3, "meters"),
  10484. weight: math.unit(120, "kg"),
  10485. name: "Side",
  10486. image: {
  10487. source: "./media/characters/zelas/side.svg"
  10488. }
  10489. },
  10490. back: {
  10491. height: math.unit(2.3, "meters"),
  10492. weight: math.unit(120, "kg"),
  10493. name: "Back",
  10494. image: {
  10495. source: "./media/characters/zelas/back.svg"
  10496. }
  10497. },
  10498. foot: {
  10499. height: math.unit(1.116, "feet"),
  10500. name: "Foot",
  10501. image: {
  10502. source: "./media/characters/zelas/foot.svg"
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(2.3, "meters")
  10510. },
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(30, "meters"),
  10514. default: true
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(1, "inch"),
  10523. weight: math.unit(0.21, "grams"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/talbot/front.svg",
  10527. extra: 594 / 544
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Micro",
  10534. height: math.unit(1, "inch"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10541. {
  10542. front: {
  10543. height: math.unit(3 + 3 / 12, "feet"),
  10544. weight: math.unit(51.8, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/fliss/front.svg",
  10548. extra: 840 / 640
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Teeny Tiny",
  10555. height: math.unit(1, "mm")
  10556. },
  10557. {
  10558. name: "Small",
  10559. height: math.unit(1, "inch"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Standard Sylveon",
  10564. height: math.unit(3 + 3 / 12, "feet")
  10565. },
  10566. {
  10567. name: "Large Nuisance",
  10568. height: math.unit(33, "feet")
  10569. },
  10570. {
  10571. name: "City Filler",
  10572. height: math.unit(3000, "feet")
  10573. },
  10574. {
  10575. name: "New Horizon",
  10576. height: math.unit(6000, "miles")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(5, "cm"),
  10585. weight: math.unit(1.94, "g"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/fleta/front.svg",
  10589. extra: 835 / 803
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(5, "cm"),
  10594. weight: math.unit(1.94, "g"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/fleta/back.svg",
  10598. extra: 835 / 803
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Micro",
  10605. height: math.unit(5, "cm"),
  10606. default: true
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(6, "feet"),
  10615. weight: math.unit(225, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/dominic/front.svg",
  10619. extra: 1770 / 1620,
  10620. bottom: 0.025
  10621. }
  10622. },
  10623. back: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(225, "lb"),
  10626. name: "Back",
  10627. image: {
  10628. source: "./media/characters/dominic/back.svg",
  10629. extra: 1745 / 1620,
  10630. bottom: 0.065
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Nano",
  10637. height: math.unit(0.1, "mm")
  10638. },
  10639. {
  10640. name: "Micro-",
  10641. height: math.unit(1, "mm")
  10642. },
  10643. {
  10644. name: "Micro",
  10645. height: math.unit(4, "inches")
  10646. },
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(6 + 4 / 12, "feet"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(115, "feet")
  10655. },
  10656. {
  10657. name: "Macro+",
  10658. height: math.unit(955, "feet")
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(8990, "feet")
  10663. },
  10664. {
  10665. name: "Gigmacro",
  10666. height: math.unit(9310, "miles")
  10667. },
  10668. {
  10669. name: "Teramacro",
  10670. height: math.unit(1567005010, "miles")
  10671. },
  10672. {
  10673. name: "Examacro",
  10674. height: math.unit(1425, "parsecs")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(400, "feet"),
  10683. weight: math.unit(44444444, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/major-colonel/front.svg"
  10687. }
  10688. },
  10689. back: {
  10690. height: math.unit(400, "feet"),
  10691. weight: math.unit(44444444, "lb"),
  10692. name: "Back",
  10693. image: {
  10694. source: "./media/characters/major-colonel/back.svg"
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Macro",
  10701. height: math.unit(400, "feet"),
  10702. default: true
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10708. {
  10709. catFront: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(120, "lb"),
  10712. name: "Front (Cat Side)",
  10713. image: {
  10714. source: "./media/characters/axel-lycan/cat-front.svg",
  10715. extra: 430 / 402,
  10716. bottom: 43 / 472.35
  10717. }
  10718. },
  10719. catBack: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(120, "lb"),
  10722. name: "Back (Cat Side)",
  10723. image: {
  10724. source: "./media/characters/axel-lycan/cat-back.svg",
  10725. extra: 447 / 419,
  10726. bottom: 23.3 / 469
  10727. }
  10728. },
  10729. wolfFront: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(120, "lb"),
  10732. name: "Front (Wolf Side)",
  10733. image: {
  10734. source: "./media/characters/axel-lycan/wolf-front.svg",
  10735. extra: 485 / 456,
  10736. bottom: 19 / 504
  10737. }
  10738. },
  10739. wolfBack: {
  10740. height: math.unit(6, "feet"),
  10741. weight: math.unit(120, "lb"),
  10742. name: "Back (Wolf Side)",
  10743. image: {
  10744. source: "./media/characters/axel-lycan/wolf-back.svg",
  10745. extra: 475 / 438,
  10746. bottom: 39.2 / 514
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(1, "km"),
  10754. default: true
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(5 + 9 / 12, "feet"),
  10763. weight: math.unit(175, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/vanrel-hyena/front.svg",
  10767. extra: 1086 / 1010,
  10768. bottom: 0.04
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(5 + 9 / 12, "feet"),
  10776. default: true
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(103, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/abbott-absol/front.svg",
  10789. extra: 2010 / 1842
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Megamicro",
  10796. height: math.unit(0.1, "mm")
  10797. },
  10798. {
  10799. name: "Micro",
  10800. height: math.unit(1, "inch")
  10801. },
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(6, "feet"),
  10805. default: true
  10806. },
  10807. ]
  10808. ))
  10809. characterMakers.push(() => makeCharacter(
  10810. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10811. {
  10812. front: {
  10813. height: math.unit(6, "feet"),
  10814. weight: math.unit(264, "lb"),
  10815. name: "Front",
  10816. image: {
  10817. source: "./media/characters/hector/front.svg",
  10818. extra: 2280 / 2130,
  10819. bottom: 0.07
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Normal",
  10826. height: math.unit(12.25, "foot"),
  10827. default: true
  10828. },
  10829. {
  10830. name: "Macro",
  10831. height: math.unit(160, "feet")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(150, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/sal/front.svg",
  10844. extra: 1846 / 1699,
  10845. bottom: 0.04
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Megamacro",
  10852. height: math.unit(10, "miles"),
  10853. default: true
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10859. {
  10860. front: {
  10861. height: math.unit(3, "meters"),
  10862. weight: math.unit(450, "kg"),
  10863. name: "front",
  10864. image: {
  10865. source: "./media/characters/ranger/front.svg",
  10866. extra: 2401 / 2243,
  10867. bottom: 0.05
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Normal",
  10874. height: math.unit(3, "meters"),
  10875. default: true
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(14, "feet"),
  10884. weight: math.unit(800, "kg"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/theresa/front.svg",
  10888. extra: 3575 / 3346,
  10889. bottom: 0.03
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(14, "feet"),
  10897. default: true
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10903. {
  10904. front: {
  10905. height: math.unit(6, "feet"),
  10906. weight: math.unit(3, "kg"),
  10907. name: "Front",
  10908. image: {
  10909. source: "./media/characters/ine/front.svg",
  10910. extra: 678 / 539,
  10911. bottom: 0.023
  10912. }
  10913. },
  10914. },
  10915. [
  10916. {
  10917. name: "Normal",
  10918. height: math.unit(2.265, "feet"),
  10919. default: true
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(5, "feet"),
  10928. weight: math.unit(30, "kg"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/vial/front.svg",
  10932. extra: 1365 / 1277,
  10933. bottom: 0.04
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Normal",
  10940. height: math.unit(5, "feet"),
  10941. default: true
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10947. {
  10948. side: {
  10949. height: math.unit(3.4, "meters"),
  10950. weight: math.unit(1000, "lb"),
  10951. name: "Side",
  10952. image: {
  10953. source: "./media/characters/rovoska/side.svg",
  10954. extra: 4403 / 1515
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(3.4, "meters"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(8, "feet"),
  10971. weight: math.unit(315, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/gunner-rotthbauer/front.svg"
  10975. }
  10976. },
  10977. back: {
  10978. height: math.unit(8, "feet"),
  10979. weight: math.unit(315, "lb"),
  10980. name: "Back",
  10981. image: {
  10982. source: "./media/characters/gunner-rotthbauer/back.svg"
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Micro",
  10989. height: math.unit(3.5, "inches")
  10990. },
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(8, "feet"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(250, "feet")
  10999. },
  11000. {
  11001. name: "Megamacro",
  11002. height: math.unit(1, "AU")
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(5 + 5 / 12, "feet"),
  11011. weight: math.unit(140, "lb"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/allatia/front.svg",
  11015. extra: 1227 / 1180,
  11016. bottom: 0.027
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Normal",
  11023. height: math.unit(5 + 5 / 12, "feet")
  11024. },
  11025. {
  11026. name: "Macro",
  11027. height: math.unit(250, "feet"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(8, "miles")
  11033. }
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11038. {
  11039. front: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(120, "lb"),
  11042. name: "Front",
  11043. image: {
  11044. source: "./media/characters/tene/front.svg",
  11045. extra: 814/750,
  11046. bottom: 36/850
  11047. }
  11048. },
  11049. stomping: {
  11050. height: math.unit(2.025, "meters"),
  11051. weight: math.unit(120, "lb"),
  11052. name: "Stomping",
  11053. image: {
  11054. source: "./media/characters/tene/stomping.svg",
  11055. extra: 885/821,
  11056. bottom: 15/900
  11057. }
  11058. },
  11059. sitting: {
  11060. height: math.unit(1, "meter"),
  11061. weight: math.unit(120, "lb"),
  11062. name: "Sitting",
  11063. image: {
  11064. source: "./media/characters/tene/sitting.svg",
  11065. extra: 396/366,
  11066. bottom: 79/475
  11067. }
  11068. },
  11069. smiling: {
  11070. height: math.unit(1.2, "feet"),
  11071. name: "Smiling",
  11072. image: {
  11073. source: "./media/characters/tene/smiling.svg",
  11074. extra: 1364/1071,
  11075. bottom: 0/1364
  11076. }
  11077. },
  11078. smug: {
  11079. height: math.unit(1.3, "feet"),
  11080. name: "Smug",
  11081. image: {
  11082. source: "./media/characters/tene/smug.svg",
  11083. extra: 1323/1082,
  11084. bottom: 0/1323
  11085. }
  11086. },
  11087. feral: {
  11088. height: math.unit(3.9, "feet"),
  11089. weight: math.unit(250, "lb"),
  11090. name: "Feral",
  11091. image: {
  11092. source: "./media/characters/tene/feral.svg",
  11093. extra: 717 / 458,
  11094. bottom: 0.179
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(6, "feet")
  11102. },
  11103. {
  11104. name: "Macro",
  11105. height: math.unit(300, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Megamacro",
  11110. height: math.unit(5, "miles")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11116. {
  11117. side: {
  11118. height: math.unit(6, "feet"),
  11119. name: "Side",
  11120. image: {
  11121. source: "./media/characters/evander/side.svg",
  11122. extra: 877 / 477
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(0.83, "meters"),
  11130. default: true
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(12, "feet"),
  11139. weight: math.unit(1000, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11143. extra: 1762 / 1611
  11144. }
  11145. },
  11146. back: {
  11147. height: math.unit(12, "feet"),
  11148. weight: math.unit(1000, "lb"),
  11149. name: "Back",
  11150. image: {
  11151. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11152. extra: 1762 / 1611
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(12, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Kaiju",
  11164. height: math.unit(150, "feet")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(150, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/zero-alurus/front.svg"
  11177. }
  11178. },
  11179. back: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(150, "lb"),
  11182. name: "Back",
  11183. image: {
  11184. source: "./media/characters/zero-alurus/back.svg"
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(5 + 10 / 12, "feet")
  11192. },
  11193. {
  11194. name: "Macro",
  11195. height: math.unit(60, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Macro+",
  11200. height: math.unit(450, "feet")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(200, "lb"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/mega-shi/front.svg",
  11213. extra: 1279 / 1250,
  11214. bottom: 0.02
  11215. }
  11216. },
  11217. back: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(200, "lb"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/mega-shi/back.svg",
  11223. extra: 1279 / 1250,
  11224. bottom: 0.02
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Micro",
  11231. height: math.unit(16 + 6 / 12, "feet")
  11232. },
  11233. {
  11234. name: "Third Dimension",
  11235. height: math.unit(40, "meters")
  11236. },
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(660, "feet"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(10, "miles")
  11245. },
  11246. {
  11247. name: "Planetary Launch",
  11248. height: math.unit(500, "miles")
  11249. },
  11250. {
  11251. name: "Interstellar",
  11252. height: math.unit(1e9, "miles")
  11253. },
  11254. {
  11255. name: "Leaving the Universe",
  11256. height: math.unit(1, "gigaparsec")
  11257. },
  11258. {
  11259. name: "Travelling Universes",
  11260. height: math.unit(30e15, "parsecs")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(5 + 4/12, "feet"),
  11269. weight: math.unit(120, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/odyssey/front.svg",
  11273. extra: 1747/1571,
  11274. bottom: 47/1794
  11275. }
  11276. },
  11277. side: {
  11278. height: math.unit(5.1, "feet"),
  11279. weight: math.unit(120, "lb"),
  11280. name: "Side",
  11281. image: {
  11282. source: "./media/characters/odyssey/side.svg",
  11283. extra: 1847/1619,
  11284. bottom: 47/1894
  11285. }
  11286. },
  11287. lounging: {
  11288. height: math.unit(1.464, "feet"),
  11289. weight: math.unit(120, "lb"),
  11290. name: "Lounging",
  11291. image: {
  11292. source: "./media/characters/odyssey/lounging.svg",
  11293. extra: 1235/837,
  11294. bottom: 551/1786
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(5 + 4 / 12, "feet")
  11302. },
  11303. {
  11304. name: "Macro",
  11305. height: math.unit(1, "km")
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(3000, "km")
  11310. },
  11311. {
  11312. name: "Gigamacro",
  11313. height: math.unit(1, "AU"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Omniversal",
  11318. height: math.unit(100e14, "lightyears")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(5 + 10/12, "feet"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/mekuto/front.svg",
  11330. extra: 875/835,
  11331. bottom: 46/921
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Minimicro",
  11338. height: math.unit(0.2, "inches")
  11339. },
  11340. {
  11341. name: "Micro",
  11342. height: math.unit(1.5, "inches")
  11343. },
  11344. {
  11345. name: "Normal",
  11346. height: math.unit(5 + 10 / 12, "feet"),
  11347. default: true
  11348. },
  11349. {
  11350. name: "Minimacro",
  11351. height: math.unit(17 + 9 / 12, "feet")
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(177.5, "feet")
  11356. },
  11357. {
  11358. name: "Megamacro",
  11359. height: math.unit(152, "miles")
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(6.5, "inches"),
  11368. weight: math.unit(13, "oz"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/dafydd-tomos/front.svg",
  11372. extra: 2990 / 2603,
  11373. bottom: 0.03
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Micro",
  11380. height: math.unit(6.5, "inches"),
  11381. default: true
  11382. },
  11383. ]
  11384. ))
  11385. characterMakers.push(() => makeCharacter(
  11386. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11387. {
  11388. front: {
  11389. height: math.unit(6, "feet"),
  11390. weight: math.unit(150, "lb"),
  11391. name: "Front",
  11392. image: {
  11393. source: "./media/characters/splinter/front.svg",
  11394. extra: 2990 / 2882,
  11395. bottom: 0.04
  11396. }
  11397. },
  11398. back: {
  11399. height: math.unit(6, "feet"),
  11400. weight: math.unit(150, "lb"),
  11401. name: "Back",
  11402. image: {
  11403. source: "./media/characters/splinter/back.svg",
  11404. extra: 2990 / 2882,
  11405. bottom: 0.04
  11406. }
  11407. },
  11408. },
  11409. [
  11410. {
  11411. name: "Normal",
  11412. height: math.unit(6, "feet")
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(230, "meters"),
  11417. default: true
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11423. {
  11424. front: {
  11425. height: math.unit(4 + 10 / 12, "feet"),
  11426. weight: math.unit(480, "lb"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/snow-gabumon/front.svg",
  11430. extra: 1140 / 963,
  11431. bottom: 0.058
  11432. }
  11433. },
  11434. back: {
  11435. height: math.unit(4 + 10 / 12, "feet"),
  11436. weight: math.unit(480, "lb"),
  11437. name: "Back",
  11438. image: {
  11439. source: "./media/characters/snow-gabumon/back.svg",
  11440. extra: 1115 / 962,
  11441. bottom: 0.041
  11442. }
  11443. },
  11444. frontUndresed: {
  11445. height: math.unit(4 + 10 / 12, "feet"),
  11446. weight: math.unit(480, "lb"),
  11447. name: "Front (Undressed)",
  11448. image: {
  11449. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11450. extra: 1061 / 960,
  11451. bottom: 0.045
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Micro",
  11458. height: math.unit(1, "inch")
  11459. },
  11460. {
  11461. name: "Normal",
  11462. height: math.unit(4 + 10 / 12, "feet"),
  11463. default: true
  11464. },
  11465. {
  11466. name: "Macro",
  11467. height: math.unit(200, "feet")
  11468. },
  11469. {
  11470. name: "Megamacro",
  11471. height: math.unit(120, "miles")
  11472. },
  11473. {
  11474. name: "Gigamacro",
  11475. height: math.unit(9800, "miles")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(1.7, "meters"),
  11484. weight: math.unit(140, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/moody/front.svg",
  11488. extra: 3226 / 3007,
  11489. bottom: 0.087
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Micro",
  11496. height: math.unit(1, "mm")
  11497. },
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(1.7, "meters"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Macro",
  11505. height: math.unit(80, "meters")
  11506. },
  11507. {
  11508. name: "Macro+",
  11509. height: math.unit(500, "meters")
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11515. {
  11516. front: {
  11517. height: math.unit(6, "feet"),
  11518. weight: math.unit(150, "lb"),
  11519. name: "Front",
  11520. image: {
  11521. source: "./media/characters/zyas/front.svg",
  11522. extra: 1180 / 1120,
  11523. bottom: 0.045
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(10, "feet"),
  11531. default: true
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(500, "feet")
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(5, "miles")
  11540. },
  11541. {
  11542. name: "Teramacro",
  11543. height: math.unit(150000, "miles")
  11544. },
  11545. ]
  11546. ))
  11547. characterMakers.push(() => makeCharacter(
  11548. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11549. {
  11550. front: {
  11551. height: math.unit(6, "feet"),
  11552. weight: math.unit(150, "lb"),
  11553. name: "Front",
  11554. image: {
  11555. source: "./media/characters/cuon/front.svg",
  11556. extra: 1390 / 1320,
  11557. bottom: 0.008
  11558. }
  11559. },
  11560. },
  11561. [
  11562. {
  11563. name: "Micro",
  11564. height: math.unit(3, "inches")
  11565. },
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(18 + 9 / 12, "feet"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(360, "feet")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(360, "miles")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(2.4, "meters"),
  11586. weight: math.unit(70, "kg"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/nyanuxk/front.svg",
  11590. extra: 1172 / 1084,
  11591. bottom: 0.065
  11592. }
  11593. },
  11594. side: {
  11595. height: math.unit(2.4, "meters"),
  11596. weight: math.unit(70, "kg"),
  11597. name: "Side",
  11598. image: {
  11599. source: "./media/characters/nyanuxk/side.svg",
  11600. extra: 1190 / 1132,
  11601. bottom: 0.007
  11602. }
  11603. },
  11604. back: {
  11605. height: math.unit(2.4, "meters"),
  11606. weight: math.unit(70, "kg"),
  11607. name: "Back",
  11608. image: {
  11609. source: "./media/characters/nyanuxk/back.svg",
  11610. extra: 1200 / 1141,
  11611. bottom: 0.015
  11612. }
  11613. },
  11614. foot: {
  11615. height: math.unit(0.52, "meters"),
  11616. name: "Foot",
  11617. image: {
  11618. source: "./media/characters/nyanuxk/foot.svg"
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Micro",
  11625. height: math.unit(2, "cm")
  11626. },
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(2.4, "meters"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Smaller Macro",
  11634. height: math.unit(120, "meters")
  11635. },
  11636. {
  11637. name: "Bigger Macro",
  11638. height: math.unit(1.2, "km")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(15, "kilometers")
  11643. },
  11644. {
  11645. name: "Gigamacro",
  11646. height: math.unit(2000, "km")
  11647. },
  11648. {
  11649. name: "Teramacro",
  11650. height: math.unit(500000, "km")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11656. {
  11657. side: {
  11658. height: math.unit(6, "feet"),
  11659. name: "Side",
  11660. image: {
  11661. source: "./media/characters/ailbhe/side.svg",
  11662. extra: 757 / 464,
  11663. bottom: 0.041
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(1.07, "meters"),
  11671. default: true
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(6, "feet"),
  11680. weight: math.unit(120, "kg"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/zevulfius/front.svg",
  11684. extra: 965 / 903
  11685. }
  11686. },
  11687. side: {
  11688. height: math.unit(6, "feet"),
  11689. weight: math.unit(120, "kg"),
  11690. name: "Side",
  11691. image: {
  11692. source: "./media/characters/zevulfius/side.svg",
  11693. extra: 939 / 900
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(120, "kg"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/zevulfius/back.svg",
  11702. extra: 918 / 854,
  11703. bottom: 0.005
  11704. }
  11705. },
  11706. foot: {
  11707. height: math.unit(6 / 3.72, "feet"),
  11708. name: "Foot",
  11709. image: {
  11710. source: "./media/characters/zevulfius/foot.svg"
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(750, "meters")
  11718. },
  11719. {
  11720. name: "Megamacro",
  11721. height: math.unit(20, "km"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Gigamacro",
  11726. height: math.unit(2000, "km")
  11727. },
  11728. {
  11729. name: "Teramacro",
  11730. height: math.unit(250000, "km")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(100, "feet"),
  11739. weight: math.unit(350, "kg"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/rikes/front.svg",
  11743. extra: 1565 / 1483,
  11744. bottom: 0.017
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(100, "feet"),
  11752. default: true
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(8, "feet"),
  11761. weight: math.unit(356, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/adam-silver-mane/front.svg",
  11765. extra: 1036/937,
  11766. bottom: 63/1099
  11767. }
  11768. },
  11769. side: {
  11770. height: math.unit(8, "feet"),
  11771. weight: math.unit(356, "lb"),
  11772. name: "Side",
  11773. image: {
  11774. source: "./media/characters/adam-silver-mane/side.svg",
  11775. extra: 997/901,
  11776. bottom: 59/1056
  11777. }
  11778. },
  11779. frontNsfw: {
  11780. height: math.unit(8, "feet"),
  11781. weight: math.unit(356, "lb"),
  11782. name: "Front (NSFW)",
  11783. image: {
  11784. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11785. extra: 1036/937,
  11786. bottom: 63/1099
  11787. }
  11788. },
  11789. sideNsfw: {
  11790. height: math.unit(8, "feet"),
  11791. weight: math.unit(356, "lb"),
  11792. name: "Side (NSFW)",
  11793. image: {
  11794. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11795. extra: 997/901,
  11796. bottom: 59/1056
  11797. }
  11798. },
  11799. dick: {
  11800. height: math.unit(2.1, "feet"),
  11801. name: "Dick",
  11802. image: {
  11803. source: "./media/characters/adam-silver-mane/dick.svg"
  11804. }
  11805. },
  11806. taur: {
  11807. height: math.unit(16, "feet"),
  11808. weight: math.unit(1500, "kg"),
  11809. name: "Taur",
  11810. image: {
  11811. source: "./media/characters/adam-silver-mane/taur.svg",
  11812. extra: 1713 / 1571,
  11813. bottom: 0.01
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(8, "feet")
  11821. },
  11822. {
  11823. name: "Minimacro",
  11824. height: math.unit(80, "feet")
  11825. },
  11826. {
  11827. name: "MDA",
  11828. height: math.unit(80, "meters")
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(800, "feet"),
  11833. default: true
  11834. },
  11835. {
  11836. name: "Megamacro",
  11837. height: math.unit(8000, "feet")
  11838. },
  11839. {
  11840. name: "Gigamacro",
  11841. height: math.unit(800, "miles")
  11842. },
  11843. {
  11844. name: "Teramacro",
  11845. height: math.unit(80000, "miles")
  11846. },
  11847. {
  11848. name: "Celestial",
  11849. height: math.unit(8e6, "miles")
  11850. },
  11851. {
  11852. name: "Star Dragon",
  11853. height: math.unit(800000, "parsecs")
  11854. },
  11855. {
  11856. name: "Godly",
  11857. height: math.unit(800, "teraparsecs")
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11863. {
  11864. front: {
  11865. height: math.unit(6, "feet"),
  11866. weight: math.unit(150, "lb"),
  11867. name: "Front",
  11868. image: {
  11869. source: "./media/characters/ky'owin/front.svg",
  11870. extra: 3862/3053,
  11871. bottom: 74/3936
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Normal",
  11878. height: math.unit(6 + 8 / 12, "feet")
  11879. },
  11880. {
  11881. name: "Large",
  11882. height: math.unit(68, "feet")
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(132, "feet")
  11887. },
  11888. {
  11889. name: "Macro+",
  11890. height: math.unit(340, "feet")
  11891. },
  11892. {
  11893. name: "Macro++",
  11894. height: math.unit(680, "feet"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Megamacro",
  11899. height: math.unit(1, "mile")
  11900. },
  11901. {
  11902. name: "Megamacro+",
  11903. height: math.unit(10, "miles")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(4, "feet"),
  11912. weight: math.unit(50, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/mal/front.svg",
  11916. extra: 785 / 724,
  11917. bottom: 0.07
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Micro",
  11924. height: math.unit(4, "inches")
  11925. },
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(4, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(200, "feet")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(6, "feet"),
  11942. weight: math.unit(150, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/jordan-deware/front.svg",
  11946. extra: 1191 / 1012
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Nano",
  11953. height: math.unit(0.01, "mm")
  11954. },
  11955. {
  11956. name: "Minimicro",
  11957. height: math.unit(1, "mm")
  11958. },
  11959. {
  11960. name: "Micro",
  11961. height: math.unit(0.5, "inches")
  11962. },
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(4, "feet"),
  11966. default: true
  11967. },
  11968. {
  11969. name: "Minimacro",
  11970. height: math.unit(40, "meters")
  11971. },
  11972. {
  11973. name: "Small Macro",
  11974. height: math.unit(400, "meters")
  11975. },
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(4, "miles")
  11979. },
  11980. {
  11981. name: "Megamacro",
  11982. height: math.unit(40, "miles")
  11983. },
  11984. {
  11985. name: "Megamacro+",
  11986. height: math.unit(400, "miles")
  11987. },
  11988. {
  11989. name: "Gigamacro",
  11990. height: math.unit(400000, "miles")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11996. {
  11997. side: {
  11998. height: math.unit(6, "feet"),
  11999. weight: math.unit(150, "lb"),
  12000. name: "Side",
  12001. image: {
  12002. source: "./media/characters/kimiko/side.svg",
  12003. extra: 600 / 358
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(15, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(220, "feet")
  12016. },
  12017. {
  12018. name: "Macro+",
  12019. height: math.unit(1450, "feet")
  12020. },
  12021. {
  12022. name: "Megamacro",
  12023. height: math.unit(11500, "feet")
  12024. },
  12025. {
  12026. name: "Gigamacro",
  12027. height: math.unit(9500, "miles")
  12028. },
  12029. {
  12030. name: "Teramacro",
  12031. height: math.unit(2208005005, "miles")
  12032. },
  12033. {
  12034. name: "Examacro",
  12035. height: math.unit(2750, "parsecs")
  12036. },
  12037. {
  12038. name: "Zettamacro",
  12039. height: math.unit(101500, "parsecs")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(70, "kg"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/andrew-sleepy/front.svg"
  12052. }
  12053. },
  12054. side: {
  12055. height: math.unit(6, "feet"),
  12056. weight: math.unit(70, "kg"),
  12057. name: "Side",
  12058. image: {
  12059. source: "./media/characters/andrew-sleepy/side.svg"
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Micro",
  12066. height: math.unit(1, "mm"),
  12067. default: true
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(150, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/judio/front.svg",
  12080. extra: 1258 / 1110
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(5 + 6 / 12, "feet")
  12088. },
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(1000, "feet"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Megamacro",
  12096. height: math.unit(10, "miles")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12102. {
  12103. frontDressed: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(68, "kg"),
  12106. name: "Front (Dressed)",
  12107. image: {
  12108. source: "./media/characters/nomaxice/front-dressed.svg",
  12109. extra: 1137/824,
  12110. bottom: 74/1211
  12111. }
  12112. },
  12113. frontShorts: {
  12114. height: math.unit(6, "feet"),
  12115. weight: math.unit(68, "kg"),
  12116. name: "Front (Shorts)",
  12117. image: {
  12118. source: "./media/characters/nomaxice/front-shorts.svg",
  12119. extra: 1137/824,
  12120. bottom: 74/1211
  12121. }
  12122. },
  12123. back: {
  12124. height: math.unit(6, "feet"),
  12125. weight: math.unit(68, "kg"),
  12126. name: "Back",
  12127. image: {
  12128. source: "./media/characters/nomaxice/back.svg",
  12129. extra: 822/786,
  12130. bottom: 39/861
  12131. }
  12132. },
  12133. hand: {
  12134. height: math.unit(0.565, "feet"),
  12135. name: "Hand",
  12136. image: {
  12137. source: "./media/characters/nomaxice/hand.svg"
  12138. }
  12139. },
  12140. foot: {
  12141. height: math.unit(1, "feet"),
  12142. name: "Foot",
  12143. image: {
  12144. source: "./media/characters/nomaxice/foot.svg"
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Micro",
  12151. height: math.unit(8, "cm")
  12152. },
  12153. {
  12154. name: "Norm",
  12155. height: math.unit(1.82, "m")
  12156. },
  12157. {
  12158. name: "Norm+",
  12159. height: math.unit(8.8, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Big",
  12164. height: math.unit(8, "meters")
  12165. },
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(18, "meters")
  12169. },
  12170. {
  12171. name: "Macro+",
  12172. height: math.unit(88, "meters")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(12, "feet"),
  12181. weight: math.unit(1.5, "tons"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/dydros/front.svg",
  12185. extra: 863 / 800,
  12186. bottom: 0.015
  12187. }
  12188. },
  12189. back: {
  12190. height: math.unit(12, "feet"),
  12191. weight: math.unit(1.5, "tons"),
  12192. name: "Back",
  12193. image: {
  12194. source: "./media/characters/dydros/back.svg",
  12195. extra: 900 / 843,
  12196. bottom: 0.005
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(12, "feet"),
  12204. default: true
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12210. {
  12211. front: {
  12212. height: math.unit(6, "feet"),
  12213. weight: math.unit(100, "kg"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/riggi/front.svg",
  12217. extra: 5787 / 5303
  12218. }
  12219. },
  12220. hyper: {
  12221. height: math.unit(6 * 5 / 3, "feet"),
  12222. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12223. name: "Hyper",
  12224. image: {
  12225. source: "./media/characters/riggi/hyper.svg",
  12226. extra: 3595 / 3485
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Small Macro",
  12233. height: math.unit(50, "feet")
  12234. },
  12235. {
  12236. name: "Default",
  12237. height: math.unit(200, "feet"),
  12238. default: true
  12239. },
  12240. {
  12241. name: "Loom",
  12242. height: math.unit(10000, "feet")
  12243. },
  12244. {
  12245. name: "Cruising Altitude",
  12246. height: math.unit(30000, "feet")
  12247. },
  12248. {
  12249. name: "Megamacro",
  12250. height: math.unit(100, "miles")
  12251. },
  12252. {
  12253. name: "Continent Sized",
  12254. height: math.unit(2800, "miles")
  12255. },
  12256. {
  12257. name: "Earth Sized",
  12258. height: math.unit(8000, "miles")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(250, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/alexi/front.svg",
  12271. extra: 3483 / 3291,
  12272. bottom: 0.04
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(250, "lb"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/alexi/back.svg",
  12281. extra: 3533 / 3356,
  12282. bottom: 0.021
  12283. }
  12284. },
  12285. frontTransforming: {
  12286. height: math.unit(8.58, "feet"),
  12287. weight: math.unit(1300, "lb"),
  12288. name: "Transforming",
  12289. image: {
  12290. source: "./media/characters/alexi/front-transforming.svg",
  12291. extra: 437 / 409,
  12292. bottom: 19 / 458.66
  12293. }
  12294. },
  12295. frontTransformed: {
  12296. height: math.unit(12.5, "feet"),
  12297. weight: math.unit(4000, "lb"),
  12298. name: "Transformed",
  12299. image: {
  12300. source: "./media/characters/alexi/front-transformed.svg",
  12301. extra: 639 / 614,
  12302. bottom: 30.55 / 671
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Normal",
  12309. height: math.unit(14, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Minimacro",
  12314. height: math.unit(30, "meters")
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(500, "meters")
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(9000, "km")
  12323. },
  12324. {
  12325. name: "Teramacro",
  12326. height: math.unit(384000, "km")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12332. {
  12333. front: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(150, "lb"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/kayroo/front.svg",
  12339. extra: 1153 / 1038,
  12340. bottom: 0.06
  12341. }
  12342. },
  12343. foot: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(150, "lb"),
  12346. name: "Foot",
  12347. image: {
  12348. source: "./media/characters/kayroo/foot.svg"
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(8, "feet"),
  12356. default: true
  12357. },
  12358. {
  12359. name: "Minimacro",
  12360. height: math.unit(250, "feet")
  12361. },
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(2800, "feet")
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(5200, "feet")
  12369. },
  12370. {
  12371. name: "Gigamacro",
  12372. height: math.unit(27000, "feet")
  12373. },
  12374. {
  12375. name: "Omega",
  12376. height: math.unit(45000, "feet")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(18, "feet"),
  12385. weight: math.unit(5800, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/rhys/front.svg",
  12389. extra: 3386 / 3090,
  12390. bottom: 0.07
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(18, "feet"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Working Size",
  12402. height: math.unit(200, "feet")
  12403. },
  12404. {
  12405. name: "Demolition Size",
  12406. height: math.unit(2000, "feet")
  12407. },
  12408. {
  12409. name: "Maximum Licensed Size",
  12410. height: math.unit(5, "miles")
  12411. },
  12412. {
  12413. name: "Maximum Observed Size",
  12414. height: math.unit(10, "yottameters")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(250, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/toto/front.svg",
  12427. extra: 527 / 479,
  12428. bottom: 0.05
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Micro",
  12435. height: math.unit(3, "feet")
  12436. },
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(10, "feet")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(150, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(1200, "feet")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "King", species: ["lion"], tags: ["anthro"] },
  12454. {
  12455. back: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(150, "lb"),
  12458. name: "Back",
  12459. image: {
  12460. source: "./media/characters/king/back.svg"
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Micro",
  12467. height: math.unit(2, "inches")
  12468. },
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(8, "feet")
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(200, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Megamacro",
  12480. height: math.unit(50, "miles")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(11, "feet"),
  12489. weight: math.unit(1400, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/cordite/front.svg",
  12493. extra: 1919/1827,
  12494. bottom: 40/1959
  12495. }
  12496. },
  12497. side: {
  12498. height: math.unit(11, "feet"),
  12499. weight: math.unit(1400, "lb"),
  12500. name: "Side",
  12501. image: {
  12502. source: "./media/characters/cordite/side.svg",
  12503. extra: 1908/1793,
  12504. bottom: 38/1946
  12505. }
  12506. },
  12507. back: {
  12508. height: math.unit(11, "feet"),
  12509. weight: math.unit(1400, "lb"),
  12510. name: "Back",
  12511. image: {
  12512. source: "./media/characters/cordite/back.svg",
  12513. extra: 1938/1837,
  12514. bottom: 10/1948
  12515. }
  12516. },
  12517. feral: {
  12518. height: math.unit(2, "feet"),
  12519. weight: math.unit(90, "lb"),
  12520. name: "Feral",
  12521. image: {
  12522. source: "./media/characters/cordite/feral.svg",
  12523. extra: 1260 / 755,
  12524. bottom: 0.05
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(11, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(150, "lb"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/pianostrong/front.svg",
  12545. extra: 6577 / 6254,
  12546. bottom: 0.02
  12547. }
  12548. },
  12549. side: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Side",
  12553. image: {
  12554. source: "./media/characters/pianostrong/side.svg",
  12555. extra: 6106 / 5730
  12556. }
  12557. },
  12558. back: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Back",
  12562. image: {
  12563. source: "./media/characters/pianostrong/back.svg",
  12564. extra: 6085 / 5733,
  12565. bottom: 0.01
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Macro",
  12572. height: math.unit(100, "feet")
  12573. },
  12574. {
  12575. name: "Macro+",
  12576. height: math.unit(300, "feet"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Macro++",
  12581. height: math.unit(1000, "feet")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(150, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/kona/front.svg",
  12594. extra: 2960 / 2629,
  12595. bottom: 0.005
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(11 + 8 / 12, "feet")
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(850, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Macro+",
  12611. height: math.unit(1.5, "km"),
  12612. default: true
  12613. },
  12614. {
  12615. name: "Megamacro",
  12616. height: math.unit(80, "miles")
  12617. },
  12618. {
  12619. name: "Gigamacro",
  12620. height: math.unit(3500, "miles")
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12626. {
  12627. side: {
  12628. height: math.unit(1.9, "meters"),
  12629. weight: math.unit(326, "kg"),
  12630. name: "Side",
  12631. image: {
  12632. source: "./media/characters/levi/side.svg",
  12633. extra: 1704 / 1334,
  12634. bottom: 0.02
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(1.9, "meters"),
  12642. default: true
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(20, "meters")
  12647. },
  12648. {
  12649. name: "Macro+",
  12650. height: math.unit(200, "meters")
  12651. },
  12652. {
  12653. name: "Megamacro",
  12654. height: math.unit(2, "km")
  12655. },
  12656. {
  12657. name: "Megamacro+",
  12658. height: math.unit(20, "km")
  12659. },
  12660. {
  12661. name: "Gigamacro",
  12662. height: math.unit(2500, "km")
  12663. },
  12664. {
  12665. name: "Gigamacro+",
  12666. height: math.unit(120000, "km")
  12667. },
  12668. {
  12669. name: "Teramacro",
  12670. height: math.unit(7.77e6, "km")
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12676. {
  12677. front: {
  12678. height: math.unit(6 + 4/12, "feet"),
  12679. weight: math.unit(190, "lb"),
  12680. name: "Front",
  12681. image: {
  12682. source: "./media/characters/bmc/front.svg",
  12683. extra: 1626/1472,
  12684. bottom: 79/1705
  12685. }
  12686. },
  12687. back: {
  12688. height: math.unit(6 + 4/12, "feet"),
  12689. weight: math.unit(190, "lb"),
  12690. name: "Back",
  12691. image: {
  12692. source: "./media/characters/bmc/back.svg",
  12693. extra: 1640/1479,
  12694. bottom: 45/1685
  12695. }
  12696. },
  12697. frontArmor: {
  12698. height: math.unit(6 + 4/12, "feet"),
  12699. weight: math.unit(190, "lb"),
  12700. name: "Front-armor",
  12701. image: {
  12702. source: "./media/characters/bmc/front-armor.svg",
  12703. extra: 1538/1468,
  12704. bottom: 79/1617
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Human-sized",
  12711. height: math.unit(6 + 4 / 12, "feet")
  12712. },
  12713. {
  12714. name: "Interactive Size",
  12715. height: math.unit(25, "feet")
  12716. },
  12717. {
  12718. name: "Small",
  12719. height: math.unit(250, "feet")
  12720. },
  12721. {
  12722. name: "Normal",
  12723. height: math.unit(1250, "feet"),
  12724. default: true
  12725. },
  12726. {
  12727. name: "Good Day",
  12728. height: math.unit(88, "miles")
  12729. },
  12730. {
  12731. name: "Largest Measured Size",
  12732. height: math.unit(105.960, "galaxies")
  12733. },
  12734. ]
  12735. ))
  12736. characterMakers.push(() => makeCharacter(
  12737. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12738. {
  12739. front: {
  12740. height: math.unit(20, "feet"),
  12741. weight: math.unit(2016, "kg"),
  12742. name: "Front",
  12743. image: {
  12744. source: "./media/characters/sven-the-kaiju/front.svg",
  12745. extra: 1277/1250,
  12746. bottom: 35/1312
  12747. }
  12748. },
  12749. mouth: {
  12750. height: math.unit(1.85, "feet"),
  12751. name: "Mouth",
  12752. image: {
  12753. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Fairy",
  12760. height: math.unit(6, "inches")
  12761. },
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(20, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Rampage",
  12769. height: math.unit(200, "feet")
  12770. },
  12771. {
  12772. name: "Archfey Forest Guardian",
  12773. height: math.unit(1, "mile")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(4, "meters"),
  12782. weight: math.unit(2, "tons"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/marik/front.svg",
  12786. extra: 1057 / 1003,
  12787. bottom: 0.08
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(4, "meters"),
  12795. default: true
  12796. },
  12797. {
  12798. name: "Macro",
  12799. height: math.unit(20, "meters")
  12800. },
  12801. {
  12802. name: "Megamacro",
  12803. height: math.unit(50, "km")
  12804. },
  12805. {
  12806. name: "Gigamacro",
  12807. height: math.unit(100, "km")
  12808. },
  12809. {
  12810. name: "Alpha Macro",
  12811. height: math.unit(7.88e7, "yottameters")
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12817. {
  12818. front: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(110, "lb"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/mel/front.svg",
  12824. extra: 736 / 617,
  12825. bottom: 0.017
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Pico",
  12832. height: math.unit(3, "pm")
  12833. },
  12834. {
  12835. name: "Nano",
  12836. height: math.unit(3, "nm")
  12837. },
  12838. {
  12839. name: "Micro",
  12840. height: math.unit(0.3, "mm"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Micro+",
  12845. height: math.unit(3, "mm")
  12846. },
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(5 + 10.5 / 12, "feet")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12855. {
  12856. kaiju: {
  12857. height: math.unit(1.75, "meters"),
  12858. weight: math.unit(55, "kg"),
  12859. name: "Kaiju",
  12860. image: {
  12861. source: "./media/characters/lykonous/kaiju.svg",
  12862. extra: 1055 / 946,
  12863. bottom: 0.135
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(2.5, "meters"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Kaiju Dragon",
  12875. height: math.unit(60, "meters")
  12876. },
  12877. {
  12878. name: "Mega Kaiju",
  12879. height: math.unit(120, "km")
  12880. },
  12881. {
  12882. name: "Giga Kaiju",
  12883. height: math.unit(200, "megameters")
  12884. },
  12885. {
  12886. name: "Terra Kaiju",
  12887. height: math.unit(400, "gigameters")
  12888. },
  12889. {
  12890. name: "Kaiju Dragon God",
  12891. height: math.unit(13000, "exaparsecs")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(6, "feet"),
  12900. weight: math.unit(150, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/blü/front.svg",
  12904. extra: 1883 / 1564,
  12905. bottom: 0.031
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(13, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Big Boi",
  12917. height: math.unit(150, "meters")
  12918. },
  12919. {
  12920. name: "Mini Stomper",
  12921. height: math.unit(300, "meters")
  12922. },
  12923. {
  12924. name: "Macro",
  12925. height: math.unit(1000, "meters")
  12926. },
  12927. {
  12928. name: "Megamacro",
  12929. height: math.unit(11000, "meters")
  12930. },
  12931. {
  12932. name: "Gigamacro",
  12933. height: math.unit(11000, "km")
  12934. },
  12935. {
  12936. name: "Teramacro",
  12937. height: math.unit(420000, "km")
  12938. },
  12939. {
  12940. name: "Examacro",
  12941. height: math.unit(120, "parsecs")
  12942. },
  12943. {
  12944. name: "God Tho",
  12945. height: math.unit(98000000000, "parsecs")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12951. {
  12952. taurFront: {
  12953. height: math.unit(6, "feet"),
  12954. weight: math.unit(200, "lb"),
  12955. name: "Taur (Front)",
  12956. image: {
  12957. source: "./media/characters/scales/taur-front.svg",
  12958. extra: 1,
  12959. bottom: 0.05
  12960. }
  12961. },
  12962. taurBack: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(200, "lb"),
  12965. name: "Taur (Back)",
  12966. image: {
  12967. source: "./media/characters/scales/taur-back.svg",
  12968. extra: 1,
  12969. bottom: 0.08
  12970. }
  12971. },
  12972. anthro: {
  12973. height: math.unit(6 * 7 / 12, "feet"),
  12974. weight: math.unit(100, "lb"),
  12975. name: "Anthro",
  12976. image: {
  12977. source: "./media/characters/scales/anthro.svg",
  12978. extra: 1,
  12979. bottom: 0.06
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(12, "feet"),
  12987. default: true
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/koragos/front.svg",
  13000. extra: 841 / 794,
  13001. bottom: 0.035
  13002. }
  13003. },
  13004. back: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(150, "lb"),
  13007. name: "Back",
  13008. image: {
  13009. source: "./media/characters/koragos/back.svg",
  13010. extra: 841 / 810,
  13011. bottom: 0.022
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(6 + 11 / 12, "feet"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Macro",
  13023. height: math.unit(490, "feet")
  13024. },
  13025. {
  13026. name: "Megamacro",
  13027. height: math.unit(10, "miles")
  13028. },
  13029. {
  13030. name: "Gigamacro",
  13031. height: math.unit(50, "miles")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(250, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/xylrem/front.svg",
  13044. extra: 3323 / 3050,
  13045. bottom: 0.065
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(4, "feet")
  13053. },
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(16, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Macro",
  13061. height: math.unit(2720, "feet")
  13062. },
  13063. {
  13064. name: "Megamacro",
  13065. height: math.unit(25000, "miles")
  13066. },
  13067. ]
  13068. ))
  13069. characterMakers.push(() => makeCharacter(
  13070. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13071. {
  13072. front: {
  13073. height: math.unit(8, "feet"),
  13074. weight: math.unit(250, "kg"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/ikideru/front.svg",
  13078. extra: 930 / 870,
  13079. bottom: 0.087
  13080. }
  13081. },
  13082. back: {
  13083. height: math.unit(8, "feet"),
  13084. weight: math.unit(250, "kg"),
  13085. name: "Back",
  13086. image: {
  13087. source: "./media/characters/ikideru/back.svg",
  13088. extra: 919 / 852,
  13089. bottom: 0.055
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Rare",
  13096. height: math.unit(8, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Playful Loom",
  13101. height: math.unit(80, "feet")
  13102. },
  13103. {
  13104. name: "City Leaner",
  13105. height: math.unit(230, "feet")
  13106. },
  13107. {
  13108. name: "Megamacro",
  13109. height: math.unit(2500, "feet")
  13110. },
  13111. {
  13112. name: "Gigamacro",
  13113. height: math.unit(26400, "feet")
  13114. },
  13115. {
  13116. name: "Tectonic Shifter",
  13117. height: math.unit(1.7, "megameters")
  13118. },
  13119. {
  13120. name: "Planet Carer",
  13121. height: math.unit(21, "megameters")
  13122. },
  13123. {
  13124. name: "God",
  13125. height: math.unit(11157.22, "parsecs")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6, "feet"),
  13134. weight: math.unit(120, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/neo/front.svg"
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Micro",
  13144. height: math.unit(2, "inches"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Human Size",
  13149. height: math.unit(5 + 8 / 12, "feet")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(13 + 10 / 12, "feet"),
  13158. weight: math.unit(5320, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/chauncey-chantz/front.svg",
  13162. extra: 1587 / 1435,
  13163. bottom: 0.02
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(13 + 10 / 12, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(45, "feet")
  13176. },
  13177. {
  13178. name: "Megamacro",
  13179. height: math.unit(250, "miles")
  13180. },
  13181. {
  13182. name: "Planetary",
  13183. height: math.unit(10000, "miles")
  13184. },
  13185. {
  13186. name: "Galactic",
  13187. height: math.unit(40000, "parsecs")
  13188. },
  13189. {
  13190. name: "Universal",
  13191. height: math.unit(1, "yottameter")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6, "feet"),
  13200. weight: math.unit(150, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/epifox/front.svg",
  13204. extra: 1,
  13205. bottom: 0.075
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Micro",
  13212. height: math.unit(6, "inches")
  13213. },
  13214. {
  13215. name: "Normal",
  13216. height: math.unit(12, "feet"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(3810, "feet")
  13222. },
  13223. {
  13224. name: "Megamacro",
  13225. height: math.unit(500, "miles")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(1.8796, "m"),
  13234. weight: math.unit(230, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/colin-t/front.svg",
  13238. extra: 1272 / 1193,
  13239. bottom: 0.07
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Micro",
  13246. height: math.unit(0.571, "meters")
  13247. },
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(1.8796, "meters"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Tall",
  13255. height: math.unit(4, "meters")
  13256. },
  13257. {
  13258. name: "Macro",
  13259. height: math.unit(67.241, "meters")
  13260. },
  13261. {
  13262. name: "Megamacro",
  13263. height: math.unit(371.856, "meters")
  13264. },
  13265. {
  13266. name: "Planetary",
  13267. height: math.unit(12631.5689, "km")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(1.85, "meters"),
  13276. weight: math.unit(80, "kg"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/matvei/front.svg",
  13280. extra: 456/447,
  13281. bottom: 8/464
  13282. }
  13283. },
  13284. back: {
  13285. height: math.unit(1.85, "meters"),
  13286. weight: math.unit(80, "kg"),
  13287. name: "Back",
  13288. image: {
  13289. source: "./media/characters/matvei/back.svg",
  13290. extra: 434/427,
  13291. bottom: 11/445
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(1.85, "meters"),
  13299. default: true
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(5 + 9 / 12, "feet"),
  13308. weight: math.unit(70, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/quincy/front.svg",
  13312. extra: 3041 / 2751
  13313. }
  13314. },
  13315. back: {
  13316. height: math.unit(5 + 9 / 12, "feet"),
  13317. weight: math.unit(70, "lb"),
  13318. name: "Back",
  13319. image: {
  13320. source: "./media/characters/quincy/back.svg",
  13321. extra: 3041 / 2751
  13322. }
  13323. },
  13324. flying: {
  13325. height: math.unit(5 + 4 / 12, "feet"),
  13326. weight: math.unit(70, "lb"),
  13327. name: "Flying",
  13328. image: {
  13329. source: "./media/characters/quincy/flying.svg",
  13330. extra: 1044 / 930
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Micro",
  13337. height: math.unit(3, "cm")
  13338. },
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(5 + 9 / 12, "feet")
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(200, "meters"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Megamacro",
  13350. height: math.unit(1000, "meters")
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(3 + 11/12, "feet"),
  13359. weight: math.unit(50, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/vanrel/front.svg",
  13363. extra: 1104/949,
  13364. bottom: 52/1156
  13365. }
  13366. },
  13367. back: {
  13368. height: math.unit(3 + 11/12, "feet"),
  13369. weight: math.unit(50, "lb"),
  13370. name: "Back",
  13371. image: {
  13372. source: "./media/characters/vanrel/back.svg",
  13373. extra: 1119/976,
  13374. bottom: 37/1156
  13375. }
  13376. },
  13377. tome: {
  13378. height: math.unit(1.35, "feet"),
  13379. weight: math.unit(10, "lb"),
  13380. name: "Vanrel's Tome",
  13381. rename: true,
  13382. image: {
  13383. source: "./media/characters/vanrel/tome.svg"
  13384. }
  13385. },
  13386. beans: {
  13387. height: math.unit(0.89, "feet"),
  13388. name: "Beans",
  13389. image: {
  13390. source: "./media/characters/vanrel/beans.svg"
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Normal",
  13397. height: math.unit(3 + 11/12, "feet"),
  13398. default: true
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(7 + 5 / 12, "feet"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/kuiper-vanrel/front.svg",
  13410. extra: 1219/1169,
  13411. bottom: 69/1288
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(7 + 5 / 12, "feet"),
  13416. name: "Back",
  13417. image: {
  13418. source: "./media/characters/kuiper-vanrel/back.svg",
  13419. extra: 1236/1193,
  13420. bottom: 27/1263
  13421. }
  13422. },
  13423. foot: {
  13424. height: math.unit(0.55, "meters"),
  13425. name: "Foot",
  13426. image: {
  13427. source: "./media/characters/kuiper-vanrel/foot.svg",
  13428. }
  13429. },
  13430. battle: {
  13431. height: math.unit(6.824, "feet"),
  13432. name: "Battle",
  13433. image: {
  13434. source: "./media/characters/kuiper-vanrel/battle.svg",
  13435. extra: 1466 / 1327,
  13436. bottom: 29 / 1492.5
  13437. }
  13438. },
  13439. meerkui: {
  13440. height: math.unit(18, "inches"),
  13441. name: "Meerkui",
  13442. image: {
  13443. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13444. extra: 1354/1289,
  13445. bottom: 69/1423
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(7 + 5 / 12, "feet"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(8 + 5 / 12, "feet"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/keset-vanrel/front.svg",
  13465. extra: 1231/1148,
  13466. bottom: 82/1313
  13467. }
  13468. },
  13469. back: {
  13470. height: math.unit(8 + 5 / 12, "feet"),
  13471. name: "Back",
  13472. image: {
  13473. source: "./media/characters/keset-vanrel/back.svg",
  13474. extra: 1240/1174,
  13475. bottom: 33/1273
  13476. }
  13477. },
  13478. hand: {
  13479. height: math.unit(0.6, "meters"),
  13480. name: "Hand",
  13481. image: {
  13482. source: "./media/characters/keset-vanrel/hand.svg"
  13483. }
  13484. },
  13485. foot: {
  13486. height: math.unit(0.94978, "meters"),
  13487. name: "Foot",
  13488. image: {
  13489. source: "./media/characters/keset-vanrel/foot.svg"
  13490. }
  13491. },
  13492. battle: {
  13493. height: math.unit(7.408, "feet"),
  13494. name: "Battle",
  13495. image: {
  13496. source: "./media/characters/keset-vanrel/battle.svg",
  13497. extra: 1890 / 1386,
  13498. bottom: 73.28 / 1970
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(8 + 5 / 12, "feet"),
  13506. default: true
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/neos/front.svg",
  13519. extra: 1696 / 992,
  13520. bottom: 0.14
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(54, "cm"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(100, "m")
  13533. },
  13534. {
  13535. name: "Megamacro",
  13536. height: math.unit(10, "km")
  13537. },
  13538. {
  13539. name: "Megamacro+",
  13540. height: math.unit(100, "km")
  13541. },
  13542. {
  13543. name: "Gigamacro",
  13544. height: math.unit(100, "Mm")
  13545. },
  13546. {
  13547. name: "Teramacro",
  13548. height: math.unit(100, "Gm")
  13549. },
  13550. {
  13551. name: "Examacro",
  13552. height: math.unit(100, "Em")
  13553. },
  13554. {
  13555. name: "Godly",
  13556. height: math.unit(10000, "Ym")
  13557. },
  13558. {
  13559. name: "Beyond Godly",
  13560. height: math.unit(25, "multiverses")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13566. {
  13567. feminine: {
  13568. height: math.unit(5, "feet"),
  13569. weight: math.unit(100, "lb"),
  13570. name: "Feminine",
  13571. image: {
  13572. source: "./media/characters/sammy-mouse/feminine.svg",
  13573. extra: 2526 / 2425,
  13574. bottom: 0.123
  13575. }
  13576. },
  13577. masculine: {
  13578. height: math.unit(5, "feet"),
  13579. weight: math.unit(100, "lb"),
  13580. name: "Masculine",
  13581. image: {
  13582. source: "./media/characters/sammy-mouse/masculine.svg",
  13583. extra: 2526 / 2425,
  13584. bottom: 0.123
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Micro",
  13591. height: math.unit(5, "inches")
  13592. },
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(5, "feet"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(60, "feet")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(4, "feet"),
  13609. weight: math.unit(50, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/kole/front.svg",
  13613. extra: 1423 / 1303,
  13614. bottom: 0.025
  13615. }
  13616. },
  13617. back: {
  13618. height: math.unit(4, "feet"),
  13619. weight: math.unit(50, "lb"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/kole/back.svg",
  13623. extra: 1426 / 1280,
  13624. bottom: 0.02
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(4, "feet"),
  13632. default: true
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(2.5, "feet"),
  13641. weight: math.unit(32, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/rufran/front.svg",
  13645. extra: 1313/885,
  13646. bottom: 94/1407
  13647. }
  13648. },
  13649. side: {
  13650. height: math.unit(2.5, "feet"),
  13651. weight: math.unit(32, "lb"),
  13652. name: "Side",
  13653. image: {
  13654. source: "./media/characters/rufran/side.svg",
  13655. extra: 1109/852,
  13656. bottom: 118/1227
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(2.5, "feet"),
  13661. weight: math.unit(32, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/rufran/back.svg",
  13665. extra: 1280/878,
  13666. bottom: 131/1411
  13667. }
  13668. },
  13669. mouth: {
  13670. height: math.unit(1.13, "feet"),
  13671. name: "Mouth",
  13672. image: {
  13673. source: "./media/characters/rufran/mouth.svg"
  13674. }
  13675. },
  13676. foot: {
  13677. height: math.unit(1.33, "feet"),
  13678. name: "Foot",
  13679. image: {
  13680. source: "./media/characters/rufran/foot.svg"
  13681. }
  13682. },
  13683. koboldFront: {
  13684. height: math.unit(2 + 6 / 12, "feet"),
  13685. weight: math.unit(20, "lb"),
  13686. name: "Front (Kobold)",
  13687. image: {
  13688. source: "./media/characters/rufran/kobold-front.svg",
  13689. extra: 2041 / 1839,
  13690. bottom: 0.055
  13691. }
  13692. },
  13693. koboldBack: {
  13694. height: math.unit(2 + 6 / 12, "feet"),
  13695. weight: math.unit(20, "lb"),
  13696. name: "Back (Kobold)",
  13697. image: {
  13698. source: "./media/characters/rufran/kobold-back.svg",
  13699. extra: 2054 / 1839,
  13700. bottom: 0.01
  13701. }
  13702. },
  13703. koboldHand: {
  13704. height: math.unit(0.2166, "meters"),
  13705. name: "Hand (Kobold)",
  13706. image: {
  13707. source: "./media/characters/rufran/kobold-hand.svg"
  13708. }
  13709. },
  13710. koboldFoot: {
  13711. height: math.unit(0.185, "meters"),
  13712. name: "Foot (Kobold)",
  13713. image: {
  13714. source: "./media/characters/rufran/kobold-foot.svg"
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Micro",
  13721. height: math.unit(1, "inch")
  13722. },
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(2 + 6 / 12, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Big",
  13730. height: math.unit(60, "feet")
  13731. },
  13732. {
  13733. name: "Macro",
  13734. height: math.unit(325, "feet")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(0.3, "meters"),
  13743. weight: math.unit(3.5, "kg"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/chip/front.svg",
  13747. extra: 748 / 674
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Micro",
  13754. height: math.unit(1, "inch"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13761. {
  13762. side: {
  13763. height: math.unit(2.3, "meters"),
  13764. weight: math.unit(3500, "lb"),
  13765. name: "Side",
  13766. image: {
  13767. source: "./media/characters/torvid/side.svg",
  13768. extra: 1972 / 722,
  13769. bottom: 0.035
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(2.3, "meters"),
  13777. default: true
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(2, "meters"),
  13786. weight: math.unit(150.5, "kg"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/susan/front.svg",
  13790. extra: 693 / 635,
  13791. bottom: 0.05
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Megamacro",
  13798. height: math.unit(505, "miles"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/raindrops/front.svg",
  13812. extra: 2655 / 2461,
  13813. bottom: 49 / 2705
  13814. }
  13815. },
  13816. back: {
  13817. height: math.unit(6, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/raindrops/back.svg",
  13822. extra: 2574 / 2400,
  13823. bottom: 65 / 2634
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Micro",
  13830. height: math.unit(6, "inches")
  13831. },
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(6 + 2 / 12, "feet")
  13835. },
  13836. {
  13837. name: "Macro",
  13838. height: math.unit(131, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Megamacro",
  13843. height: math.unit(15, "miles")
  13844. },
  13845. {
  13846. name: "Gigamacro",
  13847. height: math.unit(4000, "miles")
  13848. },
  13849. {
  13850. name: "Teramacro",
  13851. height: math.unit(315000, "miles")
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(2.794, "meters"),
  13860. weight: math.unit(325, "kg"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/tezwa/front.svg",
  13864. extra: 2083 / 1906,
  13865. bottom: 0.031
  13866. }
  13867. },
  13868. foot: {
  13869. height: math.unit(0.687, "meters"),
  13870. name: "Foot",
  13871. image: {
  13872. source: "./media/characters/tezwa/foot.svg"
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Normal",
  13879. height: math.unit(9 + 2 / 12, "feet"),
  13880. default: true
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(58, "feet"),
  13889. weight: math.unit(89000, "lb"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/typhus/front.svg",
  13893. extra: 816 / 800,
  13894. bottom: 0.065
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Macro",
  13901. height: math.unit(58, "feet"),
  13902. default: true
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13908. {
  13909. front: {
  13910. height: math.unit(12, "feet"),
  13911. weight: math.unit(6, "tonnes"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/lyra-von-wulf/front.svg",
  13915. extra: 1,
  13916. bottom: 0.10
  13917. }
  13918. },
  13919. frontMecha: {
  13920. height: math.unit(12, "feet"),
  13921. weight: math.unit(12, "tonnes"),
  13922. name: "Front (Mecha)",
  13923. image: {
  13924. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13925. extra: 1,
  13926. bottom: 0.042
  13927. }
  13928. },
  13929. maw: {
  13930. height: math.unit(2.2, "feet"),
  13931. name: "Maw",
  13932. image: {
  13933. source: "./media/characters/lyra-von-wulf/maw.svg"
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(12, "feet"),
  13941. default: true
  13942. },
  13943. {
  13944. name: "Classic",
  13945. height: math.unit(50, "feet")
  13946. },
  13947. {
  13948. name: "Macro",
  13949. height: math.unit(500, "feet")
  13950. },
  13951. {
  13952. name: "Megamacro",
  13953. height: math.unit(1, "mile")
  13954. },
  13955. {
  13956. name: "Gigamacro",
  13957. height: math.unit(400, "miles")
  13958. },
  13959. {
  13960. name: "Teramacro",
  13961. height: math.unit(22000, "miles")
  13962. },
  13963. {
  13964. name: "Solarmacro",
  13965. height: math.unit(8600000, "miles")
  13966. },
  13967. {
  13968. name: "Galactic",
  13969. height: math.unit(1057000, "lightyears")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(6 + 10 / 12, "feet"),
  13978. weight: math.unit(150, "lb"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/dixon/front.svg",
  13982. extra: 3361 / 3209,
  13983. bottom: 0.01
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Normal",
  13990. height: math.unit(6 + 10 / 12, "feet"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Big",
  13995. height: math.unit(12, "meters")
  13996. },
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(500, "meters")
  14000. },
  14001. {
  14002. name: "Megamacro",
  14003. height: math.unit(2, "km")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(185, "cm"),
  14012. weight: math.unit(68, "kg"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/kauko/front.svg",
  14016. extra: 1455 / 1421,
  14017. bottom: 0.03
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(185, "cm"),
  14022. weight: math.unit(68, "kg"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/kauko/back.svg",
  14026. extra: 1455 / 1421,
  14027. bottom: 0.004
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(185, "cm"),
  14035. default: true
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14041. {
  14042. frontSfw: {
  14043. height: math.unit(5, "meters"),
  14044. weight: math.unit(4250, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/varg/front-sfw.svg",
  14048. extra: 1103/1010,
  14049. bottom: 50/1153
  14050. },
  14051. form: "anthro",
  14052. default: true
  14053. },
  14054. backSfw: {
  14055. height: math.unit(5, "meters"),
  14056. weight: math.unit(4250, "lb"),
  14057. name: "Back",
  14058. image: {
  14059. source: "./media/characters/varg/back-sfw.svg",
  14060. extra: 1038/1022,
  14061. bottom: 36/1074
  14062. },
  14063. form: "anthro"
  14064. },
  14065. frontNsfw: {
  14066. height: math.unit(5, "meters"),
  14067. weight: math.unit(4250, "lb"),
  14068. name: "Front (NSFW)",
  14069. image: {
  14070. source: "./media/characters/varg/front-nsfw.svg",
  14071. extra: 1103/1010,
  14072. bottom: 50/1153
  14073. },
  14074. form: "anthro"
  14075. },
  14076. sheath: {
  14077. height: math.unit(3.8, "feet"),
  14078. weight: math.unit(90, "kilograms"),
  14079. name: "Sheath",
  14080. image: {
  14081. source: "./media/characters/varg/sheath.svg"
  14082. },
  14083. form: "anthro"
  14084. },
  14085. dick: {
  14086. height: math.unit(4.6, "feet"),
  14087. weight: math.unit(451, "kilograms"),
  14088. name: "Dick",
  14089. image: {
  14090. source: "./media/characters/varg/dick.svg"
  14091. },
  14092. form: "anthro"
  14093. },
  14094. feralSfw: {
  14095. height: math.unit(5, "meters"),
  14096. weight: math.unit(100000, "lb"),
  14097. name: "Side",
  14098. image: {
  14099. source: "./media/characters/varg/feral-sfw.svg",
  14100. extra: 1065/511,
  14101. bottom: 211/1276
  14102. },
  14103. form: "feral",
  14104. default: true
  14105. },
  14106. feralNsfw: {
  14107. height: math.unit(5, "meters"),
  14108. weight: math.unit(100000, "lb"),
  14109. name: "Side (NSFW)",
  14110. image: {
  14111. source: "./media/characters/varg/feral-nsfw.svg",
  14112. extra: 1065/511,
  14113. bottom: 211/1276
  14114. },
  14115. form: "feral",
  14116. },
  14117. feralSheath: {
  14118. height: math.unit(9.8, "feet"),
  14119. weight: math.unit(2000, "kilograms"),
  14120. name: "Sheath",
  14121. image: {
  14122. source: "./media/characters/varg/sheath.svg"
  14123. },
  14124. form: "feral"
  14125. },
  14126. feralDick: {
  14127. height: math.unit(13.11, "feet"),
  14128. weight: math.unit(10440, "kilograms"),
  14129. name: "Dick",
  14130. image: {
  14131. source: "./media/characters/varg/dick.svg"
  14132. },
  14133. form: "feral"
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(5, "meters"),
  14140. form: "anthro"
  14141. },
  14142. {
  14143. name: "Macro",
  14144. height: math.unit(200, "meters"),
  14145. form: "anthro"
  14146. },
  14147. {
  14148. name: "Megamacro",
  14149. height: math.unit(20, "kilometers"),
  14150. form: "anthro"
  14151. },
  14152. {
  14153. name: "True Size",
  14154. height: math.unit(211, "km"),
  14155. form: "anthro",
  14156. default: true
  14157. },
  14158. {
  14159. name: "Gigamacro",
  14160. height: math.unit(1000, "km"),
  14161. form: "anthro"
  14162. },
  14163. {
  14164. name: "Gigamacro+",
  14165. height: math.unit(8000, "km"),
  14166. form: "anthro"
  14167. },
  14168. {
  14169. name: "Teramacro",
  14170. height: math.unit(1000000, "km"),
  14171. form: "anthro"
  14172. },
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(5, "meters"),
  14176. form: "feral"
  14177. },
  14178. {
  14179. name: "Macro",
  14180. height: math.unit(200, "meters"),
  14181. form: "feral"
  14182. },
  14183. {
  14184. name: "Megamacro",
  14185. height: math.unit(20, "kilometers"),
  14186. form: "feral"
  14187. },
  14188. {
  14189. name: "True Size",
  14190. height: math.unit(211, "km"),
  14191. form: "feral",
  14192. default: true
  14193. },
  14194. {
  14195. name: "Gigamacro",
  14196. height: math.unit(1000, "km"),
  14197. form: "feral"
  14198. },
  14199. {
  14200. name: "Gigamacro+",
  14201. height: math.unit(8000, "km"),
  14202. form: "feral"
  14203. },
  14204. {
  14205. name: "Teramacro",
  14206. height: math.unit(1000000, "km"),
  14207. form: "feral"
  14208. },
  14209. ],
  14210. {
  14211. "anthro": {
  14212. name: "Anthro",
  14213. default: true
  14214. },
  14215. "feral": {
  14216. name: "Feral",
  14217. },
  14218. }
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(7 + 7 / 12, "feet"),
  14225. weight: math.unit(267, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/dayza/front.svg",
  14229. extra: 1262 / 1200,
  14230. bottom: 0.035
  14231. }
  14232. },
  14233. side: {
  14234. height: math.unit(7 + 7 / 12, "feet"),
  14235. weight: math.unit(267, "lb"),
  14236. name: "Side",
  14237. image: {
  14238. source: "./media/characters/dayza/side.svg",
  14239. extra: 1295 / 1245,
  14240. bottom: 0.05
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(7 + 7 / 12, "feet"),
  14245. weight: math.unit(267, "lb"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/dayza/back.svg",
  14249. extra: 1241 / 1170
  14250. }
  14251. },
  14252. },
  14253. [
  14254. {
  14255. name: "Normal",
  14256. height: math.unit(7 + 7 / 12, "feet"),
  14257. default: true
  14258. },
  14259. {
  14260. name: "Macro",
  14261. height: math.unit(155, "feet")
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(6 + 5 / 12, "feet"),
  14270. weight: math.unit(160, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/xanthos/front.svg",
  14274. extra: 1,
  14275. bottom: 0.04
  14276. }
  14277. },
  14278. back: {
  14279. height: math.unit(6 + 5 / 12, "feet"),
  14280. weight: math.unit(160, "lb"),
  14281. name: "Back",
  14282. image: {
  14283. source: "./media/characters/xanthos/back.svg",
  14284. extra: 1,
  14285. bottom: 0.03
  14286. }
  14287. },
  14288. hand: {
  14289. height: math.unit(0.928, "feet"),
  14290. name: "Hand",
  14291. image: {
  14292. source: "./media/characters/xanthos/hand.svg"
  14293. }
  14294. },
  14295. foot: {
  14296. height: math.unit(1.286, "feet"),
  14297. name: "Foot",
  14298. image: {
  14299. source: "./media/characters/xanthos/foot.svg"
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(6 + 5 / 12, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Normal+",
  14311. height: math.unit(6, "meters")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(40, "feet")
  14316. },
  14317. {
  14318. name: "Macro+",
  14319. height: math.unit(200, "meters")
  14320. },
  14321. {
  14322. name: "Megamacro",
  14323. height: math.unit(20, "km")
  14324. },
  14325. {
  14326. name: "Megamacro+",
  14327. height: math.unit(100, "km")
  14328. },
  14329. {
  14330. name: "Gigamacro",
  14331. height: math.unit(200, "megameters")
  14332. },
  14333. {
  14334. name: "Gigamacro+",
  14335. height: math.unit(1.5, "gigameters")
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(6 + 3 / 12, "feet"),
  14344. weight: math.unit(215, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/grynn/front.svg",
  14348. extra: 4627 / 4209,
  14349. bottom: 0.047
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Micro",
  14356. height: math.unit(6, "inches")
  14357. },
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(6 + 3 / 12, "feet"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Big",
  14365. height: math.unit(104, "feet")
  14366. },
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(944, "feet")
  14370. },
  14371. {
  14372. name: "Macro+",
  14373. height: math.unit(9480, "feet")
  14374. },
  14375. {
  14376. name: "Megamacro",
  14377. height: math.unit(78752, "feet")
  14378. },
  14379. {
  14380. name: "Megamacro+",
  14381. height: math.unit(630128, "feet")
  14382. },
  14383. {
  14384. name: "Megamacro++",
  14385. height: math.unit(3150695, "feet")
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(7 + 5 / 12, "feet"),
  14394. weight: math.unit(450, "lb"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/mocha-aura/front.svg",
  14398. extra: 1907 / 1817,
  14399. bottom: 0.04
  14400. }
  14401. },
  14402. back: {
  14403. height: math.unit(7 + 5 / 12, "feet"),
  14404. weight: math.unit(450, "lb"),
  14405. name: "Back",
  14406. image: {
  14407. source: "./media/characters/mocha-aura/back.svg",
  14408. extra: 1900 / 1825,
  14409. bottom: 0.045
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Nano",
  14416. height: math.unit(1, "nm")
  14417. },
  14418. {
  14419. name: "Megamicro",
  14420. height: math.unit(1, "mm")
  14421. },
  14422. {
  14423. name: "Micro",
  14424. height: math.unit(3, "inches")
  14425. },
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(7 + 5 / 12, "feet"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Macro",
  14433. height: math.unit(30, "feet")
  14434. },
  14435. {
  14436. name: "Megamacro",
  14437. height: math.unit(3500, "feet")
  14438. },
  14439. {
  14440. name: "Teramacro",
  14441. height: math.unit(500000, "miles")
  14442. },
  14443. {
  14444. name: "Petamacro",
  14445. height: math.unit(50000000000000000, "parsecs")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/ilisha-devya/front.svg",
  14458. extra: 1053/1049,
  14459. bottom: 270/1323
  14460. }
  14461. },
  14462. back: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/ilisha-devya/back.svg",
  14468. extra: 1131/1128,
  14469. bottom: 39/1170
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Macro",
  14476. height: math.unit(500, "feet"),
  14477. default: true
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(10, "miles")
  14482. },
  14483. {
  14484. name: "Gigamacro",
  14485. height: math.unit(100000, "miles")
  14486. },
  14487. {
  14488. name: "Examacro",
  14489. height: math.unit(1e9, "lightyears")
  14490. },
  14491. {
  14492. name: "Omniversal",
  14493. height: math.unit(1e33, "lightyears")
  14494. },
  14495. {
  14496. name: "Beyond Infinite",
  14497. height: math.unit(1e100, "lightyears")
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14503. {
  14504. Side: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(150, "lb"),
  14507. name: "Side",
  14508. image: {
  14509. source: "./media/characters/mira/side.svg",
  14510. extra: 900 / 799,
  14511. bottom: 0.02
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Human Size",
  14518. height: math.unit(6, "feet")
  14519. },
  14520. {
  14521. name: "Macro",
  14522. height: math.unit(100, "feet"),
  14523. default: true
  14524. },
  14525. {
  14526. name: "Megamacro",
  14527. height: math.unit(10, "miles")
  14528. },
  14529. {
  14530. name: "Gigamacro",
  14531. height: math.unit(25000, "miles")
  14532. },
  14533. {
  14534. name: "Teramacro",
  14535. height: math.unit(300, "AU")
  14536. },
  14537. {
  14538. name: "Full Size",
  14539. height: math.unit(4.5e10, "lightyears")
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(150, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/holly/front.svg",
  14552. extra: 639 / 606
  14553. }
  14554. },
  14555. back: {
  14556. height: math.unit(6, "feet"),
  14557. weight: math.unit(150, "lb"),
  14558. name: "Back",
  14559. image: {
  14560. source: "./media/characters/holly/back.svg",
  14561. extra: 623 / 598
  14562. }
  14563. },
  14564. frontWorking: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Front (Working)",
  14568. image: {
  14569. source: "./media/characters/holly/front-working.svg",
  14570. extra: 607 / 577,
  14571. bottom: 0.048
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(12 + 3 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Porter", species: ["bernese-mountain-dog"], 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/porter/front.svg",
  14592. extra: 1,
  14593. bottom: 0.01
  14594. }
  14595. },
  14596. frontRobes: {
  14597. height: math.unit(6, "feet"),
  14598. weight: math.unit(150, "lb"),
  14599. name: "Front (Robes)",
  14600. image: {
  14601. source: "./media/characters/porter/front-robes.svg",
  14602. extra: 1.01,
  14603. bottom: 0.01
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(11 + 9 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14617. {
  14618. legendary: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Legendary",
  14622. image: {
  14623. source: "./media/characters/lucy/legendary.svg",
  14624. extra: 1355 / 1100,
  14625. bottom: 0.045
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Legendary",
  14632. height: math.unit(86882 * 2, "miles"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(6, "feet"),
  14642. weight: math.unit(150, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/drusilla/front.svg",
  14646. extra: 678 / 635,
  14647. bottom: 0.03
  14648. }
  14649. },
  14650. back: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Back",
  14654. image: {
  14655. source: "./media/characters/drusilla/back.svg",
  14656. extra: 678 / 635,
  14657. bottom: 0.005
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Macro",
  14664. height: math.unit(100, "feet")
  14665. },
  14666. {
  14667. name: "Canon Height",
  14668. height: math.unit(2000, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(180, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/renard-thatch/front.svg",
  14682. extra: 2411 / 2275,
  14683. bottom: 0.01
  14684. }
  14685. },
  14686. frontPosing: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(180, "lb"),
  14689. name: "Front (Posing)",
  14690. image: {
  14691. source: "./media/characters/renard-thatch/front-posing.svg",
  14692. extra: 2381 / 2261,
  14693. bottom: 0.01
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(180, "lb"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/renard-thatch/back.svg",
  14702. extra: 2428 / 2288
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Micro",
  14709. height: math.unit(3, "inches")
  14710. },
  14711. {
  14712. name: "Default",
  14713. height: math.unit(6, "feet"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Macro",
  14718. height: math.unit(75, "feet")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(1450, "feet"),
  14727. weight: math.unit(1.21e6, "tons"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/sekvra/front.svg",
  14731. extra: 1193/1190,
  14732. bottom: 78/1271
  14733. }
  14734. },
  14735. side: {
  14736. height: math.unit(1450, "feet"),
  14737. weight: math.unit(1.21e6, "tons"),
  14738. name: "Side",
  14739. image: {
  14740. source: "./media/characters/sekvra/side.svg",
  14741. extra: 1193/1190,
  14742. bottom: 52/1245
  14743. }
  14744. },
  14745. back: {
  14746. height: math.unit(1450, "feet"),
  14747. weight: math.unit(1.21e6, "tons"),
  14748. name: "Back",
  14749. image: {
  14750. source: "./media/characters/sekvra/back.svg",
  14751. extra: 1219/1216,
  14752. bottom: 21/1240
  14753. }
  14754. },
  14755. frontClothed: {
  14756. height: math.unit(1450, "feet"),
  14757. weight: math.unit(1.21e6, "tons"),
  14758. name: "Front (Clothed)",
  14759. image: {
  14760. source: "./media/characters/sekvra/front-clothed.svg",
  14761. extra: 1192/1189,
  14762. bottom: 79/1271
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Macro",
  14769. height: math.unit(1450, "feet"),
  14770. default: true
  14771. },
  14772. {
  14773. name: "Megamacro",
  14774. height: math.unit(15000, "feet")
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(6, "feet"),
  14783. weight: math.unit(150, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/carmine/front.svg",
  14787. extra: 1,
  14788. bottom: 0.035
  14789. }
  14790. },
  14791. frontArmor: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front (Armor)",
  14795. image: {
  14796. source: "./media/characters/carmine/front-armor.svg",
  14797. extra: 1,
  14798. bottom: 0.035
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Large",
  14805. height: math.unit(1, "mile")
  14806. },
  14807. {
  14808. name: "Huge",
  14809. height: math.unit(40, "miles"),
  14810. default: true
  14811. },
  14812. {
  14813. name: "Colossal",
  14814. height: math.unit(2500, "miles")
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/elyssia/front.svg",
  14827. extra: 2201 / 2035,
  14828. bottom: 0.05
  14829. }
  14830. },
  14831. frontClothed: {
  14832. height: math.unit(6, "feet"),
  14833. weight: math.unit(150, "lb"),
  14834. name: "Front (Clothed)",
  14835. image: {
  14836. source: "./media/characters/elyssia/front-clothed.svg",
  14837. extra: 2201 / 2035,
  14838. bottom: 0.05
  14839. }
  14840. },
  14841. back: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Back",
  14845. image: {
  14846. source: "./media/characters/elyssia/back.svg",
  14847. extra: 2201 / 2035,
  14848. bottom: 0.013
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Smaller",
  14855. height: math.unit(150, "feet")
  14856. },
  14857. {
  14858. name: "Standard",
  14859. height: math.unit(1400, "feet"),
  14860. default: true
  14861. },
  14862. {
  14863. name: "Distracted",
  14864. height: math.unit(15000, "feet")
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(7 + 4/12, "feet"),
  14873. weight: math.unit(690, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/geno-maxwell/front.svg",
  14877. extra: 984/856,
  14878. bottom: 87/1071
  14879. }
  14880. },
  14881. back: {
  14882. height: math.unit(7 + 4/12, "feet"),
  14883. weight: math.unit(690, "lb"),
  14884. name: "Back",
  14885. image: {
  14886. source: "./media/characters/geno-maxwell/back.svg",
  14887. extra: 981/854,
  14888. bottom: 57/1038
  14889. }
  14890. },
  14891. frontCostume: {
  14892. height: math.unit(7 + 4/12, "feet"),
  14893. weight: math.unit(690, "lb"),
  14894. name: "Front (Costume)",
  14895. image: {
  14896. source: "./media/characters/geno-maxwell/front-costume.svg",
  14897. extra: 984/856,
  14898. bottom: 87/1071
  14899. }
  14900. },
  14901. backcostume: {
  14902. height: math.unit(7 + 4/12, "feet"),
  14903. weight: math.unit(690, "lb"),
  14904. name: "Back (Costume)",
  14905. image: {
  14906. source: "./media/characters/geno-maxwell/back-costume.svg",
  14907. extra: 981/854,
  14908. bottom: 57/1038
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Micro",
  14915. height: math.unit(3, "inches")
  14916. },
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(7 + 4 / 12, "feet"),
  14920. default: true
  14921. },
  14922. {
  14923. name: "Macro",
  14924. height: math.unit(220, "feet")
  14925. },
  14926. {
  14927. name: "Megamacro",
  14928. height: math.unit(11, "miles")
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(7 + 4/12, "feet"),
  14937. weight: math.unit(750, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/regena-maxwell/front.svg",
  14941. extra: 984/856,
  14942. bottom: 87/1071
  14943. }
  14944. },
  14945. back: {
  14946. height: math.unit(7 + 4/12, "feet"),
  14947. weight: math.unit(750, "lb"),
  14948. name: "Back",
  14949. image: {
  14950. source: "./media/characters/regena-maxwell/back.svg",
  14951. extra: 981/854,
  14952. bottom: 57/1038
  14953. }
  14954. },
  14955. frontCostume: {
  14956. height: math.unit(7 + 4/12, "feet"),
  14957. weight: math.unit(750, "lb"),
  14958. name: "Front (Costume)",
  14959. image: {
  14960. source: "./media/characters/regena-maxwell/front-costume.svg",
  14961. extra: 984/856,
  14962. bottom: 87/1071
  14963. }
  14964. },
  14965. backcostume: {
  14966. height: math.unit(7 + 4/12, "feet"),
  14967. weight: math.unit(750, "lb"),
  14968. name: "Back (Costume)",
  14969. image: {
  14970. source: "./media/characters/regena-maxwell/back-costume.svg",
  14971. extra: 981/854,
  14972. bottom: 57/1038
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(7 + 4 / 12, "feet"),
  14980. default: true
  14981. },
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(220, "feet")
  14985. },
  14986. {
  14987. name: "Megamacro",
  14988. height: math.unit(11, "miles")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(6, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15001. extra: 860 / 690,
  15002. bottom: 0.03
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(1.7, "meters"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/quilly/front.svg",
  15023. extra: 890 / 776
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Gigamacro",
  15030. height: math.unit(404090, "miles"),
  15031. default: true
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(7 + 8 / 12, "feet"),
  15040. weight: math.unit(350, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/tempest/front.svg",
  15044. extra: 1175 / 1086,
  15045. bottom: 0.02
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(7 + 8 / 12, "feet"),
  15053. default: true
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15059. {
  15060. side: {
  15061. height: math.unit(4 + 5 / 12, "feet"),
  15062. weight: math.unit(80, "lb"),
  15063. name: "Side",
  15064. image: {
  15065. source: "./media/characters/rodger/side.svg",
  15066. extra: 1235 / 1118
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Micro",
  15073. height: math.unit(1, "inch")
  15074. },
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(4 + 5 / 12, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Macro",
  15082. height: math.unit(120, "feet")
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(6, "feet"),
  15091. weight: math.unit(150, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/danyel/front.svg",
  15095. extra: 1185 / 1123,
  15096. bottom: 0.05
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Shrunken",
  15103. height: math.unit(0.5, "mm")
  15104. },
  15105. {
  15106. name: "Micro",
  15107. height: math.unit(1, "mm"),
  15108. default: true
  15109. },
  15110. {
  15111. name: "Upsized",
  15112. height: math.unit(5 + 5 / 12, "feet")
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(5 + 6 / 12, "feet"),
  15121. weight: math.unit(200, "lb"),
  15122. name: "Front",
  15123. image: {
  15124. source: "./media/characters/vivian-bijoux/front.svg",
  15125. extra: 1217/1209,
  15126. bottom: 76/1293
  15127. }
  15128. },
  15129. back: {
  15130. height: math.unit(5 + 6 / 12, "feet"),
  15131. weight: math.unit(200, "lb"),
  15132. name: "Back",
  15133. image: {
  15134. source: "./media/characters/vivian-bijoux/back.svg",
  15135. extra: 1214/1208,
  15136. bottom: 51/1265
  15137. }
  15138. },
  15139. dressed: {
  15140. height: math.unit(5 + 6 / 12, "feet"),
  15141. weight: math.unit(200, "lb"),
  15142. name: "Dressed",
  15143. image: {
  15144. source: "./media/characters/vivian-bijoux/dressed.svg",
  15145. extra: 1217/1209,
  15146. bottom: 76/1293
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(5 + 6 / 12, "feet"),
  15154. default: true
  15155. },
  15156. {
  15157. name: "Bad Dream",
  15158. height: math.unit(500, "feet")
  15159. },
  15160. {
  15161. name: "Nightmare",
  15162. height: math.unit(500, "miles")
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(6 + 1 / 12, "feet"),
  15171. weight: math.unit(260, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/zeta/front.svg",
  15175. extra: 1968 / 1889,
  15176. bottom: 0.06
  15177. }
  15178. },
  15179. back: {
  15180. height: math.unit(6 + 1 / 12, "feet"),
  15181. weight: math.unit(260, "lb"),
  15182. name: "Back",
  15183. image: {
  15184. source: "./media/characters/zeta/back.svg",
  15185. extra: 1944 / 1858,
  15186. bottom: 0.03
  15187. }
  15188. },
  15189. hand: {
  15190. height: math.unit(1.112, "feet"),
  15191. name: "Hand",
  15192. image: {
  15193. source: "./media/characters/zeta/hand.svg"
  15194. }
  15195. },
  15196. foot: {
  15197. height: math.unit(1.48, "feet"),
  15198. name: "Foot",
  15199. image: {
  15200. source: "./media/characters/zeta/foot.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Micro",
  15207. height: math.unit(6, "inches")
  15208. },
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(6 + 1 / 12, "feet"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Macro",
  15216. height: math.unit(20, "feet")
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/jamie-larsen/front.svg",
  15229. extra: 962 / 933,
  15230. bottom: 0.02
  15231. }
  15232. },
  15233. back: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Back",
  15237. image: {
  15238. source: "./media/characters/jamie-larsen/back.svg",
  15239. extra: 997 / 946
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Macro",
  15246. height: math.unit(28 + 7 / 12, "feet"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Macro+",
  15251. height: math.unit(180, "feet")
  15252. },
  15253. {
  15254. name: "Megamacro",
  15255. height: math.unit(10, "miles")
  15256. },
  15257. {
  15258. name: "Gigamacro",
  15259. height: math.unit(200000, "miles")
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(6, "feet"),
  15268. weight: math.unit(120, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/vance/front.svg",
  15272. extra: 1980 / 1890,
  15273. bottom: 0.09
  15274. }
  15275. },
  15276. back: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(120, "lb"),
  15279. name: "Back",
  15280. image: {
  15281. source: "./media/characters/vance/back.svg",
  15282. extra: 2081 / 1994,
  15283. bottom: 0.014
  15284. }
  15285. },
  15286. hand: {
  15287. height: math.unit(0.88, "feet"),
  15288. name: "Hand",
  15289. image: {
  15290. source: "./media/characters/vance/hand.svg"
  15291. }
  15292. },
  15293. foot: {
  15294. height: math.unit(0.64, "feet"),
  15295. name: "Foot",
  15296. image: {
  15297. source: "./media/characters/vance/foot.svg"
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Small",
  15304. height: math.unit(90, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(100, "meters")
  15310. },
  15311. {
  15312. name: "Megamacro",
  15313. height: math.unit(15, "miles")
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(6, "feet"),
  15322. weight: math.unit(180, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/xochitl/front.svg",
  15326. extra: 2297 / 2261,
  15327. bottom: 0.065
  15328. }
  15329. },
  15330. back: {
  15331. height: math.unit(6, "feet"),
  15332. weight: math.unit(180, "lb"),
  15333. name: "Back",
  15334. image: {
  15335. source: "./media/characters/xochitl/back.svg",
  15336. extra: 2386 / 2354,
  15337. bottom: 0.01
  15338. }
  15339. },
  15340. foot: {
  15341. height: math.unit(6 / 5 * 1.15, "feet"),
  15342. weight: math.unit(150, "lb"),
  15343. name: "Foot",
  15344. image: {
  15345. source: "./media/characters/xochitl/foot.svg"
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Macro",
  15352. height: math.unit(80, "feet")
  15353. },
  15354. {
  15355. name: "Macro+",
  15356. height: math.unit(400, "feet"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Gigamacro",
  15361. height: math.unit(80000, "miles")
  15362. },
  15363. {
  15364. name: "Gigamacro+",
  15365. height: math.unit(400000, "miles")
  15366. },
  15367. {
  15368. name: "Teramacro",
  15369. height: math.unit(300, "AU")
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/vincent/front.svg",
  15382. extra: 1130 / 1080,
  15383. bottom: 0.055
  15384. }
  15385. },
  15386. beak: {
  15387. height: math.unit(6 * 0.1, "feet"),
  15388. name: "Beak",
  15389. image: {
  15390. source: "./media/characters/vincent/beak.svg"
  15391. }
  15392. },
  15393. hand: {
  15394. height: math.unit(6 * 0.85, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Hand",
  15397. image: {
  15398. source: "./media/characters/vincent/hand.svg"
  15399. }
  15400. },
  15401. foot: {
  15402. height: math.unit(6 * 0.19, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Foot",
  15405. image: {
  15406. source: "./media/characters/vincent/foot.svg"
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Base",
  15413. height: math.unit(6 + 5 / 12, "feet"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Macro",
  15418. height: math.unit(300, "feet")
  15419. },
  15420. {
  15421. name: "Megamacro",
  15422. height: math.unit(2, "miles")
  15423. },
  15424. {
  15425. name: "Gigamacro",
  15426. height: math.unit(1000, "miles")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(2, "meters"),
  15435. weight: math.unit(500, "kg"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/coatl/front.svg",
  15439. extra: 3948 / 3500,
  15440. bottom: 0.082
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(4, "meters")
  15448. },
  15449. {
  15450. name: "Macro",
  15451. height: math.unit(100, "meters"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Macro+",
  15456. height: math.unit(300, "meters")
  15457. },
  15458. {
  15459. name: "Megamacro",
  15460. height: math.unit(3, "gigameters")
  15461. },
  15462. {
  15463. name: "Megamacro+",
  15464. height: math.unit(300, "terameters")
  15465. },
  15466. {
  15467. name: "Megamacro++",
  15468. height: math.unit(3, "lightyears")
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15474. {
  15475. front: {
  15476. height: math.unit(6, "feet"),
  15477. weight: math.unit(50, "kg"),
  15478. name: "front",
  15479. image: {
  15480. source: "./media/characters/shiroryu/front.svg",
  15481. extra: 1990 / 1935
  15482. }
  15483. },
  15484. },
  15485. [
  15486. {
  15487. name: "Mortal Mingling",
  15488. height: math.unit(3, "meters")
  15489. },
  15490. {
  15491. name: "Kaiju-ish",
  15492. height: math.unit(250, "meters")
  15493. },
  15494. {
  15495. name: "Somewhat Godly",
  15496. height: math.unit(400, "km"),
  15497. default: true
  15498. },
  15499. {
  15500. name: "Planetary",
  15501. height: math.unit(300, "megameters")
  15502. },
  15503. {
  15504. name: "Galaxy-dwarfing",
  15505. height: math.unit(450, "kiloparsecs")
  15506. },
  15507. {
  15508. name: "Universe Eater",
  15509. height: math.unit(150, "gigaparsecs")
  15510. },
  15511. {
  15512. name: "Almost Immeasurable",
  15513. height: math.unit(1.3e266, "yottaparsecs")
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/umeko/front.svg",
  15526. extra: 1,
  15527. bottom: 0.019
  15528. }
  15529. },
  15530. frontArmored: {
  15531. height: math.unit(6, "feet"),
  15532. weight: math.unit(150, "lb"),
  15533. name: "Front (Armored)",
  15534. image: {
  15535. source: "./media/characters/umeko/front-armored.svg",
  15536. extra: 1,
  15537. bottom: 0.021
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Macro",
  15544. height: math.unit(220, "feet"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Guardian Dragon",
  15549. height: math.unit(50, "miles")
  15550. },
  15551. {
  15552. name: "Cosmic",
  15553. height: math.unit(800000, "miles")
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15559. {
  15560. front: {
  15561. height: math.unit(6, "feet"),
  15562. weight: math.unit(150, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/cassidy/front.svg",
  15566. extra: 810/808,
  15567. bottom: 41/851
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Canon Height",
  15574. height: math.unit(120, "feet"),
  15575. default: true
  15576. },
  15577. {
  15578. name: "Macro+",
  15579. height: math.unit(400, "feet")
  15580. },
  15581. {
  15582. name: "Macro++",
  15583. height: math.unit(4000, "feet")
  15584. },
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(3, "miles")
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(150, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/isaac/front.svg",
  15600. extra: 896 / 815,
  15601. bottom: 0.11
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Human Size",
  15608. height: math.unit(8, "feet"),
  15609. default: true
  15610. },
  15611. {
  15612. name: "Macro",
  15613. height: math.unit(400, "feet")
  15614. },
  15615. {
  15616. name: "Megamacro",
  15617. height: math.unit(50, "miles")
  15618. },
  15619. {
  15620. name: "Canon Height",
  15621. height: math.unit(200, "AU")
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15627. {
  15628. front: {
  15629. height: math.unit(6, "feet"),
  15630. weight: math.unit(72, "kg"),
  15631. name: "Front",
  15632. image: {
  15633. source: "./media/characters/sleekit/front.svg",
  15634. extra: 4693 / 4487,
  15635. bottom: 0.012
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Minimum Height",
  15642. height: math.unit(10, "meters")
  15643. },
  15644. {
  15645. name: "Smaller",
  15646. height: math.unit(25, "meters")
  15647. },
  15648. {
  15649. name: "Larger",
  15650. height: math.unit(38, "meters"),
  15651. default: true
  15652. },
  15653. {
  15654. name: "Maximum height",
  15655. height: math.unit(100, "meters")
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15661. {
  15662. front: {
  15663. height: math.unit(6, "feet"),
  15664. weight: math.unit(150, "lb"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/nillia/front.svg",
  15668. extra: 2195 / 2037,
  15669. bottom: 0.005
  15670. }
  15671. },
  15672. back: {
  15673. height: math.unit(6, "feet"),
  15674. weight: math.unit(150, "lb"),
  15675. name: "Back",
  15676. image: {
  15677. source: "./media/characters/nillia/back.svg",
  15678. extra: 2195 / 2037,
  15679. bottom: 0.005
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Canon Height",
  15686. height: math.unit(489, "feet"),
  15687. default: true
  15688. }
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/mesmyriza/front.svg",
  15700. extra: 2067 / 1784,
  15701. bottom: 0.035
  15702. }
  15703. },
  15704. foot: {
  15705. height: math.unit(6 / (250 / 35), "feet"),
  15706. name: "Foot",
  15707. image: {
  15708. source: "./media/characters/mesmyriza/foot.svg"
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Macro",
  15715. height: math.unit(457, "meters"),
  15716. default: true
  15717. },
  15718. {
  15719. name: "Megamacro",
  15720. height: math.unit(8, "megameters")
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(6, "feet"),
  15729. weight: math.unit(250, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/saudade/front.svg",
  15733. extra: 1172 / 1139,
  15734. bottom: 0.035
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Micro",
  15741. height: math.unit(3, "inches")
  15742. },
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(6, "feet"),
  15746. default: true
  15747. },
  15748. {
  15749. name: "Macro",
  15750. height: math.unit(50, "feet")
  15751. },
  15752. {
  15753. name: "Megamacro",
  15754. height: math.unit(2800, "feet")
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(5 + 4 / 12, "feet"),
  15763. weight: math.unit(100, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/keireer/front.svg",
  15767. extra: 716 / 666,
  15768. bottom: 0.05
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(5 + 4 / 12, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(5.5, "feet"),
  15785. weight: math.unit(90, "kg"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/mirja/front.svg",
  15789. extra: 1452/1262,
  15790. bottom: 67/1519
  15791. }
  15792. },
  15793. frontDressed: {
  15794. height: math.unit(5.5, "feet"),
  15795. weight: math.unit(90, "lb"),
  15796. name: "Front (Dressed)",
  15797. image: {
  15798. source: "./media/characters/mirja/dressed.svg",
  15799. extra: 1452/1262,
  15800. bottom: 67/1519
  15801. }
  15802. },
  15803. back: {
  15804. height: math.unit(6, "feet"),
  15805. weight: math.unit(90, "lb"),
  15806. name: "Back",
  15807. image: {
  15808. source: "./media/characters/mirja/back.svg",
  15809. extra: 1892/1795,
  15810. bottom: 48/1940
  15811. }
  15812. },
  15813. maw: {
  15814. height: math.unit(1.312, "feet"),
  15815. name: "Maw",
  15816. image: {
  15817. source: "./media/characters/mirja/maw.svg"
  15818. }
  15819. },
  15820. paw: {
  15821. height: math.unit(1.15, "feet"),
  15822. name: "Paw",
  15823. image: {
  15824. source: "./media/characters/mirja/paw.svg"
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "\"Incognito\"",
  15831. height: math.unit(3, "meters")
  15832. },
  15833. {
  15834. name: "Strolling Size",
  15835. height: math.unit(15, "km")
  15836. },
  15837. {
  15838. name: "Larger Strolling Size",
  15839. height: math.unit(400, "km")
  15840. },
  15841. {
  15842. name: "Preferred Size",
  15843. height: math.unit(5000, "km"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "True Size",
  15848. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(15, "feet"),
  15857. weight: math.unit(880, "kg"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/nightraver/front.svg",
  15861. extra: 2444 / 2160,
  15862. bottom: 0.027
  15863. }
  15864. },
  15865. back: {
  15866. height: math.unit(15, "feet"),
  15867. weight: math.unit(880, "kg"),
  15868. name: "Back",
  15869. image: {
  15870. source: "./media/characters/nightraver/back.svg",
  15871. extra: 2309 / 2180,
  15872. bottom: 0.005
  15873. }
  15874. },
  15875. sole: {
  15876. height: math.unit(2.878, "feet"),
  15877. name: "Sole",
  15878. image: {
  15879. source: "./media/characters/nightraver/sole.svg"
  15880. }
  15881. },
  15882. foot: {
  15883. height: math.unit(2.285, "feet"),
  15884. name: "Foot",
  15885. image: {
  15886. source: "./media/characters/nightraver/foot.svg"
  15887. }
  15888. },
  15889. maw: {
  15890. height: math.unit(2.67, "feet"),
  15891. name: "Maw",
  15892. image: {
  15893. source: "./media/characters/nightraver/maw.svg"
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Micro",
  15900. height: math.unit(1, "cm")
  15901. },
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(15, "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(300, "feet")
  15910. },
  15911. {
  15912. name: "Megamacro",
  15913. height: math.unit(300, "miles")
  15914. },
  15915. {
  15916. name: "Gigamacro",
  15917. height: math.unit(10000, "miles")
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15923. {
  15924. side: {
  15925. height: math.unit(2, "inches"),
  15926. weight: math.unit(5, "grams"),
  15927. name: "Side",
  15928. image: {
  15929. source: "./media/characters/arc/side.svg"
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Micro",
  15936. height: math.unit(2, "inches"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(1.1938, "meters"),
  15946. weight: math.unit(54, "kg"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/nebula-shahar/front.svg",
  15950. extra: 1642 / 1436,
  15951. bottom: 0.06
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Megamicro",
  15958. height: math.unit(0.3, "mm")
  15959. },
  15960. {
  15961. name: "Micro",
  15962. height: math.unit(3, "cm")
  15963. },
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(138, "cm"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "Macro",
  15971. height: math.unit(30, "m")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(5.24, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/shayla/front.svg",
  15984. extra: 1512 / 1414,
  15985. bottom: 0.01
  15986. }
  15987. },
  15988. back: {
  15989. height: math.unit(5.24, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Back",
  15992. image: {
  15993. source: "./media/characters/shayla/back.svg",
  15994. extra: 1512 / 1414
  15995. }
  15996. },
  15997. hand: {
  15998. height: math.unit(0.7781496062992126, "feet"),
  15999. name: "Hand",
  16000. image: {
  16001. source: "./media/characters/shayla/hand.svg"
  16002. }
  16003. },
  16004. foot: {
  16005. height: math.unit(1.4206036745406823, "feet"),
  16006. name: "Foot",
  16007. image: {
  16008. source: "./media/characters/shayla/foot.svg"
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Micro",
  16015. height: math.unit(0.32, "feet")
  16016. },
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(5.24, "feet"),
  16020. default: true
  16021. },
  16022. {
  16023. name: "Macro",
  16024. height: math.unit(492.12, "feet")
  16025. },
  16026. {
  16027. name: "Megamacro",
  16028. height: math.unit(186.41, "miles")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(2.2, "m"),
  16037. weight: math.unit(120, "kg"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/pia-jr/front.svg",
  16041. extra: 1000 / 970,
  16042. bottom: 0.035
  16043. }
  16044. },
  16045. hand: {
  16046. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16047. name: "Hand",
  16048. image: {
  16049. source: "./media/characters/pia-jr/hand.svg"
  16050. }
  16051. },
  16052. paw: {
  16053. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16054. name: "Paw",
  16055. image: {
  16056. source: "./media/characters/pia-jr/paw.svg"
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Micro",
  16063. height: math.unit(1.2, "cm")
  16064. },
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(2.2, "m"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(180, "m")
  16073. },
  16074. {
  16075. name: "Megamacro",
  16076. height: math.unit(420, "km")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(2, "m"),
  16085. weight: math.unit(115, "kg"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/pia-sr/front.svg",
  16089. extra: 760 / 730,
  16090. bottom: 0.015
  16091. }
  16092. },
  16093. back: {
  16094. height: math.unit(2, "m"),
  16095. weight: math.unit(115, "kg"),
  16096. name: "Back",
  16097. image: {
  16098. source: "./media/characters/pia-sr/back.svg",
  16099. extra: 760 / 730,
  16100. bottom: 0.01
  16101. }
  16102. },
  16103. hand: {
  16104. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16105. name: "Hand",
  16106. image: {
  16107. source: "./media/characters/pia-sr/hand.svg"
  16108. }
  16109. },
  16110. foot: {
  16111. height: math.unit(1.83, "feet"),
  16112. name: "Foot",
  16113. image: {
  16114. source: "./media/characters/pia-sr/foot.svg"
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Micro",
  16121. height: math.unit(88, "mm")
  16122. },
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(2, "m"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro",
  16130. height: math.unit(200, "m")
  16131. },
  16132. {
  16133. name: "Megamacro",
  16134. height: math.unit(420, "km")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(8 + 2 / 12, "feet"),
  16143. weight: math.unit(300, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/kibibyte/front.svg",
  16147. extra: 2221 / 2098,
  16148. bottom: 0.04
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(8 + 2 / 12, "feet"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Socialable Macro",
  16160. height: math.unit(50, "feet")
  16161. },
  16162. {
  16163. name: "Macro",
  16164. height: math.unit(300, "feet")
  16165. },
  16166. {
  16167. name: "Megamacro",
  16168. height: math.unit(500, "miles")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(150, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/felix/front.svg",
  16181. extra: 762 / 722,
  16182. bottom: 0.02
  16183. }
  16184. },
  16185. frontClothed: {
  16186. height: math.unit(6, "feet"),
  16187. weight: math.unit(150, "lb"),
  16188. name: "Front (Clothed)",
  16189. image: {
  16190. source: "./media/characters/felix/front-clothed.svg",
  16191. extra: 762 / 722,
  16192. bottom: 0.02
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(6 + 8 / 12, "feet"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Macro",
  16204. height: math.unit(2600, "feet")
  16205. },
  16206. {
  16207. name: "Megamacro",
  16208. height: math.unit(450, "miles")
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(6 + 1 / 12, "feet"),
  16217. weight: math.unit(250, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/tobo/front.svg",
  16221. extra: 608 / 586,
  16222. bottom: 0.023
  16223. }
  16224. },
  16225. back: {
  16226. height: math.unit(6 + 1 / 12, "feet"),
  16227. weight: math.unit(250, "lb"),
  16228. name: "Back",
  16229. image: {
  16230. source: "./media/characters/tobo/back.svg",
  16231. extra: 608 / 586
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Nano",
  16238. height: math.unit(2, "nm")
  16239. },
  16240. {
  16241. name: "Megamicro",
  16242. height: math.unit(0.1, "mm")
  16243. },
  16244. {
  16245. name: "Micro",
  16246. height: math.unit(1, "inch"),
  16247. default: true
  16248. },
  16249. {
  16250. name: "Human-sized",
  16251. height: math.unit(6 + 1 / 12, "feet")
  16252. },
  16253. {
  16254. name: "Macro",
  16255. height: math.unit(250, "feet")
  16256. },
  16257. {
  16258. name: "Megamacro",
  16259. height: math.unit(75, "miles")
  16260. },
  16261. {
  16262. name: "Texas-sized",
  16263. height: math.unit(750, "miles")
  16264. },
  16265. {
  16266. name: "Teramacro",
  16267. height: math.unit(50000, "miles")
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16273. {
  16274. front: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(269, "lb"),
  16277. name: "Front",
  16278. image: {
  16279. source: "./media/characters/danny-kapowsky/front.svg",
  16280. extra: 766 / 736,
  16281. bottom: 0.044
  16282. }
  16283. },
  16284. back: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(269, "lb"),
  16287. name: "Back",
  16288. image: {
  16289. source: "./media/characters/danny-kapowsky/back.svg",
  16290. extra: 797 / 760,
  16291. bottom: 0.025
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Macro",
  16298. height: math.unit(150, "feet"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro+",
  16303. height: math.unit(200, "feet")
  16304. },
  16305. {
  16306. name: "Macro++",
  16307. height: math.unit(300, "feet")
  16308. },
  16309. {
  16310. name: "Macro+++",
  16311. height: math.unit(400, "feet")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16317. {
  16318. side: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(170, "lb"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/finn/side.svg",
  16324. extra: 1953 / 1807,
  16325. bottom: 0.057
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Megamacro",
  16332. height: math.unit(14445, "feet"),
  16333. default: true
  16334. },
  16335. ]
  16336. ))
  16337. characterMakers.push(() => makeCharacter(
  16338. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16339. {
  16340. front: {
  16341. height: math.unit(5 + 6 / 12, "feet"),
  16342. weight: math.unit(125, "lb"),
  16343. name: "Front",
  16344. image: {
  16345. source: "./media/characters/roy/front.svg",
  16346. extra: 1,
  16347. bottom: 0.11
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Micro",
  16354. height: math.unit(3, "inches"),
  16355. default: true
  16356. },
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(5 + 6 / 12, "feet")
  16360. },
  16361. {
  16362. name: "Lesser Macro",
  16363. height: math.unit(60, "feet")
  16364. },
  16365. {
  16366. name: "Greater Macro",
  16367. height: math.unit(120, "feet")
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(6, "feet"),
  16376. weight: math.unit(100, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/aevsivs/front.svg",
  16380. extra: 1,
  16381. bottom: 0.03
  16382. }
  16383. },
  16384. back: {
  16385. height: math.unit(6, "feet"),
  16386. weight: math.unit(100, "lb"),
  16387. name: "Back",
  16388. image: {
  16389. source: "./media/characters/aevsivs/back.svg"
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Micro",
  16396. height: math.unit(2, "inches"),
  16397. default: true
  16398. },
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(5, "feet")
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 7 / 12, "feet"),
  16410. weight: math.unit(159, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/hildegard/front.svg",
  16414. extra: 289 / 269,
  16415. bottom: 7.63 / 297.8
  16416. }
  16417. },
  16418. back: {
  16419. height: math.unit(5 + 7 / 12, "feet"),
  16420. weight: math.unit(159, "lb"),
  16421. name: "Back",
  16422. image: {
  16423. source: "./media/characters/hildegard/back.svg",
  16424. extra: 280 / 260,
  16425. bottom: 2.3 / 282
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(5 + 7 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16439. {
  16440. bernard: {
  16441. height: math.unit(2 + 7 / 12, "feet"),
  16442. weight: math.unit(66, "lb"),
  16443. name: "Bernard",
  16444. rename: true,
  16445. image: {
  16446. source: "./media/characters/bernard-wilder/bernard.svg",
  16447. extra: 192 / 128,
  16448. bottom: 0.05
  16449. }
  16450. },
  16451. wilder: {
  16452. height: math.unit(5 + 8 / 12, "feet"),
  16453. weight: math.unit(143, "lb"),
  16454. name: "Wilder",
  16455. rename: true,
  16456. image: {
  16457. source: "./media/characters/bernard-wilder/wilder.svg",
  16458. extra: 361 / 312,
  16459. bottom: 0.02
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(2 + 7 / 12, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16473. {
  16474. anthro: {
  16475. height: math.unit(6 + 1 / 12, "feet"),
  16476. weight: math.unit(155, "lb"),
  16477. name: "Anthro",
  16478. image: {
  16479. source: "./media/characters/hearth/anthro.svg",
  16480. extra: 1178/1136,
  16481. bottom: 28/1206
  16482. }
  16483. },
  16484. feral: {
  16485. height: math.unit(3.78, "feet"),
  16486. weight: math.unit(35, "kg"),
  16487. name: "Feral",
  16488. image: {
  16489. source: "./media/characters/hearth/feral.svg",
  16490. extra: 153 / 135,
  16491. bottom: 0.03
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(6 + 1 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(6, "feet"),
  16508. weight: math.unit(182, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/ingrid/front.svg",
  16512. extra: 294 / 268,
  16513. bottom: 0.027
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(6, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16527. {
  16528. eevee: {
  16529. height: math.unit(2 + 10 / 12, "feet"),
  16530. weight: math.unit(86, "lb"),
  16531. name: "Malgam",
  16532. image: {
  16533. source: "./media/characters/malgam/eevee.svg",
  16534. extra: 952/784,
  16535. bottom: 38/990
  16536. }
  16537. },
  16538. sylveon: {
  16539. height: math.unit(4, "feet"),
  16540. weight: math.unit(101, "lb"),
  16541. name: "Future Malgam",
  16542. rename: true,
  16543. image: {
  16544. source: "./media/characters/malgam/sylveon.svg",
  16545. extra: 371 / 325,
  16546. bottom: 0.015
  16547. }
  16548. },
  16549. gigantamax: {
  16550. height: math.unit(50, "feet"),
  16551. name: "Gigantamax Malgam",
  16552. rename: true,
  16553. image: {
  16554. source: "./media/characters/malgam/gigantamax.svg"
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(2 + 10 / 12, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(5 + 11 / 12, "feet"),
  16571. weight: math.unit(188, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/fleur/front.svg",
  16575. extra: 309 / 283,
  16576. bottom: 0.007
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(5 + 11 / 12, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16590. {
  16591. front: {
  16592. height: math.unit(5 + 4 / 12, "feet"),
  16593. weight: math.unit(122, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/jude/front.svg",
  16597. extra: 288 / 273,
  16598. bottom: 0.03
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(5 + 4 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(5 + 11 / 12, "feet"),
  16615. weight: math.unit(190, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/seara/front.svg",
  16619. extra: 1,
  16620. bottom: 0.05
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(5 + 11 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(16 + 5 / 12, "feet"),
  16637. weight: math.unit(524, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/caspian-lugia/front.svg",
  16641. extra: 1,
  16642. bottom: 0.04
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(16 + 5 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(5 + 7 / 12, "feet"),
  16659. weight: math.unit(170, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/mika/front.svg",
  16663. extra: 1,
  16664. bottom: 0.016
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(5 + 7 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(6 + 2 / 12, "feet"),
  16681. weight: math.unit(268, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/sol/front.svg",
  16685. extra: 247 / 231,
  16686. bottom: 0.05
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(6 + 2 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16700. {
  16701. buizel: {
  16702. height: math.unit(2 + 5 / 12, "feet"),
  16703. weight: math.unit(87, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/umiko/buizel.svg",
  16707. extra: 172 / 157,
  16708. bottom: 0.01
  16709. },
  16710. form: "buizel",
  16711. default: true
  16712. },
  16713. floatzel: {
  16714. height: math.unit(5 + 9 / 12, "feet"),
  16715. weight: math.unit(250, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/umiko/floatzel.svg",
  16719. extra: 1076/1006,
  16720. bottom: 15/1091
  16721. },
  16722. form: "floatzel",
  16723. default: true
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(2 + 5 / 12, "feet"),
  16730. form: "buizel",
  16731. default: true
  16732. },
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(5 + 9 / 12, "feet"),
  16736. form: "floatzel",
  16737. default: true
  16738. },
  16739. ],
  16740. {
  16741. "buizel": {
  16742. name: "Buizel"
  16743. },
  16744. "floatzel": {
  16745. name: "Floatzel",
  16746. default: true
  16747. }
  16748. }
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16752. {
  16753. front: {
  16754. height: math.unit(6 + 2 / 12, "feet"),
  16755. weight: math.unit(146, "lb"),
  16756. name: "Front",
  16757. image: {
  16758. source: "./media/characters/iliac/front.svg",
  16759. extra: 389 / 365,
  16760. bottom: 0.035
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(6 + 2 / 12, "feet"),
  16768. default: true
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(170, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/topaz/front.svg",
  16781. extra: 317 / 303,
  16782. bottom: 0.055
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Normal",
  16789. height: math.unit(6, "feet"),
  16790. default: true
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16796. {
  16797. front: {
  16798. height: math.unit(5 + 11 / 12, "feet"),
  16799. weight: math.unit(144, "lb"),
  16800. name: "Front",
  16801. image: {
  16802. source: "./media/characters/gabriel/front.svg",
  16803. extra: 285 / 262,
  16804. bottom: 0.004
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Normal",
  16811. height: math.unit(5 + 11 / 12, "feet"),
  16812. default: true
  16813. },
  16814. ]
  16815. ))
  16816. characterMakers.push(() => makeCharacter(
  16817. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16818. {
  16819. side: {
  16820. height: math.unit(6 + 5 / 12, "feet"),
  16821. weight: math.unit(300, "lb"),
  16822. name: "Side",
  16823. image: {
  16824. source: "./media/characters/tempest-suicune/side.svg",
  16825. extra: 195 / 154,
  16826. bottom: 0.04
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(6 + 5 / 12, "feet"),
  16834. default: true
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16840. {
  16841. front: {
  16842. height: math.unit(7 + 2 / 12, "feet"),
  16843. weight: math.unit(322, "lb"),
  16844. name: "Front",
  16845. image: {
  16846. source: "./media/characters/vulcan/front.svg",
  16847. extra: 154 / 147,
  16848. bottom: 0.04
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(7 + 2 / 12, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16862. {
  16863. front: {
  16864. height: math.unit(5 + 10 / 12, "feet"),
  16865. weight: math.unit(264, "lb"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/gault/front.svg",
  16869. extra: 161 / 140,
  16870. bottom: 0.028
  16871. }
  16872. },
  16873. },
  16874. [
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(5 + 10 / 12, "feet"),
  16878. default: true
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(6, "feet"),
  16887. weight: math.unit(150, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/shard/front.svg",
  16891. extra: 273 / 238,
  16892. bottom: 0.02
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(3 + 6 / 12, "feet"),
  16900. default: true
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(5 + 11 / 12, "feet"),
  16909. weight: math.unit(146, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/ashe/front.svg",
  16913. extra: 400 / 373,
  16914. bottom: 0.01
  16915. }
  16916. },
  16917. },
  16918. [
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(5 + 11 / 12, "feet"),
  16922. default: true
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(5 + 5 / 12, "feet"),
  16931. weight: math.unit(135, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/beatrix/front.svg",
  16935. extra: 392 / 379,
  16936. bottom: 0.01
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(6, "feet"),
  16944. default: true
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6 + 2/12, "feet"),
  16953. weight: math.unit(135, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/ignatius/front.svg",
  16957. extra: 1380/1259,
  16958. bottom: 27/1407
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(6 + 2/12, "feet"),
  16966. default: true
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(6 + 2 / 12, "feet"),
  16975. weight: math.unit(138, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/mei-li/front.svg",
  16979. extra: 237 / 229,
  16980. bottom: 0.03
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(6 + 2 / 12, "feet"),
  16988. default: true
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(2 + 4 / 12, "feet"),
  16997. weight: math.unit(62, "lb"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/puru/front.svg",
  17001. extra: 206 / 149,
  17002. bottom: 0.06
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Normal",
  17009. height: math.unit(2 + 4 / 12, "feet"),
  17010. default: true
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17016. {
  17017. anthro: {
  17018. height: math.unit(5 + 8/12, "feet"),
  17019. weight: math.unit(200, "lb"),
  17020. energyNeed: math.unit(2000, "kcal"),
  17021. name: "Anthro",
  17022. image: {
  17023. source: "./media/characters/kee/anthro.svg",
  17024. extra: 3251/3184,
  17025. bottom: 250/3501
  17026. }
  17027. },
  17028. taur: {
  17029. height: math.unit(11, "feet"),
  17030. weight: math.unit(500, "lb"),
  17031. energyNeed: math.unit(5000, "kcal"),
  17032. name: "Taur",
  17033. image: {
  17034. source: "./media/characters/kee/taur.svg",
  17035. extra: 1362/1320,
  17036. bottom: 83/1445
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(5 + 8/12, "feet"),
  17044. default: true
  17045. },
  17046. {
  17047. name: "Macro",
  17048. height: math.unit(35, "feet")
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17054. {
  17055. anthro: {
  17056. height: math.unit(7, "feet"),
  17057. weight: math.unit(190, "lb"),
  17058. name: "Anthro",
  17059. image: {
  17060. source: "./media/characters/cobalt-dracha/anthro.svg",
  17061. extra: 231 / 225,
  17062. bottom: 0.04
  17063. }
  17064. },
  17065. feral: {
  17066. height: math.unit(9 + 7 / 12, "feet"),
  17067. weight: math.unit(294, "lb"),
  17068. name: "Feral",
  17069. image: {
  17070. source: "./media/characters/cobalt-dracha/feral.svg",
  17071. extra: 692 / 633,
  17072. bottom: 0.05
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(7, "feet"),
  17080. default: true
  17081. },
  17082. ]
  17083. ))
  17084. characterMakers.push(() => makeCharacter(
  17085. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17086. {
  17087. fallen: {
  17088. height: math.unit(11 + 8 / 12, "feet"),
  17089. weight: math.unit(485, "lb"),
  17090. name: "Java (Fallen)",
  17091. rename: true,
  17092. image: {
  17093. source: "./media/characters/java/fallen.svg",
  17094. extra: 226 / 208,
  17095. bottom: 0.005
  17096. }
  17097. },
  17098. godkin: {
  17099. height: math.unit(10 + 6 / 12, "feet"),
  17100. weight: math.unit(328, "lb"),
  17101. name: "Java (Godkin)",
  17102. rename: true,
  17103. image: {
  17104. source: "./media/characters/java/godkin.svg",
  17105. extra: 1104/1068,
  17106. bottom: 36/1140
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(11 + 8 / 12, "feet"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(5 + 9 / 12, "feet"),
  17123. weight: math.unit(170, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/purna/front.svg",
  17127. extra: 239 / 229,
  17128. bottom: 0.01
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(5 + 9 / 12, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(5 + 9 / 12, "feet"),
  17145. weight: math.unit(142, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/kuva/front.svg",
  17149. extra: 281 / 271,
  17150. bottom: 0.006
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(5 + 9 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17164. {
  17165. anthro: {
  17166. height: math.unit(9 + 2 / 12, "feet"),
  17167. weight: math.unit(270, "lb"),
  17168. name: "Anthro",
  17169. image: {
  17170. source: "./media/characters/embra/anthro.svg",
  17171. extra: 200 / 187,
  17172. bottom: 0.02
  17173. }
  17174. },
  17175. feral: {
  17176. height: math.unit(18 + 8 / 12, "feet"),
  17177. weight: math.unit(576, "lb"),
  17178. name: "Feral",
  17179. image: {
  17180. source: "./media/characters/embra/feral.svg",
  17181. extra: 152 / 137,
  17182. bottom: 0.037
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(9 + 2 / 12, "feet"),
  17190. default: true
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17196. {
  17197. anthro: {
  17198. height: math.unit(10 + 9 / 12, "feet"),
  17199. weight: math.unit(224, "lb"),
  17200. name: "Anthro",
  17201. image: {
  17202. source: "./media/characters/grottos/anthro.svg",
  17203. extra: 350 / 332,
  17204. bottom: 0.045
  17205. }
  17206. },
  17207. feral: {
  17208. height: math.unit(20 + 7 / 12, "feet"),
  17209. weight: math.unit(629, "lb"),
  17210. name: "Feral",
  17211. image: {
  17212. source: "./media/characters/grottos/feral.svg",
  17213. extra: 207 / 190,
  17214. bottom: 0.05
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(10 + 9 / 12, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17228. {
  17229. anthro: {
  17230. height: math.unit(9 + 6 / 12, "feet"),
  17231. weight: math.unit(298, "lb"),
  17232. name: "Anthro",
  17233. image: {
  17234. source: "./media/characters/frifna/anthro.svg",
  17235. extra: 282 / 269,
  17236. bottom: 0.015
  17237. }
  17238. },
  17239. feral: {
  17240. height: math.unit(16 + 2 / 12, "feet"),
  17241. weight: math.unit(624, "lb"),
  17242. name: "Feral",
  17243. image: {
  17244. source: "./media/characters/frifna/feral.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(9 + 6 / 12, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(6 + 2 / 12, "feet"),
  17261. weight: math.unit(168, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/elise/front.svg",
  17265. extra: 276 / 271
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(6 + 2 / 12, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17279. {
  17280. front: {
  17281. height: math.unit(5 + 10 / 12, "feet"),
  17282. weight: math.unit(210, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/glade/front.svg",
  17286. extra: 258 / 247,
  17287. bottom: 0.008
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(5 + 10 / 12, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(5 + 10 / 12, "feet"),
  17304. weight: math.unit(129, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/rina/front.svg",
  17308. extra: 266 / 255,
  17309. bottom: 0.005
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(5 + 10 / 12, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17323. {
  17324. front: {
  17325. height: math.unit(6 + 1 / 12, "feet"),
  17326. weight: math.unit(192, "lb"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/veronica/front.svg",
  17330. extra: 319 / 309,
  17331. bottom: 0.005
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(6 + 1 / 12, "feet"),
  17339. default: true
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17345. {
  17346. front: {
  17347. height: math.unit(9 + 3 / 12, "feet"),
  17348. weight: math.unit(1100, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/braxton/front.svg",
  17352. extra: 1057 / 984,
  17353. bottom: 0.05
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(9 + 3 / 12, "feet")
  17361. },
  17362. {
  17363. name: "Giant",
  17364. height: math.unit(300, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(700, "feet")
  17370. },
  17371. {
  17372. name: "Megamacro",
  17373. height: math.unit(6000, "feet")
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(6 + 7 / 12, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/blue-feyonics/front.svg",
  17386. extra: 1403 / 1306,
  17387. bottom: 0.047
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(6 + 7 / 12, "feet"),
  17395. default: true
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(1.8, "meters"),
  17404. weight: math.unit(60, "kg"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/maxwell/front.svg",
  17408. extra: 2060 / 1873
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Micro",
  17415. height: math.unit(1, "mm")
  17416. },
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(1.8, "meter"),
  17420. default: true
  17421. },
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(30, "meters")
  17425. },
  17426. {
  17427. name: "Megamacro",
  17428. height: math.unit(10, "km")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6, "feet"),
  17437. weight: math.unit(150, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/jack/front.svg",
  17441. extra: 1754 / 1640,
  17442. bottom: 0.01
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(80000, "feet"),
  17450. default: true
  17451. },
  17452. {
  17453. name: "Max size",
  17454. height: math.unit(10, "lightyears")
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17460. {
  17461. urban: {
  17462. height: math.unit(5, "feet"),
  17463. weight: math.unit(240, "lb"),
  17464. name: "Urban",
  17465. image: {
  17466. source: "./media/characters/cafat/urban.svg",
  17467. extra: 1223/1126,
  17468. bottom: 205/1428
  17469. }
  17470. },
  17471. summer: {
  17472. height: math.unit(5, "feet"),
  17473. weight: math.unit(240, "lb"),
  17474. name: "Summer",
  17475. image: {
  17476. source: "./media/characters/cafat/summer.svg",
  17477. extra: 1223/1126,
  17478. bottom: 205/1428
  17479. }
  17480. },
  17481. winter: {
  17482. height: math.unit(5, "feet"),
  17483. weight: math.unit(240, "lb"),
  17484. name: "Winter",
  17485. image: {
  17486. source: "./media/characters/cafat/winter.svg",
  17487. extra: 1223/1126,
  17488. bottom: 205/1428
  17489. }
  17490. },
  17491. lingerie: {
  17492. height: math.unit(5, "feet"),
  17493. weight: math.unit(240, "lb"),
  17494. name: "Lingerie",
  17495. image: {
  17496. source: "./media/characters/cafat/lingerie.svg",
  17497. extra: 1223/1126,
  17498. bottom: 205/1428
  17499. }
  17500. },
  17501. upright: {
  17502. height: math.unit(6.3, "feet"),
  17503. weight: math.unit(240, "lb"),
  17504. name: "Upright",
  17505. image: {
  17506. source: "./media/characters/cafat/upright.svg",
  17507. bottom: 0.01
  17508. }
  17509. },
  17510. uprightFull: {
  17511. height: math.unit(6.3, "feet"),
  17512. weight: math.unit(240, "lb"),
  17513. name: "Upright (Full)",
  17514. image: {
  17515. source: "./media/characters/cafat/upright-full.svg",
  17516. bottom: 0.01
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Small",
  17523. height: math.unit(5, "feet"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Large",
  17528. height: math.unit(13, "feet")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(6, "feet"),
  17537. weight: math.unit(150, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/verin-raharra/front.svg",
  17541. extra: 5019 / 4835,
  17542. bottom: 0.023
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(7 + 5 / 12, "feet"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Upsized",
  17554. height: math.unit(20, "feet")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(7, "feet"),
  17563. weight: math.unit(230, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/nakata/front.svg",
  17567. extra: 1.005,
  17568. bottom: 0.01
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(7, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Big",
  17580. height: math.unit(14, "feet")
  17581. },
  17582. {
  17583. name: "Macro",
  17584. height: math.unit(400, "feet")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(4.91, "feet"),
  17593. weight: math.unit(100, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/lily/front.svg",
  17597. extra: 1585 / 1415,
  17598. bottom: 0.02
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(4.91, "feet"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17612. {
  17613. laying: {
  17614. height: math.unit(4 + 4 / 12, "feet"),
  17615. weight: math.unit(600, "lb"),
  17616. name: "Laying",
  17617. image: {
  17618. source: "./media/characters/sheila/laying.svg",
  17619. extra: 1333 / 1265,
  17620. bottom: 0.16
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(4 + 4 / 12, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(6, "feet"),
  17637. weight: math.unit(190, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/sax/front.svg",
  17641. extra: 1187 / 973,
  17642. bottom: 0.042
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Micro",
  17649. height: math.unit(4, "inches"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17656. {
  17657. front: {
  17658. height: math.unit(6, "feet"),
  17659. weight: math.unit(150, "lb"),
  17660. name: "Front",
  17661. image: {
  17662. source: "./media/characters/pandora/front.svg",
  17663. extra: 2720 / 2556,
  17664. bottom: 0.015
  17665. }
  17666. },
  17667. back: {
  17668. height: math.unit(6, "feet"),
  17669. weight: math.unit(150, "lb"),
  17670. name: "Back",
  17671. image: {
  17672. source: "./media/characters/pandora/back.svg",
  17673. extra: 2720 / 2556,
  17674. bottom: 0.01
  17675. }
  17676. },
  17677. beans: {
  17678. height: math.unit(6 / 8, "feet"),
  17679. name: "Beans",
  17680. image: {
  17681. source: "./media/characters/pandora/beans.svg"
  17682. }
  17683. },
  17684. collar: {
  17685. height: math.unit(0.31, "feet"),
  17686. name: "Collar",
  17687. image: {
  17688. source: "./media/characters/pandora/collar.svg"
  17689. }
  17690. },
  17691. skirt: {
  17692. height: math.unit(6, "feet"),
  17693. weight: math.unit(150, "lb"),
  17694. name: "Skirt",
  17695. image: {
  17696. source: "./media/characters/pandora/skirt.svg",
  17697. extra: 1622 / 1525,
  17698. bottom: 0.015
  17699. }
  17700. },
  17701. hoodie: {
  17702. height: math.unit(6, "feet"),
  17703. weight: math.unit(150, "lb"),
  17704. name: "Hoodie",
  17705. image: {
  17706. source: "./media/characters/pandora/hoodie.svg",
  17707. extra: 1622 / 1525,
  17708. bottom: 0.015
  17709. }
  17710. },
  17711. casual: {
  17712. height: math.unit(6, "feet"),
  17713. weight: math.unit(150, "lb"),
  17714. name: "Casual",
  17715. image: {
  17716. source: "./media/characters/pandora/casual.svg",
  17717. extra: 1622 / 1525,
  17718. bottom: 0.015
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(6, "feet")
  17726. },
  17727. {
  17728. name: "Big Steppy",
  17729. height: math.unit(1, "km"),
  17730. default: true
  17731. },
  17732. {
  17733. name: "Galactic Steppy",
  17734. height: math.unit(2, "gigameters")
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17740. {
  17741. side: {
  17742. height: math.unit(10, "feet"),
  17743. weight: math.unit(800, "kg"),
  17744. name: "Side",
  17745. image: {
  17746. source: "./media/characters/venio-darcony/side.svg",
  17747. extra: 1373 / 1003,
  17748. bottom: 0.037
  17749. }
  17750. },
  17751. front: {
  17752. height: math.unit(19, "feet"),
  17753. weight: math.unit(800, "kg"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/venio-darcony/front.svg"
  17757. }
  17758. },
  17759. back: {
  17760. height: math.unit(19, "feet"),
  17761. weight: math.unit(800, "kg"),
  17762. name: "Back",
  17763. image: {
  17764. source: "./media/characters/venio-darcony/back.svg"
  17765. }
  17766. },
  17767. sideNsfw: {
  17768. height: math.unit(10, "feet"),
  17769. weight: math.unit(800, "kg"),
  17770. name: "Side (NSFW)",
  17771. image: {
  17772. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17773. extra: 1373 / 1003,
  17774. bottom: 0.037
  17775. }
  17776. },
  17777. frontNsfw: {
  17778. height: math.unit(19, "feet"),
  17779. weight: math.unit(800, "kg"),
  17780. name: "Front (NSFW)",
  17781. image: {
  17782. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17783. }
  17784. },
  17785. backNsfw: {
  17786. height: math.unit(19, "feet"),
  17787. weight: math.unit(800, "kg"),
  17788. name: "Back (NSFW)",
  17789. image: {
  17790. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17791. }
  17792. },
  17793. sideArmored: {
  17794. height: math.unit(10, "feet"),
  17795. weight: math.unit(800, "kg"),
  17796. name: "Side (Armored)",
  17797. image: {
  17798. source: "./media/characters/venio-darcony/side-armored.svg",
  17799. extra: 1373 / 1003,
  17800. bottom: 0.037
  17801. }
  17802. },
  17803. frontArmored: {
  17804. height: math.unit(19, "feet"),
  17805. weight: math.unit(900, "kg"),
  17806. name: "Front (Armored)",
  17807. image: {
  17808. source: "./media/characters/venio-darcony/front-armored.svg"
  17809. }
  17810. },
  17811. backArmored: {
  17812. height: math.unit(19, "feet"),
  17813. weight: math.unit(900, "kg"),
  17814. name: "Back (Armored)",
  17815. image: {
  17816. source: "./media/characters/venio-darcony/back-armored.svg"
  17817. }
  17818. },
  17819. sword: {
  17820. height: math.unit(10, "feet"),
  17821. weight: math.unit(50, "lb"),
  17822. name: "Sword",
  17823. image: {
  17824. source: "./media/characters/venio-darcony/sword.svg"
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(10, "feet")
  17832. },
  17833. {
  17834. name: "Macro",
  17835. height: math.unit(130, "feet"),
  17836. default: true
  17837. },
  17838. {
  17839. name: "Macro+",
  17840. height: math.unit(240, "feet")
  17841. },
  17842. ]
  17843. ))
  17844. characterMakers.push(() => makeCharacter(
  17845. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17846. {
  17847. front: {
  17848. height: math.unit(6, "feet"),
  17849. weight: math.unit(150, "lb"),
  17850. name: "Front",
  17851. image: {
  17852. source: "./media/characters/veski/front.svg",
  17853. extra: 1299 / 1225,
  17854. bottom: 0.04
  17855. }
  17856. },
  17857. back: {
  17858. height: math.unit(6, "feet"),
  17859. weight: math.unit(150, "lb"),
  17860. name: "Back",
  17861. image: {
  17862. source: "./media/characters/veski/back.svg",
  17863. extra: 1299 / 1225,
  17864. bottom: 0.008
  17865. }
  17866. },
  17867. maw: {
  17868. height: math.unit(1.5 * 1.21, "feet"),
  17869. name: "Maw",
  17870. image: {
  17871. source: "./media/characters/veski/maw.svg"
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Macro",
  17878. height: math.unit(2, "km"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(5 + 7 / 12, "feet"),
  17888. name: "Front",
  17889. image: {
  17890. source: "./media/characters/isabelle/front.svg",
  17891. extra: 2130 / 1976,
  17892. bottom: 0.05
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Supermicro",
  17899. height: math.unit(10, "micrometers")
  17900. },
  17901. {
  17902. name: "Micro",
  17903. height: math.unit(1, "inch")
  17904. },
  17905. {
  17906. name: "Tiny",
  17907. height: math.unit(5, "inches")
  17908. },
  17909. {
  17910. name: "Standard",
  17911. height: math.unit(5 + 7 / 12, "inches")
  17912. },
  17913. {
  17914. name: "Macro",
  17915. height: math.unit(80, "meters"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Megamacro",
  17920. height: math.unit(250, "meters")
  17921. },
  17922. {
  17923. name: "Gigamacro",
  17924. height: math.unit(5, "km")
  17925. },
  17926. {
  17927. name: "Cosmic",
  17928. height: math.unit(2.5e6, "miles")
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(6, "feet"),
  17937. weight: math.unit(150, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/hanzo/front.svg",
  17941. extra: 374 / 344,
  17942. bottom: 0.02
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(8, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(7, "feet"),
  17959. weight: math.unit(130, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/anna/front.svg",
  17963. extra: 169 / 145,
  17964. bottom: 0.06
  17965. }
  17966. },
  17967. full: {
  17968. height: math.unit(4.96, "feet"),
  17969. weight: math.unit(220, "lb"),
  17970. name: "Full",
  17971. image: {
  17972. source: "./media/characters/anna/full.svg",
  17973. extra: 138 / 114,
  17974. bottom: 0.15
  17975. }
  17976. },
  17977. tongue: {
  17978. height: math.unit(2.53, "feet"),
  17979. name: "Tongue",
  17980. image: {
  17981. source: "./media/characters/anna/tongue.svg"
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(7, "feet"),
  17989. default: true
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17995. {
  17996. front: {
  17997. height: math.unit(7, "feet"),
  17998. weight: math.unit(150, "lb"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/ian-corvid/front.svg",
  18002. extra: 150 / 142,
  18003. bottom: 0.02
  18004. }
  18005. },
  18006. back: {
  18007. height: math.unit(7, "feet"),
  18008. weight: math.unit(150, "lb"),
  18009. name: "Back",
  18010. image: {
  18011. source: "./media/characters/ian-corvid/back.svg",
  18012. extra: 150 / 143,
  18013. bottom: 0.01
  18014. }
  18015. },
  18016. stomping: {
  18017. height: math.unit(7, "feet"),
  18018. weight: math.unit(150, "lb"),
  18019. name: "Stomping",
  18020. image: {
  18021. source: "./media/characters/ian-corvid/stomping.svg",
  18022. extra: 76 / 72
  18023. }
  18024. },
  18025. sitting: {
  18026. height: math.unit(7 / 1.8, "feet"),
  18027. weight: math.unit(150, "lb"),
  18028. name: "Sitting",
  18029. image: {
  18030. source: "./media/characters/ian-corvid/sitting.svg",
  18031. extra: 1400 / 1269,
  18032. bottom: 0.15
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Tiny Microw",
  18039. height: math.unit(1, "inch")
  18040. },
  18041. {
  18042. name: "Microw",
  18043. height: math.unit(6, "inches")
  18044. },
  18045. {
  18046. name: "Crow",
  18047. height: math.unit(7 + 1 / 12, "feet"),
  18048. default: true
  18049. },
  18050. {
  18051. name: "Macrow",
  18052. height: math.unit(176, "feet")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(5 + 7 / 12, "feet"),
  18061. weight: math.unit(147, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/natalie-kellon/front.svg",
  18065. extra: 1214 / 1141,
  18066. bottom: 0.02
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Micro",
  18073. height: math.unit(1 / 16, "inch")
  18074. },
  18075. {
  18076. name: "Tiny",
  18077. height: math.unit(4, "inches")
  18078. },
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(5 + 7 / 12, "feet"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Amazon",
  18086. height: math.unit(12, "feet")
  18087. },
  18088. {
  18089. name: "Giantess",
  18090. height: math.unit(160, "meters")
  18091. },
  18092. {
  18093. name: "Titaness",
  18094. height: math.unit(800, "meters")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/alluria/front.svg",
  18107. extra: 806 / 738,
  18108. bottom: 0.01
  18109. }
  18110. },
  18111. side: {
  18112. height: math.unit(6, "feet"),
  18113. weight: math.unit(150, "lb"),
  18114. name: "Side",
  18115. image: {
  18116. source: "./media/characters/alluria/side.svg",
  18117. extra: 800 / 750,
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(6, "feet"),
  18122. weight: math.unit(150, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/alluria/back.svg",
  18126. extra: 806 / 738,
  18127. }
  18128. },
  18129. frontMaid: {
  18130. height: math.unit(6, "feet"),
  18131. weight: math.unit(150, "lb"),
  18132. name: "Front (Maid)",
  18133. image: {
  18134. source: "./media/characters/alluria/front-maid.svg",
  18135. extra: 806 / 738,
  18136. bottom: 0.01
  18137. }
  18138. },
  18139. sideMaid: {
  18140. height: math.unit(6, "feet"),
  18141. weight: math.unit(150, "lb"),
  18142. name: "Side (Maid)",
  18143. image: {
  18144. source: "./media/characters/alluria/side-maid.svg",
  18145. extra: 800 / 750,
  18146. bottom: 0.005
  18147. }
  18148. },
  18149. backMaid: {
  18150. height: math.unit(6, "feet"),
  18151. weight: math.unit(150, "lb"),
  18152. name: "Back (Maid)",
  18153. image: {
  18154. source: "./media/characters/alluria/back-maid.svg",
  18155. extra: 806 / 738,
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Micro",
  18162. height: math.unit(6, "inches"),
  18163. default: true
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(6, "feet"),
  18172. weight: math.unit(150, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/kyle/front.svg",
  18176. extra: 1069 / 962,
  18177. bottom: 77.228 / 1727.45
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Macro",
  18184. height: math.unit(150, "feet"),
  18185. default: true
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18191. {
  18192. front: {
  18193. height: math.unit(6, "feet"),
  18194. weight: math.unit(300, "lb"),
  18195. name: "Front",
  18196. image: {
  18197. source: "./media/characters/duncan/front.svg",
  18198. extra: 1650 / 1482,
  18199. bottom: 0.05
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Macro",
  18206. height: math.unit(100, "feet"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(5 + 4 / 12, "feet"),
  18216. weight: math.unit(220, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/memory/front.svg",
  18220. extra: 3641 / 3545,
  18221. bottom: 0.03
  18222. }
  18223. },
  18224. back: {
  18225. height: math.unit(5 + 4 / 12, "feet"),
  18226. weight: math.unit(220, "lb"),
  18227. name: "Back",
  18228. image: {
  18229. source: "./media/characters/memory/back.svg",
  18230. extra: 3641 / 3545,
  18231. bottom: 0.025
  18232. }
  18233. },
  18234. frontSkirt: {
  18235. height: math.unit(5 + 4 / 12, "feet"),
  18236. weight: math.unit(220, "lb"),
  18237. name: "Front (Skirt)",
  18238. image: {
  18239. source: "./media/characters/memory/front-skirt.svg",
  18240. extra: 3641 / 3545,
  18241. bottom: 0.03
  18242. }
  18243. },
  18244. frontDress: {
  18245. height: math.unit(5 + 4 / 12, "feet"),
  18246. weight: math.unit(220, "lb"),
  18247. name: "Front (Dress)",
  18248. image: {
  18249. source: "./media/characters/memory/front-dress.svg",
  18250. extra: 3641 / 3545,
  18251. bottom: 0.03
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Micro",
  18258. height: math.unit(6, "inches"),
  18259. default: true
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(5 + 4 / 12, "feet")
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(4 + 11 / 12, "feet"),
  18272. weight: math.unit(100, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/luno/front.svg",
  18276. extra: 1535 / 1487,
  18277. bottom: 0.03
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Micro",
  18284. height: math.unit(3, "inches")
  18285. },
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(4 + 11 / 12, "feet"),
  18289. default: true
  18290. },
  18291. {
  18292. name: "Macro",
  18293. height: math.unit(300, "feet")
  18294. },
  18295. {
  18296. name: "Megamacro",
  18297. height: math.unit(700, "miles")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(6 + 2 / 12, "feet"),
  18306. weight: math.unit(170, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/jamesy/front.svg",
  18310. extra: 440 / 382,
  18311. bottom: 0.005
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Micro",
  18318. height: math.unit(3, "inches")
  18319. },
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(6 + 2 / 12, "feet"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Macro",
  18327. height: math.unit(300, "feet")
  18328. },
  18329. {
  18330. name: "Megamacro",
  18331. height: math.unit(700, "miles")
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(6, "feet"),
  18340. weight: math.unit(160, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/mark/front.svg",
  18344. extra: 3300 / 3100,
  18345. bottom: 136.42 / 3440.47
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Macro",
  18352. height: math.unit(120, "meters")
  18353. },
  18354. {
  18355. name: "Bigger Macro",
  18356. height: math.unit(350, "meters")
  18357. },
  18358. {
  18359. name: "Megamacro",
  18360. height: math.unit(8, "km"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "Continental",
  18365. height: math.unit(4550, "km")
  18366. },
  18367. {
  18368. name: "Planetary",
  18369. height: math.unit(65000, "km")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18375. {
  18376. front: {
  18377. height: math.unit(6, "feet"),
  18378. weight: math.unit(400, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/mac/front.svg",
  18382. extra: 1048 / 987.7,
  18383. bottom: 60 / 1107.6,
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Macro",
  18390. height: math.unit(500, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(5 + 2 / 12, "feet"),
  18400. weight: math.unit(190, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/bari/front.svg",
  18404. extra: 3156 / 2880,
  18405. bottom: 0.03
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(5 + 2 / 12, "feet"),
  18410. weight: math.unit(190, "lb"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/bari/back.svg",
  18414. extra: 3260 / 2834,
  18415. bottom: 0.025
  18416. }
  18417. },
  18418. frontPlush: {
  18419. height: math.unit(5 + 2 / 12, "feet"),
  18420. weight: math.unit(190, "lb"),
  18421. name: "Front (Plush)",
  18422. image: {
  18423. source: "./media/characters/bari/front-plush.svg",
  18424. extra: 1112 / 1061,
  18425. bottom: 0.002
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Micro",
  18432. height: math.unit(3, "inches")
  18433. },
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(5 + 2 / 12, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Macro",
  18441. height: math.unit(20, "feet")
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(6 + 1 / 12, "feet"),
  18450. weight: math.unit(275, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/hunter-misha-raven/front.svg"
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Mortal",
  18460. height: math.unit(6 + 1 / 12, "feet")
  18461. },
  18462. {
  18463. name: "Divine",
  18464. height: math.unit(1.12134e34, "parsecs"),
  18465. default: true
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18471. {
  18472. front: {
  18473. height: math.unit(6 + 3 / 12, "feet"),
  18474. weight: math.unit(220, "lb"),
  18475. name: "Front",
  18476. image: {
  18477. source: "./media/characters/max-calore/front.svg",
  18478. extra: 1700 / 1648,
  18479. bottom: 0.01
  18480. }
  18481. },
  18482. back: {
  18483. height: math.unit(6 + 3 / 12, "feet"),
  18484. weight: math.unit(220, "lb"),
  18485. name: "Back",
  18486. image: {
  18487. source: "./media/characters/max-calore/back.svg",
  18488. extra: 1700 / 1648,
  18489. bottom: 0.01
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(6 + 3 / 12, "feet"),
  18497. default: true
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18503. {
  18504. side: {
  18505. height: math.unit(2 + 8 / 12, "feet"),
  18506. weight: math.unit(99, "lb"),
  18507. name: "Side",
  18508. image: {
  18509. source: "./media/characters/aspen/side.svg",
  18510. extra: 152 / 138,
  18511. bottom: 0.032
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(2 + 8 / 12, "feet"),
  18519. default: true
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18525. {
  18526. side: {
  18527. height: math.unit(3 + 2 / 12, "feet"),
  18528. weight: math.unit(224, "lb"),
  18529. name: "Side",
  18530. image: {
  18531. source: "./media/characters/sheila-feral-wolf/side.svg",
  18532. extra: 179 / 166,
  18533. bottom: 0.03
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(3 + 2 / 12, "feet"),
  18541. default: true
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18547. {
  18548. side: {
  18549. height: math.unit(1 + 9 / 12, "feet"),
  18550. weight: math.unit(38, "lb"),
  18551. name: "Side",
  18552. image: {
  18553. source: "./media/characters/michelle/side.svg",
  18554. extra: 147 / 136.7,
  18555. bottom: 0.03
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(1 + 9 / 12, "feet"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(1.54, "feet"),
  18572. weight: math.unit(50, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/nino/front.svg"
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(1.54, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(1.49, "feet"),
  18592. weight: math.unit(45, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/viola/front.svg"
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(1.49, "feet"),
  18603. default: true
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(6 + 5 / 12, "feet"),
  18612. weight: math.unit(580, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/atlas/front.svg",
  18616. extra: 298.5 / 290,
  18617. bottom: 0.015
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(6 + 5 / 12, "feet"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18631. {
  18632. side: {
  18633. height: math.unit(15.6, "inches"),
  18634. weight: math.unit(10, "lb"),
  18635. name: "Side",
  18636. image: {
  18637. source: "./media/characters/davy/side.svg",
  18638. extra: 200 / 170,
  18639. bottom: 0.01
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(15.6, "inches"),
  18647. default: true
  18648. },
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18653. {
  18654. side: {
  18655. height: math.unit(4 + 8 / 12, "feet"),
  18656. weight: math.unit(166, "lb"),
  18657. name: "Side",
  18658. image: {
  18659. source: "./media/characters/fiona/side.svg",
  18660. extra: 232 / 220,
  18661. bottom: 0.03
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(4 + 8 / 12, "feet"),
  18669. default: true
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18675. {
  18676. front: {
  18677. height: math.unit(26, "inches"),
  18678. weight: math.unit(35, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/lyla/front.svg",
  18682. bottom: 0.1
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(3, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18696. {
  18697. side: {
  18698. height: math.unit(1.8, "feet"),
  18699. weight: math.unit(44, "lb"),
  18700. name: "Side",
  18701. image: {
  18702. source: "./media/characters/perseus/side.svg",
  18703. bottom: 0.21
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(1.8, "feet"),
  18711. default: true
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18717. {
  18718. side: {
  18719. height: math.unit(4 + 2 / 12, "feet"),
  18720. weight: math.unit(20, "lb"),
  18721. name: "Side",
  18722. image: {
  18723. source: "./media/characters/remus/side.svg"
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(4 + 2 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(4 + 11 / 12, "feet"),
  18740. weight: math.unit(114, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/raf/front.svg",
  18744. extra: 1504/1339,
  18745. bottom: 26/1530
  18746. }
  18747. },
  18748. side: {
  18749. height: math.unit(4 + 11 / 12, "feet"),
  18750. weight: math.unit(114, "lb"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/raf/side.svg",
  18754. extra: 1466/1316,
  18755. bottom: 29/1495
  18756. }
  18757. },
  18758. paw: {
  18759. height: math.unit(1.45, "feet"),
  18760. name: "Paw",
  18761. image: {
  18762. source: "./media/characters/raf/paw.svg"
  18763. },
  18764. extraAttributes: {
  18765. "toeSize": {
  18766. name: "Toe Size",
  18767. power: 2,
  18768. type: "area",
  18769. base: math.unit(0.004, "m^2")
  18770. },
  18771. "padSize": {
  18772. name: "Pad Size",
  18773. power: 2,
  18774. type: "area",
  18775. base: math.unit(0.04, "m^2")
  18776. },
  18777. "footSize": {
  18778. name: "Foot Size",
  18779. power: 2,
  18780. type: "area",
  18781. base: math.unit(0.08, "m^2")
  18782. },
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Micro",
  18789. height: math.unit(2, "inches")
  18790. },
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(4 + 11 / 12, "feet"),
  18794. default: true
  18795. },
  18796. {
  18797. name: "Macro",
  18798. height: math.unit(70, "feet")
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(1.5, "meters"),
  18807. weight: math.unit(68, "kg"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/liam-einarr/front.svg",
  18811. extra: 2822 / 2666
  18812. }
  18813. },
  18814. back: {
  18815. height: math.unit(1.5, "meters"),
  18816. weight: math.unit(68, "kg"),
  18817. name: "Back",
  18818. image: {
  18819. source: "./media/characters/liam-einarr/back.svg",
  18820. extra: 2822 / 2666,
  18821. bottom: 0.015
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(1.5, "meters"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(150, "meters")
  18834. },
  18835. {
  18836. name: "Megamacro",
  18837. height: math.unit(35, "km")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(75, "kg"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/linda/front.svg",
  18850. extra: 930 / 874,
  18851. bottom: 0.004
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(6, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(6 + 8 / 12, "feet"),
  18868. weight: math.unit(220, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/caylex/front.svg",
  18872. extra: 821 / 772,
  18873. bottom: 0.07
  18874. }
  18875. },
  18876. back: {
  18877. height: math.unit(6 + 8 / 12, "feet"),
  18878. weight: math.unit(220, "lb"),
  18879. name: "Back",
  18880. image: {
  18881. source: "./media/characters/caylex/back.svg",
  18882. extra: 821 / 772,
  18883. bottom: 0.022
  18884. }
  18885. },
  18886. hand: {
  18887. height: math.unit(1.25, "feet"),
  18888. name: "Hand",
  18889. image: {
  18890. source: "./media/characters/caylex/hand.svg"
  18891. }
  18892. },
  18893. foot: {
  18894. height: math.unit(1.6, "feet"),
  18895. name: "Foot",
  18896. image: {
  18897. source: "./media/characters/caylex/foot.svg"
  18898. }
  18899. },
  18900. armored: {
  18901. height: math.unit(6 + 8 / 12, "feet"),
  18902. weight: math.unit(250, "lb"),
  18903. name: "Armored",
  18904. image: {
  18905. source: "./media/characters/caylex/armored.svg",
  18906. extra: 1420 / 1310,
  18907. bottom: 0.045
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(6 + 8 / 12, "feet"),
  18915. default: true
  18916. },
  18917. {
  18918. name: "Normal+",
  18919. height: math.unit(12, "feet")
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18925. {
  18926. front: {
  18927. height: math.unit(7 + 6 / 12, "feet"),
  18928. weight: math.unit(288, "lb"),
  18929. name: "Front",
  18930. image: {
  18931. source: "./media/characters/alana/front.svg",
  18932. extra: 679 / 653,
  18933. bottom: 22.5 / 701
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(7 + 6 / 12, "feet")
  18941. },
  18942. {
  18943. name: "Large",
  18944. height: math.unit(50, "feet")
  18945. },
  18946. {
  18947. name: "Macro",
  18948. height: math.unit(100, "feet"),
  18949. default: true
  18950. },
  18951. {
  18952. name: "Macro+",
  18953. height: math.unit(200, "feet")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6 + 1 / 12, "feet"),
  18962. weight: math.unit(210, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/hasani/front.svg",
  18966. extra: 244 / 232,
  18967. bottom: 0.01
  18968. }
  18969. },
  18970. back: {
  18971. height: math.unit(6 + 1 / 12, "feet"),
  18972. weight: math.unit(210, "lb"),
  18973. name: "Back",
  18974. image: {
  18975. source: "./media/characters/hasani/back.svg",
  18976. extra: 244 / 232,
  18977. bottom: 0.01
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(6 + 1 / 12, "feet")
  18985. },
  18986. {
  18987. name: "Macro",
  18988. height: math.unit(175, "feet"),
  18989. default: true
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18995. {
  18996. front: {
  18997. height: math.unit(1.82, "meters"),
  18998. weight: math.unit(140, "lb"),
  18999. name: "Front",
  19000. image: {
  19001. source: "./media/characters/nita/front.svg",
  19002. extra: 2473 / 2363,
  19003. bottom: 0.01
  19004. }
  19005. },
  19006. },
  19007. [
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(1.82, "m")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(300, "m")
  19015. },
  19016. {
  19017. name: "Mistake Canon",
  19018. height: math.unit(0.5, "miles"),
  19019. default: true
  19020. },
  19021. {
  19022. name: "Big Mistake",
  19023. height: math.unit(13, "miles")
  19024. },
  19025. {
  19026. name: "Playing God",
  19027. height: math.unit(2450, "miles")
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(4, "feet"),
  19036. weight: math.unit(120, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/shiriko/front.svg",
  19040. extra: 970/934,
  19041. bottom: 5/975
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(4, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(6, "feet"),
  19058. name: "front",
  19059. image: {
  19060. source: "./media/characters/deja/front.svg",
  19061. extra: 926 / 840,
  19062. bottom: 0.07
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Planck Length",
  19069. height: math.unit(1.6e-35, "meters")
  19070. },
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(30.48, "meters"),
  19074. default: true
  19075. },
  19076. {
  19077. name: "Universal",
  19078. height: math.unit(8.8e26, "meters")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19084. {
  19085. side: {
  19086. height: math.unit(8, "feet"),
  19087. weight: math.unit(6300, "lb"),
  19088. name: "Side",
  19089. image: {
  19090. source: "./media/characters/anima/side.svg",
  19091. bottom: 0.035
  19092. }
  19093. },
  19094. },
  19095. [
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(8, "feet"),
  19099. default: true
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(8, "feet"),
  19108. weight: math.unit(350, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/bianca/front.svg",
  19112. extra: 234 / 225,
  19113. bottom: 0.03
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(8, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(11 + 5/12, "feet"),
  19130. weight: math.unit(1200, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/adinia/front.svg",
  19134. extra: 1767/1641,
  19135. bottom: 44/1811
  19136. },
  19137. extraAttributes: {
  19138. "energyIntake": {
  19139. name: "Energy Intake",
  19140. power: 3,
  19141. type: "energy",
  19142. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19143. },
  19144. }
  19145. },
  19146. back: {
  19147. height: math.unit(11 + 5/12, "feet"),
  19148. weight: math.unit(1200, "lb"),
  19149. name: "Back",
  19150. image: {
  19151. source: "./media/characters/adinia/back.svg",
  19152. extra: 1834/1684,
  19153. bottom: 14/1848
  19154. },
  19155. extraAttributes: {
  19156. "energyIntake": {
  19157. name: "Energy Intake",
  19158. power: 3,
  19159. type: "energy",
  19160. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19161. },
  19162. }
  19163. },
  19164. maw: {
  19165. height: math.unit(3.79, "feet"),
  19166. name: "Maw",
  19167. image: {
  19168. source: "./media/characters/adinia/maw.svg"
  19169. }
  19170. },
  19171. rump: {
  19172. height: math.unit(4.6, "feet"),
  19173. name: "Rump",
  19174. image: {
  19175. source: "./media/characters/adinia/rump.svg"
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(11 + 5 / 12, "feet"),
  19183. default: true
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(3, "meters"),
  19192. weight: math.unit(200, "kg"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/lykasa/front.svg",
  19196. extra: 1076 / 976,
  19197. bottom: 0.06
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(3, "meters")
  19205. },
  19206. {
  19207. name: "Kaiju",
  19208. height: math.unit(120, "meters"),
  19209. default: true
  19210. },
  19211. {
  19212. name: "Mega Kaiju",
  19213. height: math.unit(240, "km")
  19214. },
  19215. {
  19216. name: "Giga Kaiju",
  19217. height: math.unit(400, "megameters")
  19218. },
  19219. {
  19220. name: "Tera Kaiju",
  19221. height: math.unit(800, "gigameters")
  19222. },
  19223. {
  19224. name: "Kaiju Dragon Goddess",
  19225. height: math.unit(26, "zettaparsecs")
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19231. {
  19232. side: {
  19233. height: math.unit(283 / 124 * 6, "feet"),
  19234. weight: math.unit(35000, "lb"),
  19235. name: "Side",
  19236. image: {
  19237. source: "./media/characters/malfaren/side.svg",
  19238. extra: 1310/529,
  19239. bottom: 24/1334
  19240. }
  19241. },
  19242. front: {
  19243. height: math.unit(22.36, "feet"),
  19244. weight: math.unit(35000, "lb"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/malfaren/front.svg",
  19248. extra: 1237/1115,
  19249. bottom: 32/1269
  19250. }
  19251. },
  19252. maw: {
  19253. height: math.unit(6.9, "feet"),
  19254. name: "Maw",
  19255. image: {
  19256. source: "./media/characters/malfaren/maw.svg"
  19257. }
  19258. },
  19259. dick: {
  19260. height: math.unit(6.19, "feet"),
  19261. name: "Dick",
  19262. image: {
  19263. source: "./media/characters/malfaren/dick.svg"
  19264. }
  19265. },
  19266. eye: {
  19267. height: math.unit(0.69, "feet"),
  19268. name: "Eye",
  19269. image: {
  19270. source: "./media/characters/malfaren/eye.svg"
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Big",
  19277. height: math.unit(283 / 162 * 6, "feet"),
  19278. },
  19279. {
  19280. name: "Bigger",
  19281. height: math.unit(283 / 124 * 6, "feet")
  19282. },
  19283. {
  19284. name: "Massive",
  19285. height: math.unit(283 / 92 * 6, "feet"),
  19286. default: true
  19287. },
  19288. {
  19289. name: "👀💦",
  19290. height: math.unit(283 / 73 * 6, "feet"),
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(1.7, "m"),
  19299. weight: math.unit(70, "kg"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/kernel/front.svg",
  19303. extra: 222 / 210,
  19304. bottom: 0.007
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Nano",
  19311. height: math.unit(17, "micrometers")
  19312. },
  19313. {
  19314. name: "Micro",
  19315. height: math.unit(1.7, "mm")
  19316. },
  19317. {
  19318. name: "Small",
  19319. height: math.unit(1.7, "cm")
  19320. },
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(1.7, "m"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(1.75, "meters"),
  19333. weight: math.unit(65, "kg"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/jayne-folest/front.svg",
  19337. extra: 2115 / 2007,
  19338. bottom: 0.02
  19339. }
  19340. },
  19341. back: {
  19342. height: math.unit(1.75, "meters"),
  19343. weight: math.unit(65, "kg"),
  19344. name: "Back",
  19345. image: {
  19346. source: "./media/characters/jayne-folest/back.svg",
  19347. extra: 2115 / 2007,
  19348. bottom: 0.005
  19349. }
  19350. },
  19351. frontClothed: {
  19352. height: math.unit(1.75, "meters"),
  19353. weight: math.unit(65, "kg"),
  19354. name: "Front (Clothed)",
  19355. image: {
  19356. source: "./media/characters/jayne-folest/front-clothed.svg",
  19357. extra: 2115 / 2007,
  19358. bottom: 0.035
  19359. }
  19360. },
  19361. hand: {
  19362. height: math.unit(1 / 1.260, "feet"),
  19363. name: "Hand",
  19364. image: {
  19365. source: "./media/characters/jayne-folest/hand.svg"
  19366. }
  19367. },
  19368. foot: {
  19369. height: math.unit(1 / 0.918, "feet"),
  19370. name: "Foot",
  19371. image: {
  19372. source: "./media/characters/jayne-folest/foot.svg"
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Micro",
  19379. height: math.unit(4, "cm")
  19380. },
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(1.75, "meters")
  19384. },
  19385. {
  19386. name: "Macro",
  19387. height: math.unit(47.5, "meters"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(180, "cm"),
  19397. weight: math.unit(70, "kg"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/algier/front.svg",
  19401. extra: 596 / 572,
  19402. bottom: 0.04
  19403. }
  19404. },
  19405. back: {
  19406. height: math.unit(180, "cm"),
  19407. weight: math.unit(70, "kg"),
  19408. name: "Back",
  19409. image: {
  19410. source: "./media/characters/algier/back.svg",
  19411. extra: 596 / 572,
  19412. bottom: 0.025
  19413. }
  19414. },
  19415. frontdressed: {
  19416. height: math.unit(180, "cm"),
  19417. weight: math.unit(150, "kg"),
  19418. name: "Front-dressed",
  19419. image: {
  19420. source: "./media/characters/algier/front-dressed.svg",
  19421. extra: 596 / 572,
  19422. bottom: 0.038
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Micro",
  19429. height: math.unit(5, "cm")
  19430. },
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(180, "cm"),
  19434. default: true
  19435. },
  19436. {
  19437. name: "Macro",
  19438. height: math.unit(64, "m")
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19444. {
  19445. upright: {
  19446. height: math.unit(7, "feet"),
  19447. weight: math.unit(300, "lb"),
  19448. name: "Upright",
  19449. image: {
  19450. source: "./media/characters/pretzel/upright.svg",
  19451. extra: 534 / 522,
  19452. bottom: 0.065
  19453. }
  19454. },
  19455. sprawling: {
  19456. height: math.unit(3.75, "feet"),
  19457. weight: math.unit(300, "lb"),
  19458. name: "Sprawling",
  19459. image: {
  19460. source: "./media/characters/pretzel/sprawling.svg",
  19461. extra: 314 / 281,
  19462. bottom: 0.1
  19463. }
  19464. },
  19465. tongue: {
  19466. height: math.unit(2, "feet"),
  19467. name: "Tongue",
  19468. image: {
  19469. source: "./media/characters/pretzel/tongue.svg"
  19470. }
  19471. },
  19472. },
  19473. [
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(7, "feet"),
  19477. default: true
  19478. },
  19479. {
  19480. name: "Oversized",
  19481. height: math.unit(15, "feet")
  19482. },
  19483. {
  19484. name: "Huge",
  19485. height: math.unit(30, "feet")
  19486. },
  19487. {
  19488. name: "Macro",
  19489. height: math.unit(250, "feet")
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19495. {
  19496. sideFront: {
  19497. height: math.unit(5 + 2 / 12, "feet"),
  19498. weight: math.unit(120, "lb"),
  19499. name: "Front Side",
  19500. image: {
  19501. source: "./media/characters/roxi/side-front.svg",
  19502. extra: 2924 / 2717,
  19503. bottom: 0.08
  19504. }
  19505. },
  19506. sideBack: {
  19507. height: math.unit(5 + 2 / 12, "feet"),
  19508. weight: math.unit(120, "lb"),
  19509. name: "Back Side",
  19510. image: {
  19511. source: "./media/characters/roxi/side-back.svg",
  19512. extra: 2904 / 2693,
  19513. bottom: 0.06
  19514. }
  19515. },
  19516. front: {
  19517. height: math.unit(5 + 2 / 12, "feet"),
  19518. weight: math.unit(120, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/roxi/front.svg",
  19522. extra: 2028 / 1907,
  19523. bottom: 0.01
  19524. }
  19525. },
  19526. frontAlt: {
  19527. height: math.unit(5 + 2 / 12, "feet"),
  19528. weight: math.unit(120, "lb"),
  19529. name: "Front (Alt)",
  19530. image: {
  19531. source: "./media/characters/roxi/front-alt.svg",
  19532. extra: 1828 / 1798,
  19533. bottom: 0.01
  19534. }
  19535. },
  19536. sitting: {
  19537. height: math.unit(2.8, "feet"),
  19538. weight: math.unit(120, "lb"),
  19539. name: "Sitting",
  19540. image: {
  19541. source: "./media/characters/roxi/sitting.svg",
  19542. extra: 2660 / 2462,
  19543. bottom: 0.1
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(5 + 2 / 12, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19557. {
  19558. side: {
  19559. height: math.unit(55, "feet"),
  19560. weight: math.unit(153, "tons"),
  19561. name: "Side",
  19562. image: {
  19563. source: "./media/characters/shadow/side.svg",
  19564. extra: 701 / 628,
  19565. bottom: 0.02
  19566. }
  19567. },
  19568. flying: {
  19569. height: math.unit(145, "feet"),
  19570. weight: math.unit(153, "tons"),
  19571. name: "Flying",
  19572. image: {
  19573. source: "./media/characters/shadow/flying.svg"
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(55, "feet"),
  19581. default: true
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(6, "feet"),
  19590. weight: math.unit(200, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/marcie/front.svg",
  19594. extra: 960 / 876,
  19595. bottom: 58 / 1017.87
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Macro",
  19602. height: math.unit(1, "mile"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(7, "feet"),
  19612. weight: math.unit(200, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/kachina/front.svg",
  19616. extra: 1290.68 / 1119,
  19617. bottom: 36.5 / 1327.18
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(7, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19631. {
  19632. looking: {
  19633. height: math.unit(2, "meters"),
  19634. weight: math.unit(300, "kg"),
  19635. name: "Looking",
  19636. image: {
  19637. source: "./media/characters/kash/looking.svg",
  19638. extra: 474 / 344,
  19639. bottom: 0.03
  19640. }
  19641. },
  19642. side: {
  19643. height: math.unit(2, "meters"),
  19644. weight: math.unit(300, "kg"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/kash/side.svg",
  19648. extra: 302 / 251,
  19649. bottom: 0.03
  19650. }
  19651. },
  19652. front: {
  19653. height: math.unit(2, "meters"),
  19654. weight: math.unit(300, "kg"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/kash/front.svg",
  19658. extra: 495 / 360,
  19659. bottom: 0.015
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(2, "meters"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "Big",
  19671. height: math.unit(3, "meters")
  19672. },
  19673. {
  19674. name: "Large",
  19675. height: math.unit(5, "meters")
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19681. {
  19682. feeding: {
  19683. height: math.unit(6.7, "feet"),
  19684. weight: math.unit(350, "lb"),
  19685. name: "Feeding",
  19686. image: {
  19687. source: "./media/characters/lalim/feeding.svg",
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(6.7, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(9.5, "feet"),
  19704. weight: math.unit(600, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/de'vout/front.svg",
  19708. extra: 1443 / 1328,
  19709. bottom: 0.025
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(9.5, "feet"),
  19714. weight: math.unit(600, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/de'vout/back.svg",
  19718. extra: 1443 / 1328
  19719. }
  19720. },
  19721. frontDressed: {
  19722. height: math.unit(9.5, "feet"),
  19723. weight: math.unit(600, "lb"),
  19724. name: "Front (Dressed",
  19725. image: {
  19726. source: "./media/characters/de'vout/front-dressed.svg",
  19727. extra: 1443 / 1328,
  19728. bottom: 0.025
  19729. }
  19730. },
  19731. backDressed: {
  19732. height: math.unit(9.5, "feet"),
  19733. weight: math.unit(600, "lb"),
  19734. name: "Back (Dressed",
  19735. image: {
  19736. source: "./media/characters/de'vout/back-dressed.svg",
  19737. extra: 1443 / 1328
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(9.5, "feet"),
  19745. default: true
  19746. },
  19747. ]
  19748. ))
  19749. characterMakers.push(() => makeCharacter(
  19750. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19751. {
  19752. front: {
  19753. height: math.unit(8, "feet"),
  19754. weight: math.unit(225, "lb"),
  19755. name: "Front",
  19756. image: {
  19757. source: "./media/characters/talana/front.svg",
  19758. extra: 1410 / 1300,
  19759. bottom: 0.015
  19760. }
  19761. },
  19762. frontDressed: {
  19763. height: math.unit(8, "feet"),
  19764. weight: math.unit(225, "lb"),
  19765. name: "Front (Dressed",
  19766. image: {
  19767. source: "./media/characters/talana/front-dressed.svg",
  19768. extra: 1410 / 1300,
  19769. bottom: 0.015
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(8, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19783. {
  19784. side: {
  19785. height: math.unit(7.2, "feet"),
  19786. weight: math.unit(150, "lb"),
  19787. name: "Side",
  19788. image: {
  19789. source: "./media/characters/xeauvok/side.svg",
  19790. extra: 1975 / 1523,
  19791. bottom: 0.07
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(7.2, "feet"),
  19799. default: true
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19805. {
  19806. side: {
  19807. height: math.unit(4, "meters"),
  19808. weight: math.unit(2200, "kg"),
  19809. name: "Side",
  19810. image: {
  19811. source: "./media/characters/zara/side.svg",
  19812. extra: 765/744,
  19813. bottom: 156/921
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(4, "meters"),
  19821. default: true
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19827. {
  19828. side: {
  19829. height: math.unit(6, "feet"),
  19830. weight: math.unit(150, "lb"),
  19831. name: "Side",
  19832. image: {
  19833. source: "./media/characters/richard-dragon/side.svg",
  19834. extra: 845 / 340,
  19835. bottom: 0.017
  19836. }
  19837. },
  19838. maw: {
  19839. height: math.unit(2.97, "feet"),
  19840. name: "Maw",
  19841. image: {
  19842. source: "./media/characters/richard-dragon/maw.svg"
  19843. }
  19844. },
  19845. },
  19846. [
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(4, "feet"),
  19854. weight: math.unit(100, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/richard-smeargle/front.svg",
  19858. extra: 2952 / 2820,
  19859. bottom: 0.028
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(4, "feet"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Dynamax",
  19871. height: math.unit(20, "meters")
  19872. },
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19877. {
  19878. front: {
  19879. height: math.unit(6, "feet"),
  19880. weight: math.unit(110, "lb"),
  19881. name: "Front",
  19882. image: {
  19883. source: "./media/characters/klay/front.svg",
  19884. extra: 962 / 883,
  19885. bottom: 0.04
  19886. }
  19887. },
  19888. back: {
  19889. height: math.unit(6, "feet"),
  19890. weight: math.unit(110, "lb"),
  19891. name: "Back",
  19892. image: {
  19893. source: "./media/characters/klay/back.svg",
  19894. extra: 962 / 883
  19895. }
  19896. },
  19897. beans: {
  19898. height: math.unit(1.15, "feet"),
  19899. name: "Beans",
  19900. image: {
  19901. source: "./media/characters/klay/beans.svg"
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Micro",
  19908. height: math.unit(6, "inches")
  19909. },
  19910. {
  19911. name: "Mini",
  19912. height: math.unit(3, "feet")
  19913. },
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(6, "feet"),
  19917. default: true
  19918. },
  19919. {
  19920. name: "Big",
  19921. height: math.unit(25, "feet")
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(100, "feet")
  19926. },
  19927. {
  19928. name: "Megamacro",
  19929. height: math.unit(400, "feet")
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(6, "feet"),
  19938. weight: math.unit(160, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/marcus/front.svg",
  19942. extra: 734 / 676,
  19943. bottom: 0.03
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Little",
  19950. height: math.unit(6, "feet")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(110, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(250, "feet")
  19960. },
  19961. {
  19962. name: "Megamacro",
  19963. height: math.unit(1000, "feet")
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19969. {
  19970. front: {
  19971. height: math.unit(7, "feet"),
  19972. weight: math.unit(275, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/claude-delroute/front.svg",
  19976. extra: 902/827,
  19977. bottom: 26/928
  19978. }
  19979. },
  19980. side: {
  19981. height: math.unit(7, "feet"),
  19982. weight: math.unit(275, "lb"),
  19983. name: "Side",
  19984. image: {
  19985. source: "./media/characters/claude-delroute/side.svg",
  19986. extra: 908/853,
  19987. bottom: 16/924
  19988. }
  19989. },
  19990. back: {
  19991. height: math.unit(7, "feet"),
  19992. weight: math.unit(275, "lb"),
  19993. name: "Back",
  19994. image: {
  19995. source: "./media/characters/claude-delroute/back.svg",
  19996. extra: 911/829,
  19997. bottom: 18/929
  19998. }
  19999. },
  20000. maw: {
  20001. height: math.unit(0.6407, "meters"),
  20002. name: "Maw",
  20003. image: {
  20004. source: "./media/characters/claude-delroute/maw.svg"
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(7, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Lorge",
  20016. height: math.unit(20, "feet")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(8 + 4 / 12, "feet"),
  20025. weight: math.unit(600, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/dragonien/front.svg",
  20029. extra: 100 / 94,
  20030. bottom: 3.3 / 103.3445
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(8 + 4 / 12, "feet"),
  20035. weight: math.unit(600, "lb"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/dragonien/back.svg",
  20039. extra: 776 / 746,
  20040. bottom: 6.4 / 782.0616
  20041. }
  20042. },
  20043. foot: {
  20044. height: math.unit(1.54, "feet"),
  20045. name: "Foot",
  20046. image: {
  20047. source: "./media/characters/dragonien/foot.svg",
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(8 + 4 / 12, "feet"),
  20055. default: true
  20056. },
  20057. {
  20058. name: "Macro",
  20059. height: math.unit(200, "feet")
  20060. },
  20061. {
  20062. name: "Megamacro",
  20063. height: math.unit(1, "mile")
  20064. },
  20065. {
  20066. name: "Gigamacro",
  20067. height: math.unit(1000, "miles")
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(5 + 2 / 12, "feet"),
  20076. weight: math.unit(110, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/desta/front.svg",
  20080. extra: 767 / 726,
  20081. bottom: 11.7 / 779
  20082. }
  20083. },
  20084. back: {
  20085. height: math.unit(5 + 2 / 12, "feet"),
  20086. weight: math.unit(110, "lb"),
  20087. name: "Back",
  20088. image: {
  20089. source: "./media/characters/desta/back.svg",
  20090. extra: 777 / 728,
  20091. bottom: 6 / 784
  20092. }
  20093. },
  20094. frontAlt: {
  20095. height: math.unit(5 + 2 / 12, "feet"),
  20096. weight: math.unit(110, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/desta/front-alt.svg",
  20100. extra: 1482 / 1417
  20101. }
  20102. },
  20103. side: {
  20104. height: math.unit(5 + 2 / 12, "feet"),
  20105. weight: math.unit(110, "lb"),
  20106. name: "Side",
  20107. image: {
  20108. source: "./media/characters/desta/side.svg",
  20109. extra: 2579 / 2491,
  20110. bottom: 0.053
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Micro",
  20117. height: math.unit(6, "inches")
  20118. },
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(5 + 2 / 12, "feet"),
  20122. default: true
  20123. },
  20124. {
  20125. name: "Macro",
  20126. height: math.unit(62, "feet")
  20127. },
  20128. {
  20129. name: "Megamacro",
  20130. height: math.unit(1800, "feet")
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(10, "feet"),
  20139. weight: math.unit(700, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/storm-alystar/front.svg",
  20143. extra: 2112 / 1898,
  20144. bottom: 0.034
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Micro",
  20151. height: math.unit(3.5, "inches")
  20152. },
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(10, "feet"),
  20156. default: true
  20157. },
  20158. {
  20159. name: "Macro",
  20160. height: math.unit(400, "feet")
  20161. },
  20162. {
  20163. name: "Deific",
  20164. height: math.unit(60, "miles")
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(2.35, "meters"),
  20173. weight: math.unit(119, "kg"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/ilia/front.svg",
  20177. extra: 1285 / 1255,
  20178. bottom: 0.06
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(2.35, "meters")
  20186. },
  20187. {
  20188. name: "Macro",
  20189. height: math.unit(140, "meters"),
  20190. default: true
  20191. },
  20192. {
  20193. name: "Megamacro",
  20194. height: math.unit(100, "miles")
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20200. {
  20201. front: {
  20202. height: math.unit(6 + 5 / 12, "feet"),
  20203. weight: math.unit(190, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/kingdead/front.svg",
  20207. extra: 1228 / 1177
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Micro",
  20214. height: math.unit(7, "inches")
  20215. },
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(6 + 5 / 12, "feet")
  20219. },
  20220. {
  20221. name: "Macro",
  20222. height: math.unit(150, "feet"),
  20223. default: true
  20224. },
  20225. {
  20226. name: "Megamacro",
  20227. height: math.unit(200, "miles")
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20233. {
  20234. front: {
  20235. height: math.unit(8, "feet"),
  20236. weight: math.unit(600, "lb"),
  20237. name: "Front",
  20238. image: {
  20239. source: "./media/characters/kyrehx/front.svg",
  20240. extra: 1195 / 1095,
  20241. bottom: 0.034
  20242. }
  20243. },
  20244. },
  20245. [
  20246. {
  20247. name: "Micro",
  20248. height: math.unit(2, "inches")
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(8, "feet"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(255, "feet")
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20266. weight: math.unit(184, "lb"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/xang/front.svg",
  20270. extra: 845 / 755
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20278. default: true
  20279. },
  20280. {
  20281. name: "Macro",
  20282. height: math.unit(0.935 * 146, "feet")
  20283. },
  20284. {
  20285. name: "Megamacro",
  20286. height: math.unit(0.935 * 3, "miles")
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20292. {
  20293. frontDressed: {
  20294. height: math.unit(5 + 7 / 12, "feet"),
  20295. weight: math.unit(140, "lb"),
  20296. name: "Front (Dressed)",
  20297. image: {
  20298. source: "./media/characters/doc-weardno/front-dressed.svg",
  20299. extra: 263 / 234
  20300. }
  20301. },
  20302. backDressed: {
  20303. height: math.unit(5 + 7 / 12, "feet"),
  20304. weight: math.unit(140, "lb"),
  20305. name: "Back (Dressed)",
  20306. image: {
  20307. source: "./media/characters/doc-weardno/back-dressed.svg",
  20308. extra: 266 / 238
  20309. }
  20310. },
  20311. front: {
  20312. height: math.unit(5 + 7 / 12, "feet"),
  20313. weight: math.unit(140, "lb"),
  20314. name: "Front",
  20315. image: {
  20316. source: "./media/characters/doc-weardno/front.svg",
  20317. extra: 254 / 233
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Micro",
  20324. height: math.unit(3, "inches")
  20325. },
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(5 + 7 / 12, "feet"),
  20329. default: true
  20330. },
  20331. {
  20332. name: "Macro",
  20333. height: math.unit(25, "feet")
  20334. },
  20335. {
  20336. name: "Megamacro",
  20337. height: math.unit(2, "miles")
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20343. {
  20344. front: {
  20345. height: math.unit(6 + 2 / 12, "feet"),
  20346. weight: math.unit(153, "lb"),
  20347. name: "Front",
  20348. image: {
  20349. source: "./media/characters/seth-whilst/front.svg",
  20350. bottom: 0.07
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Micro",
  20357. height: math.unit(5, "inches")
  20358. },
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(6 + 2 / 12, "feet"),
  20362. default: true
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(3, "inches"),
  20371. weight: math.unit(8, "grams"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/pocket-jabari/front.svg",
  20375. extra: 1024 / 974,
  20376. bottom: 0.039
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Minimicro",
  20383. height: math.unit(8, "mm")
  20384. },
  20385. {
  20386. name: "Micro",
  20387. height: math.unit(3, "inches"),
  20388. default: true
  20389. },
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(3, "feet")
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20398. {
  20399. frontDressed: {
  20400. height: math.unit(15, "feet"),
  20401. weight: math.unit(3280, "lb"),
  20402. name: "Front (Dressed)",
  20403. image: {
  20404. source: "./media/characters/sapphy/front-dressed.svg",
  20405. extra: 1951/1654,
  20406. bottom: 194/2145
  20407. },
  20408. form: "anthro",
  20409. default: true
  20410. },
  20411. backDressed: {
  20412. height: math.unit(15, "feet"),
  20413. weight: math.unit(3280, "lb"),
  20414. name: "Back (Dressed)",
  20415. image: {
  20416. source: "./media/characters/sapphy/back-dressed.svg",
  20417. extra: 2058/1918,
  20418. bottom: 125/2183
  20419. },
  20420. form: "anthro"
  20421. },
  20422. frontNude: {
  20423. height: math.unit(15, "feet"),
  20424. weight: math.unit(3280, "lb"),
  20425. name: "Front (Nude)",
  20426. image: {
  20427. source: "./media/characters/sapphy/front-nude.svg",
  20428. extra: 1951/1654,
  20429. bottom: 194/2145
  20430. },
  20431. form: "anthro"
  20432. },
  20433. backNude: {
  20434. height: math.unit(15, "feet"),
  20435. weight: math.unit(3280, "lb"),
  20436. name: "Back (Nude)",
  20437. image: {
  20438. source: "./media/characters/sapphy/back-nude.svg",
  20439. extra: 2058/1918,
  20440. bottom: 125/2183
  20441. },
  20442. form: "anthro"
  20443. },
  20444. full: {
  20445. height: math.unit(15, "feet"),
  20446. weight: math.unit(3280, "lb"),
  20447. name: "Full",
  20448. image: {
  20449. source: "./media/characters/sapphy/full.svg",
  20450. extra: 1396/1317,
  20451. bottom: 44/1440
  20452. },
  20453. form: "anthro"
  20454. },
  20455. dick: {
  20456. height: math.unit(3.8, "feet"),
  20457. name: "Dick",
  20458. image: {
  20459. source: "./media/characters/sapphy/dick.svg"
  20460. },
  20461. form: "anthro"
  20462. },
  20463. feral: {
  20464. height: math.unit(35, "feet"),
  20465. weight: math.unit(160, "tons"),
  20466. name: "Feral",
  20467. image: {
  20468. source: "./media/characters/sapphy/feral.svg",
  20469. extra: 1050/573,
  20470. bottom: 60/1110
  20471. },
  20472. form: "feral",
  20473. default: true
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(15, "feet"),
  20480. form: "anthro"
  20481. },
  20482. {
  20483. name: "Casual Macro",
  20484. height: math.unit(120, "feet"),
  20485. form: "anthro"
  20486. },
  20487. {
  20488. name: "Macro",
  20489. height: math.unit(2150, "feet"),
  20490. default: true,
  20491. form: "anthro"
  20492. },
  20493. {
  20494. name: "Megamacro",
  20495. height: math.unit(8, "miles"),
  20496. form: "anthro"
  20497. },
  20498. {
  20499. name: "Galaxy Mom",
  20500. height: math.unit(6, "megalightyears"),
  20501. form: "anthro"
  20502. },
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(35, "feet"),
  20506. form: "feral",
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(300, "feet"),
  20512. form: "feral"
  20513. },
  20514. {
  20515. name: "Galaxy Mom",
  20516. height: math.unit(10, "megalightyears"),
  20517. form: "feral"
  20518. },
  20519. ],
  20520. {
  20521. "anthro": {
  20522. name: "Anthro",
  20523. default: true
  20524. },
  20525. "feral": {
  20526. name: "Feral"
  20527. }
  20528. }
  20529. ))
  20530. characterMakers.push(() => makeCharacter(
  20531. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20532. {
  20533. hyenaFront: {
  20534. height: math.unit(6, "feet"),
  20535. weight: math.unit(190, "lb"),
  20536. name: "Front",
  20537. image: {
  20538. source: "./media/characters/kiro/hyena-front.svg",
  20539. extra: 927/839,
  20540. bottom: 91/1018
  20541. },
  20542. form: "hyena",
  20543. default: true
  20544. },
  20545. front: {
  20546. height: math.unit(6, "feet"),
  20547. weight: math.unit(170, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/kiro/front.svg",
  20551. extra: 1064 / 1012,
  20552. bottom: 0.052
  20553. },
  20554. form: "folf",
  20555. default: true
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Micro",
  20561. height: math.unit(6, "inches"),
  20562. form: "folf"
  20563. },
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(6, "feet"),
  20567. form: "folf",
  20568. default: true
  20569. },
  20570. {
  20571. name: "Macro",
  20572. height: math.unit(72, "feet"),
  20573. form: "folf"
  20574. },
  20575. {
  20576. name: "Micro",
  20577. height: math.unit(6, "inches"),
  20578. form: "hyena"
  20579. },
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(6, "feet"),
  20583. form: "hyena",
  20584. default: true
  20585. },
  20586. {
  20587. name: "Macro",
  20588. height: math.unit(72, "feet"),
  20589. form: "hyena"
  20590. },
  20591. ],
  20592. {
  20593. "hyena": {
  20594. name: "Hyena",
  20595. default: true
  20596. },
  20597. "folf": {
  20598. name: "Folf",
  20599. },
  20600. }
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20604. {
  20605. front: {
  20606. height: math.unit(5 + 9 / 12, "feet"),
  20607. weight: math.unit(175, "lb"),
  20608. name: "Front",
  20609. image: {
  20610. source: "./media/characters/irishfox/front.svg",
  20611. extra: 1912 / 1680,
  20612. bottom: 0.02
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "Nano",
  20619. height: math.unit(1, "mm")
  20620. },
  20621. {
  20622. name: "Micro",
  20623. height: math.unit(2, "inches")
  20624. },
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 9 / 12, "feet"),
  20628. default: true
  20629. },
  20630. {
  20631. name: "Macro",
  20632. height: math.unit(45, "feet")
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20638. {
  20639. front: {
  20640. height: math.unit(6 + 1 / 12, "feet"),
  20641. weight: math.unit(75, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/aronai-sieyes/front.svg",
  20645. extra: 1532/1450,
  20646. bottom: 42/1574
  20647. }
  20648. },
  20649. side: {
  20650. height: math.unit(6 + 1 / 12, "feet"),
  20651. weight: math.unit(75, "lb"),
  20652. name: "Side",
  20653. image: {
  20654. source: "./media/characters/aronai-sieyes/side.svg",
  20655. extra: 1422/1365,
  20656. bottom: 148/1570
  20657. }
  20658. },
  20659. back: {
  20660. height: math.unit(6 + 1 / 12, "feet"),
  20661. weight: math.unit(75, "lb"),
  20662. name: "Back",
  20663. image: {
  20664. source: "./media/characters/aronai-sieyes/back.svg",
  20665. extra: 1526/1464,
  20666. bottom: 51/1577
  20667. }
  20668. },
  20669. dressed: {
  20670. height: math.unit(6 + 1 / 12, "feet"),
  20671. weight: math.unit(75, "lb"),
  20672. name: "Dressed",
  20673. image: {
  20674. source: "./media/characters/aronai-sieyes/dressed.svg",
  20675. extra: 1559/1483,
  20676. bottom: 39/1598
  20677. }
  20678. },
  20679. slit: {
  20680. height: math.unit(1.3, "feet"),
  20681. name: "Slit",
  20682. image: {
  20683. source: "./media/characters/aronai-sieyes/slit.svg"
  20684. }
  20685. },
  20686. slitSpread: {
  20687. height: math.unit(0.9, "feet"),
  20688. name: "Slit (Spread)",
  20689. image: {
  20690. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20691. }
  20692. },
  20693. rump: {
  20694. height: math.unit(1.3, "feet"),
  20695. name: "Rump",
  20696. image: {
  20697. source: "./media/characters/aronai-sieyes/rump.svg"
  20698. }
  20699. },
  20700. maw: {
  20701. height: math.unit(1.25, "feet"),
  20702. name: "Maw",
  20703. image: {
  20704. source: "./media/characters/aronai-sieyes/maw.svg"
  20705. }
  20706. },
  20707. feral: {
  20708. height: math.unit(18, "feet"),
  20709. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20710. name: "Feral",
  20711. image: {
  20712. source: "./media/characters/aronai-sieyes/feral.svg",
  20713. extra: 1530 / 1240,
  20714. bottom: 0.035
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Micro",
  20721. height: math.unit(2, "inches")
  20722. },
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(6 + 1 / 12, "feet"),
  20726. default: true
  20727. }
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(12, "feet"),
  20735. weight: math.unit(410, "kg"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/xuna/front.svg",
  20739. extra: 2184 / 1980
  20740. }
  20741. },
  20742. side: {
  20743. height: math.unit(12, "feet"),
  20744. weight: math.unit(410, "kg"),
  20745. name: "Side",
  20746. image: {
  20747. source: "./media/characters/xuna/side.svg",
  20748. extra: 2184 / 1980
  20749. }
  20750. },
  20751. back: {
  20752. height: math.unit(12, "feet"),
  20753. weight: math.unit(410, "kg"),
  20754. name: "Back",
  20755. image: {
  20756. source: "./media/characters/xuna/back.svg",
  20757. extra: 2184 / 1980
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Nano glow",
  20764. height: math.unit(10, "nm")
  20765. },
  20766. {
  20767. name: "Micro floof",
  20768. height: math.unit(0.3, "m")
  20769. },
  20770. {
  20771. name: "Huggable softy boi",
  20772. height: math.unit(3.6576, "m"),
  20773. default: true
  20774. },
  20775. {
  20776. name: "Admirable floof",
  20777. height: math.unit(80, "meters")
  20778. },
  20779. {
  20780. name: "Gentle macro",
  20781. height: math.unit(300, "meters")
  20782. },
  20783. {
  20784. name: "Very careful floof",
  20785. height: math.unit(3200, "meters")
  20786. },
  20787. {
  20788. name: "The mega floof",
  20789. height: math.unit(36000, "meters")
  20790. },
  20791. {
  20792. name: "Giga-fur-Wicker",
  20793. height: math.unit(4800000, "meters")
  20794. },
  20795. {
  20796. name: "Licky world",
  20797. height: math.unit(20000000, "meters")
  20798. },
  20799. {
  20800. name: "Floofy cyan sun",
  20801. height: math.unit(1500000000, "meters")
  20802. },
  20803. {
  20804. name: "Milky Wicker",
  20805. height: math.unit(1000000000000000000000, "meters")
  20806. },
  20807. {
  20808. name: "The observing Wicker",
  20809. height: math.unit(999999999999999999999999999, "meters")
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(5 + 9 / 12, "feet"),
  20818. weight: math.unit(150, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/arokha-sieyes/front.svg",
  20822. extra: 1425 / 1284,
  20823. bottom: 0.05
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(5 + 9 / 12, "feet")
  20831. },
  20832. {
  20833. name: "Macro",
  20834. height: math.unit(30, "meters"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(6, "feet"),
  20844. weight: math.unit(180, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/arokh-sieyes/front.svg",
  20848. extra: 1830 / 1769,
  20849. bottom: 0.01
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(6, "feet")
  20857. },
  20858. {
  20859. name: "Macro",
  20860. height: math.unit(30, "meters"),
  20861. default: true
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20867. {
  20868. side: {
  20869. height: math.unit(13 + 1 / 12, "feet"),
  20870. weight: math.unit(8.5, "tonnes"),
  20871. preyCapacity: math.unit(36, "people"),
  20872. name: "Side",
  20873. image: {
  20874. source: "./media/characters/goldeneye/side.svg",
  20875. extra: 1139/741,
  20876. bottom: 98/1237
  20877. }
  20878. },
  20879. front: {
  20880. height: math.unit(5.1, "feet"),
  20881. weight: math.unit(8.5, "tonnes"),
  20882. preyCapacity: math.unit(36, "people"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/goldeneye/front.svg",
  20886. extra: 635/365,
  20887. bottom: 598/1233
  20888. }
  20889. },
  20890. maw: {
  20891. height: math.unit(6.6, "feet"),
  20892. name: "Maw",
  20893. image: {
  20894. source: "./media/characters/goldeneye/maw.svg"
  20895. }
  20896. },
  20897. headFront: {
  20898. height: math.unit(8, "feet"),
  20899. name: "Head (Front)",
  20900. image: {
  20901. source: "./media/characters/goldeneye/head-front.svg"
  20902. }
  20903. },
  20904. headSide: {
  20905. height: math.unit(6, "feet"),
  20906. name: "Head (Side)",
  20907. image: {
  20908. source: "./media/characters/goldeneye/head-side.svg"
  20909. }
  20910. },
  20911. headBack: {
  20912. height: math.unit(8, "feet"),
  20913. name: "Head (Back)",
  20914. image: {
  20915. source: "./media/characters/goldeneye/head-back.svg"
  20916. }
  20917. },
  20918. paw: {
  20919. height: math.unit(3.4, "feet"),
  20920. name: "Paw",
  20921. image: {
  20922. source: "./media/characters/goldeneye/paw.svg"
  20923. }
  20924. },
  20925. toering: {
  20926. height: math.unit(0.45, "feet"),
  20927. name: "Toering",
  20928. image: {
  20929. source: "./media/characters/goldeneye/toering.svg"
  20930. }
  20931. },
  20932. eyes: {
  20933. height: math.unit(0.5, "feet"),
  20934. name: "Eyes",
  20935. image: {
  20936. source: "./media/characters/goldeneye/eyes.svg"
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(13 + 1 / 12, "feet"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20950. {
  20951. front: {
  20952. height: math.unit(6 + 1 / 12, "feet"),
  20953. weight: math.unit(210, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/leonardo-lycheborne/front.svg",
  20957. extra: 776/723,
  20958. bottom: 34/810
  20959. }
  20960. },
  20961. side: {
  20962. height: math.unit(6 + 1 / 12, "feet"),
  20963. weight: math.unit(210, "lb"),
  20964. name: "Side",
  20965. image: {
  20966. source: "./media/characters/leonardo-lycheborne/side.svg",
  20967. extra: 780/728,
  20968. bottom: 12/792
  20969. }
  20970. },
  20971. back: {
  20972. height: math.unit(6 + 1 / 12, "feet"),
  20973. weight: math.unit(210, "lb"),
  20974. name: "Back",
  20975. image: {
  20976. source: "./media/characters/leonardo-lycheborne/back.svg",
  20977. extra: 775/721,
  20978. bottom: 17/792
  20979. }
  20980. },
  20981. hand: {
  20982. height: math.unit(1.08, "feet"),
  20983. name: "Hand",
  20984. image: {
  20985. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20986. }
  20987. },
  20988. foot: {
  20989. height: math.unit(1.32, "feet"),
  20990. name: "Foot",
  20991. image: {
  20992. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20993. }
  20994. },
  20995. maw: {
  20996. height: math.unit(1, "feet"),
  20997. name: "Maw",
  20998. image: {
  20999. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21000. }
  21001. },
  21002. were: {
  21003. height: math.unit(20, "feet"),
  21004. weight: math.unit(7800, "lb"),
  21005. name: "Were",
  21006. image: {
  21007. source: "./media/characters/leonardo-lycheborne/were.svg",
  21008. extra: 1224/1165,
  21009. bottom: 72/1296
  21010. }
  21011. },
  21012. feral: {
  21013. height: math.unit(7.5, "feet"),
  21014. weight: math.unit(600, "lb"),
  21015. name: "Feral",
  21016. image: {
  21017. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21018. extra: 797/702,
  21019. bottom: 139/936
  21020. }
  21021. },
  21022. taur: {
  21023. height: math.unit(11, "feet"),
  21024. weight: math.unit(3300, "lb"),
  21025. name: "Taur",
  21026. image: {
  21027. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21028. extra: 1271/1197,
  21029. bottom: 47/1318
  21030. }
  21031. },
  21032. barghest: {
  21033. height: math.unit(11, "feet"),
  21034. weight: math.unit(1300, "lb"),
  21035. name: "Barghest",
  21036. image: {
  21037. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21038. extra: 1291/1204,
  21039. bottom: 37/1328
  21040. }
  21041. },
  21042. dick: {
  21043. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21044. name: "Dick",
  21045. image: {
  21046. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21047. }
  21048. },
  21049. dickWere: {
  21050. height: math.unit((20) / 3.8, "feet"),
  21051. name: "Dick (Were)",
  21052. image: {
  21053. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(6 + 1 / 12, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(10, "feet"),
  21070. weight: math.unit(350, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/jet/front.svg",
  21074. extra: 2050 / 1980,
  21075. bottom: 0.013
  21076. }
  21077. },
  21078. back: {
  21079. height: math.unit(10, "feet"),
  21080. weight: math.unit(350, "lb"),
  21081. name: "Back",
  21082. image: {
  21083. source: "./media/characters/jet/back.svg",
  21084. extra: 2050 / 1980,
  21085. bottom: 0.013
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Micro",
  21092. height: math.unit(6, "inches")
  21093. },
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(10, "feet"),
  21097. default: true
  21098. },
  21099. {
  21100. name: "Macro",
  21101. height: math.unit(100, "feet")
  21102. },
  21103. ]
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21107. {
  21108. front: {
  21109. height: math.unit(15, "feet"),
  21110. weight: math.unit(2800, "lb"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/tanarath/front.svg",
  21114. extra: 2392 / 2220,
  21115. bottom: 0.03
  21116. }
  21117. },
  21118. back: {
  21119. height: math.unit(15, "feet"),
  21120. weight: math.unit(2800, "lb"),
  21121. name: "Back",
  21122. image: {
  21123. source: "./media/characters/tanarath/back.svg",
  21124. extra: 2392 / 2220,
  21125. bottom: 0.03
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(15, "feet"),
  21133. default: true
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(7 + 1 / 12, "feet"),
  21142. weight: math.unit(175, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/patty-cattybatty/front.svg",
  21146. extra: 908 / 874,
  21147. bottom: 0.025
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Micro",
  21154. height: math.unit(1, "inch")
  21155. },
  21156. {
  21157. name: "Normal",
  21158. height: math.unit(7 + 1 / 12, "feet")
  21159. },
  21160. {
  21161. name: "Mini Macro",
  21162. height: math.unit(155, "feet")
  21163. },
  21164. {
  21165. name: "Macro",
  21166. height: math.unit(1077, "feet")
  21167. },
  21168. {
  21169. name: "Mega Macro",
  21170. height: math.unit(47650, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Giga Macro",
  21175. height: math.unit(440, "miles")
  21176. },
  21177. {
  21178. name: "Tera Macro",
  21179. height: math.unit(8700, "miles")
  21180. },
  21181. {
  21182. name: "Planetary Macro",
  21183. height: math.unit(32700, "miles")
  21184. },
  21185. {
  21186. name: "Solar Macro",
  21187. height: math.unit(550000, "miles")
  21188. },
  21189. {
  21190. name: "Celestial Macro",
  21191. height: math.unit(2.5, "AU")
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21197. {
  21198. front: {
  21199. height: math.unit(4 + 5 / 12, "feet"),
  21200. weight: math.unit(90, "lb"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/cappu/front.svg",
  21204. extra: 1247 / 1152,
  21205. bottom: 0.012
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(4 + 5 / 12, "feet"),
  21213. default: true
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21219. {
  21220. frontDressed: {
  21221. height: math.unit(70, "cm"),
  21222. weight: math.unit(6, "kg"),
  21223. name: "Front (Dressed)",
  21224. image: {
  21225. source: "./media/characters/sebi/front-dressed.svg",
  21226. extra: 713.5 / 686.5,
  21227. bottom: 0.003
  21228. }
  21229. },
  21230. front: {
  21231. height: math.unit(70, "cm"),
  21232. weight: math.unit(5, "kg"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/sebi/front.svg",
  21236. extra: 713.5 / 686.5,
  21237. bottom: 0.003
  21238. }
  21239. }
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(70, "cm"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(8, "meters")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(6, "feet"),
  21258. weight: math.unit(150, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/typhek/front.svg",
  21262. extra: 1948 / 1929,
  21263. bottom: 0.025
  21264. }
  21265. },
  21266. side: {
  21267. height: math.unit(6, "feet"),
  21268. weight: math.unit(150, "lb"),
  21269. name: "Side",
  21270. image: {
  21271. source: "./media/characters/typhek/side.svg",
  21272. extra: 2034 / 2010,
  21273. bottom: 0.003
  21274. }
  21275. },
  21276. back: {
  21277. height: math.unit(6, "feet"),
  21278. weight: math.unit(150, "lb"),
  21279. name: "Back",
  21280. image: {
  21281. source: "./media/characters/typhek/back.svg",
  21282. extra: 2005 / 1978,
  21283. bottom: 0.004
  21284. }
  21285. },
  21286. palm: {
  21287. height: math.unit(1.2, "feet"),
  21288. name: "Palm",
  21289. image: {
  21290. source: "./media/characters/typhek/palm.svg"
  21291. }
  21292. },
  21293. fist: {
  21294. height: math.unit(1.1, "feet"),
  21295. name: "Fist",
  21296. image: {
  21297. source: "./media/characters/typhek/fist.svg"
  21298. }
  21299. },
  21300. foot: {
  21301. height: math.unit(1.57, "feet"),
  21302. name: "Foot",
  21303. image: {
  21304. source: "./media/characters/typhek/foot.svg"
  21305. }
  21306. },
  21307. sole: {
  21308. height: math.unit(2.05, "feet"),
  21309. name: "Sole",
  21310. image: {
  21311. source: "./media/characters/typhek/sole.svg"
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Macro",
  21318. height: math.unit(40, "stories"),
  21319. default: true
  21320. },
  21321. {
  21322. name: "Megamacro",
  21323. height: math.unit(1, "mile")
  21324. },
  21325. {
  21326. name: "Gigamacro",
  21327. height: math.unit(4000, "solarradii")
  21328. },
  21329. {
  21330. name: "Universal",
  21331. height: math.unit(1.1, "universes")
  21332. }
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21337. {
  21338. side: {
  21339. height: math.unit(5 + 7 / 12, "feet"),
  21340. weight: math.unit(150, "lb"),
  21341. name: "Side",
  21342. image: {
  21343. source: "./media/characters/kassy/side.svg",
  21344. extra: 1280 / 1225,
  21345. bottom: 0.002
  21346. }
  21347. },
  21348. front: {
  21349. height: math.unit(5 + 7 / 12, "feet"),
  21350. weight: math.unit(150, "lb"),
  21351. name: "Front",
  21352. image: {
  21353. source: "./media/characters/kassy/front.svg",
  21354. extra: 1280 / 1225,
  21355. bottom: 0.025
  21356. }
  21357. },
  21358. back: {
  21359. height: math.unit(5 + 7 / 12, "feet"),
  21360. weight: math.unit(150, "lb"),
  21361. name: "Back",
  21362. image: {
  21363. source: "./media/characters/kassy/back.svg",
  21364. extra: 1280 / 1225,
  21365. bottom: 0.002
  21366. }
  21367. },
  21368. foot: {
  21369. height: math.unit(1.266, "feet"),
  21370. name: "Foot",
  21371. image: {
  21372. source: "./media/characters/kassy/foot.svg"
  21373. }
  21374. },
  21375. },
  21376. [
  21377. {
  21378. name: "Normal",
  21379. height: math.unit(5 + 7 / 12, "feet")
  21380. },
  21381. {
  21382. name: "Macro",
  21383. height: math.unit(137, "feet"),
  21384. default: true
  21385. },
  21386. {
  21387. name: "Megamacro",
  21388. height: math.unit(1, "mile")
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(6 + 1 / 12, "feet"),
  21397. weight: math.unit(200, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/neil/front.svg",
  21401. extra: 1326 / 1250,
  21402. bottom: 0.023
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Normal",
  21409. height: math.unit(6 + 1 / 12, "feet"),
  21410. default: true
  21411. },
  21412. {
  21413. name: "Macro",
  21414. height: math.unit(200, "feet")
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5 + 9 / 12, "feet"),
  21423. weight: math.unit(190, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/atticus/front.svg",
  21427. extra: 2934 / 2785,
  21428. bottom: 0.025
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(5 + 9 / 12, "feet"),
  21436. default: true
  21437. },
  21438. {
  21439. name: "Macro",
  21440. height: math.unit(180, "feet")
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21446. {
  21447. side: {
  21448. height: math.unit(9, "feet"),
  21449. weight: math.unit(650, "lb"),
  21450. name: "Side",
  21451. image: {
  21452. source: "./media/characters/milo/side.svg",
  21453. extra: 2644 / 2310,
  21454. bottom: 0.032
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(9, "feet"),
  21462. default: true
  21463. },
  21464. {
  21465. name: "Macro",
  21466. height: math.unit(300, "feet")
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21472. {
  21473. side: {
  21474. height: math.unit(8, "meters"),
  21475. weight: math.unit(90000, "kg"),
  21476. name: "Side",
  21477. image: {
  21478. source: "./media/characters/ijzer/side.svg",
  21479. extra: 2756 / 1600,
  21480. bottom: 0.01
  21481. }
  21482. },
  21483. },
  21484. [
  21485. {
  21486. name: "Small",
  21487. height: math.unit(3, "meters")
  21488. },
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(8, "meters"),
  21492. default: true
  21493. },
  21494. {
  21495. name: "Normal+",
  21496. height: math.unit(10, "meters")
  21497. },
  21498. {
  21499. name: "Bigger",
  21500. height: math.unit(24, "meters")
  21501. },
  21502. {
  21503. name: "Huge",
  21504. height: math.unit(80, "meters")
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(6 + 2 / 12, "feet"),
  21513. weight: math.unit(153, "lb"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/luca-cervicum/front.svg",
  21517. extra: 370 / 327,
  21518. bottom: 0.015
  21519. }
  21520. },
  21521. back: {
  21522. height: math.unit(6 + 2 / 12, "feet"),
  21523. weight: math.unit(153, "lb"),
  21524. name: "Back",
  21525. image: {
  21526. source: "./media/characters/luca-cervicum/back.svg",
  21527. extra: 367 / 333,
  21528. bottom: 0.005
  21529. }
  21530. },
  21531. frontGear: {
  21532. height: math.unit(6 + 2 / 12, "feet"),
  21533. weight: math.unit(173, "lb"),
  21534. name: "Front (Gear)",
  21535. image: {
  21536. source: "./media/characters/luca-cervicum/front-gear.svg",
  21537. extra: 377 / 333,
  21538. bottom: 0.006
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(6 + 2 / 12, "feet"),
  21546. default: true
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(6 + 1 / 12, "feet"),
  21555. weight: math.unit(304, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/oliver/front.svg",
  21559. extra: 157 / 143,
  21560. bottom: 0.08
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(6 + 1 / 12, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(5 + 7 / 12, "feet"),
  21577. weight: math.unit(140, "lb"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/shane/front.svg",
  21581. extra: 304 / 289,
  21582. bottom: 0.005
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(5 + 7 / 12, "feet"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(5 + 9 / 12, "feet"),
  21599. weight: math.unit(178, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/shin/front.svg",
  21603. extra: 159 / 151,
  21604. bottom: 0.015
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(5 + 9 / 12, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(5 + 10 / 12, "feet"),
  21621. weight: math.unit(168, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/xerxes/front.svg",
  21625. extra: 282 / 260,
  21626. bottom: 0.045
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(5 + 10 / 12, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(6 + 7 / 12, "feet"),
  21643. weight: math.unit(208, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/chaska/front.svg",
  21647. extra: 332 / 319,
  21648. bottom: 0.015
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(6 + 7 / 12, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(5 + 8 / 12, "feet"),
  21665. weight: math.unit(208, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/enuk/front.svg",
  21669. extra: 437 / 406,
  21670. bottom: 0.02
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(5 + 8 / 12, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(5 + 10 / 12, "feet"),
  21687. weight: math.unit(252, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/bruun/front.svg",
  21691. extra: 197 / 187,
  21692. bottom: 0.012
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(5 + 10 / 12, "feet"),
  21700. default: true
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21706. {
  21707. front: {
  21708. height: math.unit(6 + 10 / 12, "feet"),
  21709. weight: math.unit(255, "lb"),
  21710. name: "Front",
  21711. image: {
  21712. source: "./media/characters/alexeev/front.svg",
  21713. extra: 213 / 200,
  21714. bottom: 0.05
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(6 + 10 / 12, "feet"),
  21722. default: true
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(2 + 8 / 12, "feet"),
  21731. weight: math.unit(22, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/evelyn/front.svg",
  21735. extra: 208 / 180
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(2 + 8 / 12, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(5 + 9 / 12, "feet"),
  21752. weight: math.unit(139, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/inca/front.svg",
  21756. extra: 294 / 291,
  21757. bottom: 0.03
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(5 + 9 / 12, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(6 + 3 / 12, "feet"),
  21774. weight: math.unit(185, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/mera/front.svg",
  21778. extra: 291 / 277,
  21779. bottom: 0.03
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(6 + 3 / 12, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(6 + 7 / 12, "feet"),
  21796. weight: math.unit(160, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/ceres/front.svg",
  21800. extra: 1023 / 950,
  21801. bottom: 0.027
  21802. }
  21803. },
  21804. back: {
  21805. height: math.unit(6 + 7 / 12, "feet"),
  21806. weight: math.unit(160, "lb"),
  21807. name: "Back",
  21808. image: {
  21809. source: "./media/characters/ceres/back.svg",
  21810. extra: 1023 / 950
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Normal",
  21817. height: math.unit(6 + 7 / 12, "feet"),
  21818. default: true
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(5 + 10 / 12, "feet"),
  21827. weight: math.unit(150, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/kris/front.svg",
  21831. extra: 885 / 803,
  21832. bottom: 0.03
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(5 + 10 / 12, "feet"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(7, "feet"),
  21849. weight: math.unit(120, "kg"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/taluthus/front.svg",
  21853. extra: 903 / 833,
  21854. bottom: 0.015
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(7, "feet"),
  21862. default: true
  21863. },
  21864. {
  21865. name: "Macro",
  21866. height: math.unit(300, "feet")
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(5 + 9 / 12, "feet"),
  21875. weight: math.unit(145, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/dawn/front.svg",
  21879. extra: 2094 / 2016,
  21880. bottom: 0.025
  21881. }
  21882. },
  21883. back: {
  21884. height: math.unit(5 + 9 / 12, "feet"),
  21885. weight: math.unit(160, "lb"),
  21886. name: "Back",
  21887. image: {
  21888. source: "./media/characters/dawn/back.svg",
  21889. extra: 2112 / 2080,
  21890. bottom: 0.005
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(6 + 7 / 12, "feet"),
  21898. default: true
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21904. {
  21905. anthro: {
  21906. height: math.unit(8 + 3 / 12, "feet"),
  21907. weight: math.unit(450, "lb"),
  21908. name: "Anthro",
  21909. image: {
  21910. source: "./media/characters/arador/anthro.svg",
  21911. extra: 1835 / 1718,
  21912. bottom: 0.025
  21913. }
  21914. },
  21915. feral: {
  21916. height: math.unit(4, "feet"),
  21917. weight: math.unit(200, "lb"),
  21918. name: "Feral",
  21919. image: {
  21920. source: "./media/characters/arador/feral.svg",
  21921. extra: 1683 / 1514,
  21922. bottom: 0.07
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(8 + 3 / 12, "feet")
  21930. },
  21931. {
  21932. name: "Macro",
  21933. height: math.unit(82.5, "feet"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21940. {
  21941. front: {
  21942. height: math.unit(5 + 10 / 12, "feet"),
  21943. weight: math.unit(125, "lb"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/dharsi/front.svg",
  21947. extra: 716 / 630,
  21948. bottom: 0.035
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Nano",
  21955. height: math.unit(100, "nm")
  21956. },
  21957. {
  21958. name: "Micro",
  21959. height: math.unit(2, "inches")
  21960. },
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(5 + 10 / 12, "feet"),
  21964. default: true
  21965. },
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(1000, "feet")
  21969. },
  21970. {
  21971. name: "Megamacro",
  21972. height: math.unit(10, "miles")
  21973. },
  21974. {
  21975. name: "Gigamacro",
  21976. height: math.unit(3000, "miles")
  21977. },
  21978. {
  21979. name: "Teramacro",
  21980. height: math.unit(500000, "miles")
  21981. },
  21982. {
  21983. name: "Teramacro+",
  21984. height: math.unit(30, "galaxies")
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(6, "feet"),
  21993. weight: math.unit(150, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/deathy/front.svg",
  21997. extra: 1552 / 1463,
  21998. bottom: 0.025
  21999. }
  22000. },
  22001. side: {
  22002. height: math.unit(6, "feet"),
  22003. weight: math.unit(150, "lb"),
  22004. name: "Side",
  22005. image: {
  22006. source: "./media/characters/deathy/side.svg",
  22007. extra: 1604 / 1455,
  22008. bottom: 0.025
  22009. }
  22010. },
  22011. back: {
  22012. height: math.unit(6, "feet"),
  22013. weight: math.unit(150, "lb"),
  22014. name: "Back",
  22015. image: {
  22016. source: "./media/characters/deathy/back.svg",
  22017. extra: 1580 / 1463,
  22018. bottom: 0.005
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Micro",
  22025. height: math.unit(5, "millimeters")
  22026. },
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(6 + 5 / 12, "feet"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22036. {
  22037. front: {
  22038. height: math.unit(16, "feet"),
  22039. weight: math.unit(4000, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/juniper/front.svg",
  22043. bottom: 0.04
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(16, "feet"),
  22051. default: true
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22057. {
  22058. front: {
  22059. height: math.unit(6, "feet"),
  22060. weight: math.unit(150, "lb"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/hipster/front.svg",
  22064. extra: 1312 / 1209,
  22065. bottom: 0.025
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(6, "feet"),
  22070. weight: math.unit(150, "lb"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/hipster/back.svg",
  22074. extra: 1281 / 1196,
  22075. bottom: 0.01
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Micro",
  22082. height: math.unit(1, "mm")
  22083. },
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(4, "inches"),
  22087. default: true
  22088. },
  22089. {
  22090. name: "Macro",
  22091. height: math.unit(500, "feet")
  22092. },
  22093. {
  22094. name: "Megamacro",
  22095. height: math.unit(1000, "miles")
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22101. {
  22102. front: {
  22103. height: math.unit(6, "feet"),
  22104. weight: math.unit(150, "lb"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/tendirmuldr/front.svg",
  22108. extra: 1878 / 1772,
  22109. bottom: 0.015
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Megamacro",
  22116. height: math.unit(1500, "miles"),
  22117. default: true
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22123. {
  22124. front: {
  22125. height: math.unit(14, "feet"),
  22126. weight: math.unit(12000, "lb"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/mort/front.svg",
  22130. extra: 365 / 318,
  22131. bottom: 0.01
  22132. }
  22133. },
  22134. side: {
  22135. height: math.unit(14, "feet"),
  22136. weight: math.unit(12000, "lb"),
  22137. name: "Side",
  22138. image: {
  22139. source: "./media/characters/mort/side.svg",
  22140. extra: 365 / 318,
  22141. bottom: 0.052
  22142. },
  22143. default: true
  22144. },
  22145. back: {
  22146. height: math.unit(14, "feet"),
  22147. weight: math.unit(12000, "lb"),
  22148. name: "Back",
  22149. image: {
  22150. source: "./media/characters/mort/back.svg",
  22151. extra: 371 / 332,
  22152. bottom: 0.18
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(14, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22166. {
  22167. front: {
  22168. height: math.unit(8, "feet"),
  22169. weight: math.unit(1, "ton"),
  22170. name: "Front",
  22171. image: {
  22172. source: "./media/characters/lycoa/front.svg",
  22173. extra: 1836/1728,
  22174. bottom: 81/1917
  22175. }
  22176. },
  22177. back: {
  22178. height: math.unit(8, "feet"),
  22179. weight: math.unit(1, "ton"),
  22180. name: "Back",
  22181. image: {
  22182. source: "./media/characters/lycoa/back.svg",
  22183. extra: 1785/1720,
  22184. bottom: 91/1876
  22185. }
  22186. },
  22187. head: {
  22188. height: math.unit(1.6243, "feet"),
  22189. name: "Head",
  22190. image: {
  22191. source: "./media/characters/lycoa/head.svg",
  22192. extra: 1011/782,
  22193. bottom: 0/1011
  22194. }
  22195. },
  22196. tailmaw: {
  22197. height: math.unit(1.9, "feet"),
  22198. name: "Tailmaw",
  22199. image: {
  22200. source: "./media/characters/lycoa/tailmaw.svg"
  22201. }
  22202. },
  22203. tentacles: {
  22204. height: math.unit(2.1, "feet"),
  22205. name: "Tentacles",
  22206. image: {
  22207. source: "./media/characters/lycoa/tentacles.svg"
  22208. }
  22209. },
  22210. dick: {
  22211. height: math.unit(1.73, "feet"),
  22212. name: "Dick",
  22213. image: {
  22214. source: "./media/characters/lycoa/dick.svg"
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Normal",
  22221. height: math.unit(8, "feet"),
  22222. default: true
  22223. },
  22224. {
  22225. name: "Macro",
  22226. height: math.unit(30, "feet")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22232. {
  22233. front: {
  22234. height: math.unit(4 + 2 / 12, "feet"),
  22235. weight: math.unit(70, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/naldara/front.svg",
  22239. extra: 1664/1387,
  22240. bottom: 81/1745
  22241. },
  22242. form: "anthro",
  22243. default: true
  22244. },
  22245. naga: {
  22246. height: math.unit(20, "feet"),
  22247. weight: math.unit(15000, "kg"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/naldara/naga.svg",
  22251. extra: 1590/1396,
  22252. bottom: 285/1875
  22253. },
  22254. form: "naga",
  22255. default: true
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Normal",
  22261. height: math.unit(4 + 2 / 12, "feet"),
  22262. form: "anthro",
  22263. default: true
  22264. },
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(20, "feet"),
  22268. form: "naga",
  22269. default: true
  22270. },
  22271. ],
  22272. {
  22273. "anthro": {
  22274. name: "Anthro",
  22275. default: true
  22276. },
  22277. "naga": {
  22278. name: "Naga"
  22279. }
  22280. }
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(13 + 7 / 12, "feet"),
  22287. weight: math.unit(1500, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/briar/front.svg",
  22291. extra: 1223/1157,
  22292. bottom: 123/1346
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(13 + 7 / 12, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22306. {
  22307. side: {
  22308. height: math.unit(16, "feet"),
  22309. weight: math.unit(500, "lb"),
  22310. name: "Side",
  22311. image: {
  22312. source: "./media/characters/vanguard/side.svg",
  22313. extra: 1022/914,
  22314. bottom: 30/1052
  22315. }
  22316. },
  22317. sideAlt: {
  22318. height: math.unit(10, "feet"),
  22319. weight: math.unit(500, "lb"),
  22320. name: "Side (Alt)",
  22321. image: {
  22322. source: "./media/characters/vanguard/side-alt.svg",
  22323. extra: 502 / 425,
  22324. bottom: 0.087
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(17.71, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(7.5, "feet"),
  22341. weight: math.unit(2, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/artemis/work-safe-front.svg",
  22345. extra: 1192 / 1075,
  22346. bottom: 0.07
  22347. },
  22348. form: "work-safe",
  22349. default: true
  22350. },
  22351. frontNsfw: {
  22352. height: math.unit(7.5, "feet"),
  22353. weight: math.unit(2, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/artemis/calibrating-front.svg",
  22357. extra: 1192 / 1075,
  22358. bottom: 0.07
  22359. },
  22360. form: "calibrating",
  22361. default: true
  22362. },
  22363. frontNsfwer: {
  22364. height: math.unit(7.5, "feet"),
  22365. weight: math.unit(2, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/artemis/oversize-load-front.svg",
  22369. extra: 1192 / 1075,
  22370. bottom: 0.07
  22371. },
  22372. form: "oversize-load",
  22373. default: true
  22374. },
  22375. side: {
  22376. height: math.unit(7.5, "feet"),
  22377. weight: math.unit(2, "lb"),
  22378. name: "Side",
  22379. image: {
  22380. source: "./media/characters/artemis/work-safe-side.svg",
  22381. extra: 1192 / 1075,
  22382. bottom: 0.07
  22383. },
  22384. form: "work-safe"
  22385. },
  22386. sideNsfw: {
  22387. height: math.unit(7.5, "feet"),
  22388. weight: math.unit(2, "lb"),
  22389. name: "Side",
  22390. image: {
  22391. source: "./media/characters/artemis/calibrating-side.svg",
  22392. extra: 1192 / 1075,
  22393. bottom: 0.07
  22394. },
  22395. form: "calibrating"
  22396. },
  22397. sideNsfwer: {
  22398. height: math.unit(7.5, "feet"),
  22399. weight: math.unit(2, "lb"),
  22400. name: "Side",
  22401. image: {
  22402. source: "./media/characters/artemis/oversize-load-side.svg",
  22403. extra: 1192 / 1075,
  22404. bottom: 0.07
  22405. },
  22406. form: "oversize-load"
  22407. },
  22408. maw: {
  22409. height: math.unit(1.1, "feet"),
  22410. name: "Maw",
  22411. image: {
  22412. source: "./media/characters/artemis/maw.svg"
  22413. },
  22414. form: "work-safe"
  22415. },
  22416. stomach: {
  22417. height: math.unit(0.95, "feet"),
  22418. name: "Stomach",
  22419. image: {
  22420. source: "./media/characters/artemis/stomach.svg"
  22421. },
  22422. form: "work-safe"
  22423. },
  22424. dickCanine: {
  22425. height: math.unit(1, "feet"),
  22426. name: "Dick (Canine)",
  22427. image: {
  22428. source: "./media/characters/artemis/dick-canine.svg"
  22429. },
  22430. form: "calibrating"
  22431. },
  22432. dickEquine: {
  22433. height: math.unit(0.85, "feet"),
  22434. name: "Dick (Equine)",
  22435. image: {
  22436. source: "./media/characters/artemis/dick-equine.svg"
  22437. },
  22438. form: "calibrating"
  22439. },
  22440. dickExotic: {
  22441. height: math.unit(0.85, "feet"),
  22442. name: "Dick (Exotic)",
  22443. image: {
  22444. source: "./media/characters/artemis/dick-exotic.svg"
  22445. },
  22446. form: "calibrating"
  22447. },
  22448. dickCanineBigger: {
  22449. height: math.unit(1 * 1.33, "feet"),
  22450. name: "Dick (Canine)",
  22451. image: {
  22452. source: "./media/characters/artemis/dick-canine.svg"
  22453. },
  22454. form: "oversize-load"
  22455. },
  22456. dickEquineBigger: {
  22457. height: math.unit(0.85 * 1.33, "feet"),
  22458. name: "Dick (Equine)",
  22459. image: {
  22460. source: "./media/characters/artemis/dick-equine.svg"
  22461. },
  22462. form: "oversize-load"
  22463. },
  22464. dickExoticBigger: {
  22465. height: math.unit(0.85 * 1.33, "feet"),
  22466. name: "Dick (Exotic)",
  22467. image: {
  22468. source: "./media/characters/artemis/dick-exotic.svg"
  22469. },
  22470. form: "oversize-load"
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(7.5, "feet"),
  22477. form: "work-safe",
  22478. default: true
  22479. },
  22480. {
  22481. name: "Normal",
  22482. height: math.unit(7.5, "feet"),
  22483. form: "calibrating",
  22484. default: true
  22485. },
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(7.5, "feet"),
  22489. form: "oversize-load",
  22490. default: true
  22491. },
  22492. {
  22493. name: "Enlarged",
  22494. height: math.unit(12, "feet"),
  22495. form: "work-safe",
  22496. },
  22497. {
  22498. name: "Enlarged",
  22499. height: math.unit(12, "feet"),
  22500. form: "calibrating",
  22501. },
  22502. {
  22503. name: "Enlarged",
  22504. height: math.unit(12, "feet"),
  22505. form: "oversize-load",
  22506. },
  22507. ],
  22508. {
  22509. "work-safe": {
  22510. name: "Work-Safe",
  22511. default: true
  22512. },
  22513. "calibrating": {
  22514. name: "Calibrating"
  22515. },
  22516. "oversize-load": {
  22517. name: "Oversize Load"
  22518. }
  22519. }
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(5 + 3 / 12, "feet"),
  22526. weight: math.unit(160, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/kira/front.svg",
  22530. extra: 906 / 786,
  22531. bottom: 0.01
  22532. }
  22533. },
  22534. back: {
  22535. height: math.unit(5 + 3 / 12, "feet"),
  22536. weight: math.unit(160, "lb"),
  22537. name: "Back",
  22538. image: {
  22539. source: "./media/characters/kira/back.svg",
  22540. extra: 882 / 757,
  22541. bottom: 0.005
  22542. }
  22543. },
  22544. frontDressed: {
  22545. height: math.unit(5 + 3 / 12, "feet"),
  22546. weight: math.unit(160, "lb"),
  22547. name: "Front (Dressed)",
  22548. image: {
  22549. source: "./media/characters/kira/front-dressed.svg",
  22550. extra: 906 / 786,
  22551. bottom: 0.01
  22552. }
  22553. },
  22554. beans: {
  22555. height: math.unit(0.92, "feet"),
  22556. name: "Beans",
  22557. image: {
  22558. source: "./media/characters/kira/beans.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(5 + 3 / 12, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(5 + 4 / 12, "feet"),
  22575. weight: math.unit(145, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/scramble/front.svg",
  22579. extra: 763 / 727,
  22580. bottom: 0.05
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(5 + 4 / 12, "feet"),
  22585. weight: math.unit(145, "lb"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/scramble/back.svg",
  22589. extra: 826 / 737,
  22590. bottom: 0.002
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Normal",
  22597. height: math.unit(5 + 4 / 12, "feet"),
  22598. default: true
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22604. {
  22605. side: {
  22606. height: math.unit(6 + 2 / 12, "feet"),
  22607. weight: math.unit(190, "lb"),
  22608. name: "Side",
  22609. image: {
  22610. source: "./media/characters/biscuit/side.svg",
  22611. extra: 858 / 791,
  22612. bottom: 0.044
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Normal",
  22619. height: math.unit(6 + 2 / 12, "feet"),
  22620. default: true
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(5 + 2 / 12, "feet"),
  22629. weight: math.unit(120, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/poffin/front.svg",
  22633. extra: 786 / 680,
  22634. bottom: 0.005
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(5 + 2 / 12, "feet"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(6 + 3 / 12, "feet"),
  22651. weight: math.unit(519, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/dhari/front.svg",
  22655. extra: 1048 / 946,
  22656. bottom: 0.015
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(6 + 3 / 12, "feet"),
  22661. weight: math.unit(519, "lb"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/dhari/back.svg",
  22665. extra: 1048 / 931,
  22666. bottom: 0.005
  22667. }
  22668. },
  22669. frontDressed: {
  22670. height: math.unit(6 + 3 / 12, "feet"),
  22671. weight: math.unit(519, "lb"),
  22672. name: "Front (Dressed)",
  22673. image: {
  22674. source: "./media/characters/dhari/front-dressed.svg",
  22675. extra: 1713 / 1546,
  22676. bottom: 0.02
  22677. }
  22678. },
  22679. backDressed: {
  22680. height: math.unit(6 + 3 / 12, "feet"),
  22681. weight: math.unit(519, "lb"),
  22682. name: "Back (Dressed)",
  22683. image: {
  22684. source: "./media/characters/dhari/back-dressed.svg",
  22685. extra: 1699 / 1537,
  22686. bottom: 0.01
  22687. }
  22688. },
  22689. maw: {
  22690. height: math.unit(0.95, "feet"),
  22691. name: "Maw",
  22692. image: {
  22693. source: "./media/characters/dhari/maw.svg"
  22694. }
  22695. },
  22696. wereFront: {
  22697. height: math.unit(12 + 8 / 12, "feet"),
  22698. weight: math.unit(4000, "lb"),
  22699. name: "Front (Were)",
  22700. image: {
  22701. source: "./media/characters/dhari/were-front.svg",
  22702. extra: 1065 / 969,
  22703. bottom: 0.015
  22704. }
  22705. },
  22706. wereBack: {
  22707. height: math.unit(12 + 8 / 12, "feet"),
  22708. weight: math.unit(4000, "lb"),
  22709. name: "Back (Were)",
  22710. image: {
  22711. source: "./media/characters/dhari/were-back.svg",
  22712. extra: 1065 / 969,
  22713. bottom: 0.012
  22714. }
  22715. },
  22716. wereMaw: {
  22717. height: math.unit(0.625, "meters"),
  22718. name: "Maw (Were)",
  22719. image: {
  22720. source: "./media/characters/dhari/were-maw.svg"
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Normal",
  22727. height: math.unit(6 + 3 / 12, "feet"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22734. {
  22735. anthro: {
  22736. height: math.unit(5 + 7 / 12, "feet"),
  22737. weight: math.unit(175, "lb"),
  22738. name: "Anthro",
  22739. image: {
  22740. source: "./media/characters/rena-dyne/anthro.svg",
  22741. extra: 1849 / 1785,
  22742. bottom: 0.005
  22743. }
  22744. },
  22745. taur: {
  22746. height: math.unit(15 + 6 / 12, "feet"),
  22747. weight: math.unit(8000, "lb"),
  22748. name: "Taur",
  22749. image: {
  22750. source: "./media/characters/rena-dyne/taur.svg",
  22751. extra: 2315 / 2234,
  22752. bottom: 0.033
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(5 + 7 / 12, "feet"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(8, "feet"),
  22769. weight: math.unit(600, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/weremeep/front.svg",
  22773. extra: 970/849,
  22774. bottom: 7/977
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(8, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Lorg",
  22786. height: math.unit(12, "feet")
  22787. },
  22788. {
  22789. name: "Oh Lawd She Comin'",
  22790. height: math.unit(20, "feet")
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22796. {
  22797. front: {
  22798. height: math.unit(4, "feet"),
  22799. weight: math.unit(90, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/reza/front.svg",
  22803. extra: 1183 / 1111,
  22804. bottom: 0.017
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(4, "feet"),
  22809. weight: math.unit(90, "lb"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/reza/back.svg",
  22813. extra: 1183 / 1111,
  22814. bottom: 0.01
  22815. }
  22816. },
  22817. drake: {
  22818. height: math.unit(30, "feet"),
  22819. weight: math.unit(246960, "lb"),
  22820. name: "Drake",
  22821. image: {
  22822. source: "./media/characters/reza/drake.svg",
  22823. extra: 2350 / 2024,
  22824. bottom: 60.7 / 2403
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(4, "feet"),
  22832. default: true
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22838. {
  22839. side: {
  22840. height: math.unit(15, "feet"),
  22841. weight: math.unit(14, "tons"),
  22842. name: "Side",
  22843. image: {
  22844. source: "./media/characters/athea/side.svg",
  22845. extra: 960 / 540,
  22846. bottom: 0.003
  22847. }
  22848. },
  22849. sitting: {
  22850. height: math.unit(6 * 2.85, "feet"),
  22851. weight: math.unit(14, "tons"),
  22852. name: "Sitting",
  22853. image: {
  22854. source: "./media/characters/athea/sitting.svg",
  22855. extra: 621 / 581,
  22856. bottom: 0.075
  22857. }
  22858. },
  22859. maw: {
  22860. height: math.unit(7.59498031496063, "feet"),
  22861. name: "Maw",
  22862. image: {
  22863. source: "./media/characters/athea/maw.svg"
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Lap Cat",
  22870. height: math.unit(2.5, "feet")
  22871. },
  22872. {
  22873. name: "Minimacro",
  22874. height: math.unit(15, "feet"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Macro",
  22879. height: math.unit(120, "feet")
  22880. },
  22881. {
  22882. name: "Macro+",
  22883. height: math.unit(640, "feet")
  22884. },
  22885. {
  22886. name: "Colossus",
  22887. height: math.unit(2.2, "miles")
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(8 + 8 / 12, "feet"),
  22896. weight: math.unit(130, "kg"),
  22897. name: "Front",
  22898. image: {
  22899. source: "./media/characters/seroko/front.svg",
  22900. extra: 1385 / 1280,
  22901. bottom: 0.025
  22902. }
  22903. },
  22904. back: {
  22905. height: math.unit(8 + 8 / 12, "feet"),
  22906. weight: math.unit(130, "kg"),
  22907. name: "Back",
  22908. image: {
  22909. source: "./media/characters/seroko/back.svg",
  22910. extra: 1369 / 1238,
  22911. bottom: 0.018
  22912. }
  22913. },
  22914. frontDressed: {
  22915. height: math.unit(8 + 8 / 12, "feet"),
  22916. weight: math.unit(130, "kg"),
  22917. name: "Front (Dressed)",
  22918. image: {
  22919. source: "./media/characters/seroko/front-dressed.svg",
  22920. extra: 1366 / 1275,
  22921. bottom: 0.03
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(8 + 8 / 12, "feet"),
  22929. default: true
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22935. {
  22936. front: {
  22937. height: math.unit(5.5, "feet"),
  22938. weight: math.unit(160, "lb"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/quatzi/front.svg",
  22942. extra: 2346 / 2242,
  22943. bottom: 0.015
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Normal",
  22950. height: math.unit(5.5, "feet"),
  22951. default: true
  22952. },
  22953. {
  22954. name: "Big",
  22955. height: math.unit(7.7, "feet")
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(5 + 11 / 12, "feet"),
  22964. weight: math.unit(180, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/sen/front.svg",
  22968. extra: 1321 / 1254,
  22969. bottom: 0.015
  22970. }
  22971. },
  22972. side: {
  22973. height: math.unit(5 + 11 / 12, "feet"),
  22974. weight: math.unit(180, "lb"),
  22975. name: "Side",
  22976. image: {
  22977. source: "./media/characters/sen/side.svg",
  22978. extra: 1321 / 1254,
  22979. bottom: 0.007
  22980. }
  22981. },
  22982. back: {
  22983. height: math.unit(5 + 11 / 12, "feet"),
  22984. weight: math.unit(180, "lb"),
  22985. name: "Back",
  22986. image: {
  22987. source: "./media/characters/sen/back.svg",
  22988. extra: 1321 / 1254
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(5 + 11 / 12, "feet"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(166.6, "cm"),
  23005. weight: math.unit(66.6, "kg"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/fruity/front.svg",
  23009. extra: 1510 / 1386,
  23010. bottom: 0.04
  23011. }
  23012. },
  23013. back: {
  23014. height: math.unit(166.6, "cm"),
  23015. weight: math.unit(66.6, "lb"),
  23016. name: "Back",
  23017. image: {
  23018. source: "./media/characters/fruity/back.svg",
  23019. extra: 1563 / 1435,
  23020. bottom: 0.005
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Normal",
  23027. height: math.unit(166.6, "cm"),
  23028. default: true
  23029. },
  23030. {
  23031. name: "Demonic",
  23032. height: math.unit(166.6, "feet")
  23033. },
  23034. ]
  23035. ))
  23036. characterMakers.push(() => makeCharacter(
  23037. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23038. {
  23039. side: {
  23040. height: math.unit(10, "feet"),
  23041. weight: math.unit(500, "lb"),
  23042. name: "Side",
  23043. image: {
  23044. source: "./media/characters/zost/side.svg",
  23045. extra: 2870/2533,
  23046. bottom: 252/3122
  23047. }
  23048. },
  23049. mawFront: {
  23050. height: math.unit(1.08, "meters"),
  23051. name: "Maw (Front)",
  23052. image: {
  23053. source: "./media/characters/zost/maw-front.svg"
  23054. }
  23055. },
  23056. mawSide: {
  23057. height: math.unit(2.66, "feet"),
  23058. name: "Maw (Side)",
  23059. image: {
  23060. source: "./media/characters/zost/maw-side.svg"
  23061. }
  23062. },
  23063. wingspan: {
  23064. height: math.unit(7.4, "feet"),
  23065. name: "Wingspan",
  23066. image: {
  23067. source: "./media/characters/zost/wingspan.svg"
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(10, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(5 + 4 / 12, "feet"),
  23084. weight: math.unit(120, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/luci/front.svg",
  23088. extra: 1985 / 1884,
  23089. bottom: 0.04
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(5 + 4 / 12, "feet"),
  23094. weight: math.unit(120, "lb"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/luci/back.svg",
  23098. extra: 1892 / 1791,
  23099. bottom: 0.002
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Normal",
  23106. height: math.unit(5 + 4 / 12, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(1500, "feet"),
  23116. weight: math.unit(3.8e6, "tons"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/2th/front.svg",
  23120. extra: 3489 / 3350,
  23121. bottom: 0.1
  23122. }
  23123. },
  23124. foot: {
  23125. height: math.unit(461, "feet"),
  23126. name: "Foot",
  23127. image: {
  23128. source: "./media/characters/2th/foot.svg"
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "\"Micro\"",
  23135. height: math.unit(15 + 7 / 12, "feet")
  23136. },
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(1500, "feet"),
  23140. default: true
  23141. },
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(5000, "feet")
  23145. },
  23146. {
  23147. name: "Megamacro",
  23148. height: math.unit(15, "miles")
  23149. },
  23150. {
  23151. name: "Gigamacro",
  23152. height: math.unit(4000, "miles")
  23153. },
  23154. {
  23155. name: "Galactic",
  23156. height: math.unit(50, "AU")
  23157. },
  23158. ]
  23159. ))
  23160. characterMakers.push(() => makeCharacter(
  23161. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23162. {
  23163. front: {
  23164. height: math.unit(5 + 6 / 12, "feet"),
  23165. weight: math.unit(220, "lb"),
  23166. name: "Front",
  23167. image: {
  23168. source: "./media/characters/amethyst/front.svg",
  23169. extra: 2078 / 2040,
  23170. bottom: 0.045
  23171. }
  23172. },
  23173. back: {
  23174. height: math.unit(5 + 6 / 12, "feet"),
  23175. weight: math.unit(220, "lb"),
  23176. name: "Back",
  23177. image: {
  23178. source: "./media/characters/amethyst/back.svg",
  23179. extra: 2021 / 1989,
  23180. bottom: 0.02
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Normal",
  23187. height: math.unit(5 + 6 / 12, "feet"),
  23188. default: true
  23189. },
  23190. ]
  23191. ))
  23192. characterMakers.push(() => makeCharacter(
  23193. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23194. {
  23195. front: {
  23196. height: math.unit(4 + 11 / 12, "feet"),
  23197. weight: math.unit(120, "lb"),
  23198. name: "Front",
  23199. image: {
  23200. source: "./media/characters/yumi-akiyama/front.svg",
  23201. extra: 1327 / 1235,
  23202. bottom: 0.02
  23203. }
  23204. },
  23205. back: {
  23206. height: math.unit(4 + 11 / 12, "feet"),
  23207. weight: math.unit(120, "lb"),
  23208. name: "Back",
  23209. image: {
  23210. source: "./media/characters/yumi-akiyama/back.svg",
  23211. extra: 1287 / 1245,
  23212. bottom: 0.002
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Galactic",
  23219. height: math.unit(50, "galaxies"),
  23220. default: true
  23221. },
  23222. {
  23223. name: "Universal",
  23224. height: math.unit(100, "universes")
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23230. {
  23231. front: {
  23232. height: math.unit(8, "feet"),
  23233. weight: math.unit(500, "lb"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/rifter-yrmori/front.svg",
  23237. extra: 1180 / 1125,
  23238. bottom: 0.02
  23239. }
  23240. },
  23241. back: {
  23242. height: math.unit(8, "feet"),
  23243. weight: math.unit(500, "lb"),
  23244. name: "Back",
  23245. image: {
  23246. source: "./media/characters/rifter-yrmori/back.svg",
  23247. extra: 1190 / 1145,
  23248. bottom: 0.001
  23249. }
  23250. },
  23251. wings: {
  23252. height: math.unit(7.75, "feet"),
  23253. weight: math.unit(500, "lb"),
  23254. name: "Wings",
  23255. image: {
  23256. source: "./media/characters/rifter-yrmori/wings.svg",
  23257. extra: 1357 / 1285
  23258. }
  23259. },
  23260. maw: {
  23261. height: math.unit(0.8, "feet"),
  23262. name: "Maw",
  23263. image: {
  23264. source: "./media/characters/rifter-yrmori/maw.svg"
  23265. }
  23266. },
  23267. mawfront: {
  23268. height: math.unit(1.45, "feet"),
  23269. name: "Maw (Front)",
  23270. image: {
  23271. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(8, "feet"),
  23279. default: true
  23280. },
  23281. {
  23282. name: "Macro",
  23283. height: math.unit(42, "meters")
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23289. {
  23290. were: {
  23291. height: math.unit(25 + 6 / 12, "feet"),
  23292. weight: math.unit(10000, "lb"),
  23293. name: "Were",
  23294. image: {
  23295. source: "./media/characters/tahajin/were.svg",
  23296. extra: 801 / 770,
  23297. bottom: 0.042
  23298. }
  23299. },
  23300. aquatic: {
  23301. height: math.unit(6 + 4 / 12, "feet"),
  23302. weight: math.unit(160, "lb"),
  23303. name: "Aquatic",
  23304. image: {
  23305. source: "./media/characters/tahajin/aquatic.svg",
  23306. extra: 572 / 542,
  23307. bottom: 0.04
  23308. }
  23309. },
  23310. chow: {
  23311. height: math.unit(8 + 11 / 12, "feet"),
  23312. weight: math.unit(450, "lb"),
  23313. name: "Chow",
  23314. image: {
  23315. source: "./media/characters/tahajin/chow.svg",
  23316. extra: 660 / 640,
  23317. bottom: 0.015
  23318. }
  23319. },
  23320. demiNaga: {
  23321. height: math.unit(6 + 8 / 12, "feet"),
  23322. weight: math.unit(300, "lb"),
  23323. name: "Demi Naga",
  23324. image: {
  23325. source: "./media/characters/tahajin/demi-naga.svg",
  23326. extra: 643 / 615,
  23327. bottom: 0.1
  23328. }
  23329. },
  23330. data: {
  23331. height: math.unit(5, "inches"),
  23332. weight: math.unit(0.1, "lb"),
  23333. name: "Data",
  23334. image: {
  23335. source: "./media/characters/tahajin/data.svg"
  23336. }
  23337. },
  23338. fluu: {
  23339. height: math.unit(5 + 7 / 12, "feet"),
  23340. weight: math.unit(140, "lb"),
  23341. name: "Fluu",
  23342. image: {
  23343. source: "./media/characters/tahajin/fluu.svg",
  23344. extra: 628 / 592,
  23345. bottom: 0.02
  23346. }
  23347. },
  23348. starWarrior: {
  23349. height: math.unit(4 + 5 / 12, "feet"),
  23350. weight: math.unit(50, "lb"),
  23351. name: "Star Warrior",
  23352. image: {
  23353. source: "./media/characters/tahajin/star-warrior.svg"
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Normal",
  23360. height: math.unit(25 + 6 / 12, "feet"),
  23361. default: true
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23367. {
  23368. front: {
  23369. height: math.unit(8, "feet"),
  23370. weight: math.unit(350, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/gabira/front.svg",
  23374. extra: 1261/1154,
  23375. bottom: 51/1312
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(8, "feet"),
  23380. weight: math.unit(350, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/gabira/back.svg",
  23384. extra: 1265/1163,
  23385. bottom: 46/1311
  23386. }
  23387. },
  23388. head: {
  23389. height: math.unit(2.85, "feet"),
  23390. name: "Head",
  23391. image: {
  23392. source: "./media/characters/gabira/head.svg"
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Normal",
  23399. height: math.unit(8, "feet"),
  23400. default: true
  23401. },
  23402. ]
  23403. ))
  23404. characterMakers.push(() => makeCharacter(
  23405. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23406. {
  23407. front: {
  23408. height: math.unit(5 + 3 / 12, "feet"),
  23409. weight: math.unit(137, "lb"),
  23410. name: "Front",
  23411. image: {
  23412. source: "./media/characters/sasha-katraine/front.svg",
  23413. extra: 1745/1694,
  23414. bottom: 37/1782
  23415. }
  23416. },
  23417. back: {
  23418. height: math.unit(5 + 3 / 12, "feet"),
  23419. weight: math.unit(137, "lb"),
  23420. name: "Back",
  23421. image: {
  23422. source: "./media/characters/sasha-katraine/back.svg",
  23423. extra: 1776/1699,
  23424. bottom: 26/1802
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Micro",
  23431. height: math.unit(5, "inches")
  23432. },
  23433. {
  23434. name: "Normal",
  23435. height: math.unit(5 + 3 / 12, "feet"),
  23436. default: true
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23442. {
  23443. side: {
  23444. height: math.unit(4, "inches"),
  23445. weight: math.unit(200, "grams"),
  23446. name: "Side",
  23447. image: {
  23448. source: "./media/characters/der/side.svg",
  23449. extra: 719 / 400,
  23450. bottom: 30.6 / 749.9187
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Micro",
  23457. height: math.unit(4, "inches"),
  23458. default: true
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23464. {
  23465. side: {
  23466. height: math.unit(30, "meters"),
  23467. weight: math.unit(700, "tonnes"),
  23468. name: "Side",
  23469. image: {
  23470. source: "./media/characters/fixerdragon/side.svg",
  23471. extra: (1293.0514 - 116.03) / 1106.86,
  23472. bottom: 116.03 / 1293.0514
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Planck",
  23479. height: math.unit(1.6e-35, "meters")
  23480. },
  23481. {
  23482. name: "Micro",
  23483. height: math.unit(0.4, "meters")
  23484. },
  23485. {
  23486. name: "Normal",
  23487. height: math.unit(30, "meters"),
  23488. default: true
  23489. },
  23490. {
  23491. name: "Megamacro",
  23492. height: math.unit(1.2, "megameters")
  23493. },
  23494. {
  23495. name: "Teramacro",
  23496. height: math.unit(130, "terameters")
  23497. },
  23498. {
  23499. name: "Yottamacro",
  23500. height: math.unit(6200, "yottameters")
  23501. },
  23502. ]
  23503. ));
  23504. characterMakers.push(() => makeCharacter(
  23505. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23506. {
  23507. front: {
  23508. height: math.unit(8, "feet"),
  23509. weight: math.unit(250, "lb"),
  23510. name: "Front",
  23511. image: {
  23512. source: "./media/characters/kite/front.svg",
  23513. extra: 2796 / 2659,
  23514. bottom: 0.002
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Normal",
  23521. height: math.unit(8, "feet"),
  23522. default: true
  23523. },
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(360, "feet")
  23527. },
  23528. {
  23529. name: "Megamacro",
  23530. height: math.unit(1500, "feet")
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23536. {
  23537. front: {
  23538. height: math.unit(5 + 11/12, "feet"),
  23539. weight: math.unit(170, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/poojawa-vynar/front.svg",
  23543. extra: 1735/1585,
  23544. bottom: 96/1831
  23545. }
  23546. },
  23547. back: {
  23548. height: math.unit(5 + 11/12, "feet"),
  23549. weight: math.unit(170, "lb"),
  23550. name: "Back",
  23551. image: {
  23552. source: "./media/characters/poojawa-vynar/back.svg",
  23553. extra: 1749/1607,
  23554. bottom: 28/1777
  23555. }
  23556. },
  23557. male: {
  23558. height: math.unit(5 + 11/12, "feet"),
  23559. weight: math.unit(170, "lb"),
  23560. name: "Male",
  23561. image: {
  23562. source: "./media/characters/poojawa-vynar/male.svg",
  23563. extra: 1855/1713,
  23564. bottom: 63/1918
  23565. }
  23566. },
  23567. taur: {
  23568. height: math.unit(5 + 11/12, "feet"),
  23569. weight: math.unit(170, "lb"),
  23570. name: "Taur",
  23571. image: {
  23572. source: "./media/characters/poojawa-vynar/taur.svg",
  23573. extra: 1151/1059,
  23574. bottom: 356/1507
  23575. }
  23576. },
  23577. frontDressed: {
  23578. height: math.unit(5 + 11/12, "feet"),
  23579. weight: math.unit(170, "lb"),
  23580. name: "Front (Dressed)",
  23581. image: {
  23582. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23583. extra: 1735/1585,
  23584. bottom: 96/1831
  23585. }
  23586. },
  23587. backDressed: {
  23588. height: math.unit(5 + 11/12, "feet"),
  23589. weight: math.unit(170, "lb"),
  23590. name: "Back (Dressed)",
  23591. image: {
  23592. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23593. extra: 1749/1607,
  23594. bottom: 28/1777
  23595. }
  23596. },
  23597. maleDressed: {
  23598. height: math.unit(5 + 11/12, "feet"),
  23599. weight: math.unit(170, "lb"),
  23600. name: "Male (Dressed)",
  23601. image: {
  23602. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23603. extra: 1855/1713,
  23604. bottom: 63/1918
  23605. }
  23606. },
  23607. taurDressed: {
  23608. height: math.unit(5 + 11/12, "feet"),
  23609. weight: math.unit(170, "lb"),
  23610. name: "Taur (Dressed)",
  23611. image: {
  23612. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23613. extra: 1151/1059,
  23614. bottom: 356/1507
  23615. }
  23616. },
  23617. maw: {
  23618. height: math.unit(1.46, "feet"),
  23619. name: "Maw",
  23620. image: {
  23621. source: "./media/characters/poojawa-vynar/maw.svg"
  23622. }
  23623. },
  23624. head: {
  23625. height: math.unit(2.34, "feet"),
  23626. name: "Head",
  23627. image: {
  23628. source: "./media/characters/poojawa-vynar/head.svg"
  23629. }
  23630. },
  23631. paw: {
  23632. height: math.unit(1.61, "feet"),
  23633. name: "Paw",
  23634. image: {
  23635. source: "./media/characters/poojawa-vynar/paw.svg"
  23636. }
  23637. },
  23638. pawToering: {
  23639. height: math.unit(1.72, "feet"),
  23640. name: "Paw (Toering)",
  23641. image: {
  23642. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23643. }
  23644. },
  23645. toering: {
  23646. height: math.unit(2.9, "inches"),
  23647. name: "Toering",
  23648. image: {
  23649. source: "./media/characters/poojawa-vynar/toering.svg"
  23650. }
  23651. },
  23652. shaft: {
  23653. height: math.unit(0.625, "feet"),
  23654. name: "Shaft",
  23655. image: {
  23656. source: "./media/characters/poojawa-vynar/shaft.svg"
  23657. }
  23658. },
  23659. spade: {
  23660. height: math.unit(0.42, "feet"),
  23661. name: "Spade",
  23662. image: {
  23663. source: "./media/characters/poojawa-vynar/spade.svg"
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Shortstack",
  23670. height: math.unit(4, "feet")
  23671. },
  23672. {
  23673. name: "Normal",
  23674. height: math.unit(5 + 11 / 12, "feet"),
  23675. default: true
  23676. },
  23677. {
  23678. name: "Tauric",
  23679. height: math.unit(4, "meters")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(293, "meters"),
  23688. weight: math.unit(70400, "tons"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/violette/front.svg",
  23692. extra: 1227 / 1180,
  23693. bottom: 0.005
  23694. }
  23695. },
  23696. back: {
  23697. height: math.unit(293, "meters"),
  23698. weight: math.unit(70400, "tons"),
  23699. name: "Back",
  23700. image: {
  23701. source: "./media/characters/violette/back.svg",
  23702. extra: 1227 / 1180,
  23703. bottom: 0.005
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Macro",
  23710. height: math.unit(293, "meters"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(1050, "feet"),
  23720. weight: math.unit(200000, "tons"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/alessandra/front.svg",
  23724. extra: 960 / 912,
  23725. bottom: 0.06
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(1050, "feet")
  23733. },
  23734. {
  23735. name: "Macro+",
  23736. height: math.unit(900, "meters"),
  23737. default: true
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(5, "feet"),
  23746. weight: math.unit(187, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/person/front.svg",
  23750. extra: 3087 / 2945,
  23751. bottom: 91 / 3181
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Micro",
  23758. height: math.unit(3, "inches")
  23759. },
  23760. {
  23761. name: "Normal",
  23762. height: math.unit(5, "feet"),
  23763. default: true
  23764. },
  23765. {
  23766. name: "Macro",
  23767. height: math.unit(90, "feet")
  23768. },
  23769. {
  23770. name: "Max Size",
  23771. height: math.unit(280, "feet")
  23772. },
  23773. ]
  23774. ))
  23775. characterMakers.push(() => makeCharacter(
  23776. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23777. {
  23778. front: {
  23779. height: math.unit(4.5, "meters"),
  23780. weight: math.unit(3200, "lb"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/ty/front.svg",
  23784. extra: 1038 / 960,
  23785. bottom: 31.156 / 1068
  23786. }
  23787. },
  23788. back: {
  23789. height: math.unit(4.5, "meters"),
  23790. weight: math.unit(3200, "lb"),
  23791. name: "Back",
  23792. image: {
  23793. source: "./media/characters/ty/back.svg",
  23794. extra: 1044 / 966,
  23795. bottom: 7.48 / 1049
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Normal",
  23802. height: math.unit(4.5, "meters"),
  23803. default: true
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(5 + 4 / 12, "feet"),
  23812. weight: math.unit(115, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/rocky/front.svg",
  23816. extra: 1012 / 975,
  23817. bottom: 54 / 1066
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(5 + 4 / 12, "feet"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23831. {
  23832. upright: {
  23833. height: math.unit(6, "meters"),
  23834. weight: math.unit(4000, "kg"),
  23835. name: "Upright",
  23836. image: {
  23837. source: "./media/characters/ruin/upright.svg",
  23838. extra: 668 / 661,
  23839. bottom: 42 / 799.8396
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(6, "meters"),
  23847. default: true
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(5, "feet"),
  23856. weight: math.unit(106, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/robin/front.svg",
  23860. extra: 862 / 799,
  23861. bottom: 42.4 / 914.8856
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Normal",
  23868. height: math.unit(5, "feet"),
  23869. default: true
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23875. {
  23876. side: {
  23877. height: math.unit(3, "feet"),
  23878. weight: math.unit(225, "lb"),
  23879. name: "Side",
  23880. image: {
  23881. source: "./media/characters/saian/side.svg",
  23882. extra: 566 / 356,
  23883. bottom: 79.7 / 643
  23884. }
  23885. },
  23886. maw: {
  23887. height: math.unit(2.85, "feet"),
  23888. name: "Maw",
  23889. image: {
  23890. source: "./media/characters/saian/maw.svg"
  23891. }
  23892. },
  23893. },
  23894. [
  23895. {
  23896. name: "Normal",
  23897. height: math.unit(3, "feet"),
  23898. default: true
  23899. },
  23900. ]
  23901. ))
  23902. characterMakers.push(() => makeCharacter(
  23903. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23904. {
  23905. side: {
  23906. height: math.unit(8, "feet"),
  23907. weight: math.unit(300, "lb"),
  23908. name: "Side",
  23909. image: {
  23910. source: "./media/characters/equus-silvermane/side.svg",
  23911. extra: 2176 / 2050,
  23912. bottom: 65.7 / 2245
  23913. }
  23914. },
  23915. front: {
  23916. height: math.unit(8, "feet"),
  23917. weight: math.unit(300, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/equus-silvermane/front.svg",
  23921. extra: 4633 / 4400,
  23922. bottom: 71.3 / 4706.915
  23923. }
  23924. },
  23925. sideStepping: {
  23926. height: math.unit(8, "feet"),
  23927. weight: math.unit(300, "lb"),
  23928. name: "Side (Stepping)",
  23929. image: {
  23930. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23931. extra: 1968 / 1860,
  23932. bottom: 16.4 / 1989
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(8, "feet")
  23940. },
  23941. {
  23942. name: "Minimacro",
  23943. height: math.unit(75, "feet"),
  23944. default: true
  23945. },
  23946. {
  23947. name: "Macro",
  23948. height: math.unit(150, "feet")
  23949. },
  23950. {
  23951. name: "Macro+",
  23952. height: math.unit(1000, "feet")
  23953. },
  23954. {
  23955. name: "Megamacro",
  23956. height: math.unit(1, "mile")
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23962. {
  23963. side: {
  23964. height: math.unit(20, "feet"),
  23965. weight: math.unit(30000, "kg"),
  23966. name: "Side",
  23967. image: {
  23968. source: "./media/characters/windar/side.svg",
  23969. extra: 1491 / 1248,
  23970. bottom: 82.56 / 1568
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Normal",
  23977. height: math.unit(20, "feet"),
  23978. default: true
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23984. {
  23985. side: {
  23986. height: math.unit(15.66, "feet"),
  23987. weight: math.unit(150, "lb"),
  23988. name: "Side",
  23989. image: {
  23990. source: "./media/characters/melody/side.svg",
  23991. extra: 1097 / 944,
  23992. bottom: 11.8 / 1109
  23993. }
  23994. },
  23995. sideOutfit: {
  23996. height: math.unit(15.66, "feet"),
  23997. weight: math.unit(150, "lb"),
  23998. name: "Side (Outfit)",
  23999. image: {
  24000. source: "./media/characters/melody/side-outfit.svg",
  24001. extra: 1097 / 944,
  24002. bottom: 11.8 / 1109
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(15.66, "feet"),
  24010. default: true
  24011. },
  24012. ]
  24013. ))
  24014. characterMakers.push(() => makeCharacter(
  24015. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24016. {
  24017. armoredFront: {
  24018. height: math.unit(8, "feet"),
  24019. weight: math.unit(325, "lb"),
  24020. name: "Front",
  24021. image: {
  24022. source: "./media/characters/windera/armored-front.svg",
  24023. extra: 1830/1598,
  24024. bottom: 151/1981
  24025. },
  24026. form: "armored",
  24027. default: true
  24028. },
  24029. macroFront: {
  24030. height: math.unit(70, "feet"),
  24031. weight: math.unit(315453, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/windera/macro-front.svg",
  24035. extra: 963/883,
  24036. bottom: 23/986
  24037. },
  24038. form: "macro",
  24039. default: true
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(8, "feet"),
  24046. default: true,
  24047. form: "armored"
  24048. },
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(70, "feet"),
  24052. default: true,
  24053. form: "macro"
  24054. },
  24055. ],
  24056. {
  24057. "armored": {
  24058. name: "Armored",
  24059. default: true
  24060. },
  24061. "macro": {
  24062. name: "Macro",
  24063. },
  24064. }
  24065. ))
  24066. characterMakers.push(() => makeCharacter(
  24067. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24068. {
  24069. front: {
  24070. height: math.unit(28.75, "feet"),
  24071. weight: math.unit(2000, "kg"),
  24072. name: "Front",
  24073. image: {
  24074. source: "./media/characters/sonear/front.svg",
  24075. extra: 1041.1 / 964.9,
  24076. bottom: 53.7 / 1096.6
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(28.75, "feet"),
  24084. default: true
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24090. {
  24091. side: {
  24092. height: math.unit(25.5, "feet"),
  24093. weight: math.unit(23000, "kg"),
  24094. name: "Side",
  24095. image: {
  24096. source: "./media/characters/kanara/side.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(25.5, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24110. {
  24111. side: {
  24112. height: math.unit(10, "feet"),
  24113. weight: math.unit(1000, "kg"),
  24114. name: "Side",
  24115. image: {
  24116. source: "./media/characters/ereus/side.svg",
  24117. extra: 1157 / 959,
  24118. bottom: 153 / 1312.5
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(10, "feet"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24132. {
  24133. side: {
  24134. height: math.unit(4.5, "feet"),
  24135. weight: math.unit(500, "lb"),
  24136. name: "Side",
  24137. image: {
  24138. source: "./media/characters/e-ter/side.svg",
  24139. extra: 1550 / 1248,
  24140. bottom: 146 / 1694
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(4.5, "feet"),
  24148. default: true
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24154. {
  24155. side: {
  24156. height: math.unit(9.7, "feet"),
  24157. weight: math.unit(4000, "kg"),
  24158. name: "Side",
  24159. image: {
  24160. source: "./media/characters/yamie/side.svg"
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(9.7, "feet"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24174. {
  24175. front: {
  24176. height: math.unit(50, "feet"),
  24177. weight: math.unit(50000, "kg"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/anders/front.svg",
  24181. extra: 570 / 539,
  24182. bottom: 14.7 / 586.7
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Large",
  24189. height: math.unit(50, "feet")
  24190. },
  24191. {
  24192. name: "Macro",
  24193. height: math.unit(2000, "feet"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Megamacro",
  24198. height: math.unit(12, "miles")
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(7 + 2 / 12, "feet"),
  24207. weight: math.unit(300, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/reban/front.svg",
  24211. extra: 1287/1212,
  24212. bottom: 148/1435
  24213. }
  24214. },
  24215. head: {
  24216. height: math.unit(1.95, "feet"),
  24217. name: "Head",
  24218. image: {
  24219. source: "./media/characters/reban/head.svg"
  24220. }
  24221. },
  24222. maw: {
  24223. height: math.unit(0.95, "feet"),
  24224. name: "Maw",
  24225. image: {
  24226. source: "./media/characters/reban/maw.svg"
  24227. }
  24228. },
  24229. foot: {
  24230. height: math.unit(1.65, "feet"),
  24231. name: "Foot",
  24232. image: {
  24233. source: "./media/characters/reban/foot.svg"
  24234. }
  24235. },
  24236. dick: {
  24237. height: math.unit(7 / 5, "feet"),
  24238. name: "Dick",
  24239. image: {
  24240. source: "./media/characters/reban/dick.svg"
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Natural Height",
  24247. height: math.unit(7 + 2 / 12, "feet")
  24248. },
  24249. {
  24250. name: "Macro",
  24251. height: math.unit(500, "feet"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Canon Height",
  24256. height: math.unit(50, "AU")
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(6, "feet"),
  24265. weight: math.unit(150, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/terrance-keayes/front.svg",
  24269. extra: 1.005,
  24270. bottom: 151 / 1615
  24271. }
  24272. },
  24273. side: {
  24274. height: math.unit(6, "feet"),
  24275. weight: math.unit(150, "lb"),
  24276. name: "Side",
  24277. image: {
  24278. source: "./media/characters/terrance-keayes/side.svg",
  24279. extra: 1.005,
  24280. bottom: 129.4 / 1544
  24281. }
  24282. },
  24283. back: {
  24284. height: math.unit(6, "feet"),
  24285. weight: math.unit(150, "lb"),
  24286. name: "Back",
  24287. image: {
  24288. source: "./media/characters/terrance-keayes/back.svg",
  24289. extra: 1.005,
  24290. bottom: 58.4 / 1557.3
  24291. }
  24292. },
  24293. dick: {
  24294. height: math.unit(6 * 0.208, "feet"),
  24295. name: "Dick",
  24296. image: {
  24297. source: "./media/characters/terrance-keayes/dick.svg"
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Canon Height",
  24304. height: math.unit(35, "miles"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(6, "feet"),
  24314. weight: math.unit(150, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/ofelia/front.svg",
  24318. extra: 1130/1117,
  24319. bottom: 91/1221
  24320. }
  24321. },
  24322. back: {
  24323. height: math.unit(6, "feet"),
  24324. weight: math.unit(150, "lb"),
  24325. name: "Back",
  24326. image: {
  24327. source: "./media/characters/ofelia/back.svg",
  24328. extra: 1172/1159,
  24329. bottom: 28/1200
  24330. }
  24331. },
  24332. maw: {
  24333. height: math.unit(1, "feet"),
  24334. name: "Maw",
  24335. image: {
  24336. source: "./media/characters/ofelia/maw.svg"
  24337. }
  24338. },
  24339. foot: {
  24340. height: math.unit(1.949, "feet"),
  24341. name: "Foot",
  24342. image: {
  24343. source: "./media/characters/ofelia/foot.svg"
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Canon Height",
  24350. height: math.unit(2000, "miles"),
  24351. default: true
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(6, "feet"),
  24360. weight: math.unit(150, "lb"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/samuel/front.svg",
  24364. extra: 265 / 258,
  24365. bottom: 2 / 266.1566
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Macro",
  24372. height: math.unit(100, "feet"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Full Size",
  24377. height: math.unit(1000, "miles")
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(6, "feet"),
  24386. weight: math.unit(300, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/beishir-kiel/front.svg",
  24390. extra: 569 / 547,
  24391. bottom: 41.9 / 609
  24392. }
  24393. },
  24394. maw: {
  24395. height: math.unit(6 * 0.202, "feet"),
  24396. name: "Maw",
  24397. image: {
  24398. source: "./media/characters/beishir-kiel/maw.svg"
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(300, "feet"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24412. {
  24413. front: {
  24414. height: math.unit(5 + 7/12, "feet"),
  24415. weight: math.unit(120, "lb"),
  24416. name: "Front",
  24417. image: {
  24418. source: "./media/characters/logan-grey/front.svg",
  24419. extra: 1836/1738,
  24420. bottom: 108/1944
  24421. }
  24422. },
  24423. back: {
  24424. height: math.unit(5 + 7/12, "feet"),
  24425. weight: math.unit(120, "lb"),
  24426. name: "Back",
  24427. image: {
  24428. source: "./media/characters/logan-grey/back.svg",
  24429. extra: 1880/1794,
  24430. bottom: 24/1904
  24431. }
  24432. },
  24433. frontSfw: {
  24434. height: math.unit(5 + 7/12, "feet"),
  24435. weight: math.unit(120, "lb"),
  24436. name: "Front (SFW)",
  24437. image: {
  24438. source: "./media/characters/logan-grey/front-sfw.svg",
  24439. extra: 1836/1738,
  24440. bottom: 108/1944
  24441. }
  24442. },
  24443. backSfw: {
  24444. height: math.unit(5 + 7/12, "feet"),
  24445. weight: math.unit(120, "lb"),
  24446. name: "Back (SFW)",
  24447. image: {
  24448. source: "./media/characters/logan-grey/back-sfw.svg",
  24449. extra: 1880/1794,
  24450. bottom: 24/1904
  24451. }
  24452. },
  24453. hands: {
  24454. height: math.unit(0.84, "feet"),
  24455. name: "Hands",
  24456. image: {
  24457. source: "./media/characters/logan-grey/hands.svg"
  24458. }
  24459. },
  24460. paws: {
  24461. height: math.unit(0.72, "feet"),
  24462. name: "Paws",
  24463. image: {
  24464. source: "./media/characters/logan-grey/paws.svg"
  24465. }
  24466. },
  24467. cock: {
  24468. height: math.unit(1.45, "feet"),
  24469. name: "Cock",
  24470. image: {
  24471. source: "./media/characters/logan-grey/cock.svg"
  24472. }
  24473. },
  24474. cockAlt: {
  24475. height: math.unit(1.437, "feet"),
  24476. name: "Cock (alt)",
  24477. image: {
  24478. source: "./media/characters/logan-grey/cock-alt.svg"
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(5 + 8 / 12, "feet")
  24486. },
  24487. {
  24488. name: "The 500 Foot Femboy",
  24489. height: math.unit(500, "feet"),
  24490. default: true
  24491. },
  24492. {
  24493. name: "Megmacro",
  24494. height: math.unit(20, "miles")
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(8 + 2 / 12, "feet"),
  24503. weight: math.unit(275, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/draganta/front.svg",
  24507. extra: 1177 / 1135,
  24508. bottom: 33.46 / 1212.1
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(8 + 6 / 12, "feet"),
  24516. default: true
  24517. },
  24518. {
  24519. name: "Macro",
  24520. height: math.unit(150, "feet")
  24521. },
  24522. {
  24523. name: "Megamacro",
  24524. height: math.unit(1000, "miles")
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(1.72, "m"),
  24533. weight: math.unit(80, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/voski/front.svg",
  24537. extra: 2076.22 / 2022.4,
  24538. bottom: 102.7 / 2177.3866
  24539. }
  24540. },
  24541. frontFlaccid: {
  24542. height: math.unit(1.72, "m"),
  24543. weight: math.unit(80, "lb"),
  24544. name: "Front (Flaccid)",
  24545. image: {
  24546. source: "./media/characters/voski/front-flaccid.svg",
  24547. extra: 2076.22 / 2022.4,
  24548. bottom: 102.7 / 2177.3866
  24549. }
  24550. },
  24551. frontErect: {
  24552. height: math.unit(1.72, "m"),
  24553. weight: math.unit(80, "lb"),
  24554. name: "Front (Erect)",
  24555. image: {
  24556. source: "./media/characters/voski/front-erect.svg",
  24557. extra: 2076.22 / 2022.4,
  24558. bottom: 102.7 / 2177.3866
  24559. }
  24560. },
  24561. back: {
  24562. height: math.unit(1.72, "m"),
  24563. weight: math.unit(80, "lb"),
  24564. name: "Back",
  24565. image: {
  24566. source: "./media/characters/voski/back.svg",
  24567. extra: 2104 / 2051,
  24568. bottom: 10.45 / 2113.63
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(1.72, "m")
  24576. },
  24577. {
  24578. name: "Macro",
  24579. height: math.unit(55, "m"),
  24580. default: true
  24581. },
  24582. {
  24583. name: "Macro+",
  24584. height: math.unit(300, "m")
  24585. },
  24586. {
  24587. name: "Macro++",
  24588. height: math.unit(700, "m")
  24589. },
  24590. {
  24591. name: "Macro+++",
  24592. height: math.unit(4500, "m")
  24593. },
  24594. {
  24595. name: "Macro++++",
  24596. height: math.unit(45, "km")
  24597. },
  24598. {
  24599. name: "Macro+++++",
  24600. height: math.unit(1220, "km")
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(2.3, "m"),
  24609. weight: math.unit(304, "kg"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/icowom-lee/front.svg",
  24613. extra: 985 / 955,
  24614. bottom: 25.4 / 1012
  24615. }
  24616. },
  24617. fronttentacles: {
  24618. height: math.unit(2.3, "m"),
  24619. weight: math.unit(304, "kg"),
  24620. name: "Front-tentacles",
  24621. image: {
  24622. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24623. extra: 985 / 955,
  24624. bottom: 25.4 / 1012
  24625. }
  24626. },
  24627. back: {
  24628. height: math.unit(2.3, "m"),
  24629. weight: math.unit(304, "kg"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/icowom-lee/back.svg",
  24633. extra: 975 / 954,
  24634. bottom: 9.5 / 985
  24635. }
  24636. },
  24637. backtentacles: {
  24638. height: math.unit(2.3, "m"),
  24639. weight: math.unit(304, "kg"),
  24640. name: "Back-tentacles",
  24641. image: {
  24642. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24643. extra: 975 / 954,
  24644. bottom: 9.5 / 985
  24645. }
  24646. },
  24647. frontDressed: {
  24648. height: math.unit(2.3, "m"),
  24649. weight: math.unit(304, "kg"),
  24650. name: "Front (Dressed)",
  24651. image: {
  24652. source: "./media/characters/icowom-lee/front-dressed.svg",
  24653. extra: 3076 / 2933,
  24654. bottom: 51.4 / 3125.1889
  24655. }
  24656. },
  24657. rump: {
  24658. height: math.unit(0.776, "meters"),
  24659. name: "Rump",
  24660. image: {
  24661. source: "./media/characters/icowom-lee/rump.svg"
  24662. }
  24663. },
  24664. genitals: {
  24665. height: math.unit(0.78, "meters"),
  24666. name: "Genitals",
  24667. image: {
  24668. source: "./media/characters/icowom-lee/genitals.svg"
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(2.3, "meters"),
  24676. default: true
  24677. },
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(94, "meters"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24687. {
  24688. front: {
  24689. height: math.unit(22, "meters"),
  24690. weight: math.unit(21000, "kg"),
  24691. name: "Front",
  24692. image: {
  24693. source: "./media/characters/shock-diamond/front.svg",
  24694. extra: 2204 / 2053,
  24695. bottom: 65 / 2239.47
  24696. }
  24697. },
  24698. frontNude: {
  24699. height: math.unit(22, "meters"),
  24700. weight: math.unit(21000, "kg"),
  24701. name: "Front (Nude)",
  24702. image: {
  24703. source: "./media/characters/shock-diamond/front-nude.svg",
  24704. extra: 2514 / 2285,
  24705. bottom: 13 / 2527.56
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(3, "meters")
  24713. },
  24714. {
  24715. name: "Macro",
  24716. height: math.unit(22, "meters"),
  24717. default: true
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24723. {
  24724. front: {
  24725. height: math.unit(5 + 4/12, "feet"),
  24726. weight: math.unit(125, "lb"),
  24727. name: "Front",
  24728. image: {
  24729. source: "./media/characters/rory/front.svg",
  24730. extra: 1790/1681,
  24731. bottom: 66/1856
  24732. },
  24733. form: "normal",
  24734. default: true
  24735. },
  24736. back: {
  24737. height: math.unit(5 + 4/12, "feet"),
  24738. weight: math.unit(125, "lb"),
  24739. name: "Back",
  24740. image: {
  24741. source: "./media/characters/rory/back.svg",
  24742. extra: 1805/1690,
  24743. bottom: 56/1861
  24744. },
  24745. form: "normal"
  24746. },
  24747. frontDressed: {
  24748. height: math.unit(5 + 4/12, "feet"),
  24749. weight: math.unit(125, "lb"),
  24750. name: "Front (Dressed)",
  24751. image: {
  24752. source: "./media/characters/rory/front-dressed.svg",
  24753. extra: 1790/1681,
  24754. bottom: 66/1856
  24755. },
  24756. form: "normal"
  24757. },
  24758. backDressed: {
  24759. height: math.unit(5 + 4/12, "feet"),
  24760. weight: math.unit(125, "lb"),
  24761. name: "Back (Dressed)",
  24762. image: {
  24763. source: "./media/characters/rory/back-dressed.svg",
  24764. extra: 1805/1690,
  24765. bottom: 56/1861
  24766. },
  24767. form: "normal"
  24768. },
  24769. frontNsfw: {
  24770. height: math.unit(5 + 4/12, "feet"),
  24771. weight: math.unit(125, "lb"),
  24772. name: "Front (NSFW)",
  24773. image: {
  24774. source: "./media/characters/rory/front-nsfw.svg",
  24775. extra: 1790/1681,
  24776. bottom: 66/1856
  24777. },
  24778. form: "normal"
  24779. },
  24780. backNsfw: {
  24781. height: math.unit(5 + 4/12, "feet"),
  24782. weight: math.unit(125, "lb"),
  24783. name: "Back (NSFW)",
  24784. image: {
  24785. source: "./media/characters/rory/back-nsfw.svg",
  24786. extra: 1805/1690,
  24787. bottom: 56/1861
  24788. },
  24789. form: "normal"
  24790. },
  24791. dick: {
  24792. height: math.unit(0.8, "feet"),
  24793. name: "Dick",
  24794. image: {
  24795. source: "./media/characters/rory/dick.svg"
  24796. },
  24797. form: "normal"
  24798. },
  24799. thicc_front: {
  24800. height: math.unit(5 + 4/12, "feet"),
  24801. weight: math.unit(195, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/rory/thicc-front.svg",
  24805. extra: 1220/1100,
  24806. bottom: 103/1323
  24807. },
  24808. form: "thicc",
  24809. default: true
  24810. },
  24811. thicc_back: {
  24812. height: math.unit(5 + 4/12, "feet"),
  24813. weight: math.unit(195, "lb"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/rory/thicc-back.svg",
  24817. extra: 1166/1086,
  24818. bottom: 35/1201
  24819. },
  24820. form: "thicc"
  24821. },
  24822. },
  24823. [
  24824. {
  24825. name: "Micro",
  24826. height: math.unit(3, "inches"),
  24827. allForms: true
  24828. },
  24829. {
  24830. name: "Normal",
  24831. height: math.unit(5 + 4/12, "feet"),
  24832. allForms: true,
  24833. default: true
  24834. },
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(90, "feet"),
  24838. allForms: true
  24839. },
  24840. {
  24841. name: "Supercharged",
  24842. height: math.unit(270, "feet"),
  24843. allForms: true
  24844. },
  24845. ],
  24846. {
  24847. "normal": {
  24848. name: "Normal",
  24849. default: true
  24850. },
  24851. "thicc": {
  24852. name: "Thicc",
  24853. },
  24854. }
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(5 + 9 / 12, "feet"),
  24861. weight: math.unit(190, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/sprisk/front.svg",
  24865. extra: 1225 / 1180,
  24866. bottom: 42.7 / 1266.4
  24867. }
  24868. },
  24869. frontNsfw: {
  24870. height: math.unit(5 + 9 / 12, "feet"),
  24871. weight: math.unit(190, "lb"),
  24872. name: "Front (NSFW)",
  24873. image: {
  24874. source: "./media/characters/sprisk/front-nsfw.svg",
  24875. extra: 1225 / 1180,
  24876. bottom: 42.7 / 1266.4
  24877. }
  24878. },
  24879. back: {
  24880. height: math.unit(5 + 9 / 12, "feet"),
  24881. weight: math.unit(190, "lb"),
  24882. name: "Back",
  24883. image: {
  24884. source: "./media/characters/sprisk/back.svg",
  24885. extra: 1247 / 1200,
  24886. bottom: 5.6 / 1253.04
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Tiny",
  24893. height: math.unit(2, "inches")
  24894. },
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(5 + 9 / 12, "feet"),
  24898. default: true
  24899. },
  24900. {
  24901. name: "Mini Macro",
  24902. height: math.unit(18, "feet")
  24903. },
  24904. {
  24905. name: "Macro",
  24906. height: math.unit(100, "feet")
  24907. },
  24908. {
  24909. name: "MACRO",
  24910. height: math.unit(50, "miles")
  24911. },
  24912. {
  24913. name: "M A C R O",
  24914. height: math.unit(300, "miles")
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24920. {
  24921. side: {
  24922. height: math.unit(15.6, "meters"),
  24923. weight: math.unit(700000, "kg"),
  24924. name: "Side",
  24925. image: {
  24926. source: "./media/characters/bunsen/side.svg",
  24927. extra: 1644 / 358
  24928. }
  24929. },
  24930. foot: {
  24931. height: math.unit(1.611 * 1644 / 358, "meter"),
  24932. name: "Foot",
  24933. image: {
  24934. source: "./media/characters/bunsen/foot.svg"
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Small",
  24941. height: math.unit(10, "feet")
  24942. },
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(15.6, "meters"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(4 + 11 / 12, "feet"),
  24955. weight: math.unit(140, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/sesh/front.svg",
  24959. extra: 3420 / 3231,
  24960. bottom: 72 / 3949.5
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(4 + 11 / 12, "feet")
  24968. },
  24969. {
  24970. name: "Grown",
  24971. height: math.unit(15, "feet"),
  24972. default: true
  24973. },
  24974. {
  24975. name: "Macro",
  24976. height: math.unit(1500, "feet")
  24977. },
  24978. {
  24979. name: "Megamacro",
  24980. height: math.unit(30, "miles")
  24981. },
  24982. {
  24983. name: "Continental",
  24984. height: math.unit(3000, "miles")
  24985. },
  24986. {
  24987. name: "Gravity Mass",
  24988. height: math.unit(300000, "miles")
  24989. },
  24990. {
  24991. name: "Planet Buster",
  24992. height: math.unit(30000000, "miles")
  24993. },
  24994. {
  24995. name: "Big",
  24996. height: math.unit(3000000000, "miles")
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(9, "feet"),
  25005. weight: math.unit(350, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/pepper/front.svg",
  25009. extra: 1448 / 1312,
  25010. bottom: 9.4 / 1457.88
  25011. }
  25012. },
  25013. back: {
  25014. height: math.unit(9, "feet"),
  25015. weight: math.unit(350, "lb"),
  25016. name: "Back",
  25017. image: {
  25018. source: "./media/characters/pepper/back.svg",
  25019. extra: 1423 / 1300,
  25020. bottom: 4.6 / 1429
  25021. }
  25022. },
  25023. maw: {
  25024. height: math.unit(0.932, "feet"),
  25025. name: "Maw",
  25026. image: {
  25027. source: "./media/characters/pepper/maw.svg"
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(9, "feet"),
  25035. default: true
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(6, "feet"),
  25044. weight: math.unit(150, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/maelstrom/front.svg",
  25048. extra: 2100 / 1883,
  25049. bottom: 94 / 2196.7
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Less Kaiju",
  25056. height: math.unit(200, "feet")
  25057. },
  25058. {
  25059. name: "Kaiju",
  25060. height: math.unit(400, "feet"),
  25061. default: true
  25062. },
  25063. {
  25064. name: "Kaiju-er",
  25065. height: math.unit(600, "feet")
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(6 + 5 / 12, "feet"),
  25074. weight: math.unit(180, "lb"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/lexir/front.svg",
  25078. extra: 180 / 172,
  25079. bottom: 12 / 192
  25080. }
  25081. },
  25082. back: {
  25083. height: math.unit(6 + 5 / 12, "feet"),
  25084. weight: math.unit(180, "lb"),
  25085. name: "Back",
  25086. image: {
  25087. source: "./media/characters/lexir/back.svg",
  25088. extra: 1273/1201,
  25089. bottom: 39/1312
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Very Smal",
  25096. height: math.unit(1, "nm")
  25097. },
  25098. {
  25099. name: "Normal",
  25100. height: math.unit(6 + 5 / 12, "feet"),
  25101. default: true
  25102. },
  25103. {
  25104. name: "Macro",
  25105. height: math.unit(1, "mile")
  25106. },
  25107. {
  25108. name: "Megamacro",
  25109. height: math.unit(50, "miles")
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25115. {
  25116. front: {
  25117. height: math.unit(1.5, "meters"),
  25118. weight: math.unit(100, "lb"),
  25119. name: "Front",
  25120. image: {
  25121. source: "./media/characters/maksio/front.svg",
  25122. extra: 1549 / 1531,
  25123. bottom: 123.7 / 1674.5429
  25124. }
  25125. },
  25126. back: {
  25127. height: math.unit(1.5, "meters"),
  25128. weight: math.unit(100, "lb"),
  25129. name: "Back",
  25130. image: {
  25131. source: "./media/characters/maksio/back.svg",
  25132. extra: 1541 / 1509,
  25133. bottom: 97 / 1639
  25134. }
  25135. },
  25136. hand: {
  25137. height: math.unit(0.621, "feet"),
  25138. name: "Hand",
  25139. image: {
  25140. source: "./media/characters/maksio/hand.svg"
  25141. }
  25142. },
  25143. foot: {
  25144. height: math.unit(1.611, "feet"),
  25145. name: "Foot",
  25146. image: {
  25147. source: "./media/characters/maksio/foot.svg"
  25148. }
  25149. },
  25150. },
  25151. [
  25152. {
  25153. name: "Shrunken",
  25154. height: math.unit(10, "cm")
  25155. },
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(150, "cm"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(100, "feet"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/erza-bear/front.svg",
  25171. extra: 2449 / 2390,
  25172. bottom: 46 / 2494
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(100, "feet"),
  25177. name: "Back",
  25178. image: {
  25179. source: "./media/characters/erza-bear/back.svg",
  25180. extra: 2489 / 2430,
  25181. bottom: 85.4 / 2480
  25182. }
  25183. },
  25184. tail: {
  25185. height: math.unit(42, "feet"),
  25186. name: "Tail",
  25187. image: {
  25188. source: "./media/characters/erza-bear/tail.svg"
  25189. }
  25190. },
  25191. tongue: {
  25192. height: math.unit(8, "feet"),
  25193. name: "Tongue",
  25194. image: {
  25195. source: "./media/characters/erza-bear/tongue.svg"
  25196. }
  25197. },
  25198. dick: {
  25199. height: math.unit(10.5, "feet"),
  25200. name: "Dick",
  25201. image: {
  25202. source: "./media/characters/erza-bear/dick.svg"
  25203. }
  25204. },
  25205. dickVertical: {
  25206. height: math.unit(16.9, "feet"),
  25207. name: "Dick (Vertical)",
  25208. image: {
  25209. source: "./media/characters/erza-bear/dick-vertical.svg"
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Macro",
  25216. height: math.unit(100, "feet"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(172, "cm"),
  25226. weight: math.unit(73, "kg"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/violet-flor/front.svg",
  25230. extra: 1530 / 1442,
  25231. bottom: 61.9 / 1588.8
  25232. }
  25233. },
  25234. back: {
  25235. height: math.unit(180, "cm"),
  25236. weight: math.unit(73, "kg"),
  25237. name: "Back",
  25238. image: {
  25239. source: "./media/characters/violet-flor/back.svg",
  25240. extra: 1692 / 1630,
  25241. bottom: 20 / 1712
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Normal",
  25248. height: math.unit(172, "cm"),
  25249. default: true
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25255. {
  25256. front: {
  25257. height: math.unit(6, "feet"),
  25258. weight: math.unit(220, "lb"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/lynn-rhea/front.svg",
  25262. extra: 310 / 273
  25263. }
  25264. },
  25265. back: {
  25266. height: math.unit(6, "feet"),
  25267. weight: math.unit(220, "lb"),
  25268. name: "Back",
  25269. image: {
  25270. source: "./media/characters/lynn-rhea/back.svg",
  25271. extra: 310 / 273
  25272. }
  25273. },
  25274. dicks: {
  25275. height: math.unit(0.9, "feet"),
  25276. name: "Dicks",
  25277. image: {
  25278. source: "./media/characters/lynn-rhea/dicks.svg"
  25279. }
  25280. },
  25281. slit: {
  25282. height: math.unit(0.4, "feet"),
  25283. name: "Slit",
  25284. image: {
  25285. source: "./media/characters/lynn-rhea/slit.svg"
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Micro",
  25292. height: math.unit(1, "inch")
  25293. },
  25294. {
  25295. name: "Macro",
  25296. height: math.unit(60, "feet"),
  25297. default: true
  25298. },
  25299. {
  25300. name: "Megamacro",
  25301. height: math.unit(2, "miles")
  25302. },
  25303. {
  25304. name: "Gigamacro",
  25305. height: math.unit(3, "earths")
  25306. },
  25307. {
  25308. name: "Galactic",
  25309. height: math.unit(0.8, "galaxies")
  25310. },
  25311. ]
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25315. {
  25316. front: {
  25317. height: math.unit(1600, "feet"),
  25318. weight: math.unit(85758785169, "kg"),
  25319. name: "Front",
  25320. image: {
  25321. source: "./media/characters/valathos/front.svg",
  25322. extra: 1451 / 1339
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Macro",
  25329. height: math.unit(1600, "feet"),
  25330. default: true
  25331. },
  25332. ]
  25333. ))
  25334. characterMakers.push(() => makeCharacter(
  25335. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25336. {
  25337. front: {
  25338. height: math.unit(7 + 5 / 12, "feet"),
  25339. weight: math.unit(300, "lb"),
  25340. name: "Front",
  25341. image: {
  25342. source: "./media/characters/azula/front.svg",
  25343. extra: 3208 / 2880,
  25344. bottom: 80.2 / 3277
  25345. }
  25346. },
  25347. back: {
  25348. height: math.unit(7 + 5 / 12, "feet"),
  25349. weight: math.unit(300, "lb"),
  25350. name: "Back",
  25351. image: {
  25352. source: "./media/characters/azula/back.svg",
  25353. extra: 3169 / 2822,
  25354. bottom: 150.6 / 3321
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Normal",
  25361. height: math.unit(7 + 5 / 12, "feet"),
  25362. default: true
  25363. },
  25364. {
  25365. name: "Big",
  25366. height: math.unit(20, "feet")
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(5 + 1 / 12, "feet"),
  25375. weight: math.unit(110, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/rupert/front.svg",
  25379. extra: 1549 / 1495,
  25380. bottom: 54.2 / 1604.4
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(5 + 1 / 12, "feet"),
  25388. default: true
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25394. {
  25395. front: {
  25396. height: math.unit(8 + 4 / 12, "feet"),
  25397. weight: math.unit(350, "lb"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/sheera-castellar/front.svg",
  25401. extra: 1957 / 1894,
  25402. bottom: 26.97 / 1975.017
  25403. }
  25404. },
  25405. side: {
  25406. height: math.unit(8 + 4 / 12, "feet"),
  25407. weight: math.unit(350, "lb"),
  25408. name: "Side",
  25409. image: {
  25410. source: "./media/characters/sheera-castellar/side.svg",
  25411. extra: 1957 / 1894
  25412. }
  25413. },
  25414. back: {
  25415. height: math.unit(8 + 4 / 12, "feet"),
  25416. weight: math.unit(350, "lb"),
  25417. name: "Back",
  25418. image: {
  25419. source: "./media/characters/sheera-castellar/back.svg",
  25420. extra: 1957 / 1894
  25421. }
  25422. },
  25423. angled: {
  25424. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25425. weight: math.unit(350, "lb"),
  25426. name: "Angled",
  25427. image: {
  25428. source: "./media/characters/sheera-castellar/angled.svg",
  25429. extra: 1807 / 1707,
  25430. bottom: 68 / 1875
  25431. }
  25432. },
  25433. genitals: {
  25434. height: math.unit(2.2, "feet"),
  25435. name: "Genitals",
  25436. image: {
  25437. source: "./media/characters/sheera-castellar/genitals.svg"
  25438. }
  25439. },
  25440. taur: {
  25441. height: math.unit(10 + 6/12, "feet"),
  25442. name: "Taur",
  25443. image: {
  25444. source: "./media/characters/sheera-castellar/taur.svg",
  25445. extra: 2017/1909,
  25446. bottom: 185/2202
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Normal",
  25453. height: math.unit(8 + 4 / 12, "feet")
  25454. },
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(150, "feet"),
  25458. default: true
  25459. },
  25460. {
  25461. name: "Macro+",
  25462. height: math.unit(800, "feet")
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(6, "feet"),
  25471. weight: math.unit(150, "lb"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/jaipur/front.svg",
  25475. extra: 3860 / 3731,
  25476. bottom: 287 / 4140
  25477. }
  25478. },
  25479. back: {
  25480. height: math.unit(6, "feet"),
  25481. weight: math.unit(150, "lb"),
  25482. name: "Back",
  25483. image: {
  25484. source: "./media/characters/jaipur/back.svg",
  25485. extra: 1637/1561,
  25486. bottom: 154/1791
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(1.85, "meters"),
  25494. default: true
  25495. },
  25496. {
  25497. name: "Macro",
  25498. height: math.unit(150, "meters")
  25499. },
  25500. {
  25501. name: "Macro+",
  25502. height: math.unit(0.5, "miles")
  25503. },
  25504. {
  25505. name: "Macro++",
  25506. height: math.unit(2.5, "miles")
  25507. },
  25508. {
  25509. name: "Macro+++",
  25510. height: math.unit(12, "miles")
  25511. },
  25512. {
  25513. name: "Macro++++",
  25514. height: math.unit(120, "miles")
  25515. },
  25516. {
  25517. name: "Macro+++++",
  25518. height: math.unit(1200, "miles")
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25524. {
  25525. front: {
  25526. height: math.unit(6, "feet"),
  25527. weight: math.unit(150, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/sheila-wolf/front.svg",
  25531. extra: 1931 / 1808,
  25532. bottom: 29.5 / 1960
  25533. }
  25534. },
  25535. dick: {
  25536. height: math.unit(1.464, "feet"),
  25537. name: "Dick",
  25538. image: {
  25539. source: "./media/characters/sheila-wolf/dick.svg"
  25540. }
  25541. },
  25542. muzzle: {
  25543. height: math.unit(0.513, "feet"),
  25544. name: "Muzzle",
  25545. image: {
  25546. source: "./media/characters/sheila-wolf/muzzle.svg"
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(70, "feet"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25560. {
  25561. front: {
  25562. height: math.unit(32, "meters"),
  25563. weight: math.unit(300000, "kg"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/almor/front.svg",
  25567. extra: 1408 / 1322,
  25568. bottom: 94.6 / 1506.5
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Macro",
  25575. height: math.unit(32, "meters"),
  25576. default: true
  25577. },
  25578. ]
  25579. ))
  25580. characterMakers.push(() => makeCharacter(
  25581. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25582. {
  25583. front: {
  25584. height: math.unit(7, "feet"),
  25585. weight: math.unit(200, "lb"),
  25586. name: "Front",
  25587. image: {
  25588. source: "./media/characters/silver/front.svg",
  25589. extra: 472.1 / 450.5,
  25590. bottom: 26.5 / 499.424
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(7, "feet"),
  25598. default: true
  25599. },
  25600. {
  25601. name: "Macro",
  25602. height: math.unit(800, "feet")
  25603. },
  25604. {
  25605. name: "Megamacro",
  25606. height: math.unit(250, "miles")
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25612. {
  25613. front: {
  25614. height: math.unit(6, "feet"),
  25615. weight: math.unit(150, "lb"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/pliskin/front.svg",
  25619. extra: 1469 / 1359,
  25620. bottom: 70 / 1540
  25621. }
  25622. },
  25623. },
  25624. [
  25625. {
  25626. name: "Micro",
  25627. height: math.unit(3, "inches")
  25628. },
  25629. {
  25630. name: "Normal",
  25631. height: math.unit(5 + 11 / 12, "feet"),
  25632. default: true
  25633. },
  25634. {
  25635. name: "Macro",
  25636. height: math.unit(120, "feet")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25642. {
  25643. front: {
  25644. height: math.unit(6, "feet"),
  25645. weight: math.unit(150, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/sammy/front.svg",
  25649. extra: 1193 / 1089,
  25650. bottom: 30.5 / 1226
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Macro",
  25657. height: math.unit(1700, "feet"),
  25658. default: true
  25659. },
  25660. {
  25661. name: "Examacro",
  25662. height: math.unit(2.5e9, "lightyears")
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(21, "meters"),
  25671. weight: math.unit(12, "tonnes"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/kuru/front.svg",
  25675. extra: 4301 / 3785,
  25676. bottom: 371.3 / 4691
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Macro",
  25683. height: math.unit(21, "meters"),
  25684. default: true
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25690. {
  25691. front: {
  25692. height: math.unit(23, "meters"),
  25693. weight: math.unit(12.2, "tonnes"),
  25694. name: "Front",
  25695. image: {
  25696. source: "./media/characters/rakka/front.svg",
  25697. extra: 4670 / 4169,
  25698. bottom: 301 / 4968.7
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Macro",
  25705. height: math.unit(23, "meters"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25712. {
  25713. front: {
  25714. height: math.unit(6, "feet"),
  25715. weight: math.unit(150, "lb"),
  25716. name: "Front",
  25717. image: {
  25718. source: "./media/characters/rhys-feline/front.svg",
  25719. extra: 2488 / 2308,
  25720. bottom: 35.67 / 2519.19
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Really Small",
  25727. height: math.unit(1, "nm")
  25728. },
  25729. {
  25730. name: "Micro",
  25731. height: math.unit(4, "inches")
  25732. },
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(4 + 10 / 12, "feet"),
  25736. default: true
  25737. },
  25738. {
  25739. name: "Macro",
  25740. height: math.unit(100, "feet")
  25741. },
  25742. {
  25743. name: "Megamacto",
  25744. height: math.unit(50, "miles")
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25750. {
  25751. side: {
  25752. height: math.unit(30, "feet"),
  25753. weight: math.unit(35000, "kg"),
  25754. name: "Side",
  25755. image: {
  25756. source: "./media/characters/alydar/side.svg",
  25757. extra: 234 / 222,
  25758. bottom: 6.5 / 241
  25759. }
  25760. },
  25761. front: {
  25762. height: math.unit(30, "feet"),
  25763. weight: math.unit(35000, "kg"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/alydar/front.svg",
  25767. extra: 223.37 / 210.2,
  25768. bottom: 22.3 / 246.76
  25769. }
  25770. },
  25771. top: {
  25772. height: math.unit(64.54, "feet"),
  25773. weight: math.unit(35000, "kg"),
  25774. name: "Top",
  25775. image: {
  25776. source: "./media/characters/alydar/top.svg"
  25777. }
  25778. },
  25779. anthro: {
  25780. height: math.unit(30, "feet"),
  25781. weight: math.unit(9000, "kg"),
  25782. name: "Anthro",
  25783. image: {
  25784. source: "./media/characters/alydar/anthro.svg",
  25785. extra: 432 / 421,
  25786. bottom: 7.18 / 440
  25787. }
  25788. },
  25789. maw: {
  25790. height: math.unit(11.693, "feet"),
  25791. name: "Maw",
  25792. image: {
  25793. source: "./media/characters/alydar/maw.svg"
  25794. }
  25795. },
  25796. head: {
  25797. height: math.unit(11.693, "feet"),
  25798. name: "Head",
  25799. image: {
  25800. source: "./media/characters/alydar/head.svg"
  25801. }
  25802. },
  25803. headAlt: {
  25804. height: math.unit(12.861, "feet"),
  25805. name: "Head (Alt)",
  25806. image: {
  25807. source: "./media/characters/alydar/head-alt.svg"
  25808. }
  25809. },
  25810. wing: {
  25811. height: math.unit(20.712, "feet"),
  25812. name: "Wing",
  25813. image: {
  25814. source: "./media/characters/alydar/wing.svg"
  25815. }
  25816. },
  25817. wingFeather: {
  25818. height: math.unit(9.662, "feet"),
  25819. name: "Wing Feather",
  25820. image: {
  25821. source: "./media/characters/alydar/wing-feather.svg"
  25822. }
  25823. },
  25824. countourFeather: {
  25825. height: math.unit(4.154, "feet"),
  25826. name: "Contour Feather",
  25827. image: {
  25828. source: "./media/characters/alydar/contour-feather.svg"
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Diplomatic",
  25835. height: math.unit(13, "feet"),
  25836. default: true
  25837. },
  25838. {
  25839. name: "Small",
  25840. height: math.unit(30, "feet")
  25841. },
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(95, "feet"),
  25845. default: true
  25846. },
  25847. {
  25848. name: "Large",
  25849. height: math.unit(285, "feet")
  25850. },
  25851. {
  25852. name: "Incomprehensible",
  25853. height: math.unit(450, "megameters")
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25859. {
  25860. side: {
  25861. height: math.unit(11, "feet"),
  25862. weight: math.unit(1750, "kg"),
  25863. name: "Side",
  25864. image: {
  25865. source: "./media/characters/selicia/side.svg",
  25866. extra: 440 / 396,
  25867. bottom: 24.8 / 465.979
  25868. }
  25869. },
  25870. maw: {
  25871. height: math.unit(4.665, "feet"),
  25872. name: "Maw",
  25873. image: {
  25874. source: "./media/characters/selicia/maw.svg"
  25875. }
  25876. },
  25877. },
  25878. [
  25879. {
  25880. name: "Normal",
  25881. height: math.unit(11, "feet"),
  25882. default: true
  25883. },
  25884. ]
  25885. ))
  25886. characterMakers.push(() => makeCharacter(
  25887. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25888. {
  25889. side: {
  25890. height: math.unit(2 + 6 / 12, "feet"),
  25891. weight: math.unit(30, "lb"),
  25892. name: "Side",
  25893. image: {
  25894. source: "./media/characters/layla/side.svg",
  25895. extra: 244 / 188,
  25896. bottom: 18.2 / 262.1
  25897. }
  25898. },
  25899. back: {
  25900. height: math.unit(2 + 6 / 12, "feet"),
  25901. weight: math.unit(30, "lb"),
  25902. name: "Back",
  25903. image: {
  25904. source: "./media/characters/layla/back.svg",
  25905. extra: 308 / 241.5,
  25906. bottom: 8.9 / 316.8
  25907. }
  25908. },
  25909. cumming: {
  25910. height: math.unit(2 + 6 / 12, "feet"),
  25911. weight: math.unit(30, "lb"),
  25912. name: "Cumming",
  25913. image: {
  25914. source: "./media/characters/layla/cumming.svg",
  25915. extra: 342 / 279,
  25916. bottom: 595 / 938
  25917. }
  25918. },
  25919. dickFlaccid: {
  25920. height: math.unit(2.595, "feet"),
  25921. name: "Flaccid Genitals",
  25922. image: {
  25923. source: "./media/characters/layla/dick-flaccid.svg"
  25924. }
  25925. },
  25926. dickErect: {
  25927. height: math.unit(2.359, "feet"),
  25928. name: "Erect Genitals",
  25929. image: {
  25930. source: "./media/characters/layla/dick-erect.svg"
  25931. }
  25932. },
  25933. dragon: {
  25934. height: math.unit(40, "feet"),
  25935. name: "Dragon",
  25936. image: {
  25937. source: "./media/characters/layla/dragon.svg",
  25938. extra: 610/535,
  25939. bottom: 367/977
  25940. }
  25941. },
  25942. taur: {
  25943. height: math.unit(30, "feet"),
  25944. name: "Taur",
  25945. image: {
  25946. source: "./media/characters/layla/taur.svg",
  25947. extra: 1268/1199,
  25948. bottom: 112/1380
  25949. }
  25950. },
  25951. },
  25952. [
  25953. {
  25954. name: "Micro",
  25955. height: math.unit(1, "inch")
  25956. },
  25957. {
  25958. name: "Small",
  25959. height: math.unit(1, "foot")
  25960. },
  25961. {
  25962. name: "Normal",
  25963. height: math.unit(2 + 6 / 12, "feet"),
  25964. default: true
  25965. },
  25966. {
  25967. name: "Macro",
  25968. height: math.unit(200, "feet")
  25969. },
  25970. {
  25971. name: "Megamacro",
  25972. height: math.unit(1000, "miles")
  25973. },
  25974. {
  25975. name: "Planetary",
  25976. height: math.unit(8000, "miles")
  25977. },
  25978. {
  25979. name: "True Layla",
  25980. height: math.unit(200000 * 7, "multiverses")
  25981. },
  25982. ]
  25983. ))
  25984. characterMakers.push(() => makeCharacter(
  25985. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25986. {
  25987. back: {
  25988. height: math.unit(10.5, "feet"),
  25989. weight: math.unit(800, "lb"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/knox/back.svg",
  25993. extra: 1486 / 1089,
  25994. bottom: 107 / 1601.4
  25995. }
  25996. },
  25997. side: {
  25998. height: math.unit(10.5, "feet"),
  25999. weight: math.unit(800, "lb"),
  26000. name: "Side",
  26001. image: {
  26002. source: "./media/characters/knox/side.svg",
  26003. extra: 244 / 218,
  26004. bottom: 14 / 260
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Compact",
  26011. height: math.unit(10.5, "feet"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "Dynamax",
  26016. height: math.unit(210, "feet")
  26017. },
  26018. {
  26019. name: "Full Macro",
  26020. height: math.unit(850, "feet")
  26021. },
  26022. ]
  26023. ))
  26024. characterMakers.push(() => makeCharacter(
  26025. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26026. {
  26027. front: {
  26028. height: math.unit(28, "feet"),
  26029. weight: math.unit(10500, "lb"),
  26030. name: "Front",
  26031. image: {
  26032. source: "./media/characters/kayda/front.svg",
  26033. extra: 1536 / 1428,
  26034. bottom: 68.7 / 1603
  26035. }
  26036. },
  26037. back: {
  26038. height: math.unit(28, "feet"),
  26039. weight: math.unit(10500, "lb"),
  26040. name: "Back",
  26041. image: {
  26042. source: "./media/characters/kayda/back.svg",
  26043. extra: 1557 / 1464,
  26044. bottom: 39.5 / 1597.49
  26045. }
  26046. },
  26047. dick: {
  26048. height: math.unit(3.858, "feet"),
  26049. name: "Dick",
  26050. image: {
  26051. source: "./media/characters/kayda/dick.svg"
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Macro",
  26058. height: math.unit(28, "feet"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(10 + 11 / 12, "feet"),
  26068. weight: math.unit(1400, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/brian/front.svg",
  26072. extra: 737 / 692,
  26073. bottom: 55.4 / 785
  26074. }
  26075. },
  26076. },
  26077. [
  26078. {
  26079. name: "Normal",
  26080. height: math.unit(10 + 11 / 12, "feet"),
  26081. default: true
  26082. },
  26083. ]
  26084. ))
  26085. characterMakers.push(() => makeCharacter(
  26086. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26087. {
  26088. front: {
  26089. height: math.unit(5 + 8 / 12, "feet"),
  26090. weight: math.unit(140, "lb"),
  26091. name: "Front",
  26092. image: {
  26093. source: "./media/characters/khemri/front.svg",
  26094. extra: 4780 / 4059,
  26095. bottom: 80.1 / 4859.25
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Micro",
  26102. height: math.unit(6, "inches")
  26103. },
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(5 + 8 / 12, "feet"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26113. {
  26114. front: {
  26115. height: math.unit(13, "feet"),
  26116. weight: math.unit(1700, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/felix-braveheart/front.svg",
  26120. extra: 1222 / 1157,
  26121. bottom: 53.2 / 1280
  26122. }
  26123. },
  26124. back: {
  26125. height: math.unit(13, "feet"),
  26126. weight: math.unit(1700, "lb"),
  26127. name: "Back",
  26128. image: {
  26129. source: "./media/characters/felix-braveheart/back.svg",
  26130. extra: 1277 / 1203,
  26131. bottom: 50.2 / 1327
  26132. }
  26133. },
  26134. feral: {
  26135. height: math.unit(6, "feet"),
  26136. weight: math.unit(400, "lb"),
  26137. name: "Feral",
  26138. image: {
  26139. source: "./media/characters/felix-braveheart/feral.svg",
  26140. extra: 682 / 625,
  26141. bottom: 6.9 / 688
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(13, "feet"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26155. {
  26156. side: {
  26157. height: math.unit(5 + 11 / 12, "feet"),
  26158. weight: math.unit(1400, "lb"),
  26159. name: "Side",
  26160. image: {
  26161. source: "./media/characters/shadow-blade/side.svg",
  26162. extra: 1726 / 1267,
  26163. bottom: 58.4 / 1785
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(5 + 11 / 12, "feet"),
  26171. default: true
  26172. },
  26173. ]
  26174. ))
  26175. characterMakers.push(() => makeCharacter(
  26176. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26177. {
  26178. front: {
  26179. height: math.unit(1 + 6 / 12, "feet"),
  26180. weight: math.unit(25, "lb"),
  26181. name: "Front",
  26182. image: {
  26183. source: "./media/characters/karla-halldor/front.svg",
  26184. extra: 1459 / 1383,
  26185. bottom: 12 / 1472
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(1 + 6 / 12, "feet"),
  26193. default: true
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26199. {
  26200. front: {
  26201. height: math.unit(6 + 2 / 12, "feet"),
  26202. weight: math.unit(160, "lb"),
  26203. name: "Front",
  26204. image: {
  26205. source: "./media/characters/ariam/front.svg",
  26206. extra: 1073/976,
  26207. bottom: 52/1125
  26208. }
  26209. },
  26210. back: {
  26211. height: math.unit(6 + 2/12, "feet"),
  26212. weight: math.unit(160, "lb"),
  26213. name: "Back",
  26214. image: {
  26215. source: "./media/characters/ariam/back.svg",
  26216. extra: 1103/1023,
  26217. bottom: 9/1112
  26218. }
  26219. },
  26220. dressed: {
  26221. height: math.unit(6 + 2/12, "feet"),
  26222. weight: math.unit(160, "lb"),
  26223. name: "Dressed",
  26224. image: {
  26225. source: "./media/characters/ariam/dressed.svg",
  26226. extra: 1099/1009,
  26227. bottom: 25/1124
  26228. }
  26229. },
  26230. squatting: {
  26231. height: math.unit(4.1, "feet"),
  26232. weight: math.unit(160, "lb"),
  26233. name: "Squatting",
  26234. image: {
  26235. source: "./media/characters/ariam/squatting.svg",
  26236. extra: 2617 / 2112,
  26237. bottom: 61.2 / 2681,
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(6 + 2 / 12, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Normal+",
  26249. height: math.unit(4, "meters")
  26250. },
  26251. {
  26252. name: "Macro",
  26253. height: math.unit(50, "meters")
  26254. },
  26255. {
  26256. name: "Macro+",
  26257. height: math.unit(100, "meters")
  26258. },
  26259. {
  26260. name: "Megamacro",
  26261. height: math.unit(20, "km")
  26262. },
  26263. {
  26264. name: "Caretaker",
  26265. height: math.unit(444, "megameters")
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26271. {
  26272. front: {
  26273. height: math.unit(1.67, "meters"),
  26274. weight: math.unit(140, "lb"),
  26275. name: "Front",
  26276. image: {
  26277. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26278. extra: 438 / 410,
  26279. bottom: 0.75 / 439
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Shrunken",
  26286. height: math.unit(7.6, "cm")
  26287. },
  26288. {
  26289. name: "Human Scale",
  26290. height: math.unit(1.67, "meters")
  26291. },
  26292. {
  26293. name: "Wolxi Scale",
  26294. height: math.unit(36.7, "meters"),
  26295. default: true
  26296. },
  26297. ]
  26298. ))
  26299. characterMakers.push(() => makeCharacter(
  26300. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26301. {
  26302. front: {
  26303. height: math.unit(1.73, "meters"),
  26304. weight: math.unit(240, "lb"),
  26305. name: "Front",
  26306. image: {
  26307. source: "./media/characters/izue-two-mothers/front.svg",
  26308. extra: 469 / 437,
  26309. bottom: 1.24 / 470.6
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Shrunken",
  26316. height: math.unit(7.86, "cm")
  26317. },
  26318. {
  26319. name: "Human Scale",
  26320. height: math.unit(1.73, "meters")
  26321. },
  26322. {
  26323. name: "Wolxi Scale",
  26324. height: math.unit(38, "meters"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26331. {
  26332. front: {
  26333. height: math.unit(1.55, "meters"),
  26334. weight: math.unit(120, "lb"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/teeku-love-shack/front.svg",
  26338. extra: 387 / 362,
  26339. bottom: 1.51 / 388
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Shrunken",
  26346. height: math.unit(7, "cm")
  26347. },
  26348. {
  26349. name: "Human Scale",
  26350. height: math.unit(1.55, "meters")
  26351. },
  26352. {
  26353. name: "Wolxi Scale",
  26354. height: math.unit(34.1, "meters"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(1.83, "meters"),
  26364. weight: math.unit(135, "lb"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/dejma-the-red/front.svg",
  26368. extra: 480 / 458,
  26369. bottom: 1.8 / 482
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Shrunken",
  26376. height: math.unit(8.3, "cm")
  26377. },
  26378. {
  26379. name: "Human Scale",
  26380. height: math.unit(1.83, "meters")
  26381. },
  26382. {
  26383. name: "Wolxi Scale",
  26384. height: math.unit(40, "meters"),
  26385. default: true
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(1.78, "meters"),
  26394. weight: math.unit(65, "kg"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/aki/front.svg",
  26398. extra: 452 / 415
  26399. }
  26400. },
  26401. frontNsfw: {
  26402. height: math.unit(1.78, "meters"),
  26403. weight: math.unit(65, "kg"),
  26404. name: "Front (NSFW)",
  26405. image: {
  26406. source: "./media/characters/aki/front-nsfw.svg",
  26407. extra: 452 / 415
  26408. }
  26409. },
  26410. back: {
  26411. height: math.unit(1.78, "meters"),
  26412. weight: math.unit(65, "kg"),
  26413. name: "Back",
  26414. image: {
  26415. source: "./media/characters/aki/back.svg",
  26416. extra: 452 / 415
  26417. }
  26418. },
  26419. rump: {
  26420. height: math.unit(2.05, "feet"),
  26421. name: "Rump",
  26422. image: {
  26423. source: "./media/characters/aki/rump.svg"
  26424. }
  26425. },
  26426. dick: {
  26427. height: math.unit(0.95, "feet"),
  26428. name: "Dick",
  26429. image: {
  26430. source: "./media/characters/aki/dick.svg"
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Micro",
  26437. height: math.unit(15, "cm")
  26438. },
  26439. {
  26440. name: "Normal",
  26441. height: math.unit(178, "cm"),
  26442. default: true
  26443. },
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(214, "m")
  26447. },
  26448. {
  26449. name: "Macro+",
  26450. height: math.unit(534, "m")
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(5 + 5 / 12, "feet"),
  26459. weight: math.unit(120, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/ari/front.svg",
  26463. extra: 1550/1471,
  26464. bottom: 39/1589
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(5 + 5 / 12, "feet")
  26472. },
  26473. {
  26474. name: "Macro",
  26475. height: math.unit(100, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Megamacro",
  26480. height: math.unit(100, "miles")
  26481. },
  26482. {
  26483. name: "Gigamacro",
  26484. height: math.unit(80000, "miles")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26490. {
  26491. side: {
  26492. height: math.unit(9, "feet"),
  26493. weight: math.unit(400, "kg"),
  26494. name: "Side",
  26495. image: {
  26496. source: "./media/characters/bolt/side.svg",
  26497. extra: 1126 / 896,
  26498. bottom: 60 / 1187.3,
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Micro",
  26505. height: math.unit(5, "inches")
  26506. },
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(9, "feet"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(700, "feet")
  26515. },
  26516. {
  26517. name: "Max Size",
  26518. height: math.unit(1.52e22, "yottameters")
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26524. {
  26525. front: {
  26526. height: math.unit(4.3, "meters"),
  26527. weight: math.unit(3, "tons"),
  26528. name: "Front",
  26529. image: {
  26530. source: "./media/characters/draekon-sylviar/front.svg",
  26531. extra: 2072/1512,
  26532. bottom: 74/2146
  26533. }
  26534. },
  26535. back: {
  26536. height: math.unit(4.3, "meters"),
  26537. weight: math.unit(3, "tons"),
  26538. name: "Back",
  26539. image: {
  26540. source: "./media/characters/draekon-sylviar/back.svg",
  26541. extra: 1639/1483,
  26542. bottom: 41/1680
  26543. }
  26544. },
  26545. feral: {
  26546. height: math.unit(1.15, "meters"),
  26547. weight: math.unit(3, "tons"),
  26548. name: "Feral",
  26549. image: {
  26550. source: "./media/characters/draekon-sylviar/feral.svg",
  26551. extra: 1033/395,
  26552. bottom: 130/1163
  26553. }
  26554. },
  26555. maw: {
  26556. height: math.unit(1.3, "meters"),
  26557. name: "Maw",
  26558. image: {
  26559. source: "./media/characters/draekon-sylviar/maw.svg"
  26560. }
  26561. },
  26562. mawSeparated: {
  26563. height: math.unit(1.53, "meters"),
  26564. name: "Separated Maw",
  26565. image: {
  26566. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26567. }
  26568. },
  26569. tail: {
  26570. height: math.unit(1.15, "meters"),
  26571. name: "Tail",
  26572. image: {
  26573. source: "./media/characters/draekon-sylviar/tail.svg"
  26574. }
  26575. },
  26576. tailDick: {
  26577. height: math.unit(1.15, "meters"),
  26578. name: "Tail (Dick)",
  26579. image: {
  26580. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26581. }
  26582. },
  26583. tailDickSeparated: {
  26584. height: math.unit(1.19, "meters"),
  26585. name: "Tail (Separated Dick)",
  26586. image: {
  26587. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26588. }
  26589. },
  26590. slit: {
  26591. height: math.unit(1, "meters"),
  26592. name: "Slit",
  26593. image: {
  26594. source: "./media/characters/draekon-sylviar/slit.svg"
  26595. }
  26596. },
  26597. dick: {
  26598. height: math.unit(1.15, "meters"),
  26599. name: "Dick",
  26600. image: {
  26601. source: "./media/characters/draekon-sylviar/dick.svg"
  26602. }
  26603. },
  26604. dickSeparated: {
  26605. height: math.unit(1.1, "meters"),
  26606. name: "Separated Dick",
  26607. image: {
  26608. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26609. }
  26610. },
  26611. sheath: {
  26612. height: math.unit(1.15, "meters"),
  26613. name: "Sheath",
  26614. image: {
  26615. source: "./media/characters/draekon-sylviar/sheath.svg"
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Small",
  26622. height: math.unit(4.53 / 2, "meters"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(4.53, "meters"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "Large",
  26632. height: math.unit(4.53 * 2, "meters"),
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(6 + 2 / 12, "feet"),
  26641. weight: math.unit(180, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/brawler/front.svg",
  26645. extra: 3301 / 3027,
  26646. bottom: 138 / 3439
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(6 + 2 / 12, "feet"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26660. {
  26661. front: {
  26662. height: math.unit(11, "feet"),
  26663. weight: math.unit(1000, "lb"),
  26664. name: "Front",
  26665. image: {
  26666. source: "./media/characters/alex/front.svg",
  26667. bottom: 44.5 / 620
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Micro",
  26674. height: math.unit(5, "inches")
  26675. },
  26676. {
  26677. name: "Normal",
  26678. height: math.unit(11, "feet"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(9.5e9, "feet")
  26684. },
  26685. {
  26686. name: "Max Size",
  26687. height: math.unit(1.4e283, "yottameters")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26693. {
  26694. female: {
  26695. height: math.unit(29.9, "m"),
  26696. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26697. name: "Female",
  26698. image: {
  26699. source: "./media/characters/zenari/female.svg",
  26700. extra: 3281.6 / 3217,
  26701. bottom: 72.2 / 3353
  26702. }
  26703. },
  26704. male: {
  26705. height: math.unit(27.7, "m"),
  26706. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26707. name: "Male",
  26708. image: {
  26709. source: "./media/characters/zenari/male.svg",
  26710. extra: 3008 / 2991,
  26711. bottom: 54.6 / 3069
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Macro",
  26718. height: math.unit(29.7, "meters"),
  26719. default: true
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26725. {
  26726. female: {
  26727. height: math.unit(23.8, "m"),
  26728. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26729. name: "Female",
  26730. image: {
  26731. source: "./media/characters/mactarian/female.svg",
  26732. extra: 2662 / 2569,
  26733. bottom: 73 / 2736
  26734. }
  26735. },
  26736. male: {
  26737. height: math.unit(23.8, "m"),
  26738. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26739. name: "Male",
  26740. image: {
  26741. source: "./media/characters/mactarian/male.svg",
  26742. extra: 2673 / 2600,
  26743. bottom: 76 / 2750
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Macro",
  26750. height: math.unit(23.8, "meters"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26757. {
  26758. female: {
  26759. height: math.unit(19.3, "m"),
  26760. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26761. name: "Female",
  26762. image: {
  26763. source: "./media/characters/umok/female.svg",
  26764. extra: 2186 / 2078,
  26765. bottom: 87 / 2277
  26766. }
  26767. },
  26768. male: {
  26769. height: math.unit(19.5, "m"),
  26770. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26771. name: "Male",
  26772. image: {
  26773. source: "./media/characters/umok/male.svg",
  26774. extra: 2233 / 2140,
  26775. bottom: 24.4 / 2258
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Macro",
  26782. height: math.unit(19.3, "meters"),
  26783. default: true
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26789. {
  26790. female: {
  26791. height: math.unit(26.15, "m"),
  26792. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26793. name: "Female",
  26794. image: {
  26795. source: "./media/characters/joraxian/female.svg",
  26796. extra: 2912 / 2824,
  26797. bottom: 36 / 2956
  26798. }
  26799. },
  26800. male: {
  26801. height: math.unit(25.4, "m"),
  26802. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26803. name: "Male",
  26804. image: {
  26805. source: "./media/characters/joraxian/male.svg",
  26806. extra: 2877 / 2721,
  26807. bottom: 82 / 2967
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Macro",
  26814. height: math.unit(26.15, "meters"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26821. {
  26822. female: {
  26823. height: math.unit(21.6, "m"),
  26824. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26825. name: "Female",
  26826. image: {
  26827. source: "./media/characters/sthara/female.svg",
  26828. extra: 2516 / 2347,
  26829. bottom: 21.5 / 2537
  26830. }
  26831. },
  26832. male: {
  26833. height: math.unit(24, "m"),
  26834. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26835. name: "Male",
  26836. image: {
  26837. source: "./media/characters/sthara/male.svg",
  26838. extra: 2732 / 2607,
  26839. bottom: 23 / 2732
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Macro",
  26846. height: math.unit(21.6, "meters"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(6 + 4 / 12, "feet"),
  26856. weight: math.unit(175, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/luka-bryzant/front.svg",
  26860. extra: 311 / 289,
  26861. bottom: 4 / 315
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(6 + 4 / 12, "feet"),
  26866. weight: math.unit(175, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/luka-bryzant/back.svg",
  26870. extra: 311 / 289,
  26871. bottom: 3.8 / 313.7
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Micro",
  26878. height: math.unit(10, "inches")
  26879. },
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(6 + 4 / 12, "feet"),
  26883. default: true
  26884. },
  26885. {
  26886. name: "Large",
  26887. height: math.unit(12, "feet")
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26893. {
  26894. front: {
  26895. height: math.unit(5 + 7 / 12, "feet"),
  26896. weight: math.unit(185, "lb"),
  26897. name: "Front",
  26898. image: {
  26899. source: "./media/characters/aman-aquila/front.svg",
  26900. extra: 1013 / 976,
  26901. bottom: 45.6 / 1057
  26902. }
  26903. },
  26904. side: {
  26905. height: math.unit(5 + 7 / 12, "feet"),
  26906. weight: math.unit(185, "lb"),
  26907. name: "Side",
  26908. image: {
  26909. source: "./media/characters/aman-aquila/side.svg",
  26910. extra: 1054 / 1011,
  26911. bottom: 15 / 1070
  26912. }
  26913. },
  26914. back: {
  26915. height: math.unit(5 + 7 / 12, "feet"),
  26916. weight: math.unit(185, "lb"),
  26917. name: "Back",
  26918. image: {
  26919. source: "./media/characters/aman-aquila/back.svg",
  26920. extra: 1026 / 970,
  26921. bottom: 12 / 1039
  26922. }
  26923. },
  26924. head: {
  26925. height: math.unit(1.211, "feet"),
  26926. name: "Head",
  26927. image: {
  26928. source: "./media/characters/aman-aquila/head.svg",
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Minimicro",
  26935. height: math.unit(0.057, "inches")
  26936. },
  26937. {
  26938. name: "Micro",
  26939. height: math.unit(7, "inches")
  26940. },
  26941. {
  26942. name: "Mini",
  26943. height: math.unit(3 + 7 / 12, "feet")
  26944. },
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(5 + 7 / 12, "feet"),
  26948. default: true
  26949. },
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(157 + 7 / 12, "feet")
  26953. },
  26954. {
  26955. name: "Megamacro",
  26956. height: math.unit(1557 + 7 / 12, "feet")
  26957. },
  26958. {
  26959. name: "Gigamacro",
  26960. height: math.unit(15557 + 7 / 12, "feet")
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(3 + 2 / 12, "inches"),
  26969. weight: math.unit(0.3, "ounces"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/hiphae/front.svg",
  26973. extra: 1931 / 1683,
  26974. bottom: 24 / 1955
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(3 + 1 / 2, "inches"),
  26982. default: true
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(5 + 10 / 12, "feet"),
  26991. weight: math.unit(165, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/nicky/front.svg",
  26995. extra: 3144 / 2886,
  26996. bottom: 45.6 / 3192
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(5 + 10 / 12, "feet"),
  27001. weight: math.unit(165, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/nicky/back.svg",
  27005. extra: 3055 / 2804,
  27006. bottom: 28.4 / 3087
  27007. }
  27008. },
  27009. frontclothed: {
  27010. height: math.unit(5 + 10 / 12, "feet"),
  27011. weight: math.unit(165, "lb"),
  27012. name: "Front-clothed",
  27013. image: {
  27014. source: "./media/characters/nicky/front-clothed.svg",
  27015. extra: 3184.9 / 2926.9,
  27016. bottom: 86.5 / 3239.9
  27017. }
  27018. },
  27019. foot: {
  27020. height: math.unit(1.16, "feet"),
  27021. name: "Foot",
  27022. image: {
  27023. source: "./media/characters/nicky/foot.svg"
  27024. }
  27025. },
  27026. feet: {
  27027. height: math.unit(1.34, "feet"),
  27028. name: "Feet",
  27029. image: {
  27030. source: "./media/characters/nicky/feet.svg"
  27031. }
  27032. },
  27033. maw: {
  27034. height: math.unit(0.9, "feet"),
  27035. name: "Maw",
  27036. image: {
  27037. source: "./media/characters/nicky/maw.svg"
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(5 + 10 / 12, "feet"),
  27045. default: true
  27046. },
  27047. {
  27048. name: "Macro",
  27049. height: math.unit(60, "feet")
  27050. },
  27051. {
  27052. name: "Megamacro",
  27053. height: math.unit(1, "mile")
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27059. {
  27060. side: {
  27061. height: math.unit(10, "feet"),
  27062. weight: math.unit(600, "lb"),
  27063. name: "Side",
  27064. image: {
  27065. source: "./media/characters/blair/side.svg",
  27066. bottom: 16.6 / 475,
  27067. extra: 458 / 431
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Micro",
  27074. height: math.unit(8, "inches")
  27075. },
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(10, "feet"),
  27079. default: true
  27080. },
  27081. {
  27082. name: "Macro",
  27083. height: math.unit(180, "feet")
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27089. {
  27090. front: {
  27091. height: math.unit(5 + 4 / 12, "feet"),
  27092. weight: math.unit(125, "lb"),
  27093. name: "Front",
  27094. image: {
  27095. source: "./media/characters/fisher/front.svg",
  27096. extra: 444 / 390,
  27097. bottom: 2 / 444.8
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Micro",
  27104. height: math.unit(4, "inches")
  27105. },
  27106. {
  27107. name: "Normal",
  27108. height: math.unit(5 + 4 / 12, "feet"),
  27109. default: true
  27110. },
  27111. {
  27112. name: "Macro",
  27113. height: math.unit(100, "feet")
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(6.71, "feet"),
  27122. weight: math.unit(200, "lb"),
  27123. preyCapacity: math.unit(1000000, "people"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/gliss/front.svg",
  27127. extra: 2347 / 2231,
  27128. bottom: 113 / 2462
  27129. }
  27130. },
  27131. hammerspaceSize: {
  27132. height: math.unit(6.71 * 717, "feet"),
  27133. weight: math.unit(200, "lb"),
  27134. preyCapacity: math.unit(1000000, "people"),
  27135. name: "Hammerspace Size",
  27136. image: {
  27137. source: "./media/characters/gliss/front.svg",
  27138. extra: 2347 / 2231,
  27139. bottom: 113 / 2462
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(6.71, "feet"),
  27147. default: true
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27153. {
  27154. side: {
  27155. height: math.unit(1.44, "m"),
  27156. weight: math.unit(80, "kg"),
  27157. name: "Side",
  27158. image: {
  27159. source: "./media/characters/dune-anderson/side.svg",
  27160. bottom: 49 / 1426
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Wolf-sized",
  27167. height: math.unit(1.44, "meters")
  27168. },
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(5.05, "meters"),
  27172. default: true
  27173. },
  27174. {
  27175. name: "Big",
  27176. height: math.unit(14.4, "meters")
  27177. },
  27178. {
  27179. name: "Huge",
  27180. height: math.unit(144, "meters")
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(7, "feet"),
  27189. weight: math.unit(425, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/hind/front.svg",
  27193. extra: 2091 / 1860,
  27194. bottom: 129 / 2220
  27195. }
  27196. },
  27197. back: {
  27198. height: math.unit(7, "feet"),
  27199. weight: math.unit(425, "lb"),
  27200. name: "Back",
  27201. image: {
  27202. source: "./media/characters/hind/back.svg",
  27203. extra: 2091 / 1860,
  27204. bottom: 24.6 / 2309
  27205. }
  27206. },
  27207. tail: {
  27208. height: math.unit(2.8, "feet"),
  27209. name: "Tail",
  27210. image: {
  27211. source: "./media/characters/hind/tail.svg"
  27212. }
  27213. },
  27214. head: {
  27215. height: math.unit(2.55, "feet"),
  27216. name: "Head",
  27217. image: {
  27218. source: "./media/characters/hind/head.svg"
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "XS",
  27225. height: math.unit(0.7, "feet")
  27226. },
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(7, "feet"),
  27230. default: true
  27231. },
  27232. {
  27233. name: "XL",
  27234. height: math.unit(70, "feet")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(2.1, "meters"),
  27243. weight: math.unit(150, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/tharquench-sizestealer/front.svg",
  27247. extra: 1605/1470,
  27248. bottom: 36/1641
  27249. }
  27250. },
  27251. frontAlt: {
  27252. height: math.unit(2.1, "meters"),
  27253. weight: math.unit(150, "lb"),
  27254. name: "Front (Alt)",
  27255. image: {
  27256. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27257. extra: 2318 / 2063,
  27258. bottom: 93.4 / 2410
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Nano",
  27265. height: math.unit(1, "mm")
  27266. },
  27267. {
  27268. name: "Micro",
  27269. height: math.unit(1, "cm")
  27270. },
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(2.1, "meters"),
  27274. default: true
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(7 + 5 / 12, "feet"),
  27283. weight: math.unit(357, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/solex-draconov/front.svg",
  27287. extra: 1993 / 1865,
  27288. bottom: 117 / 2111
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Natural Height",
  27295. height: math.unit(7 + 5 / 12, "feet"),
  27296. default: true
  27297. },
  27298. {
  27299. name: "Macro",
  27300. height: math.unit(350, "feet")
  27301. },
  27302. {
  27303. name: "Macro+",
  27304. height: math.unit(1000, "feet")
  27305. },
  27306. {
  27307. name: "Megamacro",
  27308. height: math.unit(20, "km")
  27309. },
  27310. {
  27311. name: "Megamacro+",
  27312. height: math.unit(1000, "km")
  27313. },
  27314. {
  27315. name: "Gigamacro",
  27316. height: math.unit(2.5, "Gm")
  27317. },
  27318. {
  27319. name: "Teramacro",
  27320. height: math.unit(15, "Tm")
  27321. },
  27322. {
  27323. name: "Galactic",
  27324. height: math.unit(30, "Zm")
  27325. },
  27326. {
  27327. name: "Universal",
  27328. height: math.unit(21000, "Ym")
  27329. },
  27330. {
  27331. name: "Omniversal",
  27332. height: math.unit(9.861e50, "Ym")
  27333. },
  27334. {
  27335. name: "Existential",
  27336. height: math.unit(1e300, "meters")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27342. {
  27343. side: {
  27344. height: math.unit(25, "feet"),
  27345. weight: math.unit(90000, "lb"),
  27346. name: "Side",
  27347. image: {
  27348. source: "./media/characters/mandarax/side.svg",
  27349. extra: 614 / 332,
  27350. bottom: 55 / 630
  27351. }
  27352. },
  27353. lounging: {
  27354. height: math.unit(15.4, "feet"),
  27355. weight: math.unit(90000, "lb"),
  27356. name: "Lounging",
  27357. image: {
  27358. source: "./media/characters/mandarax/lounging.svg",
  27359. extra: 817/609,
  27360. bottom: 685/1502
  27361. }
  27362. },
  27363. head: {
  27364. height: math.unit(11.4, "feet"),
  27365. name: "Head",
  27366. image: {
  27367. source: "./media/characters/mandarax/head.svg"
  27368. }
  27369. },
  27370. belly: {
  27371. height: math.unit(33, "feet"),
  27372. name: "Belly",
  27373. preyCapacity: math.unit(500, "people"),
  27374. image: {
  27375. source: "./media/characters/mandarax/belly.svg"
  27376. }
  27377. },
  27378. dick: {
  27379. height: math.unit(8.46, "feet"),
  27380. name: "Dick",
  27381. image: {
  27382. source: "./media/characters/mandarax/dick.svg"
  27383. }
  27384. },
  27385. top: {
  27386. height: math.unit(28, "meters"),
  27387. name: "Top",
  27388. image: {
  27389. source: "./media/characters/mandarax/top.svg"
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Normal",
  27396. height: math.unit(25, "feet"),
  27397. default: true
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27403. {
  27404. front: {
  27405. height: math.unit(5, "feet"),
  27406. weight: math.unit(90, "lb"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/pixil/front.svg",
  27410. extra: 2000 / 1618,
  27411. bottom: 12.3 / 2011
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(5, "feet"),
  27419. default: true
  27420. },
  27421. {
  27422. name: "Megamacro",
  27423. height: math.unit(10, "miles"),
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27429. {
  27430. front: {
  27431. height: math.unit(7 + 2 / 12, "feet"),
  27432. weight: math.unit(200, "lb"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/angel/front.svg",
  27436. extra: 1830 / 1737,
  27437. bottom: 22.6 / 1854,
  27438. }
  27439. },
  27440. },
  27441. [
  27442. {
  27443. name: "Normal",
  27444. height: math.unit(7 + 2 / 12, "feet"),
  27445. default: true
  27446. },
  27447. {
  27448. name: "Macro",
  27449. height: math.unit(1000, "feet")
  27450. },
  27451. {
  27452. name: "Megamacro",
  27453. height: math.unit(2, "miles")
  27454. },
  27455. {
  27456. name: "Gigamacro",
  27457. height: math.unit(20, "earths")
  27458. },
  27459. ]
  27460. ))
  27461. characterMakers.push(() => makeCharacter(
  27462. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27463. {
  27464. front: {
  27465. height: math.unit(5, "feet"),
  27466. weight: math.unit(180, "lb"),
  27467. name: "Front",
  27468. image: {
  27469. source: "./media/characters/mekana/front.svg",
  27470. extra: 1671 / 1605,
  27471. bottom: 3.5 / 1691
  27472. }
  27473. },
  27474. side: {
  27475. height: math.unit(5, "feet"),
  27476. weight: math.unit(180, "lb"),
  27477. name: "Side",
  27478. image: {
  27479. source: "./media/characters/mekana/side.svg",
  27480. extra: 1671 / 1605,
  27481. bottom: 3.5 / 1691
  27482. }
  27483. },
  27484. back: {
  27485. height: math.unit(5, "feet"),
  27486. weight: math.unit(180, "lb"),
  27487. name: "Back",
  27488. image: {
  27489. source: "./media/characters/mekana/back.svg",
  27490. extra: 1671 / 1605,
  27491. bottom: 3.5 / 1691
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Normal",
  27498. height: math.unit(5, "feet"),
  27499. default: true
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(4 + 6 / 12, "feet"),
  27508. weight: math.unit(80, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/pixie/front.svg",
  27512. extra: 1924 / 1825,
  27513. bottom: 22.4 / 1946
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(4 + 6 / 12, "feet"),
  27521. default: true
  27522. },
  27523. {
  27524. name: "Macro",
  27525. height: math.unit(40, "feet")
  27526. },
  27527. ]
  27528. ))
  27529. characterMakers.push(() => makeCharacter(
  27530. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27531. {
  27532. front: {
  27533. height: math.unit(2.1, "meters"),
  27534. weight: math.unit(200, "lb"),
  27535. name: "Front",
  27536. image: {
  27537. source: "./media/characters/the-lascivious/front.svg",
  27538. extra: 1 / 0.893,
  27539. bottom: 3.5 / 573.7
  27540. }
  27541. },
  27542. },
  27543. [
  27544. {
  27545. name: "Human Scale",
  27546. height: math.unit(2.1, "meters")
  27547. },
  27548. {
  27549. name: "Wolxi Scale",
  27550. height: math.unit(46.2, "m"),
  27551. default: true
  27552. },
  27553. {
  27554. name: "Boinker of Buildings",
  27555. height: math.unit(10, "km")
  27556. },
  27557. {
  27558. name: "Shagger of Skyscrapers",
  27559. height: math.unit(40, "km")
  27560. },
  27561. {
  27562. name: "Banger of Boroughs",
  27563. height: math.unit(4000, "km")
  27564. },
  27565. {
  27566. name: "Screwer of States",
  27567. height: math.unit(100000, "km")
  27568. },
  27569. {
  27570. name: "Pounder of Planets",
  27571. height: math.unit(2000000, "km")
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(6, "feet"),
  27580. weight: math.unit(150, "lb"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/aj/front.svg",
  27584. extra: 2039 / 1562,
  27585. bottom: 40 / 2079
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(11 + 6 / 12, "feet"),
  27593. default: true
  27594. },
  27595. {
  27596. name: "Megamacro",
  27597. height: math.unit(60, "megameters")
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27603. {
  27604. side: {
  27605. height: math.unit(31 + 8 / 12, "feet"),
  27606. weight: math.unit(75000, "kg"),
  27607. name: "Side",
  27608. image: {
  27609. source: "./media/characters/koros/side.svg",
  27610. extra: 1442 / 1297,
  27611. bottom: 122.7 / 1562
  27612. }
  27613. },
  27614. dicksKingsCrown: {
  27615. height: math.unit(6, "feet"),
  27616. name: "Dicks (King's Crown)",
  27617. image: {
  27618. source: "./media/characters/koros/dicks-kings-crown.svg"
  27619. }
  27620. },
  27621. dicksTailSet: {
  27622. height: math.unit(3, "feet"),
  27623. name: "Dicks (Tail Set)",
  27624. image: {
  27625. source: "./media/characters/koros/dicks-tail-set.svg"
  27626. }
  27627. },
  27628. dickCumming: {
  27629. height: math.unit(7.98, "feet"),
  27630. name: "Dick (Cumming)",
  27631. image: {
  27632. source: "./media/characters/koros/dick-cumming.svg"
  27633. }
  27634. },
  27635. dicksBack: {
  27636. height: math.unit(5.9, "feet"),
  27637. name: "Dicks (Back)",
  27638. image: {
  27639. source: "./media/characters/koros/dicks-back.svg"
  27640. }
  27641. },
  27642. dicksFront: {
  27643. height: math.unit(3.72, "feet"),
  27644. name: "Dicks (Front)",
  27645. image: {
  27646. source: "./media/characters/koros/dicks-front.svg"
  27647. }
  27648. },
  27649. dicksPeeking: {
  27650. height: math.unit(3.0, "feet"),
  27651. name: "Dicks (Peeking)",
  27652. image: {
  27653. source: "./media/characters/koros/dicks-peeking.svg"
  27654. }
  27655. },
  27656. eye: {
  27657. height: math.unit(1.7, "feet"),
  27658. name: "Eye",
  27659. image: {
  27660. source: "./media/characters/koros/eye.svg"
  27661. }
  27662. },
  27663. headFront: {
  27664. height: math.unit(11.69, "feet"),
  27665. name: "Head (Front)",
  27666. image: {
  27667. source: "./media/characters/koros/head-front.svg"
  27668. }
  27669. },
  27670. headSide: {
  27671. height: math.unit(14, "feet"),
  27672. name: "Head (Side)",
  27673. image: {
  27674. source: "./media/characters/koros/head-side.svg"
  27675. }
  27676. },
  27677. leg: {
  27678. height: math.unit(17, "feet"),
  27679. name: "Leg",
  27680. image: {
  27681. source: "./media/characters/koros/leg.svg"
  27682. }
  27683. },
  27684. mawSide: {
  27685. height: math.unit(12.8, "feet"),
  27686. name: "Maw (Side)",
  27687. image: {
  27688. source: "./media/characters/koros/maw-side.svg"
  27689. }
  27690. },
  27691. mawSpitting: {
  27692. height: math.unit(17, "feet"),
  27693. name: "Maw (Spitting)",
  27694. image: {
  27695. source: "./media/characters/koros/maw-spitting.svg"
  27696. }
  27697. },
  27698. slit: {
  27699. height: math.unit(2.8, "feet"),
  27700. name: "Slit",
  27701. image: {
  27702. source: "./media/characters/koros/slit.svg"
  27703. }
  27704. },
  27705. stomach: {
  27706. height: math.unit(6.8, "feet"),
  27707. preyCapacity: math.unit(20, "people"),
  27708. name: "Stomach",
  27709. image: {
  27710. source: "./media/characters/koros/stomach.svg"
  27711. }
  27712. },
  27713. wingspanBottom: {
  27714. height: math.unit(114, "feet"),
  27715. name: "Wingspan (Bottom)",
  27716. image: {
  27717. source: "./media/characters/koros/wingspan-bottom.svg"
  27718. }
  27719. },
  27720. wingspanTop: {
  27721. height: math.unit(104, "feet"),
  27722. name: "Wingspan (Top)",
  27723. image: {
  27724. source: "./media/characters/koros/wingspan-top.svg"
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(31 + 8 / 12, "feet"),
  27732. default: true
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(18 + 5 / 12, "feet"),
  27741. weight: math.unit(3750, "kg"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/vexx/front.svg",
  27745. extra: 426 / 396,
  27746. bottom: 31.5 / 458
  27747. }
  27748. },
  27749. maw: {
  27750. height: math.unit(6, "feet"),
  27751. name: "Maw",
  27752. image: {
  27753. source: "./media/characters/vexx/maw.svg"
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(18 + 5 / 12, "feet"),
  27761. default: true
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(17 + 6 / 12, "feet"),
  27770. weight: math.unit(150, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/baadra/front.svg",
  27774. extra: 1694/1553,
  27775. bottom: 179/1873
  27776. }
  27777. },
  27778. frontAlt: {
  27779. height: math.unit(17 + 6 / 12, "feet"),
  27780. weight: math.unit(150, "lb"),
  27781. name: "Front (Alt)",
  27782. image: {
  27783. source: "./media/characters/baadra/front-alt.svg",
  27784. extra: 3137 / 2890,
  27785. bottom: 168.4 / 3305
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(17 + 6 / 12, "feet"),
  27790. weight: math.unit(150, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/baadra/back.svg",
  27794. extra: 3142 / 2890,
  27795. bottom: 220 / 3371
  27796. }
  27797. },
  27798. head: {
  27799. height: math.unit(5.45, "feet"),
  27800. name: "Head",
  27801. image: {
  27802. source: "./media/characters/baadra/head.svg"
  27803. }
  27804. },
  27805. headAngry: {
  27806. height: math.unit(4.95, "feet"),
  27807. name: "Head (Angry)",
  27808. image: {
  27809. source: "./media/characters/baadra/head-angry.svg"
  27810. }
  27811. },
  27812. headOpen: {
  27813. height: math.unit(6, "feet"),
  27814. name: "Head (Open)",
  27815. image: {
  27816. source: "./media/characters/baadra/head-open.svg"
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(17 + 6 / 12, "feet"),
  27824. default: true
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(7 + 3 / 12, "feet"),
  27833. weight: math.unit(180, "lb"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/juri/front.svg",
  27837. extra: 1401 / 1237,
  27838. bottom: 18.5 / 1418
  27839. }
  27840. },
  27841. side: {
  27842. height: math.unit(7 + 3 / 12, "feet"),
  27843. weight: math.unit(180, "lb"),
  27844. name: "Side",
  27845. image: {
  27846. source: "./media/characters/juri/side.svg",
  27847. extra: 1424 / 1242,
  27848. bottom: 18.5 / 1447
  27849. }
  27850. },
  27851. sitting: {
  27852. height: math.unit(6, "feet"),
  27853. weight: math.unit(180, "lb"),
  27854. name: "Sitting",
  27855. image: {
  27856. source: "./media/characters/juri/sitting.svg",
  27857. extra: 1270 / 1143,
  27858. bottom: 100 / 1343
  27859. }
  27860. },
  27861. back: {
  27862. height: math.unit(7 + 3 / 12, "feet"),
  27863. weight: math.unit(180, "lb"),
  27864. name: "Back",
  27865. image: {
  27866. source: "./media/characters/juri/back.svg",
  27867. extra: 1377 / 1240,
  27868. bottom: 23.7 / 1405
  27869. }
  27870. },
  27871. maw: {
  27872. height: math.unit(2.8, "feet"),
  27873. name: "Maw",
  27874. image: {
  27875. source: "./media/characters/juri/maw.svg"
  27876. }
  27877. },
  27878. stomach: {
  27879. height: math.unit(0.89, "feet"),
  27880. preyCapacity: math.unit(4, "liters"),
  27881. name: "Stomach",
  27882. image: {
  27883. source: "./media/characters/juri/stomach.svg"
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(7 + 3 / 12, "feet"),
  27891. default: true
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27897. {
  27898. fox: {
  27899. height: math.unit(5 + 6 / 12, "feet"),
  27900. weight: math.unit(140, "lb"),
  27901. name: "Fox",
  27902. image: {
  27903. source: "./media/characters/maxene-sita/fox.svg",
  27904. extra: 146 / 138,
  27905. bottom: 2.1 / 148.19
  27906. }
  27907. },
  27908. foxLaying: {
  27909. height: math.unit(1.70, "feet"),
  27910. weight: math.unit(140, "lb"),
  27911. name: "Fox (Laying)",
  27912. image: {
  27913. source: "./media/characters/maxene-sita/fox-laying.svg",
  27914. extra: 910 / 572,
  27915. bottom: 71 / 981
  27916. }
  27917. },
  27918. kitsune: {
  27919. height: math.unit(10, "feet"),
  27920. weight: math.unit(800, "lb"),
  27921. name: "Kitsune",
  27922. image: {
  27923. source: "./media/characters/maxene-sita/kitsune.svg",
  27924. extra: 185 / 176,
  27925. bottom: 4.7 / 189.9
  27926. }
  27927. },
  27928. hellhound: {
  27929. height: math.unit(10, "feet"),
  27930. weight: math.unit(700, "lb"),
  27931. name: "Hellhound",
  27932. image: {
  27933. source: "./media/characters/maxene-sita/hellhound.svg",
  27934. extra: 1600 / 1545,
  27935. bottom: 81 / 1681
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Normal",
  27942. height: math.unit(5 + 6 / 12, "feet"),
  27943. default: true
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27949. {
  27950. front: {
  27951. height: math.unit(3 + 4 / 12, "feet"),
  27952. weight: math.unit(70, "lb"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/maia/front.svg",
  27956. extra: 227 / 219.5,
  27957. bottom: 40 / 267
  27958. }
  27959. },
  27960. back: {
  27961. height: math.unit(3 + 4 / 12, "feet"),
  27962. weight: math.unit(70, "lb"),
  27963. name: "Back",
  27964. image: {
  27965. source: "./media/characters/maia/back.svg",
  27966. extra: 237 / 225
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Normal",
  27973. height: math.unit(3 + 4 / 12, "feet"),
  27974. default: true
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(5 + 10 / 12, "feet"),
  27983. weight: math.unit(197, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/jabaro/front.svg",
  27987. extra: 225 / 216,
  27988. bottom: 5.06 / 230
  27989. }
  27990. },
  27991. back: {
  27992. height: math.unit(5 + 10 / 12, "feet"),
  27993. weight: math.unit(197, "lb"),
  27994. name: "Back",
  27995. image: {
  27996. source: "./media/characters/jabaro/back.svg",
  27997. extra: 225 / 219,
  27998. bottom: 1.9 / 227
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(5 + 10 / 12, "feet"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(5 + 8 / 12, "feet"),
  28015. weight: math.unit(139, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/risa/front.svg",
  28019. extra: 270 / 260,
  28020. bottom: 11.2 / 282
  28021. }
  28022. },
  28023. back: {
  28024. height: math.unit(5 + 8 / 12, "feet"),
  28025. weight: math.unit(139, "lb"),
  28026. name: "Back",
  28027. image: {
  28028. source: "./media/characters/risa/back.svg",
  28029. extra: 264 / 255,
  28030. bottom: 4 / 268
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(5 + 8 / 12, "feet"),
  28038. default: true
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(2 + 11 / 12, "feet"),
  28047. weight: math.unit(30, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/weatley/front.svg",
  28051. bottom: 10.7 / 414,
  28052. extra: 403.5 / 362
  28053. }
  28054. },
  28055. back: {
  28056. height: math.unit(2 + 11 / 12, "feet"),
  28057. weight: math.unit(30, "lb"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/weatley/back.svg",
  28061. bottom: 10.7 / 414,
  28062. extra: 403.5 / 362
  28063. }
  28064. },
  28065. },
  28066. [
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(2 + 11 / 12, "feet"),
  28070. default: true
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(5 + 2 / 12, "feet"),
  28079. weight: math.unit(50, "kg"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/mercury-crescent/front.svg",
  28083. extra: 1088 / 1033,
  28084. bottom: 18.9 / 1109
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Normal",
  28091. height: math.unit(5 + 2 / 12, "feet"),
  28092. default: true
  28093. },
  28094. ]
  28095. ))
  28096. characterMakers.push(() => makeCharacter(
  28097. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28098. {
  28099. front: {
  28100. height: math.unit(2, "feet"),
  28101. weight: math.unit(15, "kg"),
  28102. name: "Front",
  28103. image: {
  28104. source: "./media/characters/diamond-jones/front.svg",
  28105. extra: 727/723,
  28106. bottom: 46/773
  28107. }
  28108. },
  28109. },
  28110. [
  28111. {
  28112. name: "Normal",
  28113. height: math.unit(2, "feet"),
  28114. default: true
  28115. },
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28120. {
  28121. front: {
  28122. height: math.unit(3, "feet"),
  28123. weight: math.unit(30, "kg"),
  28124. name: "Front",
  28125. image: {
  28126. source: "./media/characters/sweet-bit/front.svg",
  28127. extra: 675 / 567,
  28128. bottom: 27.7 / 703
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(3, "feet"),
  28136. default: true
  28137. },
  28138. ]
  28139. ))
  28140. characterMakers.push(() => makeCharacter(
  28141. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28142. {
  28143. side: {
  28144. height: math.unit(9.178, "feet"),
  28145. weight: math.unit(500, "lb"),
  28146. name: "Side",
  28147. image: {
  28148. source: "./media/characters/umbrazen/side.svg",
  28149. extra: 1730 / 1473,
  28150. bottom: 34.6 / 1765
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(9.178, "feet"),
  28158. default: true
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(10, "feet"),
  28167. weight: math.unit(750, "lb"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/arlist/front.svg",
  28171. extra: 961 / 778,
  28172. bottom: 6.2 / 986
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Normal",
  28179. height: math.unit(10, "feet"),
  28180. default: true
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28186. {
  28187. front: {
  28188. height: math.unit(5 + 1 / 12, "feet"),
  28189. weight: math.unit(110, "lb"),
  28190. name: "Front",
  28191. image: {
  28192. source: "./media/characters/aradel/front.svg",
  28193. extra: 324 / 303,
  28194. bottom: 3.6 / 329.4
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(5 + 1 / 12, "feet"),
  28202. default: true
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28208. {
  28209. dressed: {
  28210. height: math.unit(3 + 8 / 12, "feet"),
  28211. weight: math.unit(50, "lb"),
  28212. name: "Dressed",
  28213. image: {
  28214. source: "./media/characters/serryn/dressed.svg",
  28215. extra: 1792 / 1656,
  28216. bottom: 43.5 / 1840
  28217. }
  28218. },
  28219. nude: {
  28220. height: math.unit(3 + 8 / 12, "feet"),
  28221. weight: math.unit(50, "lb"),
  28222. name: "Nude",
  28223. image: {
  28224. source: "./media/characters/serryn/nude.svg",
  28225. extra: 1792 / 1656,
  28226. bottom: 43.5 / 1840
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(3 + 8 / 12, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(7 + 10 / 12, "feet"),
  28243. weight: math.unit(255, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/xavier-thyme/front.svg",
  28247. extra: 3733 / 3642,
  28248. bottom: 131 / 3869
  28249. }
  28250. },
  28251. frontRaven: {
  28252. height: math.unit(7 + 10 / 12, "feet"),
  28253. weight: math.unit(255, "lb"),
  28254. name: "Front (Raven)",
  28255. image: {
  28256. source: "./media/characters/xavier-thyme/front-raven.svg",
  28257. extra: 4385 / 3642,
  28258. bottom: 131 / 4517
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Normal",
  28265. height: math.unit(7 + 10 / 12, "feet"),
  28266. default: true
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(1.6, "m"),
  28275. weight: math.unit(50, "kg"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/kiki/front.svg",
  28279. extra: 4682 / 3610,
  28280. bottom: 115 / 4777
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(1.6, "meters"),
  28288. default: true
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28294. {
  28295. front: {
  28296. height: math.unit(50, "m"),
  28297. weight: math.unit(500, "tonnes"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/ryoko/front.svg",
  28301. extra: 4632 / 3926,
  28302. bottom: 193 / 4823
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(50, "meters"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(30, "m"),
  28319. weight: math.unit(22, "tonnes"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/elio/front.svg",
  28323. extra: 4582 / 3720,
  28324. bottom: 236 / 4828
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(30, "meters"),
  28332. default: true
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(6 + 3 / 12, "feet"),
  28341. weight: math.unit(120, "lb"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/azura/front.svg",
  28345. extra: 1149 / 1135,
  28346. bottom: 45 / 1194
  28347. }
  28348. },
  28349. frontClothed: {
  28350. height: math.unit(6 + 3 / 12, "feet"),
  28351. weight: math.unit(120, "lb"),
  28352. name: "Front (Clothed)",
  28353. image: {
  28354. source: "./media/characters/azura/front-clothed.svg",
  28355. extra: 1149 / 1135,
  28356. bottom: 45 / 1194
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(6 + 3 / 12, "feet"),
  28364. default: true
  28365. },
  28366. {
  28367. name: "Macro",
  28368. height: math.unit(20 + 6 / 12, "feet")
  28369. },
  28370. {
  28371. name: "Megamacro",
  28372. height: math.unit(12, "miles")
  28373. },
  28374. {
  28375. name: "Gigamacro",
  28376. height: math.unit(10000, "miles")
  28377. },
  28378. {
  28379. name: "Teramacro",
  28380. height: math.unit(900000, "miles")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(12, "feet"),
  28389. weight: math.unit(1, "ton"),
  28390. capacity: math.unit(660000, "gallons"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/zeus/front.svg",
  28394. extra: 5005 / 4717,
  28395. bottom: 363 / 5388
  28396. }
  28397. },
  28398. },
  28399. [
  28400. {
  28401. name: "Normal",
  28402. height: math.unit(12, "feet")
  28403. },
  28404. {
  28405. name: "Preferred Size",
  28406. height: math.unit(0.5, "miles"),
  28407. default: true
  28408. },
  28409. {
  28410. name: "Giga Horse",
  28411. height: math.unit(300, "miles")
  28412. },
  28413. {
  28414. name: "Riding Planets",
  28415. height: math.unit(30, "megameters")
  28416. },
  28417. {
  28418. name: "Cosmic Giant",
  28419. height: math.unit(3, "zettameters")
  28420. },
  28421. {
  28422. name: "Breeding God",
  28423. height: math.unit(9.92e22, "yottameters")
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28429. {
  28430. side: {
  28431. height: math.unit(9, "feet"),
  28432. weight: math.unit(1500, "kg"),
  28433. name: "Side",
  28434. image: {
  28435. source: "./media/characters/fang/side.svg",
  28436. extra: 924 / 866,
  28437. bottom: 47.5 / 972.3
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(9, "feet"),
  28445. default: true
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(75 + 6 / 12, "feet")
  28450. },
  28451. {
  28452. name: "Teramacro",
  28453. height: math.unit(50000, "miles")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(10, "feet"),
  28462. weight: math.unit(2, "tons"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/rekhit/front.svg",
  28466. extra: 2796 / 2590,
  28467. bottom: 225 / 3022
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(10, "feet"),
  28475. default: true
  28476. },
  28477. {
  28478. name: "Macro",
  28479. height: math.unit(500, "feet")
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(7 + 6.451 / 12, "feet"),
  28488. weight: math.unit(310, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/dahlia-verrick/front.svg",
  28492. extra: 1488 / 1365,
  28493. bottom: 6.2 / 1495
  28494. }
  28495. },
  28496. back: {
  28497. height: math.unit(7 + 6.451 / 12, "feet"),
  28498. weight: math.unit(310, "lb"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/dahlia-verrick/back.svg",
  28502. extra: 1472 / 1351,
  28503. bottom: 5.28 / 1477
  28504. }
  28505. },
  28506. frontBusiness: {
  28507. height: math.unit(7 + 6.451 / 12, "feet"),
  28508. weight: math.unit(200, "lb"),
  28509. name: "Front (Business)",
  28510. image: {
  28511. source: "./media/characters/dahlia-verrick/front-business.svg",
  28512. extra: 1478 / 1381,
  28513. bottom: 5.5 / 1484
  28514. }
  28515. },
  28516. frontCasual: {
  28517. height: math.unit(7 + 6.451 / 12, "feet"),
  28518. weight: math.unit(200, "lb"),
  28519. name: "Front (Casual)",
  28520. image: {
  28521. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28522. extra: 1478 / 1381,
  28523. bottom: 5.5 / 1484
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Travel-Sized",
  28530. height: math.unit(7.45, "inches")
  28531. },
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(7 + 6.451 / 12, "feet"),
  28535. default: true
  28536. },
  28537. {
  28538. name: "Hitting the Town",
  28539. height: math.unit(37 + 8 / 12, "feet")
  28540. },
  28541. {
  28542. name: "Stomp in the Suburbs",
  28543. height: math.unit(964 + 9.728 / 12, "feet")
  28544. },
  28545. {
  28546. name: "Sit on the City",
  28547. height: math.unit(61747 + 10.592 / 12, "feet")
  28548. },
  28549. {
  28550. name: "Glomp the Globe",
  28551. height: math.unit(252919327 + 4.832 / 12, "feet")
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(6 + 4 / 12, "feet"),
  28560. weight: math.unit(320, "lb"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/balina-mahigan/front.svg",
  28564. extra: 447 / 428,
  28565. bottom: 18 / 466
  28566. }
  28567. },
  28568. back: {
  28569. height: math.unit(6 + 4 / 12, "feet"),
  28570. weight: math.unit(320, "lb"),
  28571. name: "Back",
  28572. image: {
  28573. source: "./media/characters/balina-mahigan/back.svg",
  28574. extra: 445 / 428,
  28575. bottom: 4.07 / 448
  28576. }
  28577. },
  28578. arm: {
  28579. height: math.unit(1.88, "feet"),
  28580. name: "Arm",
  28581. image: {
  28582. source: "./media/characters/balina-mahigan/arm.svg"
  28583. }
  28584. },
  28585. backPort: {
  28586. height: math.unit(0.685, "feet"),
  28587. name: "Back Port",
  28588. image: {
  28589. source: "./media/characters/balina-mahigan/back-port.svg"
  28590. }
  28591. },
  28592. hoofpaw: {
  28593. height: math.unit(1.41, "feet"),
  28594. name: "Hoofpaw",
  28595. image: {
  28596. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28597. }
  28598. },
  28599. leftHandBack: {
  28600. height: math.unit(0.938, "feet"),
  28601. name: "Left Hand (Back)",
  28602. image: {
  28603. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28604. }
  28605. },
  28606. leftHandFront: {
  28607. height: math.unit(0.938, "feet"),
  28608. name: "Left Hand (Front)",
  28609. image: {
  28610. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28611. }
  28612. },
  28613. rightHandBack: {
  28614. height: math.unit(0.95, "feet"),
  28615. name: "Right Hand (Back)",
  28616. image: {
  28617. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28618. }
  28619. },
  28620. rightHandFront: {
  28621. height: math.unit(0.95, "feet"),
  28622. name: "Right Hand (Front)",
  28623. image: {
  28624. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Normal",
  28631. height: math.unit(6 + 4 / 12, "feet"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(6, "feet"),
  28641. weight: math.unit(320, "lb"),
  28642. name: "Front",
  28643. image: {
  28644. source: "./media/characters/balina-mejeri/front.svg",
  28645. extra: 517 / 488,
  28646. bottom: 44.2 / 561
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(6 + 4 / 12, "feet")
  28654. },
  28655. {
  28656. name: "Business",
  28657. height: math.unit(155, "feet"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28664. {
  28665. kneeling: {
  28666. height: math.unit(6 + 4 / 12, "feet"),
  28667. weight: math.unit(300 * 20, "lb"),
  28668. name: "Kneeling",
  28669. image: {
  28670. source: "./media/characters/balbarian/kneeling.svg",
  28671. extra: 922 / 862,
  28672. bottom: 42.4 / 965
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Normal",
  28679. height: math.unit(6 + 4 / 12, "feet")
  28680. },
  28681. {
  28682. name: "Treasured",
  28683. height: math.unit(18 + 9 / 12, "feet"),
  28684. default: true
  28685. },
  28686. {
  28687. name: "Macro",
  28688. height: math.unit(900, "feet")
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(6 + 4 / 12, "feet"),
  28697. weight: math.unit(325, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/balina-amarini/front.svg",
  28701. extra: 415 / 403,
  28702. bottom: 19 / 433.4
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(6 + 4 / 12, "feet"),
  28707. weight: math.unit(325, "lb"),
  28708. name: "Back",
  28709. image: {
  28710. source: "./media/characters/balina-amarini/back.svg",
  28711. extra: 415 / 403,
  28712. bottom: 13.5 / 432
  28713. }
  28714. },
  28715. overdrive: {
  28716. height: math.unit(6 + 4 / 12, "feet"),
  28717. weight: math.unit(400, "lb"),
  28718. name: "Overdrive",
  28719. image: {
  28720. source: "./media/characters/balina-amarini/overdrive.svg",
  28721. extra: 269 / 259,
  28722. bottom: 12 / 282
  28723. }
  28724. },
  28725. },
  28726. [
  28727. {
  28728. name: "Boom",
  28729. height: math.unit(9 + 10 / 12, "feet"),
  28730. default: true
  28731. },
  28732. {
  28733. name: "Macro",
  28734. height: math.unit(280, "feet")
  28735. },
  28736. ]
  28737. ))
  28738. characterMakers.push(() => makeCharacter(
  28739. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28740. {
  28741. goddess: {
  28742. height: math.unit(600, "feet"),
  28743. weight: math.unit(2000000, "tons"),
  28744. name: "Goddess",
  28745. image: {
  28746. source: "./media/characters/lady-kubwa/goddess.svg",
  28747. extra: 1240.5 / 1223,
  28748. bottom: 22 / 1263
  28749. }
  28750. },
  28751. goddesser: {
  28752. height: math.unit(900, "feet"),
  28753. weight: math.unit(20000000, "lb"),
  28754. name: "Goddess-er",
  28755. image: {
  28756. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28757. extra: 899 / 888,
  28758. bottom: 12.6 / 912
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Macro",
  28765. height: math.unit(600, "feet"),
  28766. default: true
  28767. },
  28768. {
  28769. name: "Megamacro",
  28770. height: math.unit(250, "miles")
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(7 + 7 / 12, "feet"),
  28779. weight: math.unit(250, "lb"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/tala-grovehorn/front.svg",
  28783. extra: 2636 / 2525,
  28784. bottom: 147 / 2781
  28785. }
  28786. },
  28787. back: {
  28788. height: math.unit(7 + 7 / 12, "feet"),
  28789. weight: math.unit(250, "lb"),
  28790. name: "Back",
  28791. image: {
  28792. source: "./media/characters/tala-grovehorn/back.svg",
  28793. extra: 2635 / 2539,
  28794. bottom: 100 / 2732.8
  28795. }
  28796. },
  28797. mouth: {
  28798. height: math.unit(1.15, "feet"),
  28799. name: "Mouth",
  28800. image: {
  28801. source: "./media/characters/tala-grovehorn/mouth.svg"
  28802. }
  28803. },
  28804. dick: {
  28805. height: math.unit(2.36, "feet"),
  28806. name: "Dick",
  28807. image: {
  28808. source: "./media/characters/tala-grovehorn/dick.svg"
  28809. }
  28810. },
  28811. slit: {
  28812. height: math.unit(0.61, "feet"),
  28813. name: "Slit",
  28814. image: {
  28815. source: "./media/characters/tala-grovehorn/slit.svg"
  28816. }
  28817. },
  28818. },
  28819. [
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(7 + 7 / 12, "feet"),
  28827. weight: math.unit(225, "lb"),
  28828. name: "Front",
  28829. image: {
  28830. source: "./media/characters/epona/front.svg",
  28831. extra: 2445 / 2290,
  28832. bottom: 251 / 2696
  28833. }
  28834. },
  28835. back: {
  28836. height: math.unit(7 + 7 / 12, "feet"),
  28837. weight: math.unit(225, "lb"),
  28838. name: "Back",
  28839. image: {
  28840. source: "./media/characters/epona/back.svg",
  28841. extra: 2546 / 2408,
  28842. bottom: 44 / 2589
  28843. }
  28844. },
  28845. genitals: {
  28846. height: math.unit(1.5, "feet"),
  28847. name: "Genitals",
  28848. image: {
  28849. source: "./media/characters/epona/genitals.svg"
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(7 + 7 / 12, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(7, "feet"),
  28866. weight: math.unit(518, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/avia-bloodbourn/front.svg",
  28870. extra: 1466 / 1350,
  28871. bottom: 65 / 1527
  28872. }
  28873. },
  28874. },
  28875. [
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28880. {
  28881. front: {
  28882. height: math.unit(9.35, "feet"),
  28883. weight: math.unit(600, "lb"),
  28884. name: "Front",
  28885. image: {
  28886. source: "./media/characters/amera/front.svg",
  28887. extra: 891 / 818,
  28888. bottom: 30 / 922.7
  28889. }
  28890. },
  28891. back: {
  28892. height: math.unit(9.35, "feet"),
  28893. weight: math.unit(600, "lb"),
  28894. name: "Back",
  28895. image: {
  28896. source: "./media/characters/amera/back.svg",
  28897. extra: 876 / 824,
  28898. bottom: 6.8 / 884
  28899. }
  28900. },
  28901. dick: {
  28902. height: math.unit(2.14, "feet"),
  28903. name: "Dick",
  28904. image: {
  28905. source: "./media/characters/amera/dick.svg"
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(9.35, "feet"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28919. {
  28920. kneeling: {
  28921. height: math.unit(3 + 4 / 12, "feet"),
  28922. weight: math.unit(90, "lb"),
  28923. name: "Kneeling",
  28924. image: {
  28925. source: "./media/characters/rosewen/kneeling.svg",
  28926. extra: 1835 / 1571,
  28927. bottom: 27.7 / 1862
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(3 + 4 / 12, "feet"),
  28935. default: true
  28936. },
  28937. ]
  28938. ))
  28939. characterMakers.push(() => makeCharacter(
  28940. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28941. {
  28942. front: {
  28943. height: math.unit(5 + 10 / 12, "feet"),
  28944. weight: math.unit(200, "lb"),
  28945. name: "Front",
  28946. image: {
  28947. source: "./media/characters/sabah/front.svg",
  28948. extra: 849 / 763,
  28949. bottom: 33.9 / 881
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(5 + 10 / 12, "feet"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28963. {
  28964. front: {
  28965. height: math.unit(3 + 5 / 12, "feet"),
  28966. weight: math.unit(40, "kg"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/purple-flame/front.svg",
  28970. extra: 1577 / 1412,
  28971. bottom: 97 / 1694
  28972. }
  28973. },
  28974. frontDressed: {
  28975. height: math.unit(3 + 5 / 12, "feet"),
  28976. weight: math.unit(40, "kg"),
  28977. name: "Front (Dressed)",
  28978. image: {
  28979. source: "./media/characters/purple-flame/front-dressed.svg",
  28980. extra: 1577 / 1412,
  28981. bottom: 97 / 1694
  28982. }
  28983. },
  28984. headphones: {
  28985. height: math.unit(0.85, "feet"),
  28986. name: "Headphones",
  28987. image: {
  28988. source: "./media/characters/purple-flame/headphones.svg"
  28989. }
  28990. },
  28991. },
  28992. [
  28993. {
  28994. name: "Really Small",
  28995. height: math.unit(5, "cm")
  28996. },
  28997. {
  28998. name: "Micro",
  28999. height: math.unit(1 + 5 / 12, "feet")
  29000. },
  29001. {
  29002. name: "Normal",
  29003. height: math.unit(3 + 5 / 12, "feet"),
  29004. default: true
  29005. },
  29006. {
  29007. name: "Minimacro",
  29008. height: math.unit(125, "feet")
  29009. },
  29010. {
  29011. name: "Macro",
  29012. height: math.unit(0.5, "miles")
  29013. },
  29014. {
  29015. name: "Megamacro",
  29016. height: math.unit(50, "miles")
  29017. },
  29018. {
  29019. name: "Gigantic",
  29020. height: math.unit(750, "miles")
  29021. },
  29022. {
  29023. name: "Planetary",
  29024. height: math.unit(15000, "miles")
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(14, "feet"),
  29033. weight: math.unit(959, "lb"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/arsenal/front.svg",
  29037. extra: 2357 / 2157,
  29038. bottom: 93 / 2458
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(14, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6, "feet"),
  29055. weight: math.unit(150, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/adira/front.svg",
  29059. extra: 1078 / 1029,
  29060. bottom: 87 / 1166
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Micro",
  29067. height: math.unit(4, "inches"),
  29068. default: true
  29069. },
  29070. {
  29071. name: "Macro",
  29072. height: math.unit(50, "feet")
  29073. },
  29074. ]
  29075. ))
  29076. characterMakers.push(() => makeCharacter(
  29077. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29078. {
  29079. front: {
  29080. height: math.unit(16, "feet"),
  29081. weight: math.unit(1000, "lb"),
  29082. name: "Front",
  29083. image: {
  29084. source: "./media/characters/grim/front.svg",
  29085. extra: 622 / 614,
  29086. bottom: 18.1 / 642
  29087. }
  29088. },
  29089. back: {
  29090. height: math.unit(16, "feet"),
  29091. weight: math.unit(1000, "lb"),
  29092. name: "Back",
  29093. image: {
  29094. source: "./media/characters/grim/back.svg",
  29095. extra: 610.6 / 602,
  29096. bottom: 40.8 / 652
  29097. }
  29098. },
  29099. hunched: {
  29100. height: math.unit(9.75, "feet"),
  29101. weight: math.unit(1000, "lb"),
  29102. name: "Hunched",
  29103. image: {
  29104. source: "./media/characters/grim/hunched.svg",
  29105. extra: 304 / 297,
  29106. bottom: 35.4 / 394
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(16, "feet"),
  29114. default: true
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29120. {
  29121. front: {
  29122. height: math.unit(2.3, "meters"),
  29123. weight: math.unit(300, "lb"),
  29124. name: "Front",
  29125. image: {
  29126. source: "./media/characters/sinja/front-sfw.svg",
  29127. extra: 1393 / 1294,
  29128. bottom: 70 / 1463
  29129. }
  29130. },
  29131. frontNsfw: {
  29132. height: math.unit(2.3, "meters"),
  29133. weight: math.unit(300, "lb"),
  29134. name: "Front (NSFW)",
  29135. image: {
  29136. source: "./media/characters/sinja/front-nsfw.svg",
  29137. extra: 1393 / 1294,
  29138. bottom: 70 / 1463
  29139. }
  29140. },
  29141. back: {
  29142. height: math.unit(2.3, "meters"),
  29143. weight: math.unit(300, "lb"),
  29144. name: "Back",
  29145. image: {
  29146. source: "./media/characters/sinja/back.svg",
  29147. extra: 1393 / 1294,
  29148. bottom: 70 / 1463
  29149. }
  29150. },
  29151. head: {
  29152. height: math.unit(1.771, "feet"),
  29153. name: "Head",
  29154. image: {
  29155. source: "./media/characters/sinja/head.svg"
  29156. }
  29157. },
  29158. slit: {
  29159. height: math.unit(0.8, "feet"),
  29160. name: "Slit",
  29161. image: {
  29162. source: "./media/characters/sinja/slit.svg"
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(2.3, "meters")
  29170. },
  29171. {
  29172. name: "Macro",
  29173. height: math.unit(91, "meters"),
  29174. default: true
  29175. },
  29176. {
  29177. name: "Megamacro",
  29178. height: math.unit(91440, "meters")
  29179. },
  29180. {
  29181. name: "Gigamacro",
  29182. height: math.unit(60960000, "meters")
  29183. },
  29184. {
  29185. name: "Teramacro",
  29186. height: math.unit(9144000000, "meters")
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(1.7, "meters"),
  29195. weight: math.unit(130, "lb"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/kyu/front.svg",
  29199. extra: 415 / 395,
  29200. bottom: 5 / 420
  29201. }
  29202. },
  29203. head: {
  29204. height: math.unit(1.75, "feet"),
  29205. name: "Head",
  29206. image: {
  29207. source: "./media/characters/kyu/head.svg"
  29208. }
  29209. },
  29210. foot: {
  29211. height: math.unit(0.81, "feet"),
  29212. name: "Foot",
  29213. image: {
  29214. source: "./media/characters/kyu/foot.svg"
  29215. }
  29216. },
  29217. },
  29218. [
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(1.7, "meters")
  29222. },
  29223. {
  29224. name: "Macro",
  29225. height: math.unit(131, "feet"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Megamacro",
  29230. height: math.unit(91440, "meters")
  29231. },
  29232. {
  29233. name: "Gigamacro",
  29234. height: math.unit(60960000, "meters")
  29235. },
  29236. {
  29237. name: "Teramacro",
  29238. height: math.unit(9144000000, "meters")
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29244. {
  29245. front: {
  29246. height: math.unit(7 + 1 / 12, "feet"),
  29247. weight: math.unit(250, "lb"),
  29248. name: "Front",
  29249. image: {
  29250. source: "./media/characters/joey/front.svg",
  29251. extra: 1791 / 1537,
  29252. bottom: 28 / 1816
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Micro",
  29259. height: math.unit(3, "inches")
  29260. },
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(7 + 1 / 12, "feet"),
  29264. default: true
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(165, "cm"),
  29273. weight: math.unit(140, "lb"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/sam-evans/front.svg",
  29277. extra: 3417 / 3230,
  29278. bottom: 41.3 / 3417
  29279. }
  29280. },
  29281. frontSixTails: {
  29282. height: math.unit(165, "cm"),
  29283. weight: math.unit(140, "lb"),
  29284. name: "Front-six-tails",
  29285. image: {
  29286. source: "./media/characters/sam-evans/front-six-tails.svg",
  29287. extra: 3417 / 3230,
  29288. bottom: 41.3 / 3417
  29289. }
  29290. },
  29291. back: {
  29292. height: math.unit(165, "cm"),
  29293. weight: math.unit(140, "lb"),
  29294. name: "Back",
  29295. image: {
  29296. source: "./media/characters/sam-evans/back.svg",
  29297. extra: 3227 / 3032,
  29298. bottom: 6.8 / 3234
  29299. }
  29300. },
  29301. face: {
  29302. height: math.unit(0.68, "feet"),
  29303. name: "Face",
  29304. image: {
  29305. source: "./media/characters/sam-evans/face.svg"
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(165, "cm"),
  29313. default: true
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(100, "meters")
  29318. },
  29319. {
  29320. name: "Macro+",
  29321. height: math.unit(800, "meters")
  29322. },
  29323. {
  29324. name: "Macro++",
  29325. height: math.unit(3, "km")
  29326. },
  29327. {
  29328. name: "Macro+++",
  29329. height: math.unit(30, "km")
  29330. },
  29331. ]
  29332. ))
  29333. characterMakers.push(() => makeCharacter(
  29334. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29335. {
  29336. front: {
  29337. height: math.unit(10, "feet"),
  29338. weight: math.unit(750, "lb"),
  29339. name: "Front",
  29340. image: {
  29341. source: "./media/characters/juliet-a/front.svg",
  29342. extra: 1766 / 1720,
  29343. bottom: 43 / 1809
  29344. }
  29345. },
  29346. back: {
  29347. height: math.unit(10, "feet"),
  29348. weight: math.unit(750, "lb"),
  29349. name: "Back",
  29350. image: {
  29351. source: "./media/characters/juliet-a/back.svg",
  29352. extra: 1781 / 1734,
  29353. bottom: 35 / 1810,
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(10, "feet"),
  29361. default: true
  29362. },
  29363. {
  29364. name: "Dragon Form",
  29365. height: math.unit(250, "feet")
  29366. },
  29367. {
  29368. name: "Macro",
  29369. height: math.unit(1000, "feet")
  29370. },
  29371. {
  29372. name: "Megamacro",
  29373. height: math.unit(10000, "feet")
  29374. }
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29379. {
  29380. regular: {
  29381. height: math.unit(7 + 3 / 12, "feet"),
  29382. weight: math.unit(260, "lb"),
  29383. name: "Regular",
  29384. image: {
  29385. source: "./media/characters/wild/regular.svg",
  29386. extra: 97.45 / 92,
  29387. bottom: 6.8 / 104.3
  29388. }
  29389. },
  29390. biggums: {
  29391. height: math.unit(8 + 6 / 12, "feet"),
  29392. weight: math.unit(425, "lb"),
  29393. name: "Biggums",
  29394. image: {
  29395. source: "./media/characters/wild/biggums.svg",
  29396. extra: 97.45 / 92,
  29397. bottom: 7.5 / 132.34
  29398. }
  29399. },
  29400. mawRegular: {
  29401. height: math.unit(1.24, "feet"),
  29402. name: "Maw (Regular)",
  29403. image: {
  29404. source: "./media/characters/wild/maw.svg"
  29405. }
  29406. },
  29407. mawBiggums: {
  29408. height: math.unit(1.47, "feet"),
  29409. name: "Maw (Biggums)",
  29410. image: {
  29411. source: "./media/characters/wild/maw.svg"
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(7 + 3 / 12, "feet"),
  29419. default: true
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29425. {
  29426. front: {
  29427. height: math.unit(2.5, "meters"),
  29428. weight: math.unit(200, "kg"),
  29429. name: "Front",
  29430. image: {
  29431. source: "./media/characters/vidar/front.svg",
  29432. extra: 2994 / 2795,
  29433. bottom: 56 / 3061
  29434. }
  29435. },
  29436. back: {
  29437. height: math.unit(2.5, "meters"),
  29438. weight: math.unit(200, "kg"),
  29439. name: "Back",
  29440. image: {
  29441. source: "./media/characters/vidar/back.svg",
  29442. extra: 3131 / 2928,
  29443. bottom: 13.5 / 3141.5
  29444. }
  29445. },
  29446. feral: {
  29447. height: math.unit(2.5, "meters"),
  29448. weight: math.unit(2000, "kg"),
  29449. name: "Feral",
  29450. image: {
  29451. source: "./media/characters/vidar/feral.svg",
  29452. extra: 2790 / 1765,
  29453. bottom: 6 / 2796
  29454. }
  29455. },
  29456. },
  29457. [
  29458. {
  29459. name: "Normal",
  29460. height: math.unit(2.5, "meters"),
  29461. default: true
  29462. },
  29463. {
  29464. name: "Macro",
  29465. height: math.unit(100, "meters")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(5 + 9 / 12, "feet"),
  29474. weight: math.unit(120, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/ash/front.svg",
  29478. extra: 2189 / 1961,
  29479. bottom: 5.2 / 2194
  29480. }
  29481. },
  29482. },
  29483. [
  29484. {
  29485. name: "Normal",
  29486. height: math.unit(5 + 9 / 12, "feet"),
  29487. default: true
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(9, "feet"),
  29496. weight: math.unit(10000, "lb"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/gygabite/front.svg",
  29500. bottom: 31.7 / 537.8,
  29501. extra: 505 / 370
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Normal",
  29508. height: math.unit(9, "feet"),
  29509. default: true
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29515. {
  29516. front: {
  29517. height: math.unit(12, "feet"),
  29518. weight: math.unit(4000, "lb"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/p0tat0/front.svg",
  29522. extra: 1065 / 921,
  29523. bottom: 55.7 / 1121.25
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Normal",
  29530. height: math.unit(12, "feet"),
  29531. default: true
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29537. {
  29538. side: {
  29539. height: math.unit(6.5, "feet"),
  29540. weight: math.unit(800, "lb"),
  29541. name: "Side",
  29542. image: {
  29543. source: "./media/characters/dusk/side.svg",
  29544. extra: 615 / 373,
  29545. bottom: 53 / 664
  29546. }
  29547. },
  29548. sitting: {
  29549. height: math.unit(7, "feet"),
  29550. weight: math.unit(800, "lb"),
  29551. name: "Sitting",
  29552. image: {
  29553. source: "./media/characters/dusk/sitting.svg",
  29554. extra: 753 / 425,
  29555. bottom: 33 / 774
  29556. }
  29557. },
  29558. head: {
  29559. height: math.unit(6.1, "feet"),
  29560. name: "Head",
  29561. image: {
  29562. source: "./media/characters/dusk/head.svg"
  29563. }
  29564. },
  29565. },
  29566. [
  29567. {
  29568. name: "Normal",
  29569. height: math.unit(7, "feet"),
  29570. default: true
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29576. {
  29577. front: {
  29578. height: math.unit(15, "feet"),
  29579. weight: math.unit(7000, "lb"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/jay-direwolf/front.svg",
  29583. extra: 1810 / 1732,
  29584. bottom: 66 / 1892
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(15, "feet"),
  29592. default: true
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(4 + 9 / 12, "feet"),
  29601. weight: math.unit(130, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/anchovie/front.svg",
  29605. extra: 382 / 350,
  29606. bottom: 25 / 409
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(4 + 9 / 12, "feet"),
  29611. weight: math.unit(130, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/anchovie/back.svg",
  29615. extra: 385 / 352,
  29616. bottom: 16.6 / 402
  29617. }
  29618. },
  29619. frontDressed: {
  29620. height: math.unit(4 + 9 / 12, "feet"),
  29621. weight: math.unit(130, "lb"),
  29622. name: "Front (Dressed)",
  29623. image: {
  29624. source: "./media/characters/anchovie/front-dressed.svg",
  29625. extra: 382 / 350,
  29626. bottom: 25 / 409
  29627. }
  29628. },
  29629. backDressed: {
  29630. height: math.unit(4 + 9 / 12, "feet"),
  29631. weight: math.unit(130, "lb"),
  29632. name: "Back (Dressed)",
  29633. image: {
  29634. source: "./media/characters/anchovie/back-dressed.svg",
  29635. extra: 385 / 352,
  29636. bottom: 16.6 / 402
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Micro",
  29643. height: math.unit(6.4, "inches")
  29644. },
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(4 + 9 / 12, "feet"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(2, "meters"),
  29657. weight: math.unit(180, "lb"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/acidrenamon/front.svg",
  29661. extra: 987 / 890,
  29662. bottom: 22.8 / 1009
  29663. }
  29664. },
  29665. back: {
  29666. height: math.unit(2, "meters"),
  29667. weight: math.unit(180, "lb"),
  29668. name: "Back",
  29669. image: {
  29670. source: "./media/characters/acidrenamon/back.svg",
  29671. extra: 983 / 891,
  29672. bottom: 8.4 / 992
  29673. }
  29674. },
  29675. head: {
  29676. height: math.unit(1.92, "feet"),
  29677. name: "Head",
  29678. image: {
  29679. source: "./media/characters/acidrenamon/head.svg"
  29680. }
  29681. },
  29682. rump: {
  29683. height: math.unit(1.72, "feet"),
  29684. name: "Rump",
  29685. image: {
  29686. source: "./media/characters/acidrenamon/rump.svg"
  29687. }
  29688. },
  29689. tail: {
  29690. height: math.unit(4.2, "feet"),
  29691. name: "Tail",
  29692. image: {
  29693. source: "./media/characters/acidrenamon/tail.svg"
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Normal",
  29700. height: math.unit(2, "meters"),
  29701. default: true
  29702. },
  29703. {
  29704. name: "Minimacro",
  29705. height: math.unit(7, "meters")
  29706. },
  29707. {
  29708. name: "Macro",
  29709. height: math.unit(200, "meters")
  29710. },
  29711. {
  29712. name: "Gigamacro",
  29713. height: math.unit(0.2, "earths")
  29714. },
  29715. ]
  29716. ))
  29717. characterMakers.push(() => makeCharacter(
  29718. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29719. {
  29720. front: {
  29721. height: math.unit(152, "feet"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/kenzie-lee/front.svg",
  29725. extra: 1869/1774,
  29726. bottom: 128/1997
  29727. }
  29728. },
  29729. side: {
  29730. height: math.unit(86, "feet"),
  29731. name: "Side",
  29732. image: {
  29733. source: "./media/characters/kenzie-lee/side.svg",
  29734. extra: 930/815,
  29735. bottom: 177/1107
  29736. }
  29737. },
  29738. paw: {
  29739. height: math.unit(15, "feet"),
  29740. name: "Paw",
  29741. image: {
  29742. source: "./media/characters/kenzie-lee/paw.svg"
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Kenzie Flea",
  29749. height: math.unit(2, "mm"),
  29750. default: true
  29751. },
  29752. {
  29753. name: "Micro",
  29754. height: math.unit(2, "inches")
  29755. },
  29756. {
  29757. name: "Normal",
  29758. height: math.unit(152, "feet")
  29759. },
  29760. {
  29761. name: "Megamacro",
  29762. height: math.unit(7, "miles")
  29763. },
  29764. {
  29765. name: "Gigamacro",
  29766. height: math.unit(8000, "miles")
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29772. {
  29773. front: {
  29774. height: math.unit(6, "feet"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/withers/front.svg",
  29778. extra: 1935/1760,
  29779. bottom: 72/2007
  29780. }
  29781. },
  29782. back: {
  29783. height: math.unit(6, "feet"),
  29784. name: "Back",
  29785. image: {
  29786. source: "./media/characters/withers/back.svg",
  29787. extra: 1944/1792,
  29788. bottom: 12/1956
  29789. }
  29790. },
  29791. dressed: {
  29792. height: math.unit(6, "feet"),
  29793. name: "Dressed",
  29794. image: {
  29795. source: "./media/characters/withers/dressed.svg",
  29796. extra: 1937/1765,
  29797. bottom: 73/2010
  29798. }
  29799. },
  29800. phase1: {
  29801. height: math.unit(1.1, "feet"),
  29802. name: "Phase 1",
  29803. image: {
  29804. source: "./media/characters/withers/phase-1.svg",
  29805. extra: 1885/1232,
  29806. bottom: 0/1885
  29807. }
  29808. },
  29809. phase2: {
  29810. height: math.unit(1.05, "feet"),
  29811. name: "Phase 2",
  29812. image: {
  29813. source: "./media/characters/withers/phase-2.svg",
  29814. extra: 1792/1090,
  29815. bottom: 0/1792
  29816. }
  29817. },
  29818. partyWipe: {
  29819. height: math.unit(1.1, "feet"),
  29820. name: "Party Wipe",
  29821. image: {
  29822. source: "./media/characters/withers/party-wipe.svg",
  29823. extra: 1864/1207,
  29824. bottom: 0/1864
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Macro",
  29831. height: math.unit(167, "feet"),
  29832. default: true
  29833. },
  29834. {
  29835. name: "Megamacro",
  29836. height: math.unit(15, "miles")
  29837. }
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(6 + 7 / 12, "feet"),
  29845. weight: math.unit(250, "lb"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/nemoskii/front.svg",
  29849. extra: 2270 / 1734,
  29850. bottom: 86 / 2354
  29851. }
  29852. },
  29853. back: {
  29854. height: math.unit(6 + 7 / 12, "feet"),
  29855. weight: math.unit(250, "lb"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/nemoskii/back.svg",
  29859. extra: 1845 / 1788,
  29860. bottom: 10.5 / 1852
  29861. }
  29862. },
  29863. head: {
  29864. height: math.unit(1.31, "feet"),
  29865. name: "Head",
  29866. image: {
  29867. source: "./media/characters/nemoskii/head.svg"
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Micro",
  29874. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29875. },
  29876. {
  29877. name: "Normal",
  29878. height: math.unit(6 + 7 / 12, "feet"),
  29879. default: true
  29880. },
  29881. {
  29882. name: "Macro",
  29883. height: math.unit((6 + 7 / 12) * 150, "feet")
  29884. },
  29885. {
  29886. name: "Macro+",
  29887. height: math.unit((6 + 7 / 12) * 500, "feet")
  29888. },
  29889. {
  29890. name: "Megamacro",
  29891. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29897. {
  29898. front: {
  29899. height: math.unit(1, "mile"),
  29900. weight: math.unit(265261.9, "lb"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/shui/front.svg",
  29904. extra: 1633 / 1564,
  29905. bottom: 91.5 / 1726
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Macro",
  29912. height: math.unit(1, "mile"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(12 + 6 / 12, "feet"),
  29922. weight: math.unit(1342, "lb"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/arokh-takakura/front.svg",
  29926. extra: 1089 / 1043,
  29927. bottom: 77.4 / 1176.7
  29928. }
  29929. },
  29930. back: {
  29931. height: math.unit(12 + 6 / 12, "feet"),
  29932. weight: math.unit(1342, "lb"),
  29933. name: "Back",
  29934. image: {
  29935. source: "./media/characters/arokh-takakura/back.svg",
  29936. extra: 1046 / 1019,
  29937. bottom: 102 / 1150
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Big",
  29944. height: math.unit(12 + 6 / 12, "feet"),
  29945. default: true
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29951. {
  29952. front: {
  29953. height: math.unit(5 + 6 / 12, "feet"),
  29954. weight: math.unit(150, "lb"),
  29955. name: "Front",
  29956. image: {
  29957. source: "./media/characters/theo/front.svg",
  29958. extra: 1184 / 1131,
  29959. bottom: 7.4 / 1191
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Micro",
  29966. height: math.unit(5, "inches")
  29967. },
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(5 + 6 / 12, "feet"),
  29971. default: true
  29972. },
  29973. ]
  29974. ))
  29975. characterMakers.push(() => makeCharacter(
  29976. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29977. {
  29978. front: {
  29979. height: math.unit(5 + 9 / 12, "feet"),
  29980. weight: math.unit(130, "lb"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/cecelia-swift/front.svg",
  29984. extra: 502 / 484,
  29985. bottom: 23 / 523
  29986. }
  29987. },
  29988. back: {
  29989. height: math.unit(5 + 9 / 12, "feet"),
  29990. weight: math.unit(130, "lb"),
  29991. name: "Back",
  29992. image: {
  29993. source: "./media/characters/cecelia-swift/back.svg",
  29994. extra: 499 / 485,
  29995. bottom: 12 / 511
  29996. }
  29997. },
  29998. head: {
  29999. height: math.unit(0.90, "feet"),
  30000. name: "Head",
  30001. image: {
  30002. source: "./media/characters/cecelia-swift/head.svg"
  30003. }
  30004. },
  30005. rump: {
  30006. height: math.unit(1.75, "feet"),
  30007. name: "Rump",
  30008. image: {
  30009. source: "./media/characters/cecelia-swift/rump.svg"
  30010. }
  30011. },
  30012. },
  30013. [
  30014. {
  30015. name: "Normal",
  30016. height: math.unit(5 + 9 / 12, "feet"),
  30017. default: true
  30018. },
  30019. {
  30020. name: "Big",
  30021. height: math.unit(50, "feet")
  30022. },
  30023. {
  30024. name: "Macro",
  30025. height: math.unit(100, "feet")
  30026. },
  30027. {
  30028. name: "Macro+",
  30029. height: math.unit(500, "feet")
  30030. },
  30031. {
  30032. name: "Macro++",
  30033. height: math.unit(1000, "feet")
  30034. },
  30035. ]
  30036. ))
  30037. characterMakers.push(() => makeCharacter(
  30038. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30039. {
  30040. front: {
  30041. height: math.unit(6, "feet"),
  30042. weight: math.unit(150, "lb"),
  30043. name: "Front",
  30044. image: {
  30045. source: "./media/characters/kaunan/front.svg",
  30046. extra: 2890 / 2523,
  30047. bottom: 49 / 2939
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Macro",
  30054. height: math.unit(150, "feet"),
  30055. default: true
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30061. {
  30062. dressed: {
  30063. height: math.unit(175, "cm"),
  30064. weight: math.unit(60, "kg"),
  30065. name: "Dressed",
  30066. image: {
  30067. source: "./media/characters/fei/dressed.svg",
  30068. extra: 1402/1278,
  30069. bottom: 27/1429
  30070. }
  30071. },
  30072. nude: {
  30073. height: math.unit(175, "cm"),
  30074. weight: math.unit(60, "kg"),
  30075. name: "Nude",
  30076. image: {
  30077. source: "./media/characters/fei/nude.svg",
  30078. extra: 1402/1278,
  30079. bottom: 27/1429
  30080. }
  30081. },
  30082. heels: {
  30083. height: math.unit(0.466, "feet"),
  30084. name: "Heels",
  30085. image: {
  30086. source: "./media/characters/fei/heels.svg",
  30087. extra: 156/152,
  30088. bottom: 28/184
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Mortal",
  30095. height: math.unit(175, "cm")
  30096. },
  30097. {
  30098. name: "Normal",
  30099. height: math.unit(3500, "m")
  30100. },
  30101. {
  30102. name: "Stroll",
  30103. height: math.unit(18.4, "km"),
  30104. default: true
  30105. },
  30106. {
  30107. name: "Showoff",
  30108. height: math.unit(175, "km")
  30109. },
  30110. ]
  30111. ))
  30112. characterMakers.push(() => makeCharacter(
  30113. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30114. {
  30115. front: {
  30116. height: math.unit(7, "feet"),
  30117. weight: math.unit(1000, "kg"),
  30118. name: "Front",
  30119. image: {
  30120. source: "./media/characters/edrax/front.svg",
  30121. extra: 2838 / 2550,
  30122. bottom: 130 / 2968
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Small",
  30129. height: math.unit(7, "feet")
  30130. },
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(1500, "meters")
  30134. },
  30135. {
  30136. name: "Mega",
  30137. height: math.unit(12000000, "km"),
  30138. default: true
  30139. },
  30140. {
  30141. name: "Megamacro",
  30142. height: math.unit(10600000, "lightyears")
  30143. },
  30144. {
  30145. name: "Hypermacro",
  30146. height: math.unit(256, "yottameters")
  30147. },
  30148. ]
  30149. ))
  30150. characterMakers.push(() => makeCharacter(
  30151. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30152. {
  30153. front: {
  30154. height: math.unit(10, "feet"),
  30155. weight: math.unit(750, "lb"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/clove/front.svg",
  30159. extra: 1918/1751,
  30160. bottom: 52/1970
  30161. }
  30162. },
  30163. back: {
  30164. height: math.unit(10, "feet"),
  30165. weight: math.unit(750, "lb"),
  30166. name: "Back",
  30167. image: {
  30168. source: "./media/characters/clove/back.svg",
  30169. extra: 1912/1747,
  30170. bottom: 50/1962
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Normal",
  30177. height: math.unit(10, "feet"),
  30178. default: true
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(4, "feet"),
  30187. weight: math.unit(50, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/alex-rabbit/front.svg",
  30191. extra: 507 / 458,
  30192. bottom: 18.5 / 527
  30193. }
  30194. },
  30195. back: {
  30196. height: math.unit(4, "feet"),
  30197. weight: math.unit(50, "lb"),
  30198. name: "Back",
  30199. image: {
  30200. source: "./media/characters/alex-rabbit/back.svg",
  30201. extra: 502 / 460,
  30202. bottom: 18.9 / 521
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(4, "feet"),
  30210. default: true
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30216. {
  30217. front: {
  30218. height: math.unit(1 + 3 / 12, "feet"),
  30219. weight: math.unit(80, "lb"),
  30220. name: "Front",
  30221. image: {
  30222. source: "./media/characters/zander-rose/front.svg",
  30223. extra: 916 / 797,
  30224. bottom: 17 / 933
  30225. }
  30226. },
  30227. back: {
  30228. height: math.unit(1 + 3 / 12, "feet"),
  30229. weight: math.unit(80, "lb"),
  30230. name: "Back",
  30231. image: {
  30232. source: "./media/characters/zander-rose/back.svg",
  30233. extra: 903 / 779,
  30234. bottom: 31 / 934
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(1 + 3 / 12, "feet"),
  30242. default: true
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30248. {
  30249. anthro: {
  30250. height: math.unit(6, "feet"),
  30251. weight: math.unit(150, "lb"),
  30252. name: "Anthro",
  30253. image: {
  30254. source: "./media/characters/razz/anthro.svg",
  30255. extra: 1437 / 1343,
  30256. bottom: 48 / 1485
  30257. }
  30258. },
  30259. feral: {
  30260. height: math.unit(6, "feet"),
  30261. weight: math.unit(150, "lb"),
  30262. name: "Feral",
  30263. image: {
  30264. source: "./media/characters/razz/feral.svg",
  30265. extra: 2569 / 1385,
  30266. bottom: 95 / 2664
  30267. }
  30268. },
  30269. },
  30270. [
  30271. {
  30272. name: "Normal",
  30273. height: math.unit(6, "feet"),
  30274. default: true
  30275. },
  30276. ]
  30277. ))
  30278. characterMakers.push(() => makeCharacter(
  30279. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30280. {
  30281. front: {
  30282. height: math.unit(9 + 4 / 12, "feet"),
  30283. weight: math.unit(500, "lb"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/morrigan/front.svg",
  30287. extra: 2707 / 2579,
  30288. bottom: 156 / 2863
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(9 + 4 / 12, "feet"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(5, "stories"),
  30305. weight: math.unit(4000, "lb"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/jenene/front.svg",
  30309. extra: 1780 / 1710,
  30310. bottom: 57 / 1837
  30311. }
  30312. },
  30313. },
  30314. [
  30315. {
  30316. name: "Normal",
  30317. height: math.unit(5, "stories"),
  30318. default: true
  30319. },
  30320. ]
  30321. ))
  30322. characterMakers.push(() => makeCharacter(
  30323. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30324. {
  30325. taurSfw: {
  30326. height: math.unit(10, "meters"),
  30327. weight: math.unit(17500, "kg"),
  30328. name: "Taur",
  30329. image: {
  30330. source: "./media/characters/faey/taur-sfw.svg",
  30331. extra: 1200 / 968,
  30332. bottom: 41 / 1241
  30333. }
  30334. },
  30335. chestmaw: {
  30336. height: math.unit(2.01, "meters"),
  30337. name: "Chestmaw",
  30338. image: {
  30339. source: "./media/characters/faey/chestmaw.svg"
  30340. }
  30341. },
  30342. foot: {
  30343. height: math.unit(2.43, "meters"),
  30344. name: "Foot",
  30345. image: {
  30346. source: "./media/characters/faey/foot.svg"
  30347. }
  30348. },
  30349. jaws: {
  30350. height: math.unit(1.66, "meters"),
  30351. name: "Jaws",
  30352. image: {
  30353. source: "./media/characters/faey/jaws.svg"
  30354. }
  30355. },
  30356. tongues: {
  30357. height: math.unit(2.01, "meters"),
  30358. name: "Tongues",
  30359. image: {
  30360. source: "./media/characters/faey/tongues.svg"
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Small",
  30367. height: math.unit(10, "meters"),
  30368. default: true
  30369. },
  30370. {
  30371. name: "Big",
  30372. height: math.unit(500000, "km")
  30373. },
  30374. ]
  30375. ))
  30376. characterMakers.push(() => makeCharacter(
  30377. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30378. {
  30379. front: {
  30380. height: math.unit(7, "feet"),
  30381. weight: math.unit(275, "lb"),
  30382. name: "Front",
  30383. image: {
  30384. source: "./media/characters/roku/front.svg",
  30385. extra: 903 / 878,
  30386. bottom: 37 / 940
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Normal",
  30393. height: math.unit(7, "feet"),
  30394. default: true
  30395. },
  30396. {
  30397. name: "Macro",
  30398. height: math.unit(500, "feet")
  30399. },
  30400. {
  30401. name: "Megamacro",
  30402. height: math.unit(200, "miles")
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30408. {
  30409. front: {
  30410. height: math.unit(6 + 2 / 12, "feet"),
  30411. weight: math.unit(150, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/lira/front.svg",
  30415. extra: 1727 / 1605,
  30416. bottom: 26 / 1753
  30417. }
  30418. },
  30419. back: {
  30420. height: math.unit(6 + 2 / 12, "feet"),
  30421. weight: math.unit(150, "lb"),
  30422. name: "Back",
  30423. image: {
  30424. source: "./media/characters/lira/back.svg",
  30425. extra: 1713/1621,
  30426. bottom: 20/1733
  30427. }
  30428. },
  30429. hand: {
  30430. height: math.unit(0.75, "feet"),
  30431. name: "Hand",
  30432. image: {
  30433. source: "./media/characters/lira/hand.svg"
  30434. }
  30435. },
  30436. maw: {
  30437. height: math.unit(0.65, "feet"),
  30438. name: "Maw",
  30439. image: {
  30440. source: "./media/characters/lira/maw.svg"
  30441. }
  30442. },
  30443. pawDigi: {
  30444. height: math.unit(1.6, "feet"),
  30445. name: "Paw Digi",
  30446. image: {
  30447. source: "./media/characters/lira/paw-digi.svg"
  30448. }
  30449. },
  30450. pawPlanti: {
  30451. height: math.unit(1.4, "feet"),
  30452. name: "Paw Planti",
  30453. image: {
  30454. source: "./media/characters/lira/paw-planti.svg"
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(6 + 2 / 12, "feet"),
  30462. default: true
  30463. },
  30464. {
  30465. name: "Macro",
  30466. height: math.unit(100, "feet")
  30467. },
  30468. {
  30469. name: "Macro²",
  30470. height: math.unit(1600, "feet")
  30471. },
  30472. {
  30473. name: "Planetary",
  30474. height: math.unit(20, "earths")
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(6, "feet"),
  30483. weight: math.unit(150, "lb"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/hadjet/front.svg",
  30487. extra: 1480 / 1346,
  30488. bottom: 26 / 1506
  30489. }
  30490. },
  30491. frontNsfw: {
  30492. height: math.unit(6, "feet"),
  30493. weight: math.unit(150, "lb"),
  30494. name: "Front (NSFW)",
  30495. image: {
  30496. source: "./media/characters/hadjet/front-nsfw.svg",
  30497. extra: 1440 / 1358,
  30498. bottom: 52 / 1492
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Macro",
  30505. height: math.unit(10, "stories"),
  30506. default: true
  30507. },
  30508. {
  30509. name: "Megamacro",
  30510. height: math.unit(1.5, "miles")
  30511. },
  30512. {
  30513. name: "Megamacro+",
  30514. height: math.unit(5, "miles")
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30520. {
  30521. side: {
  30522. height: math.unit(106, "feet"),
  30523. weight: math.unit(500, "tonnes"),
  30524. name: "Side",
  30525. image: {
  30526. source: "./media/characters/kodran/side.svg",
  30527. extra: 553 / 480,
  30528. bottom: 33 / 586
  30529. }
  30530. },
  30531. front: {
  30532. height: math.unit(132, "feet"),
  30533. weight: math.unit(500, "tonnes"),
  30534. name: "Front",
  30535. image: {
  30536. source: "./media/characters/kodran/front.svg",
  30537. extra: 667 / 643,
  30538. bottom: 42 / 709
  30539. }
  30540. },
  30541. flying: {
  30542. height: math.unit(350, "feet"),
  30543. weight: math.unit(500, "tonnes"),
  30544. name: "Flying",
  30545. image: {
  30546. source: "./media/characters/kodran/flying.svg"
  30547. }
  30548. },
  30549. foot: {
  30550. height: math.unit(33, "feet"),
  30551. name: "Foot",
  30552. image: {
  30553. source: "./media/characters/kodran/foot.svg"
  30554. }
  30555. },
  30556. footFront: {
  30557. height: math.unit(19, "feet"),
  30558. name: "Foot (Front)",
  30559. image: {
  30560. source: "./media/characters/kodran/foot-front.svg",
  30561. extra: 261 / 261,
  30562. bottom: 91 / 352
  30563. }
  30564. },
  30565. headFront: {
  30566. height: math.unit(53, "feet"),
  30567. name: "Head (Front)",
  30568. image: {
  30569. source: "./media/characters/kodran/head-front.svg"
  30570. }
  30571. },
  30572. headSide: {
  30573. height: math.unit(65, "feet"),
  30574. name: "Head (Side)",
  30575. image: {
  30576. source: "./media/characters/kodran/head-side.svg"
  30577. }
  30578. },
  30579. throat: {
  30580. height: math.unit(79, "feet"),
  30581. name: "Throat",
  30582. image: {
  30583. source: "./media/characters/kodran/throat.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Large",
  30590. height: math.unit(106, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30597. {
  30598. side: {
  30599. height: math.unit(11, "feet"),
  30600. weight: math.unit(150, "lb"),
  30601. name: "Side",
  30602. image: {
  30603. source: "./media/characters/pyxaron/side.svg",
  30604. extra: 305 / 195,
  30605. bottom: 17 / 322
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Normal",
  30612. height: math.unit(11, "feet"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(6, "feet"),
  30622. weight: math.unit(150, "lb"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/meep/front.svg",
  30626. extra: 88 / 80,
  30627. bottom: 6 / 94
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Fun Sized",
  30634. height: math.unit(2, "inches"),
  30635. default: true
  30636. },
  30637. {
  30638. name: "Friend Sized",
  30639. height: math.unit(8, "inches")
  30640. },
  30641. ]
  30642. ))
  30643. characterMakers.push(() => makeCharacter(
  30644. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30645. {
  30646. front: {
  30647. height: math.unit(15, "feet"),
  30648. weight: math.unit(2500, "lb"),
  30649. name: "Front",
  30650. image: {
  30651. source: "./media/characters/holly-rabbit/front.svg",
  30652. extra: 1433 / 1233,
  30653. bottom: 125 / 1558
  30654. }
  30655. },
  30656. dick: {
  30657. height: math.unit(4.6, "feet"),
  30658. name: "Dick",
  30659. image: {
  30660. source: "./media/characters/holly-rabbit/dick.svg"
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Normal",
  30667. height: math.unit(15, "feet"),
  30668. default: true
  30669. },
  30670. {
  30671. name: "Macro",
  30672. height: math.unit(250, "feet")
  30673. },
  30674. {
  30675. name: "Macro+",
  30676. height: math.unit(2500, "feet")
  30677. },
  30678. ]
  30679. ))
  30680. characterMakers.push(() => makeCharacter(
  30681. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30682. {
  30683. front: {
  30684. height: math.unit(3.02, "meters"),
  30685. weight: math.unit(500, "kg"),
  30686. name: "Front",
  30687. image: {
  30688. source: "./media/characters/drena/front.svg",
  30689. extra: 282 / 243,
  30690. bottom: 8 / 290
  30691. }
  30692. },
  30693. side: {
  30694. height: math.unit(3.02, "meters"),
  30695. weight: math.unit(500, "kg"),
  30696. name: "Side",
  30697. image: {
  30698. source: "./media/characters/drena/side.svg",
  30699. extra: 280 / 245,
  30700. bottom: 10 / 290
  30701. }
  30702. },
  30703. back: {
  30704. height: math.unit(3.02, "meters"),
  30705. weight: math.unit(500, "kg"),
  30706. name: "Back",
  30707. image: {
  30708. source: "./media/characters/drena/back.svg",
  30709. extra: 278 / 243,
  30710. bottom: 2 / 280
  30711. }
  30712. },
  30713. foot: {
  30714. height: math.unit(0.75, "meters"),
  30715. name: "Foot",
  30716. image: {
  30717. source: "./media/characters/drena/foot.svg"
  30718. }
  30719. },
  30720. maw: {
  30721. height: math.unit(0.82, "meters"),
  30722. name: "Maw",
  30723. image: {
  30724. source: "./media/characters/drena/maw.svg"
  30725. }
  30726. },
  30727. eating: {
  30728. height: math.unit(0.75, "meters"),
  30729. name: "Eating",
  30730. image: {
  30731. source: "./media/characters/drena/eating.svg"
  30732. }
  30733. },
  30734. rump: {
  30735. height: math.unit(0.93, "meters"),
  30736. name: "Rump",
  30737. image: {
  30738. source: "./media/characters/drena/rump.svg"
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(3.02, "meters"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(6 + 4 / 12, "feet"),
  30755. weight: math.unit(250, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/remmyzilla/front.svg",
  30759. extra: 4033 / 3588,
  30760. bottom: 123 / 4156
  30761. }
  30762. },
  30763. back: {
  30764. height: math.unit(6 + 4 / 12, "feet"),
  30765. weight: math.unit(250, "lb"),
  30766. name: "Back",
  30767. image: {
  30768. source: "./media/characters/remmyzilla/back.svg",
  30769. extra: 2687 / 2555,
  30770. bottom: 48 / 2735
  30771. }
  30772. },
  30773. paw: {
  30774. height: math.unit(1.73, "feet"),
  30775. name: "Paw",
  30776. image: {
  30777. source: "./media/characters/remmyzilla/paw.svg"
  30778. },
  30779. extraAttributes: {
  30780. "toeSize": {
  30781. name: "Toe Size",
  30782. power: 2,
  30783. type: "area",
  30784. base: math.unit(0.0035, "m^2")
  30785. },
  30786. "padSize": {
  30787. name: "Pad Size",
  30788. power: 2,
  30789. type: "area",
  30790. base: math.unit(0.015, "m^2")
  30791. },
  30792. "pawsize": {
  30793. name: "Paw Size",
  30794. power: 2,
  30795. type: "area",
  30796. base: math.unit(0.072, "m^2")
  30797. },
  30798. }
  30799. },
  30800. maw: {
  30801. height: math.unit(1.73, "feet"),
  30802. name: "Maw",
  30803. image: {
  30804. source: "./media/characters/remmyzilla/maw.svg"
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Normal",
  30811. height: math.unit(6 + 4 / 12, "feet")
  30812. },
  30813. {
  30814. name: "Minimacro",
  30815. height: math.unit(12 + 8 / 12, "feet")
  30816. },
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(640, "feet"),
  30820. default: true
  30821. },
  30822. {
  30823. name: "Megamacro",
  30824. height: math.unit(6400, "feet")
  30825. },
  30826. {
  30827. name: "Gigamacro",
  30828. height: math.unit(64000, "miles")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(2.5, "meters"),
  30837. weight: math.unit(300, "lb"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/lawrence/front.svg",
  30841. extra: 357 / 335,
  30842. bottom: 30 / 387
  30843. }
  30844. },
  30845. back: {
  30846. height: math.unit(2.5, "meters"),
  30847. weight: math.unit(300, "lb"),
  30848. name: "Back",
  30849. image: {
  30850. source: "./media/characters/lawrence/back.svg",
  30851. extra: 357 / 338,
  30852. bottom: 16 / 373
  30853. }
  30854. },
  30855. head: {
  30856. height: math.unit(0.9, "meter"),
  30857. name: "Head",
  30858. image: {
  30859. source: "./media/characters/lawrence/head.svg"
  30860. }
  30861. },
  30862. maw: {
  30863. height: math.unit(0.7, "meter"),
  30864. name: "Maw",
  30865. image: {
  30866. source: "./media/characters/lawrence/maw.svg"
  30867. }
  30868. },
  30869. footBottom: {
  30870. height: math.unit(0.5, "meter"),
  30871. name: "Foot (Bottom)",
  30872. image: {
  30873. source: "./media/characters/lawrence/foot-bottom.svg"
  30874. }
  30875. },
  30876. footTop: {
  30877. height: math.unit(0.5, "meter"),
  30878. name: "Foot (Top)",
  30879. image: {
  30880. source: "./media/characters/lawrence/foot-top.svg"
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(2.5, "meters"),
  30888. default: true
  30889. },
  30890. {
  30891. name: "Macro",
  30892. height: math.unit(95, "meters")
  30893. },
  30894. {
  30895. name: "Megamacro",
  30896. height: math.unit(150, "km")
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30902. {
  30903. front: {
  30904. height: math.unit(4.2, "meters"),
  30905. preyCapacity: math.unit(50, "m^3"),
  30906. weight: math.unit(30, "tonnes"),
  30907. name: "Front",
  30908. image: {
  30909. source: "./media/characters/sydney/front.svg",
  30910. extra: 1177/1129,
  30911. bottom: 197/1374
  30912. },
  30913. extraAttributes: {
  30914. "length": {
  30915. name: "Length",
  30916. power: 1,
  30917. type: "length",
  30918. base: math.unit(21, "meters")
  30919. },
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Normal",
  30926. height: math.unit(4.2, "meters"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30933. {
  30934. back: {
  30935. height: math.unit(201, "feet"),
  30936. name: "Back",
  30937. image: {
  30938. source: "./media/characters/jessica/back.svg",
  30939. extra: 273 / 259,
  30940. bottom: 7 / 280
  30941. }
  30942. },
  30943. },
  30944. [
  30945. {
  30946. name: "Normal",
  30947. height: math.unit(201, "feet"),
  30948. default: true
  30949. },
  30950. {
  30951. name: "Megamacro",
  30952. height: math.unit(8, "miles")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30958. {
  30959. side: {
  30960. height: math.unit(5.6, "m"),
  30961. weight: math.unit(8000, "kg"),
  30962. name: "Side",
  30963. image: {
  30964. source: "./media/characters/victoria/side.svg",
  30965. extra: 1542/1229,
  30966. bottom: 124/1666
  30967. }
  30968. },
  30969. maw: {
  30970. height: math.unit(7.14, "feet"),
  30971. name: "Maw",
  30972. image: {
  30973. source: "./media/characters/victoria/maw.svg"
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(5.6, "m"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30987. {
  30988. front: {
  30989. height: math.unit(5 + 6 / 12, "feet"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/cat/front.svg",
  30993. extra: 1449/1295,
  30994. bottom: 34/1483
  30995. },
  30996. form: "cat",
  30997. default: true
  30998. },
  30999. back: {
  31000. height: math.unit(5 + 6 / 12, "feet"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/cat/back.svg",
  31004. extra: 1466/1301,
  31005. bottom: 19/1485
  31006. },
  31007. form: "cat"
  31008. },
  31009. taur: {
  31010. height: math.unit(7, "feet"),
  31011. name: "Taur",
  31012. image: {
  31013. source: "./media/characters/cat/taur.svg",
  31014. extra: 1389/1233,
  31015. bottom: 83/1472
  31016. },
  31017. form: "taur",
  31018. default: true
  31019. },
  31020. lucarioFront: {
  31021. height: math.unit(4, "feet"),
  31022. name: "Lucario (Front)",
  31023. image: {
  31024. source: "./media/characters/cat/lucario-front.svg",
  31025. extra: 1149/1019,
  31026. bottom: 84/1233
  31027. },
  31028. form: "lucario",
  31029. default: true
  31030. },
  31031. lucarioBack: {
  31032. height: math.unit(4, "feet"),
  31033. name: "Lucario (Back)",
  31034. image: {
  31035. source: "./media/characters/cat/lucario-back.svg",
  31036. extra: 1190/1059,
  31037. bottom: 33/1223
  31038. },
  31039. form: "lucario"
  31040. },
  31041. megaLucario: {
  31042. height: math.unit(4, "feet"),
  31043. name: "Mega Lucario",
  31044. image: {
  31045. source: "./media/characters/cat/mega-lucario.svg",
  31046. extra: 1515 / 1319,
  31047. bottom: 63 / 1578
  31048. },
  31049. form: "lucario"
  31050. },
  31051. nickit: {
  31052. height: math.unit(2, "feet"),
  31053. name: "Nickit",
  31054. image: {
  31055. source: "./media/characters/cat/nickit.svg",
  31056. extra: 1980 / 1585,
  31057. bottom: 102 / 2082
  31058. },
  31059. form: "nickit",
  31060. default: true
  31061. },
  31062. lopunnyFront: {
  31063. height: math.unit(5, "feet"),
  31064. name: "Lopunny (Front)",
  31065. image: {
  31066. source: "./media/characters/cat/lopunny-front.svg",
  31067. extra: 1782 / 1469,
  31068. bottom: 38 / 1820
  31069. },
  31070. form: "lopunny",
  31071. default: true
  31072. },
  31073. lopunnyBack: {
  31074. height: math.unit(5, "feet"),
  31075. name: "Lopunny (Back)",
  31076. image: {
  31077. source: "./media/characters/cat/lopunny-back.svg",
  31078. extra: 1660 / 1490,
  31079. bottom: 25 / 1685
  31080. },
  31081. form: "lopunny"
  31082. },
  31083. },
  31084. [
  31085. {
  31086. name: "Really small",
  31087. height: math.unit(1, "nm")
  31088. },
  31089. {
  31090. name: "Micro",
  31091. height: math.unit(5, "inches")
  31092. },
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(5 + 6 / 12, "feet"),
  31096. default: true
  31097. },
  31098. {
  31099. name: "Macro",
  31100. height: math.unit(50, "feet")
  31101. },
  31102. {
  31103. name: "Macro+",
  31104. height: math.unit(150, "feet")
  31105. },
  31106. {
  31107. name: "Megamacro",
  31108. height: math.unit(100, "miles")
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(63.4, "meters"),
  31117. weight: math.unit(3.28349e+6, "kilograms"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/kirina-violet/front.svg",
  31121. extra: 2812 / 2725,
  31122. bottom: 0 / 2812
  31123. }
  31124. },
  31125. back: {
  31126. height: math.unit(63.4, "meters"),
  31127. weight: math.unit(3.28349e+6, "kilograms"),
  31128. name: "Back",
  31129. image: {
  31130. source: "./media/characters/kirina-violet/back.svg",
  31131. extra: 2812 / 2725,
  31132. bottom: 0 / 2812
  31133. }
  31134. },
  31135. mouth: {
  31136. height: math.unit(4.35, "meters"),
  31137. name: "Mouth",
  31138. image: {
  31139. source: "./media/characters/kirina-violet/mouth.svg"
  31140. }
  31141. },
  31142. paw: {
  31143. height: math.unit(5.6, "meters"),
  31144. name: "Paw",
  31145. image: {
  31146. source: "./media/characters/kirina-violet/paw.svg"
  31147. }
  31148. },
  31149. tail: {
  31150. height: math.unit(18, "meters"),
  31151. name: "Tail",
  31152. image: {
  31153. source: "./media/characters/kirina-violet/tail.svg"
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Macro",
  31160. height: math.unit(63.4, "meters"),
  31161. default: true
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31167. {
  31168. front: {
  31169. height: math.unit(75, "feet"),
  31170. name: "Front",
  31171. image: {
  31172. source: "./media/characters/cat-gigachu/front.svg",
  31173. extra: 1239/1027,
  31174. bottom: 32/1271
  31175. }
  31176. },
  31177. back: {
  31178. height: math.unit(75, "feet"),
  31179. name: "Back",
  31180. image: {
  31181. source: "./media/characters/cat-gigachu/back.svg",
  31182. extra: 1229/1030,
  31183. bottom: 9/1238
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Dynamax",
  31190. height: math.unit(75, "feet"),
  31191. default: true
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(6, "feet"),
  31200. weight: math.unit(150, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/sfaiyan/front.svg",
  31204. extra: 999 / 978,
  31205. bottom: 5 / 1004
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(1.82, "meters")
  31213. },
  31214. {
  31215. name: "Giant",
  31216. height: math.unit(2.27, "km"),
  31217. default: true
  31218. },
  31219. ]
  31220. ))
  31221. characterMakers.push(() => makeCharacter(
  31222. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31223. {
  31224. front: {
  31225. height: math.unit(179, "cm"),
  31226. weight: math.unit(100, "kg"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/raunehkeli/front.svg",
  31230. extra: 1934 / 1926,
  31231. bottom: 0 / 1934
  31232. }
  31233. },
  31234. },
  31235. [
  31236. {
  31237. name: "Normal",
  31238. height: math.unit(179, "cm")
  31239. },
  31240. {
  31241. name: "Maximum",
  31242. height: math.unit(575, "meters"),
  31243. default: true
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31249. {
  31250. front: {
  31251. height: math.unit(6, "feet"),
  31252. weight: math.unit(150, "lb"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31256. extra: 2625 / 2518,
  31257. bottom: 60 / 2685
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(6 + 2 / 12, "feet")
  31265. },
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(1180, "feet"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(5 + 6 / 12, "feet"),
  31278. weight: math.unit(108, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/lilith-zott/front.svg",
  31282. extra: 2510 / 2238,
  31283. bottom: 100 / 2610
  31284. }
  31285. },
  31286. frontDressed: {
  31287. height: math.unit(5 + 6 / 12, "feet"),
  31288. weight: math.unit(108, "lb"),
  31289. name: "Front (Dressed)",
  31290. image: {
  31291. source: "./media/characters/lilith-zott/front-dressed.svg",
  31292. extra: 2510 / 2238,
  31293. bottom: 100 / 2610
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(5 + 6 / 12, "feet")
  31301. },
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(1030, "feet"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(6, "feet"),
  31314. weight: math.unit(150, "lb"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31318. extra: 2567 / 2435,
  31319. bottom: 39 / 2606
  31320. }
  31321. },
  31322. frontSuper: {
  31323. height: math.unit(6, "feet"),
  31324. name: "Front (Super)",
  31325. image: {
  31326. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31327. extra: 2567 / 2435,
  31328. bottom: 39 / 2606
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(5 + 10 / 12, "feet")
  31336. },
  31337. {
  31338. name: "Macro",
  31339. height: math.unit(1100, "feet"),
  31340. default: true
  31341. },
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31346. {
  31347. front: {
  31348. height: math.unit(100, "miles"),
  31349. name: "Front",
  31350. image: {
  31351. source: "./media/characters/sona/front.svg",
  31352. extra: 2433 / 2201,
  31353. bottom: 53 / 2486
  31354. }
  31355. },
  31356. foot: {
  31357. height: math.unit(16.1, "miles"),
  31358. name: "Foot",
  31359. image: {
  31360. source: "./media/characters/sona/foot.svg"
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(100, "miles"),
  31368. default: true
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31374. {
  31375. front: {
  31376. height: math.unit(6, "feet"),
  31377. weight: math.unit(150, "lb"),
  31378. name: "Front",
  31379. image: {
  31380. source: "./media/characters/bailey/front.svg",
  31381. extra: 1778 / 1724,
  31382. bottom: 30 / 1808
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Micro",
  31389. height: math.unit(4, "inches")
  31390. },
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(5 + 5 / 12, "feet"),
  31394. default: true
  31395. },
  31396. {
  31397. name: "Macro",
  31398. height: math.unit(250, "feet")
  31399. },
  31400. {
  31401. name: "Megamacro",
  31402. height: math.unit(100, "miles")
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(5 + 2 / 12, "feet"),
  31411. weight: math.unit(120, "lb"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/snaps/front.svg",
  31415. extra: 2370 / 2177,
  31416. bottom: 48 / 2418
  31417. }
  31418. },
  31419. back: {
  31420. height: math.unit(5 + 2 / 12, "feet"),
  31421. weight: math.unit(120, "lb"),
  31422. name: "Back",
  31423. image: {
  31424. source: "./media/characters/snaps/back.svg",
  31425. extra: 2408 / 2258,
  31426. bottom: 15 / 2423
  31427. }
  31428. },
  31429. },
  31430. [
  31431. {
  31432. name: "Micro",
  31433. height: math.unit(9, "inches")
  31434. },
  31435. {
  31436. name: "Normal",
  31437. height: math.unit(5 + 2 / 12, "feet"),
  31438. default: true
  31439. },
  31440. {
  31441. name: "Mini Macro",
  31442. height: math.unit(10, "feet")
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31448. {
  31449. front: {
  31450. height: math.unit(1.8, "meters"),
  31451. weight: math.unit(85, "kg"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/azteck/front.svg",
  31455. extra: 2815 / 2625,
  31456. bottom: 89 / 2904
  31457. }
  31458. },
  31459. back: {
  31460. height: math.unit(1.8, "meters"),
  31461. weight: math.unit(85, "kg"),
  31462. name: "Back",
  31463. image: {
  31464. source: "./media/characters/azteck/back.svg",
  31465. extra: 2856 / 2648,
  31466. bottom: 85 / 2941
  31467. }
  31468. },
  31469. frontDressed: {
  31470. height: math.unit(1.8, "meters"),
  31471. weight: math.unit(85, "kg"),
  31472. name: "Front (Dressed)",
  31473. image: {
  31474. source: "./media/characters/azteck/front-dressed.svg",
  31475. extra: 2147 / 2003,
  31476. bottom: 68 / 2215
  31477. }
  31478. },
  31479. head: {
  31480. height: math.unit(0.47, "meters"),
  31481. weight: math.unit(85, "kg"),
  31482. name: "Head",
  31483. image: {
  31484. source: "./media/characters/azteck/head.svg"
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Bite sized",
  31491. height: math.unit(16, "cm")
  31492. },
  31493. {
  31494. name: "Normal",
  31495. height: math.unit(1.8, "meters"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(6, "feet"),
  31505. weight: math.unit(150, "lb"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/pidge/front.svg",
  31509. extra: 1936/1820,
  31510. bottom: 0/1936
  31511. }
  31512. },
  31513. back: {
  31514. height: math.unit(6, "feet"),
  31515. weight: math.unit(150, "lb"),
  31516. name: "Back",
  31517. image: {
  31518. source: "./media/characters/pidge/back.svg",
  31519. extra: 1938/1843,
  31520. bottom: 0/1938
  31521. }
  31522. },
  31523. casual: {
  31524. height: math.unit(6, "feet"),
  31525. weight: math.unit(150, "lb"),
  31526. name: "Casual",
  31527. image: {
  31528. source: "./media/characters/pidge/casual.svg",
  31529. extra: 1936/1820,
  31530. bottom: 0/1936
  31531. }
  31532. },
  31533. tech: {
  31534. height: math.unit(6, "feet"),
  31535. weight: math.unit(150, "lb"),
  31536. name: "Tech",
  31537. image: {
  31538. source: "./media/characters/pidge/tech.svg",
  31539. extra: 1802/1682,
  31540. bottom: 0/1802
  31541. }
  31542. },
  31543. head: {
  31544. height: math.unit(1.61, "feet"),
  31545. name: "Head",
  31546. image: {
  31547. source: "./media/characters/pidge/head.svg"
  31548. }
  31549. },
  31550. collar: {
  31551. height: math.unit(0.82, "feet"),
  31552. name: "Collar",
  31553. image: {
  31554. source: "./media/characters/pidge/collar.svg"
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Macro",
  31561. height: math.unit(2, "mile"),
  31562. default: true
  31563. },
  31564. {
  31565. name: "PUPPY",
  31566. height: math.unit(20, "miles")
  31567. },
  31568. ]
  31569. ))
  31570. characterMakers.push(() => makeCharacter(
  31571. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31572. {
  31573. front: {
  31574. height: math.unit(6, "feet"),
  31575. weight: math.unit(150, "lb"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/en/front.svg",
  31579. extra: 1697 / 1563,
  31580. bottom: 103 / 1800
  31581. }
  31582. },
  31583. back: {
  31584. height: math.unit(6, "feet"),
  31585. weight: math.unit(150, "lb"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/en/back.svg",
  31589. extra: 1700 / 1570,
  31590. bottom: 51 / 1751
  31591. }
  31592. },
  31593. frontDressed: {
  31594. height: math.unit(6, "feet"),
  31595. weight: math.unit(150, "lb"),
  31596. name: "Front (Dressed)",
  31597. image: {
  31598. source: "./media/characters/en/front-dressed.svg",
  31599. extra: 1697 / 1563,
  31600. bottom: 103 / 1800
  31601. }
  31602. },
  31603. backDressed: {
  31604. height: math.unit(6, "feet"),
  31605. weight: math.unit(150, "lb"),
  31606. name: "Back (Dressed)",
  31607. image: {
  31608. source: "./media/characters/en/back-dressed.svg",
  31609. extra: 1700 / 1570,
  31610. bottom: 51 / 1751
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Macro",
  31617. height: math.unit(210, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31624. {
  31625. front: {
  31626. height: math.unit(6, "feet"),
  31627. weight: math.unit(150, "lb"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/haze-orris/front.svg",
  31631. extra: 3975 / 3525,
  31632. bottom: 137 / 4112
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Micro",
  31639. height: math.unit(150, "mm"),
  31640. default: true
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(6, "feet"),
  31649. weight: math.unit(150, "lb"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/casselene-yaro/front.svg",
  31653. extra: 4721 / 4541,
  31654. bottom: 82 / 4803
  31655. }
  31656. },
  31657. back: {
  31658. height: math.unit(6, "feet"),
  31659. weight: math.unit(150, "lb"),
  31660. name: "Back",
  31661. image: {
  31662. source: "./media/characters/casselene-yaro/back.svg",
  31663. extra: 4569 / 4377,
  31664. bottom: 69 / 4638
  31665. }
  31666. },
  31667. dressed: {
  31668. height: math.unit(6, "feet"),
  31669. weight: math.unit(150, "lb"),
  31670. name: "Dressed",
  31671. image: {
  31672. source: "./media/characters/casselene-yaro/dressed.svg",
  31673. extra: 4721 / 4541,
  31674. bottom: 82 / 4803
  31675. }
  31676. },
  31677. maw: {
  31678. height: math.unit(1, "feet"),
  31679. name: "Maw",
  31680. image: {
  31681. source: "./media/characters/casselene-yaro/maw.svg"
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Macro",
  31688. height: math.unit(190, "feet"),
  31689. default: true
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(10, "feet"),
  31698. weight: math.unit(15015, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/platine/front.svg",
  31702. extra: 1741/1650,
  31703. bottom: 84/1825
  31704. }
  31705. },
  31706. side: {
  31707. height: math.unit(10, "feet"),
  31708. weight: math.unit(15015, "lb"),
  31709. name: "Side",
  31710. image: {
  31711. source: "./media/characters/platine/side.svg",
  31712. extra: 1790/1705,
  31713. bottom: 29/1819
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(10, "feet"),
  31721. default: true
  31722. },
  31723. {
  31724. name: "Macro",
  31725. height: math.unit(100, "feet")
  31726. },
  31727. {
  31728. name: "Megamacro",
  31729. height: math.unit(1000, "feet")
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31735. {
  31736. front: {
  31737. height: math.unit(15 + 5 / 12, "feet"),
  31738. weight: math.unit(4600, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/neapolitan-ananassa/front.svg",
  31742. extra: 2903 / 2736,
  31743. bottom: 0 / 2903
  31744. }
  31745. },
  31746. side: {
  31747. height: math.unit(15 + 5 / 12, "feet"),
  31748. weight: math.unit(4600, "lb"),
  31749. name: "Side",
  31750. image: {
  31751. source: "./media/characters/neapolitan-ananassa/side.svg",
  31752. extra: 2925 / 2719,
  31753. bottom: 0 / 2925
  31754. }
  31755. },
  31756. back: {
  31757. height: math.unit(15 + 5 / 12, "feet"),
  31758. weight: math.unit(4600, "lb"),
  31759. name: "Back",
  31760. image: {
  31761. source: "./media/characters/neapolitan-ananassa/back.svg",
  31762. extra: 2903 / 2736,
  31763. bottom: 0 / 2903
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(15 + 5 / 12, "feet"),
  31771. default: true
  31772. },
  31773. {
  31774. name: "Post-Millenium",
  31775. height: math.unit(35 + 5 / 12, "feet")
  31776. },
  31777. {
  31778. name: "Post-Era",
  31779. height: math.unit(450 + 5 / 12, "feet")
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31785. {
  31786. front: {
  31787. height: math.unit(300, "meters"),
  31788. weight: math.unit(125000, "tonnes"),
  31789. name: "Front",
  31790. image: {
  31791. source: "./media/characters/pazuzu/front.svg",
  31792. extra: 877 / 794,
  31793. bottom: 47 / 924
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Macro",
  31800. height: math.unit(300, "meters"),
  31801. default: true
  31802. },
  31803. ]
  31804. ))
  31805. characterMakers.push(() => makeCharacter(
  31806. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31807. {
  31808. side: {
  31809. height: math.unit(10 + 7 / 12, "feet"),
  31810. weight: math.unit(2.5, "tons"),
  31811. name: "Side",
  31812. image: {
  31813. source: "./media/characters/aasha/side.svg",
  31814. extra: 1345 / 1245,
  31815. bottom: 111 / 1456
  31816. }
  31817. },
  31818. back: {
  31819. height: math.unit(10 + 7 / 12, "feet"),
  31820. weight: math.unit(2.5, "tons"),
  31821. name: "Back",
  31822. image: {
  31823. source: "./media/characters/aasha/back.svg",
  31824. extra: 1133 / 1057,
  31825. bottom: 257 / 1390
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(10 + 7 / 12, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(6 + 3 / 12, "feet"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/nevan/front.svg",
  31845. extra: 704 / 704,
  31846. bottom: 28 / 732
  31847. }
  31848. },
  31849. back: {
  31850. height: math.unit(6 + 3 / 12, "feet"),
  31851. name: "Back",
  31852. image: {
  31853. source: "./media/characters/nevan/back.svg",
  31854. extra: 714 / 714,
  31855. bottom: 21 / 735
  31856. }
  31857. },
  31858. frontFlaccid: {
  31859. height: math.unit(6 + 3 / 12, "feet"),
  31860. name: "Front (Flaccid)",
  31861. image: {
  31862. source: "./media/characters/nevan/front-flaccid.svg",
  31863. extra: 704 / 704,
  31864. bottom: 28 / 732
  31865. }
  31866. },
  31867. frontErect: {
  31868. height: math.unit(6 + 3 / 12, "feet"),
  31869. name: "Front (Erect)",
  31870. image: {
  31871. source: "./media/characters/nevan/front-erect.svg",
  31872. extra: 704 / 704,
  31873. bottom: 28 / 732
  31874. }
  31875. },
  31876. backFlaccid: {
  31877. height: math.unit(6 + 3 / 12, "feet"),
  31878. name: "Back (Flaccid)",
  31879. image: {
  31880. source: "./media/characters/nevan/back-flaccid.svg",
  31881. extra: 714 / 714,
  31882. bottom: 21 / 735
  31883. }
  31884. },
  31885. },
  31886. [
  31887. {
  31888. name: "Normal",
  31889. height: math.unit(6 + 3 / 12, "feet"),
  31890. default: true
  31891. },
  31892. ]
  31893. ))
  31894. characterMakers.push(() => makeCharacter(
  31895. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31896. {
  31897. front: {
  31898. height: math.unit(4, "feet"),
  31899. name: "Front",
  31900. image: {
  31901. source: "./media/characters/arhan/front.svg",
  31902. extra: 3368 / 3133,
  31903. bottom: 0 / 3368
  31904. }
  31905. },
  31906. side: {
  31907. height: math.unit(4, "feet"),
  31908. name: "Side",
  31909. image: {
  31910. source: "./media/characters/arhan/side.svg",
  31911. extra: 3347 / 3105,
  31912. bottom: 0 / 3347
  31913. }
  31914. },
  31915. tongue: {
  31916. height: math.unit(1.42, "feet"),
  31917. name: "Tongue",
  31918. image: {
  31919. source: "./media/characters/arhan/tongue.svg"
  31920. }
  31921. },
  31922. head: {
  31923. height: math.unit(0.85, "feet"),
  31924. name: "Head",
  31925. image: {
  31926. source: "./media/characters/arhan/head.svg"
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Normal",
  31933. height: math.unit(4, "feet"),
  31934. default: true
  31935. },
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31940. {
  31941. front: {
  31942. height: math.unit(5 + 7.5 / 12, "feet"),
  31943. weight: math.unit(120, "lb"),
  31944. name: "Front",
  31945. image: {
  31946. source: "./media/characters/digi-duncan/front.svg",
  31947. extra: 330 / 326,
  31948. bottom: 16 / 346
  31949. }
  31950. },
  31951. side: {
  31952. height: math.unit(5 + 7.5 / 12, "feet"),
  31953. weight: math.unit(120, "lb"),
  31954. name: "Side",
  31955. image: {
  31956. source: "./media/characters/digi-duncan/side.svg",
  31957. extra: 341 / 337,
  31958. bottom: 1 / 342
  31959. }
  31960. },
  31961. back: {
  31962. height: math.unit(5 + 7.5 / 12, "feet"),
  31963. weight: math.unit(120, "lb"),
  31964. name: "Back",
  31965. image: {
  31966. source: "./media/characters/digi-duncan/back.svg",
  31967. extra: 330 / 326,
  31968. bottom: 12 / 342
  31969. }
  31970. },
  31971. },
  31972. [
  31973. {
  31974. name: "Speck",
  31975. height: math.unit(0.25, "mm")
  31976. },
  31977. {
  31978. name: "Micro",
  31979. height: math.unit(5, "mm")
  31980. },
  31981. {
  31982. name: "Tiny",
  31983. height: math.unit(0.5, "inches"),
  31984. default: true
  31985. },
  31986. {
  31987. name: "Human",
  31988. height: math.unit(5 + 7.5 / 12, "feet")
  31989. },
  31990. {
  31991. name: "Minigiant",
  31992. height: math.unit(8 + 5.25, "feet")
  31993. },
  31994. {
  31995. name: "Giant",
  31996. height: math.unit(2000, "feet")
  31997. },
  31998. {
  31999. name: "Mega",
  32000. height: math.unit(371.1, "miles")
  32001. },
  32002. ]
  32003. ))
  32004. characterMakers.push(() => makeCharacter(
  32005. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32006. {
  32007. front: {
  32008. height: math.unit(2, "meters"),
  32009. weight: math.unit(350, "kg"),
  32010. name: "Front",
  32011. image: {
  32012. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32013. extra: 898 / 838,
  32014. bottom: 9 / 907
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Micro",
  32021. height: math.unit(8, "meters")
  32022. },
  32023. {
  32024. name: "Normal",
  32025. height: math.unit(50, "meters"),
  32026. default: true
  32027. },
  32028. {
  32029. name: "Macro",
  32030. height: math.unit(500, "meters")
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(6 + 6 / 12, "feet"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/khardesh/front.svg",
  32042. extra: 1788/1596,
  32043. bottom: 66/1854
  32044. }
  32045. },
  32046. back: {
  32047. height: math.unit(6 + 6 / 12, "feet"),
  32048. name: "Back",
  32049. image: {
  32050. source: "./media/characters/khardesh/back.svg",
  32051. extra: 1781/1584,
  32052. bottom: 68/1849
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(6 + 6 / 12, "feet"),
  32060. default: true
  32061. },
  32062. {
  32063. name: "Normal+",
  32064. height: math.unit(4, "meters")
  32065. },
  32066. {
  32067. name: "Macro",
  32068. height: math.unit(50, "meters")
  32069. },
  32070. {
  32071. name: "Macro+",
  32072. height: math.unit(100, "meters")
  32073. },
  32074. {
  32075. name: "Megamacro",
  32076. height: math.unit(20, "km")
  32077. },
  32078. ]
  32079. ))
  32080. characterMakers.push(() => makeCharacter(
  32081. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32082. {
  32083. front: {
  32084. height: math.unit(6, "feet"),
  32085. weight: math.unit(150, "lb"),
  32086. name: "Front",
  32087. image: {
  32088. source: "./media/characters/kosho/front.svg",
  32089. extra: 1847 / 1847,
  32090. bottom: 86 / 1933
  32091. }
  32092. },
  32093. },
  32094. [
  32095. {
  32096. name: "Second-stage micro",
  32097. height: math.unit(0.5, "inches")
  32098. },
  32099. {
  32100. name: "First-stage micro",
  32101. height: math.unit(6, "inches")
  32102. },
  32103. {
  32104. name: "Normal",
  32105. height: math.unit(6, "feet"),
  32106. default: true
  32107. },
  32108. {
  32109. name: "First-stage macro",
  32110. height: math.unit(72, "feet")
  32111. },
  32112. {
  32113. name: "Second-stage macro",
  32114. height: math.unit(864, "feet")
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32120. {
  32121. normal: {
  32122. height: math.unit(4 + 6 / 12, "feet"),
  32123. name: "Normal",
  32124. image: {
  32125. source: "./media/characters/hydra/normal.svg",
  32126. extra: 2833 / 2634,
  32127. bottom: 68 / 2901
  32128. }
  32129. },
  32130. smol: {
  32131. height: math.unit(0.705, "inches"),
  32132. name: "Smol",
  32133. image: {
  32134. source: "./media/characters/hydra/smol.svg",
  32135. extra: 2715 / 2540,
  32136. bottom: 0 / 2715
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Normal",
  32143. height: math.unit(4 + 6 / 12, "feet"),
  32144. default: true
  32145. }
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(0.6, "cm"),
  32153. name: "Front",
  32154. image: {
  32155. source: "./media/characters/daz/front.svg",
  32156. extra: 1682 / 1164,
  32157. bottom: 42 / 1724
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Normal",
  32164. height: math.unit(0.6, "cm"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32171. {
  32172. front: {
  32173. height: math.unit(6, "feet"),
  32174. weight: math.unit(235, "lb"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/theo-pangolin/front.svg",
  32178. extra: 1996 / 1969,
  32179. bottom: 115 / 2111
  32180. }
  32181. },
  32182. back: {
  32183. height: math.unit(6, "feet"),
  32184. weight: math.unit(235, "lb"),
  32185. name: "Back",
  32186. image: {
  32187. source: "./media/characters/theo-pangolin/back.svg",
  32188. extra: 1979 / 1979,
  32189. bottom: 40 / 2019
  32190. }
  32191. },
  32192. feral: {
  32193. height: math.unit(2, "feet"),
  32194. weight: math.unit(30, "lb"),
  32195. name: "Feral",
  32196. image: {
  32197. source: "./media/characters/theo-pangolin/feral.svg",
  32198. extra: 803 / 791,
  32199. bottom: 181 / 984
  32200. }
  32201. },
  32202. footFive: {
  32203. height: math.unit(1.43, "feet"),
  32204. name: "Foot (Five Toes)",
  32205. image: {
  32206. source: "./media/characters/theo-pangolin/foot-five.svg"
  32207. }
  32208. },
  32209. footFour: {
  32210. height: math.unit(1.43, "feet"),
  32211. name: "Foot (Four Toes)",
  32212. image: {
  32213. source: "./media/characters/theo-pangolin/foot-four.svg"
  32214. }
  32215. },
  32216. handFour: {
  32217. height: math.unit(0.81, "feet"),
  32218. name: "Hand (Four Fingers)",
  32219. image: {
  32220. source: "./media/characters/theo-pangolin/hand-four.svg"
  32221. }
  32222. },
  32223. handThree: {
  32224. height: math.unit(0.81, "feet"),
  32225. name: "Hand (Three Fingers)",
  32226. image: {
  32227. source: "./media/characters/theo-pangolin/hand-three.svg"
  32228. }
  32229. },
  32230. headFront: {
  32231. height: math.unit(1.37, "feet"),
  32232. name: "Head (Front)",
  32233. image: {
  32234. source: "./media/characters/theo-pangolin/head-front.svg"
  32235. }
  32236. },
  32237. headSide: {
  32238. height: math.unit(1.43, "feet"),
  32239. name: "Head (Side)",
  32240. image: {
  32241. source: "./media/characters/theo-pangolin/head-side.svg"
  32242. }
  32243. },
  32244. tongue: {
  32245. height: math.unit(2.29, "feet"),
  32246. name: "Tongue",
  32247. image: {
  32248. source: "./media/characters/theo-pangolin/tongue.svg"
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Normal",
  32255. height: math.unit(6, "feet")
  32256. },
  32257. {
  32258. name: "Macro",
  32259. height: math.unit(400, "feet"),
  32260. default: true
  32261. },
  32262. ]
  32263. ))
  32264. characterMakers.push(() => makeCharacter(
  32265. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32266. {
  32267. front: {
  32268. height: math.unit(6, "inches"),
  32269. weight: math.unit(0.036, "kg"),
  32270. name: "Front",
  32271. image: {
  32272. source: "./media/characters/renée/front.svg",
  32273. extra: 900 / 886,
  32274. bottom: 8 / 908
  32275. }
  32276. },
  32277. },
  32278. [
  32279. {
  32280. name: "Nano",
  32281. height: math.unit(1, "nm")
  32282. },
  32283. {
  32284. name: "Micro",
  32285. height: math.unit(1, "mm")
  32286. },
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(6, "inches")
  32290. },
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(2000, "feet"),
  32294. default: true
  32295. },
  32296. {
  32297. name: "Megamacro",
  32298. height: math.unit(2, "km")
  32299. },
  32300. {
  32301. name: "Gigamacro",
  32302. height: math.unit(2000, "km")
  32303. },
  32304. {
  32305. name: "Teramacro",
  32306. height: math.unit(250000, "km")
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(4, "meters"),
  32315. weight: math.unit(150, "kg"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/caledvwlch/front.svg",
  32319. extra: 1757/1537,
  32320. bottom: 31/1788
  32321. }
  32322. },
  32323. side: {
  32324. height: math.unit(4, "meters"),
  32325. weight: math.unit(150, "kg"),
  32326. name: "Side",
  32327. image: {
  32328. source: "./media/characters/caledvwlch/side.svg",
  32329. extra: 1605 / 1536,
  32330. bottom: 31 / 1636
  32331. }
  32332. },
  32333. back: {
  32334. height: math.unit(4, "meters"),
  32335. weight: math.unit(150, "kg"),
  32336. name: "Back",
  32337. image: {
  32338. source: "./media/characters/caledvwlch/back.svg",
  32339. extra: 1635 / 1565,
  32340. bottom: 27 / 1662
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "\"Incognito\"",
  32347. height: math.unit(4, "meters")
  32348. },
  32349. {
  32350. name: "Small rampage",
  32351. height: math.unit(600, "meters")
  32352. },
  32353. {
  32354. name: "Mega",
  32355. height: math.unit(30, "km")
  32356. },
  32357. {
  32358. name: "Home-size",
  32359. height: math.unit(50, "km"),
  32360. default: true
  32361. },
  32362. {
  32363. name: "Giga",
  32364. height: math.unit(300, "km")
  32365. },
  32366. {
  32367. name: "Lounging",
  32368. height: math.unit(11000, "km")
  32369. },
  32370. {
  32371. name: "Planet snacking",
  32372. height: math.unit(2000000, "km")
  32373. },
  32374. ]
  32375. ))
  32376. characterMakers.push(() => makeCharacter(
  32377. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32378. {
  32379. front: {
  32380. height: math.unit(6, "feet"),
  32381. weight: math.unit(215, "lb"),
  32382. name: "Front",
  32383. image: {
  32384. source: "./media/characters/sapphire-svell/front.svg",
  32385. extra: 495 / 455,
  32386. bottom: 20 / 515
  32387. }
  32388. },
  32389. back: {
  32390. height: math.unit(6, "feet"),
  32391. weight: math.unit(216, "lb"),
  32392. name: "Back",
  32393. image: {
  32394. source: "./media/characters/sapphire-svell/back.svg",
  32395. extra: 497 / 477,
  32396. bottom: 7 / 504
  32397. }
  32398. },
  32399. maw: {
  32400. height: math.unit(1.57, "feet"),
  32401. name: "Maw",
  32402. image: {
  32403. source: "./media/characters/sapphire-svell/maw.svg"
  32404. }
  32405. },
  32406. foot: {
  32407. height: math.unit(1.07, "feet"),
  32408. name: "Foot",
  32409. image: {
  32410. source: "./media/characters/sapphire-svell/foot.svg"
  32411. }
  32412. },
  32413. toering: {
  32414. height: math.unit(1.7, "inch"),
  32415. name: "Toering",
  32416. image: {
  32417. source: "./media/characters/sapphire-svell/toering.svg"
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Normal",
  32424. height: math.unit(300, "feet"),
  32425. default: true
  32426. },
  32427. {
  32428. name: "Augmented",
  32429. height: math.unit(1250, "feet")
  32430. },
  32431. {
  32432. name: "Unleashed",
  32433. height: math.unit(3000, "feet")
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32439. {
  32440. side: {
  32441. height: math.unit(2 + 3 / 12, "feet"),
  32442. weight: math.unit(110, "lb"),
  32443. name: "Side",
  32444. image: {
  32445. source: "./media/characters/glitch-flux/side.svg",
  32446. extra: 997 / 805,
  32447. bottom: 20 / 1017
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(2 + 3 / 12, "feet"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32461. {
  32462. front: {
  32463. height: math.unit(4, "meters"),
  32464. name: "Front",
  32465. image: {
  32466. source: "./media/characters/mid/front.svg",
  32467. extra: 507 / 476,
  32468. bottom: 17 / 524
  32469. }
  32470. },
  32471. back: {
  32472. height: math.unit(4, "meters"),
  32473. name: "Back",
  32474. image: {
  32475. source: "./media/characters/mid/back.svg",
  32476. extra: 519 / 487,
  32477. bottom: 7 / 526
  32478. }
  32479. },
  32480. stuck: {
  32481. height: math.unit(2.2, "meters"),
  32482. name: "Stuck",
  32483. image: {
  32484. source: "./media/characters/mid/stuck.svg",
  32485. extra: 1951 / 1869,
  32486. bottom: 88 / 2039
  32487. }
  32488. }
  32489. },
  32490. [
  32491. {
  32492. name: "Normal",
  32493. height: math.unit(4, "meters"),
  32494. default: true
  32495. },
  32496. {
  32497. name: "Big",
  32498. height: math.unit(10, "meters")
  32499. },
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(800, "meters")
  32503. },
  32504. {
  32505. name: "Megamacro",
  32506. height: math.unit(100, "km")
  32507. },
  32508. {
  32509. name: "Overgrown",
  32510. height: math.unit(1, "parsec")
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32516. {
  32517. front: {
  32518. height: math.unit(2.5, "meters"),
  32519. weight: math.unit(225, "kg"),
  32520. name: "Front",
  32521. image: {
  32522. source: "./media/characters/iris/front.svg",
  32523. extra: 3348 / 3251,
  32524. bottom: 205 / 3553
  32525. }
  32526. },
  32527. maw: {
  32528. height: math.unit(0.56, "meter"),
  32529. name: "Maw",
  32530. image: {
  32531. source: "./media/characters/iris/maw.svg"
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Mewter cat",
  32538. height: math.unit(1.2, "meters")
  32539. },
  32540. {
  32541. name: "Normal",
  32542. height: math.unit(2.5, "meters"),
  32543. default: true
  32544. },
  32545. {
  32546. name: "Minimacro",
  32547. height: math.unit(18, "feet")
  32548. },
  32549. {
  32550. name: "Macro",
  32551. height: math.unit(140, "feet")
  32552. },
  32553. {
  32554. name: "Macro+",
  32555. height: math.unit(180, "meters")
  32556. },
  32557. {
  32558. name: "Megamacro",
  32559. height: math.unit(2746, "meters")
  32560. },
  32561. ]
  32562. ))
  32563. characterMakers.push(() => makeCharacter(
  32564. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32565. {
  32566. front: {
  32567. height: math.unit(6, "feet"),
  32568. weight: math.unit(135, "lb"),
  32569. name: "Front",
  32570. image: {
  32571. source: "./media/characters/axel/front.svg",
  32572. extra: 908 / 908,
  32573. bottom: 58 / 966
  32574. }
  32575. },
  32576. side: {
  32577. height: math.unit(6, "feet"),
  32578. weight: math.unit(135, "lb"),
  32579. name: "Side",
  32580. image: {
  32581. source: "./media/characters/axel/side.svg",
  32582. extra: 958 / 958,
  32583. bottom: 11 / 969
  32584. }
  32585. },
  32586. back: {
  32587. height: math.unit(6, "feet"),
  32588. weight: math.unit(135, "lb"),
  32589. name: "Back",
  32590. image: {
  32591. source: "./media/characters/axel/back.svg",
  32592. extra: 887 / 887,
  32593. bottom: 34 / 921
  32594. }
  32595. },
  32596. head: {
  32597. height: math.unit(1.07, "feet"),
  32598. name: "Head",
  32599. image: {
  32600. source: "./media/characters/axel/head.svg"
  32601. }
  32602. },
  32603. beak: {
  32604. height: math.unit(1.4, "feet"),
  32605. name: "Beak",
  32606. image: {
  32607. source: "./media/characters/axel/beak.svg"
  32608. }
  32609. },
  32610. beakSide: {
  32611. height: math.unit(1.4, "feet"),
  32612. name: "Beak Side",
  32613. image: {
  32614. source: "./media/characters/axel/beak-side.svg"
  32615. }
  32616. },
  32617. sheath: {
  32618. height: math.unit(0.5, "feet"),
  32619. name: "Sheath",
  32620. image: {
  32621. source: "./media/characters/axel/sheath.svg"
  32622. }
  32623. },
  32624. dick: {
  32625. height: math.unit(0.98, "feet"),
  32626. name: "Dick",
  32627. image: {
  32628. source: "./media/characters/axel/dick.svg"
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Macro",
  32635. height: math.unit(68, "meters"),
  32636. default: true
  32637. },
  32638. ]
  32639. ))
  32640. characterMakers.push(() => makeCharacter(
  32641. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32642. {
  32643. front: {
  32644. height: math.unit(3.5, "meters"),
  32645. weight: math.unit(1200, "kg"),
  32646. name: "Front",
  32647. image: {
  32648. source: "./media/characters/joanna/front.svg",
  32649. extra: 1596 / 1488,
  32650. bottom: 29 / 1625
  32651. }
  32652. },
  32653. back: {
  32654. height: math.unit(3.5, "meters"),
  32655. weight: math.unit(1200, "kg"),
  32656. name: "Back",
  32657. image: {
  32658. source: "./media/characters/joanna/back.svg",
  32659. extra: 1594 / 1495,
  32660. bottom: 26 / 1620
  32661. }
  32662. },
  32663. frontShorts: {
  32664. height: math.unit(3.5, "meters"),
  32665. weight: math.unit(1200, "kg"),
  32666. name: "Front (Shorts)",
  32667. image: {
  32668. source: "./media/characters/joanna/front-shorts.svg",
  32669. extra: 1596 / 1488,
  32670. bottom: 29 / 1625
  32671. }
  32672. },
  32673. frontBiker: {
  32674. height: math.unit(3.5, "meters"),
  32675. weight: math.unit(1200, "kg"),
  32676. name: "Front (Biker)",
  32677. image: {
  32678. source: "./media/characters/joanna/front-biker.svg",
  32679. extra: 1596 / 1488,
  32680. bottom: 29 / 1625
  32681. }
  32682. },
  32683. backBiker: {
  32684. height: math.unit(3.5, "meters"),
  32685. weight: math.unit(1200, "kg"),
  32686. name: "Back (Biker)",
  32687. image: {
  32688. source: "./media/characters/joanna/back-biker.svg",
  32689. extra: 1594 / 1495,
  32690. bottom: 88 / 1682
  32691. }
  32692. },
  32693. bikeLeft: {
  32694. height: math.unit(2.4, "meters"),
  32695. weight: math.unit(1600, "kg"),
  32696. name: "Bike (Left)",
  32697. image: {
  32698. source: "./media/characters/joanna/bike-left.svg",
  32699. extra: 720 / 720,
  32700. bottom: 8 / 728
  32701. }
  32702. },
  32703. bikeRight: {
  32704. height: math.unit(2.4, "meters"),
  32705. weight: math.unit(1600, "kg"),
  32706. name: "Bike (Right)",
  32707. image: {
  32708. source: "./media/characters/joanna/bike-right.svg",
  32709. extra: 720 / 720,
  32710. bottom: 8 / 728
  32711. }
  32712. },
  32713. },
  32714. [
  32715. {
  32716. name: "Incognito",
  32717. height: math.unit(3.5, "meters")
  32718. },
  32719. {
  32720. name: "Casual Big",
  32721. height: math.unit(200, "meters")
  32722. },
  32723. {
  32724. name: "Macro",
  32725. height: math.unit(600, "meters")
  32726. },
  32727. {
  32728. name: "Original",
  32729. height: math.unit(20, "km"),
  32730. default: true
  32731. },
  32732. {
  32733. name: "Giga",
  32734. height: math.unit(400, "km")
  32735. },
  32736. {
  32737. name: "Lounging",
  32738. height: math.unit(1500, "km")
  32739. },
  32740. {
  32741. name: "Planetary",
  32742. height: math.unit(200000, "km")
  32743. },
  32744. ]
  32745. ))
  32746. characterMakers.push(() => makeCharacter(
  32747. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32748. {
  32749. front: {
  32750. height: math.unit(6, "feet"),
  32751. weight: math.unit(150, "lb"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/hugo-sigil/front.svg",
  32755. extra: 522 / 500,
  32756. bottom: 2 / 524
  32757. }
  32758. },
  32759. back: {
  32760. height: math.unit(6, "feet"),
  32761. weight: math.unit(150, "lb"),
  32762. name: "Back",
  32763. image: {
  32764. source: "./media/characters/hugo-sigil/back.svg",
  32765. extra: 519 / 495,
  32766. bottom: 5 / 524
  32767. }
  32768. },
  32769. maw: {
  32770. height: math.unit(1.4, "feet"),
  32771. weight: math.unit(150, "lb"),
  32772. name: "Maw",
  32773. image: {
  32774. source: "./media/characters/hugo-sigil/maw.svg"
  32775. }
  32776. },
  32777. feet: {
  32778. height: math.unit(1.56, "feet"),
  32779. weight: math.unit(150, "lb"),
  32780. name: "Feet",
  32781. image: {
  32782. source: "./media/characters/hugo-sigil/feet.svg",
  32783. extra: 177 / 177,
  32784. bottom: 12 / 189
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(6, "feet")
  32792. },
  32793. {
  32794. name: "Macro",
  32795. height: math.unit(200, "feet"),
  32796. default: true
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32802. {
  32803. front: {
  32804. height: math.unit(6, "feet"),
  32805. weight: math.unit(150, "lb"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/peri/front.svg",
  32809. extra: 2354 / 2233,
  32810. bottom: 49 / 2403
  32811. }
  32812. },
  32813. },
  32814. [
  32815. {
  32816. name: "Really Small",
  32817. height: math.unit(1, "nm")
  32818. },
  32819. {
  32820. name: "Micro",
  32821. height: math.unit(4, "inches")
  32822. },
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(7, "inches"),
  32826. default: true
  32827. },
  32828. {
  32829. name: "Macro",
  32830. height: math.unit(400, "feet")
  32831. },
  32832. {
  32833. name: "Megamacro",
  32834. height: math.unit(100, "miles")
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32840. {
  32841. frontSlim: {
  32842. height: math.unit(7, "feet"),
  32843. name: "Front (Slim)",
  32844. image: {
  32845. source: "./media/characters/issilora/front-slim.svg",
  32846. extra: 529 / 449,
  32847. bottom: 53 / 582
  32848. }
  32849. },
  32850. sideSlim: {
  32851. height: math.unit(7, "feet"),
  32852. name: "Side (Slim)",
  32853. image: {
  32854. source: "./media/characters/issilora/side-slim.svg",
  32855. extra: 570 / 480,
  32856. bottom: 30 / 600
  32857. }
  32858. },
  32859. backSlim: {
  32860. height: math.unit(7, "feet"),
  32861. name: "Back (Slim)",
  32862. image: {
  32863. source: "./media/characters/issilora/back-slim.svg",
  32864. extra: 537 / 455,
  32865. bottom: 46 / 583
  32866. }
  32867. },
  32868. frontBuff: {
  32869. height: math.unit(7, "feet"),
  32870. name: "Front (Buff)",
  32871. image: {
  32872. source: "./media/characters/issilora/front-buff.svg",
  32873. extra: 2310 / 2035,
  32874. bottom: 335 / 2645
  32875. }
  32876. },
  32877. head: {
  32878. height: math.unit(1.94, "feet"),
  32879. name: "Head",
  32880. image: {
  32881. source: "./media/characters/issilora/head.svg"
  32882. }
  32883. },
  32884. },
  32885. [
  32886. {
  32887. name: "Minimum",
  32888. height: math.unit(7, "feet")
  32889. },
  32890. {
  32891. name: "Comfortable",
  32892. height: math.unit(17, "feet")
  32893. },
  32894. {
  32895. name: "Fun Size",
  32896. height: math.unit(47, "feet")
  32897. },
  32898. {
  32899. name: "Natural Macro",
  32900. height: math.unit(137, "feet"),
  32901. default: true
  32902. },
  32903. {
  32904. name: "Maximum Kaiju",
  32905. height: math.unit(397, "feet")
  32906. },
  32907. ]
  32908. ))
  32909. characterMakers.push(() => makeCharacter(
  32910. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32911. {
  32912. front: {
  32913. height: math.unit(50 + 9/12, "feet"),
  32914. weight: math.unit(32.8, "tons"),
  32915. name: "Front",
  32916. image: {
  32917. source: "./media/characters/irb'iiritaahn/front.svg",
  32918. extra: 1878/1826,
  32919. bottom: 326/2204
  32920. }
  32921. },
  32922. back: {
  32923. height: math.unit(50 + 9/12, "feet"),
  32924. weight: math.unit(32.8, "tons"),
  32925. name: "Back",
  32926. image: {
  32927. source: "./media/characters/irb'iiritaahn/back.svg",
  32928. extra: 2052/2018,
  32929. bottom: 152/2204
  32930. }
  32931. },
  32932. head: {
  32933. height: math.unit(12.86, "feet"),
  32934. name: "Head",
  32935. image: {
  32936. source: "./media/characters/irb'iiritaahn/head.svg"
  32937. }
  32938. },
  32939. maw: {
  32940. height: math.unit(9.66, "feet"),
  32941. name: "Maw",
  32942. image: {
  32943. source: "./media/characters/irb'iiritaahn/maw.svg"
  32944. }
  32945. },
  32946. frontDick: {
  32947. height: math.unit(8.78461, "feet"),
  32948. name: "Front Dick",
  32949. image: {
  32950. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32951. }
  32952. },
  32953. rearDick: {
  32954. height: math.unit(8.78461, "feet"),
  32955. name: "Rear Dick",
  32956. image: {
  32957. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32958. }
  32959. },
  32960. rearDickUnfolded: {
  32961. height: math.unit(8.78, "feet"),
  32962. name: "Rear Dick (Unfolded)",
  32963. image: {
  32964. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32965. }
  32966. },
  32967. wings: {
  32968. height: math.unit(43, "feet"),
  32969. name: "Wings",
  32970. image: {
  32971. source: "./media/characters/irb'iiritaahn/wings.svg"
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Macro",
  32978. height: math.unit(50 + 9/12, "feet"),
  32979. default: true
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32985. {
  32986. front: {
  32987. height: math.unit(205, "cm"),
  32988. weight: math.unit(102, "kg"),
  32989. name: "Front",
  32990. image: {
  32991. source: "./media/characters/irbisgreif/front.svg",
  32992. extra: 785/706,
  32993. bottom: 13/798
  32994. }
  32995. },
  32996. back: {
  32997. height: math.unit(205, "cm"),
  32998. weight: math.unit(102, "kg"),
  32999. name: "Back",
  33000. image: {
  33001. source: "./media/characters/irbisgreif/back.svg",
  33002. extra: 713/701,
  33003. bottom: 26/739
  33004. }
  33005. },
  33006. frontDressed: {
  33007. height: math.unit(216, "cm"),
  33008. weight: math.unit(102, "kg"),
  33009. name: "Front-dressed",
  33010. image: {
  33011. source: "./media/characters/irbisgreif/front-dressed.svg",
  33012. extra: 902/776,
  33013. bottom: 14/916
  33014. }
  33015. },
  33016. sideDressed: {
  33017. height: math.unit(195, "cm"),
  33018. weight: math.unit(102, "kg"),
  33019. name: "Side-dressed",
  33020. image: {
  33021. source: "./media/characters/irbisgreif/side-dressed.svg",
  33022. extra: 788/688,
  33023. bottom: 21/809
  33024. }
  33025. },
  33026. backDressed: {
  33027. height: math.unit(216, "cm"),
  33028. weight: math.unit(102, "kg"),
  33029. name: "Back-dressed",
  33030. image: {
  33031. source: "./media/characters/irbisgreif/back-dressed.svg",
  33032. extra: 901/783,
  33033. bottom: 10/911
  33034. }
  33035. },
  33036. dick: {
  33037. height: math.unit(0.49, "feet"),
  33038. name: "Dick",
  33039. image: {
  33040. source: "./media/characters/irbisgreif/dick.svg"
  33041. }
  33042. },
  33043. wingTop: {
  33044. height: math.unit(1.93 , "feet"),
  33045. name: "Wing-top",
  33046. image: {
  33047. source: "./media/characters/irbisgreif/wing-top.svg"
  33048. }
  33049. },
  33050. wingBottom: {
  33051. height: math.unit(1.93 , "feet"),
  33052. name: "Wing-bottom",
  33053. image: {
  33054. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Normal",
  33061. height: math.unit(216, "cm"),
  33062. default: true
  33063. },
  33064. ]
  33065. ))
  33066. characterMakers.push(() => makeCharacter(
  33067. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33068. {
  33069. front: {
  33070. height: math.unit(6, "feet"),
  33071. weight: math.unit(150, "lb"),
  33072. name: "Front",
  33073. image: {
  33074. source: "./media/characters/pride/front.svg",
  33075. extra: 1299/1230,
  33076. bottom: 18/1317
  33077. }
  33078. },
  33079. },
  33080. [
  33081. {
  33082. name: "Normal",
  33083. height: math.unit(7, "feet")
  33084. },
  33085. {
  33086. name: "Mini-macro",
  33087. height: math.unit(11, "feet")
  33088. },
  33089. {
  33090. name: "Macro",
  33091. height: math.unit(15, "meters"),
  33092. default: true
  33093. },
  33094. {
  33095. name: "Macro+",
  33096. height: math.unit(40, "meters")
  33097. },
  33098. ]
  33099. ))
  33100. characterMakers.push(() => makeCharacter(
  33101. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33102. {
  33103. front: {
  33104. height: math.unit(4 + 2 / 12, "feet"),
  33105. weight: math.unit(95, "lb"),
  33106. name: "Front",
  33107. image: {
  33108. source: "./media/characters/vaelophis-nyx/front.svg",
  33109. extra: 2532/2330,
  33110. bottom: 0/2532
  33111. }
  33112. },
  33113. back: {
  33114. height: math.unit(4 + 2 / 12, "feet"),
  33115. weight: math.unit(95, "lb"),
  33116. name: "Back",
  33117. image: {
  33118. source: "./media/characters/vaelophis-nyx/back.svg",
  33119. extra: 2484/2361,
  33120. bottom: 0/2484
  33121. }
  33122. },
  33123. feralSide: {
  33124. height: math.unit(2 + 1/12, "feet"),
  33125. weight: math.unit(20, "lb"),
  33126. name: "Feral (Side)",
  33127. image: {
  33128. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33129. extra: 1721/1581,
  33130. bottom: 70/1791
  33131. }
  33132. },
  33133. feralLazing: {
  33134. height: math.unit(1.08, "feet"),
  33135. weight: math.unit(20, "lb"),
  33136. name: "Feral (Lazing)",
  33137. image: {
  33138. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33139. extra: 822/822,
  33140. bottom: 248/1070
  33141. }
  33142. },
  33143. ear: {
  33144. height: math.unit(0.416, "feet"),
  33145. name: "Ear",
  33146. image: {
  33147. source: "./media/characters/vaelophis-nyx/ear.svg"
  33148. }
  33149. },
  33150. eye: {
  33151. height: math.unit(0.0748, "feet"),
  33152. name: "Eye",
  33153. image: {
  33154. source: "./media/characters/vaelophis-nyx/eye.svg"
  33155. }
  33156. },
  33157. mouth: {
  33158. height: math.unit(0.378, "feet"),
  33159. name: "Mouth",
  33160. image: {
  33161. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33162. }
  33163. },
  33164. spade: {
  33165. height: math.unit(0.55, "feet"),
  33166. name: "Spade",
  33167. image: {
  33168. source: "./media/characters/vaelophis-nyx/spade.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(4 + 2/12, "feet"),
  33176. default: true
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33182. {
  33183. front: {
  33184. height: math.unit(7, "feet"),
  33185. weight: math.unit(231, "lb"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/flux/front.svg",
  33189. extra: 919/871,
  33190. bottom: 0/919
  33191. }
  33192. },
  33193. back: {
  33194. height: math.unit(7, "feet"),
  33195. weight: math.unit(231, "lb"),
  33196. name: "Back",
  33197. image: {
  33198. source: "./media/characters/flux/back.svg",
  33199. extra: 1040/992,
  33200. bottom: 0/1040
  33201. }
  33202. },
  33203. frontDressed: {
  33204. height: math.unit(7, "feet"),
  33205. weight: math.unit(231, "lb"),
  33206. name: "Front (Dressed)",
  33207. image: {
  33208. source: "./media/characters/flux/front-dressed.svg",
  33209. extra: 919/871,
  33210. bottom: 0/919
  33211. }
  33212. },
  33213. feralSide: {
  33214. height: math.unit(5, "feet"),
  33215. weight: math.unit(150, "lb"),
  33216. name: "Feral (Side)",
  33217. image: {
  33218. source: "./media/characters/flux/feral-side.svg",
  33219. extra: 598/528,
  33220. bottom: 28/626
  33221. }
  33222. },
  33223. head: {
  33224. height: math.unit(1.585, "feet"),
  33225. name: "Head",
  33226. image: {
  33227. source: "./media/characters/flux/head.svg"
  33228. }
  33229. },
  33230. headSide: {
  33231. height: math.unit(1.74, "feet"),
  33232. name: "Head (Side)",
  33233. image: {
  33234. source: "./media/characters/flux/head-side.svg"
  33235. }
  33236. },
  33237. headSideFire: {
  33238. height: math.unit(1.76, "feet"),
  33239. name: "Head (Side, Fire)",
  33240. image: {
  33241. source: "./media/characters/flux/head-side-fire.svg"
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(7, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(9, "feet"),
  33258. weight: math.unit(1012, "lb"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/ulfra-lupae/front.svg",
  33262. extra: 1083/1011,
  33263. bottom: 67/1150
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Micro",
  33270. height: math.unit(6, "inches")
  33271. },
  33272. {
  33273. name: "Socializing",
  33274. height: math.unit(6 + 5/12, "feet")
  33275. },
  33276. {
  33277. name: "Normal",
  33278. height: math.unit(9, "feet"),
  33279. default: true
  33280. },
  33281. {
  33282. name: "Macro",
  33283. height: math.unit(150, "feet")
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33289. {
  33290. front: {
  33291. height: math.unit(5 + 2/12, "feet"),
  33292. weight: math.unit(120, "lb"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/timber/front.svg",
  33296. extra: 2814/2705,
  33297. bottom: 181/2995
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(5 + 2/12, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(9, "feet"),
  33314. name: "Front",
  33315. image: {
  33316. source: "./media/characters/nicki/front.svg",
  33317. extra: 1240/990,
  33318. bottom: 45/1285
  33319. },
  33320. form: "anthro",
  33321. default: true
  33322. },
  33323. side: {
  33324. height: math.unit(9, "feet"),
  33325. name: "Side",
  33326. image: {
  33327. source: "./media/characters/nicki/side.svg",
  33328. extra: 1047/973,
  33329. bottom: 61/1108
  33330. },
  33331. form: "anthro"
  33332. },
  33333. back: {
  33334. height: math.unit(9, "feet"),
  33335. name: "Back",
  33336. image: {
  33337. source: "./media/characters/nicki/back.svg",
  33338. extra: 1006/965,
  33339. bottom: 39/1045
  33340. },
  33341. form: "anthro"
  33342. },
  33343. taur: {
  33344. height: math.unit(15, "feet"),
  33345. name: "Taur",
  33346. image: {
  33347. source: "./media/characters/nicki/taur.svg",
  33348. extra: 1592/1347,
  33349. bottom: 0/1592
  33350. },
  33351. form: "taur",
  33352. default: true
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(9, "feet"),
  33359. form: "anthro",
  33360. default: true
  33361. },
  33362. {
  33363. name: "Normal",
  33364. height: math.unit(15, "feet"),
  33365. form: "taur",
  33366. default: true
  33367. }
  33368. ],
  33369. {
  33370. "anthro": {
  33371. name: "Anthro",
  33372. default: true
  33373. },
  33374. "taur": {
  33375. name: "Taur"
  33376. }
  33377. }
  33378. ))
  33379. characterMakers.push(() => makeCharacter(
  33380. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33381. {
  33382. front: {
  33383. height: math.unit(7 + 10/12, "feet"),
  33384. weight: math.unit(3.5, "tons"),
  33385. name: "Front",
  33386. image: {
  33387. source: "./media/characters/lee/front.svg",
  33388. extra: 1773/1615,
  33389. bottom: 86/1859
  33390. }
  33391. },
  33392. hand: {
  33393. height: math.unit(1.78, "feet"),
  33394. name: "Hand",
  33395. image: {
  33396. source: "./media/characters/lee/hand.svg"
  33397. }
  33398. },
  33399. maw: {
  33400. height: math.unit(1.18, "feet"),
  33401. name: "Maw",
  33402. image: {
  33403. source: "./media/characters/lee/maw.svg"
  33404. }
  33405. },
  33406. },
  33407. [
  33408. {
  33409. name: "Normal",
  33410. height: math.unit(7 + 10/12, "feet"),
  33411. default: true
  33412. },
  33413. ]
  33414. ))
  33415. characterMakers.push(() => makeCharacter(
  33416. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33417. {
  33418. front: {
  33419. height: math.unit(9, "feet"),
  33420. name: "Front",
  33421. image: {
  33422. source: "./media/characters/guti/front.svg",
  33423. extra: 4551/4355,
  33424. bottom: 123/4674
  33425. }
  33426. },
  33427. tongue: {
  33428. height: math.unit(1, "feet"),
  33429. name: "Tongue",
  33430. image: {
  33431. source: "./media/characters/guti/tongue.svg"
  33432. }
  33433. },
  33434. paw: {
  33435. height: math.unit(1.18, "feet"),
  33436. name: "Paw",
  33437. image: {
  33438. source: "./media/characters/guti/paw.svg"
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(9, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33452. {
  33453. side: {
  33454. height: math.unit(5, "meters"),
  33455. name: "Side",
  33456. image: {
  33457. source: "./media/characters/vesper/side.svg",
  33458. extra: 1605/1518,
  33459. bottom: 0/1605
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Small",
  33466. height: math.unit(5, "meters")
  33467. },
  33468. {
  33469. name: "Sage",
  33470. height: math.unit(100, "meters"),
  33471. default: true
  33472. },
  33473. {
  33474. name: "Fun Size",
  33475. height: math.unit(600, "meters")
  33476. },
  33477. {
  33478. name: "Goddess",
  33479. height: math.unit(20000, "km")
  33480. },
  33481. {
  33482. name: "Maximum",
  33483. height: math.unit(5, "galaxies")
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33489. {
  33490. front: {
  33491. height: math.unit(6 + 3/12, "feet"),
  33492. weight: math.unit(190, "lb"),
  33493. name: "Front",
  33494. image: {
  33495. source: "./media/characters/gawain/front.svg",
  33496. extra: 2222/2139,
  33497. bottom: 90/2312
  33498. }
  33499. },
  33500. back: {
  33501. height: math.unit(6 + 3/12, "feet"),
  33502. weight: math.unit(190, "lb"),
  33503. name: "Back",
  33504. image: {
  33505. source: "./media/characters/gawain/back.svg",
  33506. extra: 2199/2111,
  33507. bottom: 73/2272
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(6 + 3/12, "feet"),
  33515. default: true
  33516. },
  33517. ]
  33518. ))
  33519. characterMakers.push(() => makeCharacter(
  33520. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33521. {
  33522. side: {
  33523. height: math.unit(3.5, "meters"),
  33524. weight: math.unit(16000, "lb"),
  33525. name: "Side",
  33526. image: {
  33527. source: "./media/characters/dascalti/side.svg",
  33528. extra: 392/273,
  33529. bottom: 47/439
  33530. }
  33531. },
  33532. breath: {
  33533. height: math.unit(7.4, "feet"),
  33534. name: "Breath",
  33535. image: {
  33536. source: "./media/characters/dascalti/breath.svg"
  33537. }
  33538. },
  33539. fed: {
  33540. height: math.unit(3.6, "meters"),
  33541. weight: math.unit(16000, "lb"),
  33542. name: "Fed",
  33543. image: {
  33544. source: "./media/characters/dascalti/fed.svg",
  33545. extra: 1419/820,
  33546. bottom: 95/1514
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(3.5, "meters"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(3 + 5/12, "feet"),
  33563. name: "Front",
  33564. image: {
  33565. source: "./media/characters/mauve/front.svg",
  33566. extra: 1126/1033,
  33567. bottom: 65/1191
  33568. }
  33569. },
  33570. side: {
  33571. height: math.unit(3 + 5/12, "feet"),
  33572. name: "Side",
  33573. image: {
  33574. source: "./media/characters/mauve/side.svg",
  33575. extra: 1089/1001,
  33576. bottom: 29/1118
  33577. }
  33578. },
  33579. back: {
  33580. height: math.unit(3 + 5/12, "feet"),
  33581. name: "Back",
  33582. image: {
  33583. source: "./media/characters/mauve/back.svg",
  33584. extra: 1173/1053,
  33585. bottom: 109/1282
  33586. }
  33587. },
  33588. },
  33589. [
  33590. {
  33591. name: "Normal",
  33592. height: math.unit(3 + 5/12, "feet"),
  33593. default: true
  33594. },
  33595. ]
  33596. ))
  33597. characterMakers.push(() => makeCharacter(
  33598. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33599. {
  33600. front: {
  33601. height: math.unit(6 + 3/12, "feet"),
  33602. weight: math.unit(430, "lb"),
  33603. name: "Front",
  33604. image: {
  33605. source: "./media/characters/carlos/front.svg",
  33606. extra: 1964/1913,
  33607. bottom: 70/2034
  33608. }
  33609. },
  33610. },
  33611. [
  33612. {
  33613. name: "Normal",
  33614. height: math.unit(6 + 3/12, "feet"),
  33615. default: true
  33616. },
  33617. ]
  33618. ))
  33619. characterMakers.push(() => makeCharacter(
  33620. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33621. {
  33622. back: {
  33623. height: math.unit(5 + 10/12, "feet"),
  33624. weight: math.unit(200, "lb"),
  33625. name: "Back",
  33626. image: {
  33627. source: "./media/characters/jax/back.svg",
  33628. extra: 764/739,
  33629. bottom: 25/789
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(5 + 10/12, "feet"),
  33637. default: true
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33643. {
  33644. front: {
  33645. height: math.unit(8, "feet"),
  33646. weight: math.unit(250, "lb"),
  33647. name: "Front",
  33648. image: {
  33649. source: "./media/characters/eikthynir/front.svg",
  33650. extra: 1332/1166,
  33651. bottom: 82/1414
  33652. }
  33653. },
  33654. back: {
  33655. height: math.unit(8, "feet"),
  33656. weight: math.unit(250, "lb"),
  33657. name: "Back",
  33658. image: {
  33659. source: "./media/characters/eikthynir/back.svg",
  33660. extra: 1342/1190,
  33661. bottom: 19/1361
  33662. }
  33663. },
  33664. dick: {
  33665. height: math.unit(2.35, "feet"),
  33666. name: "Dick",
  33667. image: {
  33668. source: "./media/characters/eikthynir/dick.svg"
  33669. }
  33670. },
  33671. },
  33672. [
  33673. {
  33674. name: "Normal",
  33675. height: math.unit(8, "feet"),
  33676. default: true
  33677. },
  33678. ]
  33679. ))
  33680. characterMakers.push(() => makeCharacter(
  33681. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33682. {
  33683. front: {
  33684. height: math.unit(99, "meters"),
  33685. weight: math.unit(13000, "tons"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/zlmos/front.svg",
  33689. extra: 2202/1992,
  33690. bottom: 315/2517
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Macro",
  33697. height: math.unit(99, "meters"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(6 + 5/12, "feet"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/purri/front.svg",
  33710. extra: 1698/1610,
  33711. bottom: 32/1730
  33712. }
  33713. },
  33714. frontAlt: {
  33715. height: math.unit(6 + 5/12, "feet"),
  33716. name: "Front (Alt)",
  33717. image: {
  33718. source: "./media/characters/purri/front-alt.svg",
  33719. extra: 450/420,
  33720. bottom: 26/476
  33721. }
  33722. },
  33723. boots: {
  33724. height: math.unit(5.5, "feet"),
  33725. name: "Boots",
  33726. image: {
  33727. source: "./media/characters/purri/boots.svg",
  33728. extra: 905/853,
  33729. bottom: 18/923
  33730. }
  33731. },
  33732. lying: {
  33733. height: math.unit(2, "feet"),
  33734. name: "Lying",
  33735. image: {
  33736. source: "./media/characters/purri/lying.svg",
  33737. extra: 940/843,
  33738. bottom: 146/1086
  33739. }
  33740. },
  33741. devious: {
  33742. height: math.unit(1.77, "feet"),
  33743. name: "Devious",
  33744. image: {
  33745. source: "./media/characters/purri/devious.svg",
  33746. extra: 1440/1155,
  33747. bottom: 147/1587
  33748. }
  33749. },
  33750. bean: {
  33751. height: math.unit(1.94, "feet"),
  33752. name: "Bean",
  33753. image: {
  33754. source: "./media/characters/purri/bean.svg"
  33755. }
  33756. },
  33757. },
  33758. [
  33759. {
  33760. name: "Micro",
  33761. height: math.unit(1, "mm")
  33762. },
  33763. {
  33764. name: "Normal",
  33765. height: math.unit(6 + 5/12, "feet"),
  33766. default: true
  33767. },
  33768. {
  33769. name: "Macro :3c",
  33770. height: math.unit(2, "miles")
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(6 + 2/12, "feet"),
  33779. weight: math.unit(250, "lb"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/moonlight/front.svg",
  33783. extra: 1044/908,
  33784. bottom: 56/1100
  33785. }
  33786. },
  33787. feral: {
  33788. height: math.unit(3 + 1/12, "feet"),
  33789. weight: math.unit(50, "kg"),
  33790. name: "Feral",
  33791. image: {
  33792. source: "./media/characters/moonlight/feral.svg",
  33793. extra: 3705/2791,
  33794. bottom: 145/3850
  33795. }
  33796. },
  33797. paw: {
  33798. height: math.unit(1, "feet"),
  33799. name: "Paw",
  33800. image: {
  33801. source: "./media/characters/moonlight/paw.svg"
  33802. }
  33803. },
  33804. paws: {
  33805. height: math.unit(0.98, "feet"),
  33806. name: "Paws",
  33807. image: {
  33808. source: "./media/characters/moonlight/paws.svg",
  33809. extra: 939/939,
  33810. bottom: 50/989
  33811. }
  33812. },
  33813. mouth: {
  33814. height: math.unit(0.48, "feet"),
  33815. name: "Mouth",
  33816. image: {
  33817. source: "./media/characters/moonlight/mouth.svg"
  33818. }
  33819. },
  33820. dick: {
  33821. height: math.unit(1.46, "feet"),
  33822. name: "Dick",
  33823. image: {
  33824. source: "./media/characters/moonlight/dick.svg"
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(6 + 2/12, "feet"),
  33832. default: true
  33833. },
  33834. {
  33835. name: "Macro",
  33836. height: math.unit(300, "feet")
  33837. },
  33838. {
  33839. name: "Macro+",
  33840. height: math.unit(1, "mile")
  33841. },
  33842. {
  33843. name: "Mt. Moon",
  33844. height: math.unit(5, "miles")
  33845. },
  33846. {
  33847. name: "Megamacro",
  33848. height: math.unit(15, "miles")
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33854. {
  33855. back: {
  33856. height: math.unit(6, "feet"),
  33857. weight: math.unit(150, "lb"),
  33858. name: "Back",
  33859. image: {
  33860. source: "./media/characters/sylen/back.svg",
  33861. extra: 1335/1273,
  33862. bottom: 107/1442
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(5 + 5/12, "feet")
  33870. },
  33871. {
  33872. name: "Megamacro",
  33873. height: math.unit(3, "miles"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(6, "feet"),
  33883. weight: math.unit(190, "lb"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/huttser/front.svg",
  33887. extra: 1152/1058,
  33888. bottom: 23/1175
  33889. }
  33890. },
  33891. side: {
  33892. height: math.unit(6, "feet"),
  33893. weight: math.unit(190, "lb"),
  33894. name: "Side",
  33895. image: {
  33896. source: "./media/characters/huttser/side.svg",
  33897. extra: 1174/1065,
  33898. bottom: 18/1192
  33899. }
  33900. },
  33901. back: {
  33902. height: math.unit(6, "feet"),
  33903. weight: math.unit(190, "lb"),
  33904. name: "Back",
  33905. image: {
  33906. source: "./media/characters/huttser/back.svg",
  33907. extra: 1158/1056,
  33908. bottom: 12/1170
  33909. }
  33910. },
  33911. },
  33912. [
  33913. ]
  33914. ))
  33915. characterMakers.push(() => makeCharacter(
  33916. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33917. {
  33918. side: {
  33919. height: math.unit(12 + 9/12, "feet"),
  33920. weight: math.unit(15000, "lb"),
  33921. name: "Side",
  33922. image: {
  33923. source: "./media/characters/faan/side.svg",
  33924. extra: 2747/2697,
  33925. bottom: 0/2747
  33926. }
  33927. },
  33928. front: {
  33929. height: math.unit(12 + 9/12, "feet"),
  33930. weight: math.unit(15000, "lb"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/faan/front.svg",
  33934. extra: 607/571,
  33935. bottom: 24/631
  33936. }
  33937. },
  33938. head: {
  33939. height: math.unit(2.85, "feet"),
  33940. name: "Head",
  33941. image: {
  33942. source: "./media/characters/faan/head.svg"
  33943. }
  33944. },
  33945. headAlt: {
  33946. height: math.unit(3.13, "feet"),
  33947. name: "Head-alt",
  33948. image: {
  33949. source: "./media/characters/faan/head-alt.svg"
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(12 + 9/12, "feet"),
  33957. default: true
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(6, "feet"),
  33966. weight: math.unit(300, "lb"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/tanio/front.svg",
  33970. extra: 711/673,
  33971. bottom: 25/736
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Normal",
  33978. height: math.unit(6, "feet"),
  33979. default: true
  33980. },
  33981. ]
  33982. ))
  33983. characterMakers.push(() => makeCharacter(
  33984. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33985. {
  33986. front: {
  33987. height: math.unit(3, "inches"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/noboru/front.svg",
  33991. extra: 1039/932,
  33992. bottom: 18/1057
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Micro",
  33999. height: math.unit(3, "inches"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34006. {
  34007. front: {
  34008. height: math.unit(1.85, "meters"),
  34009. weight: math.unit(80, "kg"),
  34010. name: "Front",
  34011. image: {
  34012. source: "./media/characters/daniel-barrett/front.svg",
  34013. extra: 355/337,
  34014. bottom: 9/364
  34015. }
  34016. },
  34017. },
  34018. [
  34019. {
  34020. name: "Pico",
  34021. height: math.unit(0.0433, "mm")
  34022. },
  34023. {
  34024. name: "Nano",
  34025. height: math.unit(1.5, "mm")
  34026. },
  34027. {
  34028. name: "Micro",
  34029. height: math.unit(5.3, "cm"),
  34030. default: true
  34031. },
  34032. {
  34033. name: "Normal",
  34034. height: math.unit(1.85, "meters")
  34035. },
  34036. {
  34037. name: "Macro",
  34038. height: math.unit(64.7, "meters")
  34039. },
  34040. {
  34041. name: "Megamacro",
  34042. height: math.unit(2.26, "km")
  34043. },
  34044. {
  34045. name: "Gigamacro",
  34046. height: math.unit(79, "km")
  34047. },
  34048. {
  34049. name: "Teramacro",
  34050. height: math.unit(2765, "km")
  34051. },
  34052. {
  34053. name: "Petamacro",
  34054. height: math.unit(96678, "km")
  34055. },
  34056. ]
  34057. ))
  34058. characterMakers.push(() => makeCharacter(
  34059. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34060. {
  34061. front: {
  34062. height: math.unit(30, "meters"),
  34063. weight: math.unit(400, "tons"),
  34064. name: "Front",
  34065. image: {
  34066. source: "./media/characters/zeel/front.svg",
  34067. extra: 2599/2599,
  34068. bottom: 226/2825
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Macro",
  34075. height: math.unit(30, "meters"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(6 + 7/12, "feet"),
  34085. weight: math.unit(210, "lb"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/tarn/front.svg",
  34089. extra: 3517/3220,
  34090. bottom: 91/3608
  34091. }
  34092. },
  34093. back: {
  34094. height: math.unit(6 + 7/12, "feet"),
  34095. weight: math.unit(210, "lb"),
  34096. name: "Back",
  34097. image: {
  34098. source: "./media/characters/tarn/back.svg",
  34099. extra: 3566/3241,
  34100. bottom: 34/3600
  34101. }
  34102. },
  34103. dick: {
  34104. height: math.unit(1.65, "feet"),
  34105. name: "Dick",
  34106. image: {
  34107. source: "./media/characters/tarn/dick.svg"
  34108. }
  34109. },
  34110. paw: {
  34111. height: math.unit(1.80, "feet"),
  34112. name: "Paw",
  34113. image: {
  34114. source: "./media/characters/tarn/paw.svg"
  34115. }
  34116. },
  34117. tongue: {
  34118. height: math.unit(0.97, "feet"),
  34119. name: "Tongue",
  34120. image: {
  34121. source: "./media/characters/tarn/tongue.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Micro",
  34128. height: math.unit(4, "inches")
  34129. },
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(6 + 7/12, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Macro",
  34137. height: math.unit(300, "feet")
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(5 + 7/12, "feet"),
  34146. weight: math.unit(80, "kg"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34150. extra: 3023/2865,
  34151. bottom: 33/3056
  34152. }
  34153. },
  34154. back: {
  34155. height: math.unit(5 + 7/12, "feet"),
  34156. weight: math.unit(80, "kg"),
  34157. name: "Back",
  34158. image: {
  34159. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34160. extra: 3020/2886,
  34161. bottom: 30/3050
  34162. }
  34163. },
  34164. dick: {
  34165. height: math.unit(0.98, "feet"),
  34166. name: "Dick",
  34167. image: {
  34168. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34169. }
  34170. },
  34171. anatomy: {
  34172. height: math.unit(2.86, "feet"),
  34173. name: "Anatomy",
  34174. image: {
  34175. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Really Small",
  34182. height: math.unit(2, "inches")
  34183. },
  34184. {
  34185. name: "Micro",
  34186. height: math.unit(5.583, "inches")
  34187. },
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(5 + 7/12, "feet"),
  34191. default: true
  34192. },
  34193. {
  34194. name: "Macro",
  34195. height: math.unit(67, "feet")
  34196. },
  34197. {
  34198. name: "Megamacro",
  34199. height: math.unit(134, "feet")
  34200. },
  34201. ]
  34202. ))
  34203. characterMakers.push(() => makeCharacter(
  34204. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34205. {
  34206. front: {
  34207. height: math.unit(9, "feet"),
  34208. weight: math.unit(120, "lb"),
  34209. name: "Front",
  34210. image: {
  34211. source: "./media/characters/sally/front.svg",
  34212. extra: 1506/1349,
  34213. bottom: 66/1572
  34214. }
  34215. },
  34216. },
  34217. [
  34218. {
  34219. name: "Normal",
  34220. height: math.unit(9, "feet"),
  34221. default: true
  34222. },
  34223. ]
  34224. ))
  34225. characterMakers.push(() => makeCharacter(
  34226. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34227. {
  34228. front: {
  34229. height: math.unit(8, "feet"),
  34230. weight: math.unit(900, "lb"),
  34231. name: "Front",
  34232. image: {
  34233. source: "./media/characters/owen/front.svg",
  34234. extra: 1761/1657,
  34235. bottom: 74/1835
  34236. }
  34237. },
  34238. side: {
  34239. height: math.unit(8, "feet"),
  34240. weight: math.unit(900, "lb"),
  34241. name: "Side",
  34242. image: {
  34243. source: "./media/characters/owen/side.svg",
  34244. extra: 1797/1734,
  34245. bottom: 30/1827
  34246. }
  34247. },
  34248. back: {
  34249. height: math.unit(8, "feet"),
  34250. weight: math.unit(900, "lb"),
  34251. name: "Back",
  34252. image: {
  34253. source: "./media/characters/owen/back.svg",
  34254. extra: 1796/1706,
  34255. bottom: 59/1855
  34256. }
  34257. },
  34258. maw: {
  34259. height: math.unit(1.76, "feet"),
  34260. name: "Maw",
  34261. image: {
  34262. source: "./media/characters/owen/maw.svg"
  34263. }
  34264. },
  34265. },
  34266. [
  34267. {
  34268. name: "Normal",
  34269. height: math.unit(8, "feet"),
  34270. default: true
  34271. },
  34272. ]
  34273. ))
  34274. characterMakers.push(() => makeCharacter(
  34275. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34276. {
  34277. front: {
  34278. height: math.unit(4, "feet"),
  34279. weight: math.unit(400, "lb"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/ryth/front.svg",
  34283. extra: 1920/1748,
  34284. bottom: 42/1962
  34285. }
  34286. },
  34287. back: {
  34288. height: math.unit(4, "feet"),
  34289. weight: math.unit(400, "lb"),
  34290. name: "Back",
  34291. image: {
  34292. source: "./media/characters/ryth/back.svg",
  34293. extra: 1897/1690,
  34294. bottom: 89/1986
  34295. }
  34296. },
  34297. mouth: {
  34298. height: math.unit(1.39, "feet"),
  34299. name: "Mouth",
  34300. image: {
  34301. source: "./media/characters/ryth/mouth.svg"
  34302. }
  34303. },
  34304. tailmaw: {
  34305. height: math.unit(1.23, "feet"),
  34306. name: "Tailmaw",
  34307. image: {
  34308. source: "./media/characters/ryth/tailmaw.svg"
  34309. }
  34310. },
  34311. goia: {
  34312. height: math.unit(4, "meters"),
  34313. weight: math.unit(10800, "lb"),
  34314. name: "Goia",
  34315. image: {
  34316. source: "./media/characters/ryth/goia.svg",
  34317. extra: 745/640,
  34318. bottom: 107/852
  34319. }
  34320. },
  34321. goiaFront: {
  34322. height: math.unit(4, "meters"),
  34323. weight: math.unit(10800, "lb"),
  34324. name: "Goia (Front)",
  34325. image: {
  34326. source: "./media/characters/ryth/goia-front.svg",
  34327. extra: 750/586,
  34328. bottom: 114/864
  34329. }
  34330. },
  34331. goiaMaw: {
  34332. height: math.unit(5.55, "feet"),
  34333. name: "Goia Maw",
  34334. image: {
  34335. source: "./media/characters/ryth/goia-maw.svg"
  34336. }
  34337. },
  34338. goiaForepaw: {
  34339. height: math.unit(3.5, "feet"),
  34340. name: "Goia Forepaw",
  34341. image: {
  34342. source: "./media/characters/ryth/goia-forepaw.svg"
  34343. }
  34344. },
  34345. goiaHindpaw: {
  34346. height: math.unit(5.55, "feet"),
  34347. name: "Goia Hindpaw",
  34348. image: {
  34349. source: "./media/characters/ryth/goia-hindpaw.svg"
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(4, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(7, "feet"),
  34366. weight: math.unit(180, "lb"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/necrolance/front.svg",
  34370. extra: 1062/947,
  34371. bottom: 41/1103
  34372. }
  34373. },
  34374. back: {
  34375. height: math.unit(7, "feet"),
  34376. weight: math.unit(180, "lb"),
  34377. name: "Back",
  34378. image: {
  34379. source: "./media/characters/necrolance/back.svg",
  34380. extra: 1045/984,
  34381. bottom: 14/1059
  34382. }
  34383. },
  34384. wing: {
  34385. height: math.unit(2.67, "feet"),
  34386. name: "Wing",
  34387. image: {
  34388. source: "./media/characters/necrolance/wing.svg"
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(7, "feet"),
  34396. default: true
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34402. {
  34403. front: {
  34404. height: math.unit(76, "meters"),
  34405. weight: math.unit(30000, "tons"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/tyler/front.svg",
  34409. extra: 1640/1640,
  34410. bottom: 114/1754
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Macro",
  34417. height: math.unit(76, "meters"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(4 + 11/12, "feet"),
  34427. weight: math.unit(132, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/icey/front.svg",
  34431. extra: 2750/2550,
  34432. bottom: 33/2783
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(4 + 11/12, "feet"),
  34437. weight: math.unit(132, "lb"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/icey/back.svg",
  34441. extra: 2624/2481,
  34442. bottom: 35/2659
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(4 + 11/12, "feet"),
  34450. default: true
  34451. },
  34452. ]
  34453. ))
  34454. characterMakers.push(() => makeCharacter(
  34455. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34456. {
  34457. front: {
  34458. height: math.unit(100, "feet"),
  34459. weight: math.unit(0, "lb"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/smile/front.svg",
  34463. extra: 2983/2912,
  34464. bottom: 162/3145
  34465. }
  34466. },
  34467. back: {
  34468. height: math.unit(100, "feet"),
  34469. weight: math.unit(0, "lb"),
  34470. name: "Back",
  34471. image: {
  34472. source: "./media/characters/smile/back.svg",
  34473. extra: 3143/3031,
  34474. bottom: 91/3234
  34475. }
  34476. },
  34477. head: {
  34478. height: math.unit(26.3, "feet"),
  34479. weight: math.unit(0, "lb"),
  34480. name: "Head",
  34481. image: {
  34482. source: "./media/characters/smile/head.svg"
  34483. }
  34484. },
  34485. collar: {
  34486. height: math.unit(5.3, "feet"),
  34487. weight: math.unit(0, "lb"),
  34488. name: "Collar",
  34489. image: {
  34490. source: "./media/characters/smile/collar.svg"
  34491. }
  34492. },
  34493. },
  34494. [
  34495. {
  34496. name: "Macro",
  34497. height: math.unit(100, "feet"),
  34498. default: true
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34504. {
  34505. dragon: {
  34506. height: math.unit(26, "feet"),
  34507. weight: math.unit(36, "tons"),
  34508. name: "Dragon",
  34509. image: {
  34510. source: "./media/characters/arimphae/dragon.svg",
  34511. extra: 1574/983,
  34512. bottom: 357/1931
  34513. }
  34514. },
  34515. drake: {
  34516. height: math.unit(9, "feet"),
  34517. weight: math.unit(1.5, "tons"),
  34518. name: "Drake",
  34519. image: {
  34520. source: "./media/characters/arimphae/drake.svg",
  34521. extra: 1120/925,
  34522. bottom: 435/1555
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Small",
  34529. height: math.unit(26*5/9, "feet")
  34530. },
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(26, "feet"),
  34534. default: true
  34535. },
  34536. ]
  34537. ))
  34538. characterMakers.push(() => makeCharacter(
  34539. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34540. {
  34541. front: {
  34542. height: math.unit(8 + 9/12, "feet"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/xander/front.svg",
  34546. extra: 1237/974,
  34547. bottom: 94/1331
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(8 + 9/12, "feet"),
  34555. default: true
  34556. },
  34557. {
  34558. name: "Gaze Grabber",
  34559. height: math.unit(13 + 8/12, "feet")
  34560. },
  34561. {
  34562. name: "Jaw Dropper",
  34563. height: math.unit(27, "feet")
  34564. },
  34565. {
  34566. name: "Show Stopper",
  34567. height: math.unit(136, "feet")
  34568. },
  34569. {
  34570. name: "Superstar",
  34571. height: math.unit(1.9e6, "miles")
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34577. {
  34578. side: {
  34579. height: math.unit(2100, "feet"),
  34580. name: "Side",
  34581. image: {
  34582. source: "./media/characters/osiris/side.svg",
  34583. extra: 1105/939,
  34584. bottom: 167/1272
  34585. }
  34586. },
  34587. },
  34588. [
  34589. {
  34590. name: "Macro",
  34591. height: math.unit(2100, "feet"),
  34592. default: true
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34598. {
  34599. front: {
  34600. height: math.unit(6 + 8/12, "feet"),
  34601. weight: math.unit(225, "lb"),
  34602. name: "Front",
  34603. image: {
  34604. source: "./media/characters/rhys-londe/front.svg",
  34605. extra: 2258/2141,
  34606. bottom: 188/2446
  34607. }
  34608. },
  34609. back: {
  34610. height: math.unit(6 + 8/12, "feet"),
  34611. weight: math.unit(225, "lb"),
  34612. name: "Back",
  34613. image: {
  34614. source: "./media/characters/rhys-londe/back.svg",
  34615. extra: 2237/2137,
  34616. bottom: 63/2300
  34617. }
  34618. },
  34619. frontNsfw: {
  34620. height: math.unit(6 + 8/12, "feet"),
  34621. weight: math.unit(225, "lb"),
  34622. name: "Front (NSFW)",
  34623. image: {
  34624. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34625. extra: 2258/2141,
  34626. bottom: 188/2446
  34627. }
  34628. },
  34629. backNsfw: {
  34630. height: math.unit(6 + 8/12, "feet"),
  34631. weight: math.unit(225, "lb"),
  34632. name: "Back (NSFW)",
  34633. image: {
  34634. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34635. extra: 2237/2137,
  34636. bottom: 63/2300
  34637. }
  34638. },
  34639. dick: {
  34640. height: math.unit(30, "inches"),
  34641. name: "Dick",
  34642. image: {
  34643. source: "./media/characters/rhys-londe/dick.svg"
  34644. }
  34645. },
  34646. maw: {
  34647. height: math.unit(1.6, "feet"),
  34648. name: "Maw",
  34649. image: {
  34650. source: "./media/characters/rhys-londe/maw.svg"
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(6 + 8/12, "feet"),
  34658. default: true
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(3 + 10/12, "feet"),
  34667. weight: math.unit(90, "lb"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/taivas-ensim/front.svg",
  34671. extra: 1327/1216,
  34672. bottom: 96/1423
  34673. }
  34674. },
  34675. back: {
  34676. height: math.unit(3 + 10/12, "feet"),
  34677. weight: math.unit(90, "lb"),
  34678. name: "Back",
  34679. image: {
  34680. source: "./media/characters/taivas-ensim/back.svg",
  34681. extra: 1355/1247,
  34682. bottom: 11/1366
  34683. }
  34684. },
  34685. frontNsfw: {
  34686. height: math.unit(3 + 10/12, "feet"),
  34687. weight: math.unit(90, "lb"),
  34688. name: "Front (NSFW)",
  34689. image: {
  34690. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34691. extra: 1327/1216,
  34692. bottom: 96/1423
  34693. }
  34694. },
  34695. backNsfw: {
  34696. height: math.unit(3 + 10/12, "feet"),
  34697. weight: math.unit(90, "lb"),
  34698. name: "Back (NSFW)",
  34699. image: {
  34700. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34701. extra: 1355/1247,
  34702. bottom: 11/1366
  34703. }
  34704. },
  34705. },
  34706. [
  34707. {
  34708. name: "Normal",
  34709. height: math.unit(3 + 10/12, "feet"),
  34710. default: true
  34711. },
  34712. ]
  34713. ))
  34714. characterMakers.push(() => makeCharacter(
  34715. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34716. {
  34717. front: {
  34718. height: math.unit(9 + 6/12, "feet"),
  34719. weight: math.unit(940, "lb"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/byliss/front.svg",
  34723. extra: 1327/1290,
  34724. bottom: 82/1409
  34725. }
  34726. },
  34727. back: {
  34728. height: math.unit(9 + 6/12, "feet"),
  34729. weight: math.unit(940, "lb"),
  34730. name: "Back",
  34731. image: {
  34732. source: "./media/characters/byliss/back.svg",
  34733. extra: 1376/1349,
  34734. bottom: 9/1385
  34735. }
  34736. },
  34737. frontNsfw: {
  34738. height: math.unit(9 + 6/12, "feet"),
  34739. weight: math.unit(940, "lb"),
  34740. name: "Front (NSFW)",
  34741. image: {
  34742. source: "./media/characters/byliss/front-nsfw.svg",
  34743. extra: 1327/1290,
  34744. bottom: 82/1409
  34745. }
  34746. },
  34747. backNsfw: {
  34748. height: math.unit(9 + 6/12, "feet"),
  34749. weight: math.unit(940, "lb"),
  34750. name: "Back (NSFW)",
  34751. image: {
  34752. source: "./media/characters/byliss/back-nsfw.svg",
  34753. extra: 1376/1349,
  34754. bottom: 9/1385
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(9 + 6/12, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(5 + 2/12, "feet"),
  34771. weight: math.unit(200, "lb"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/noraly/front.svg",
  34775. extra: 4985/4773,
  34776. bottom: 150/5135
  34777. }
  34778. },
  34779. full: {
  34780. height: math.unit(5 + 2/12, "feet"),
  34781. weight: math.unit(164, "lb"),
  34782. name: "Full",
  34783. image: {
  34784. source: "./media/characters/noraly/full.svg",
  34785. extra: 1114/1059,
  34786. bottom: 35/1149
  34787. }
  34788. },
  34789. fuller: {
  34790. height: math.unit(5 + 2/12, "feet"),
  34791. weight: math.unit(230, "lb"),
  34792. name: "Fuller",
  34793. image: {
  34794. source: "./media/characters/noraly/fuller.svg",
  34795. extra: 1114/1059,
  34796. bottom: 35/1149
  34797. }
  34798. },
  34799. fullest: {
  34800. height: math.unit(5 + 2/12, "feet"),
  34801. weight: math.unit(300, "lb"),
  34802. name: "Fullest",
  34803. image: {
  34804. source: "./media/characters/noraly/fullest.svg",
  34805. extra: 1114/1059,
  34806. bottom: 35/1149
  34807. }
  34808. },
  34809. },
  34810. [
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(5 + 2/12, "feet"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34820. {
  34821. front: {
  34822. height: math.unit(5 + 2/12, "feet"),
  34823. weight: math.unit(210, "lb"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/pera/front.svg",
  34827. extra: 1560/1531,
  34828. bottom: 165/1725
  34829. }
  34830. },
  34831. back: {
  34832. height: math.unit(5 + 2/12, "feet"),
  34833. weight: math.unit(210, "lb"),
  34834. name: "Back",
  34835. image: {
  34836. source: "./media/characters/pera/back.svg",
  34837. extra: 1523/1493,
  34838. bottom: 152/1675
  34839. }
  34840. },
  34841. dick: {
  34842. height: math.unit(2.4, "feet"),
  34843. name: "Dick",
  34844. image: {
  34845. source: "./media/characters/pera/dick.svg"
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(5 + 2/12, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(12, "feet"),
  34862. weight: math.unit(3200, "lb"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/julian/front.svg",
  34866. extra: 2962/2701,
  34867. bottom: 184/3146
  34868. }
  34869. },
  34870. maw: {
  34871. height: math.unit(5.35, "feet"),
  34872. name: "Maw",
  34873. image: {
  34874. source: "./media/characters/julian/maw.svg"
  34875. }
  34876. },
  34877. paw: {
  34878. height: math.unit(3.07, "feet"),
  34879. name: "Paw",
  34880. image: {
  34881. source: "./media/characters/julian/paw.svg"
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Default",
  34888. height: math.unit(12, "feet"),
  34889. default: true
  34890. },
  34891. {
  34892. name: "Big",
  34893. height: math.unit(50, "feet")
  34894. },
  34895. {
  34896. name: "Really Big",
  34897. height: math.unit(1, "mile")
  34898. },
  34899. {
  34900. name: "Extremely Big",
  34901. height: math.unit(100, "miles")
  34902. },
  34903. {
  34904. name: "Planet Hugger",
  34905. height: math.unit(200, "megameters")
  34906. },
  34907. {
  34908. name: "Unreasonably Big",
  34909. height: math.unit(1e300, "meters")
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34915. {
  34916. solgooleo: {
  34917. height: math.unit(4, "meters"),
  34918. weight: math.unit(6000*1.5, "kg"),
  34919. volume: math.unit(6000, "liters"),
  34920. name: "Solgooleo",
  34921. image: {
  34922. source: "./media/characters/pi/solgooleo.svg",
  34923. extra: 388/331,
  34924. bottom: 29/417
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(4, "meters"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(8, "feet"),
  34941. weight: math.unit(4, "tons"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/shaun/front.svg",
  34945. extra: 503/495,
  34946. bottom: 20/523
  34947. }
  34948. },
  34949. back: {
  34950. height: math.unit(8, "feet"),
  34951. weight: math.unit(4, "tons"),
  34952. name: "Back",
  34953. image: {
  34954. source: "./media/characters/shaun/back.svg",
  34955. extra: 487/480,
  34956. bottom: 20/507
  34957. }
  34958. },
  34959. },
  34960. [
  34961. {
  34962. name: "Lorg",
  34963. height: math.unit(8, "feet"),
  34964. default: true
  34965. },
  34966. ]
  34967. ))
  34968. characterMakers.push(() => makeCharacter(
  34969. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34970. {
  34971. frontAnthro: {
  34972. height: math.unit(7, "feet"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/sini/front-anthro.svg",
  34976. extra: 726/678,
  34977. bottom: 35/761
  34978. },
  34979. form: "anthro",
  34980. default: true
  34981. },
  34982. backAnthro: {
  34983. height: math.unit(7, "feet"),
  34984. name: "Back",
  34985. image: {
  34986. source: "./media/characters/sini/back-anthro.svg",
  34987. extra: 743/701,
  34988. bottom: 12/755
  34989. },
  34990. form: "anthro",
  34991. },
  34992. frontAnthroNsfw: {
  34993. height: math.unit(7, "feet"),
  34994. name: "Front (NSFW)",
  34995. image: {
  34996. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34997. extra: 726/678,
  34998. bottom: 35/761
  34999. },
  35000. form: "anthro"
  35001. },
  35002. backAnthroNsfw: {
  35003. height: math.unit(7, "feet"),
  35004. name: "Back (NSFW)",
  35005. image: {
  35006. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35007. extra: 743/701,
  35008. bottom: 12/755
  35009. },
  35010. form: "anthro",
  35011. },
  35012. mawAnthro: {
  35013. height: math.unit(2.14, "feet"),
  35014. name: "Maw",
  35015. image: {
  35016. source: "./media/characters/sini/maw-anthro.svg"
  35017. },
  35018. form: "anthro"
  35019. },
  35020. dick: {
  35021. height: math.unit(1.45, "feet"),
  35022. name: "Dick",
  35023. image: {
  35024. source: "./media/characters/sini/dick-anthro.svg"
  35025. },
  35026. form: "anthro"
  35027. },
  35028. feral: {
  35029. height: math.unit(16, "feet"),
  35030. name: "Feral",
  35031. image: {
  35032. source: "./media/characters/sini/feral.svg",
  35033. extra: 814/605,
  35034. bottom: 11/825
  35035. },
  35036. form: "feral",
  35037. default: true
  35038. },
  35039. feralNsfw: {
  35040. height: math.unit(16, "feet"),
  35041. name: "Feral (NSFW)",
  35042. image: {
  35043. source: "./media/characters/sini/feral-nsfw.svg",
  35044. extra: 814/605,
  35045. bottom: 11/825
  35046. },
  35047. form: "feral"
  35048. },
  35049. mawFeral: {
  35050. height: math.unit(5.66, "feet"),
  35051. name: "Maw",
  35052. image: {
  35053. source: "./media/characters/sini/maw-feral.svg"
  35054. },
  35055. form: "feral",
  35056. },
  35057. pawFeral: {
  35058. height: math.unit(5.17, "feet"),
  35059. name: "Paw",
  35060. image: {
  35061. source: "./media/characters/sini/paw-feral.svg"
  35062. },
  35063. form: "feral",
  35064. },
  35065. rumpFeral: {
  35066. height: math.unit(13.11, "feet"),
  35067. name: "Rump",
  35068. image: {
  35069. source: "./media/characters/sini/rump-feral.svg"
  35070. },
  35071. form: "feral",
  35072. },
  35073. dickFeral: {
  35074. height: math.unit(1, "feet"),
  35075. name: "Dick",
  35076. image: {
  35077. source: "./media/characters/sini/dick-feral.svg"
  35078. },
  35079. form: "feral",
  35080. },
  35081. eyeFeral: {
  35082. height: math.unit(1.23, "feet"),
  35083. name: "Eye",
  35084. image: {
  35085. source: "./media/characters/sini/eye-feral.svg"
  35086. },
  35087. form: "feral",
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(7, "feet"),
  35094. default: true,
  35095. form: "anthro"
  35096. },
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(16, "feet"),
  35100. default: true,
  35101. form: "feral"
  35102. },
  35103. ],
  35104. {
  35105. "anthro": {
  35106. name: "Anthro",
  35107. default: true
  35108. },
  35109. "feral": {
  35110. name: "Feral",
  35111. }
  35112. }
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35116. {
  35117. side: {
  35118. height: math.unit(47.2, "meters"),
  35119. weight: math.unit(10000, "tons"),
  35120. name: "Side",
  35121. image: {
  35122. source: "./media/characters/raylldo/side.svg",
  35123. extra: 2363/642,
  35124. bottom: 221/2584
  35125. }
  35126. },
  35127. top: {
  35128. height: math.unit(240, "meters"),
  35129. weight: math.unit(10000, "tons"),
  35130. name: "Top",
  35131. image: {
  35132. source: "./media/characters/raylldo/top.svg"
  35133. }
  35134. },
  35135. bottom: {
  35136. height: math.unit(240, "meters"),
  35137. weight: math.unit(10000, "tons"),
  35138. name: "Bottom",
  35139. image: {
  35140. source: "./media/characters/raylldo/bottom.svg"
  35141. }
  35142. },
  35143. head: {
  35144. height: math.unit(38.6, "meters"),
  35145. name: "Head",
  35146. image: {
  35147. source: "./media/characters/raylldo/head.svg",
  35148. extra: 1335/1112,
  35149. bottom: 0/1335
  35150. }
  35151. },
  35152. maw: {
  35153. height: math.unit(16.37, "meters"),
  35154. name: "Maw",
  35155. image: {
  35156. source: "./media/characters/raylldo/maw.svg",
  35157. extra: 883/660,
  35158. bottom: 0/883
  35159. },
  35160. extraAttributes: {
  35161. preyCapacity: {
  35162. name: "Capacity",
  35163. power: 3,
  35164. type: "volume",
  35165. base: math.unit(1000, "people")
  35166. },
  35167. tongueSize: {
  35168. name: "Tongue Size",
  35169. power: 2,
  35170. type: "area",
  35171. base: math.unit(21, "m^2")
  35172. }
  35173. }
  35174. },
  35175. forepaw: {
  35176. height: math.unit(18, "meters"),
  35177. name: "Forepaw",
  35178. image: {
  35179. source: "./media/characters/raylldo/forepaw.svg"
  35180. }
  35181. },
  35182. hindpaw: {
  35183. height: math.unit(23, "meters"),
  35184. name: "Hindpaw",
  35185. image: {
  35186. source: "./media/characters/raylldo/hindpaw.svg"
  35187. }
  35188. },
  35189. genitals: {
  35190. height: math.unit(42, "meters"),
  35191. name: "Genitals",
  35192. image: {
  35193. source: "./media/characters/raylldo/genitals.svg"
  35194. }
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(47.2, "meters"),
  35201. default: true
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35207. {
  35208. anthroFront: {
  35209. height: math.unit(9, "feet"),
  35210. weight: math.unit(600, "lb"),
  35211. name: "Anthro (Front)",
  35212. image: {
  35213. source: "./media/characters/glint/anthro-front.svg",
  35214. extra: 1097/1018,
  35215. bottom: 28/1125
  35216. }
  35217. },
  35218. anthroBack: {
  35219. height: math.unit(9, "feet"),
  35220. weight: math.unit(600, "lb"),
  35221. name: "Anthro (Back)",
  35222. image: {
  35223. source: "./media/characters/glint/anthro-back.svg",
  35224. extra: 1154/997,
  35225. bottom: 36/1190
  35226. }
  35227. },
  35228. feral: {
  35229. height: math.unit(11, "feet"),
  35230. weight: math.unit(50000, "lb"),
  35231. name: "Feral",
  35232. image: {
  35233. source: "./media/characters/glint/feral.svg",
  35234. extra: 3035/1585,
  35235. bottom: 1169/4204
  35236. }
  35237. },
  35238. dickAnthro: {
  35239. height: math.unit(0.7, "meters"),
  35240. name: "Dick (Anthro)",
  35241. image: {
  35242. source: "./media/characters/glint/dick-anthro.svg"
  35243. }
  35244. },
  35245. dickFeral: {
  35246. height: math.unit(2.65, "meters"),
  35247. name: "Dick (Feral)",
  35248. image: {
  35249. source: "./media/characters/glint/dick-feral.svg"
  35250. }
  35251. },
  35252. slitHidden: {
  35253. height: math.unit(5.85, "meters"),
  35254. name: "Slit (Hidden)",
  35255. image: {
  35256. source: "./media/characters/glint/slit-hidden.svg"
  35257. }
  35258. },
  35259. slitErect: {
  35260. height: math.unit(5.85, "meters"),
  35261. name: "Slit (Erect)",
  35262. image: {
  35263. source: "./media/characters/glint/slit-erect.svg"
  35264. }
  35265. },
  35266. mawAnthro: {
  35267. height: math.unit(0.63, "meters"),
  35268. name: "Maw (Anthro)",
  35269. image: {
  35270. source: "./media/characters/glint/maw.svg"
  35271. }
  35272. },
  35273. mawFeral: {
  35274. height: math.unit(2.89, "meters"),
  35275. name: "Maw (Feral)",
  35276. image: {
  35277. source: "./media/characters/glint/maw.svg"
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(9, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35291. {
  35292. side: {
  35293. height: math.unit(15, "feet"),
  35294. weight: math.unit(5000, "kg"),
  35295. name: "Side",
  35296. image: {
  35297. source: "./media/characters/kairne/side.svg",
  35298. extra: 979/811,
  35299. bottom: 13/992
  35300. }
  35301. },
  35302. front: {
  35303. height: math.unit(15, "feet"),
  35304. weight: math.unit(5000, "kg"),
  35305. name: "Front",
  35306. image: {
  35307. source: "./media/characters/kairne/front.svg",
  35308. extra: 908/814,
  35309. bottom: 26/934
  35310. }
  35311. },
  35312. sideNsfw: {
  35313. height: math.unit(15, "feet"),
  35314. weight: math.unit(5000, "kg"),
  35315. name: "Side (NSFW)",
  35316. image: {
  35317. source: "./media/characters/kairne/side-nsfw.svg",
  35318. extra: 979/811,
  35319. bottom: 13/992
  35320. }
  35321. },
  35322. frontNsfw: {
  35323. height: math.unit(15, "feet"),
  35324. weight: math.unit(5000, "kg"),
  35325. name: "Front (NSFW)",
  35326. image: {
  35327. source: "./media/characters/kairne/front-nsfw.svg",
  35328. extra: 908/814,
  35329. bottom: 26/934
  35330. }
  35331. },
  35332. dickCaged: {
  35333. height: math.unit(0.65, "meters"),
  35334. name: "Dick-caged",
  35335. image: {
  35336. source: "./media/characters/kairne/dick-caged.svg"
  35337. }
  35338. },
  35339. dick: {
  35340. height: math.unit(0.79, "meters"),
  35341. name: "Dick",
  35342. image: {
  35343. source: "./media/characters/kairne/dick.svg"
  35344. }
  35345. },
  35346. genitals: {
  35347. height: math.unit(1.29, "meters"),
  35348. name: "Genitals",
  35349. image: {
  35350. source: "./media/characters/kairne/genitals.svg"
  35351. }
  35352. },
  35353. maw: {
  35354. height: math.unit(1.73, "meters"),
  35355. name: "Maw",
  35356. image: {
  35357. source: "./media/characters/kairne/maw.svg"
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(15, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(5 + 8/12, "feet"),
  35374. weight: math.unit(139, "lb"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/biscuit-jackal/front.svg",
  35378. extra: 2106/1961,
  35379. bottom: 58/2164
  35380. }
  35381. },
  35382. back: {
  35383. height: math.unit(5 + 8/12, "feet"),
  35384. weight: math.unit(139, "lb"),
  35385. name: "Back",
  35386. image: {
  35387. source: "./media/characters/biscuit-jackal/back.svg",
  35388. extra: 2132/1976,
  35389. bottom: 57/2189
  35390. }
  35391. },
  35392. werejackal: {
  35393. height: math.unit(6 + 3/12, "feet"),
  35394. weight: math.unit(188, "lb"),
  35395. name: "Werejackal",
  35396. image: {
  35397. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35398. extra: 2373/2178,
  35399. bottom: 53/2426
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(5 + 8/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(140, "cm"),
  35416. weight: math.unit(45, "kg"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/tayra-white/front.svg",
  35420. extra: 2229/2192,
  35421. bottom: 75/2304
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(140, "cm"),
  35429. default: true
  35430. },
  35431. ]
  35432. ))
  35433. characterMakers.push(() => makeCharacter(
  35434. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35435. {
  35436. front: {
  35437. height: math.unit(4 + 5/12, "feet"),
  35438. name: "Front",
  35439. image: {
  35440. source: "./media/characters/scoop/front.svg",
  35441. extra: 1257/1136,
  35442. bottom: 69/1326
  35443. }
  35444. },
  35445. back: {
  35446. height: math.unit(4 + 5/12, "feet"),
  35447. name: "Back",
  35448. image: {
  35449. source: "./media/characters/scoop/back.svg",
  35450. extra: 1321/1152,
  35451. bottom: 32/1353
  35452. }
  35453. },
  35454. maw: {
  35455. height: math.unit(0.68, "feet"),
  35456. name: "Maw",
  35457. image: {
  35458. source: "./media/characters/scoop/maw.svg"
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Really Small",
  35465. height: math.unit(1, "mm")
  35466. },
  35467. {
  35468. name: "Micro",
  35469. height: math.unit(1, "inch")
  35470. },
  35471. {
  35472. name: "Normal",
  35473. height: math.unit(4 + 5/12, "feet"),
  35474. default: true
  35475. },
  35476. {
  35477. name: "Macro",
  35478. height: math.unit(200, "feet")
  35479. },
  35480. {
  35481. name: "Megamacro",
  35482. height: math.unit(3240, "feet")
  35483. },
  35484. {
  35485. name: "Teramacro",
  35486. height: math.unit(2500, "miles")
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(15 + 7/12, "feet"),
  35495. weight: math.unit(1150, "tons"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/saphinara/front.svg",
  35499. extra: 1837/1643,
  35500. bottom: 84/1921
  35501. },
  35502. form: "normal",
  35503. default: true
  35504. },
  35505. side: {
  35506. height: math.unit(15 + 7/12, "feet"),
  35507. weight: math.unit(1150, "tons"),
  35508. name: "Side",
  35509. image: {
  35510. source: "./media/characters/saphinara/side.svg",
  35511. extra: 605/547,
  35512. bottom: 6/611
  35513. },
  35514. form: "normal"
  35515. },
  35516. back: {
  35517. height: math.unit(15 + 7/12, "feet"),
  35518. weight: math.unit(1150, "tons"),
  35519. name: "Back",
  35520. image: {
  35521. source: "./media/characters/saphinara/back.svg",
  35522. extra: 591/531,
  35523. bottom: 13/604
  35524. },
  35525. form: "normal"
  35526. },
  35527. frontTail: {
  35528. height: math.unit(15 + 7/12, "feet"),
  35529. weight: math.unit(1150, "tons"),
  35530. name: "Front (Full Tail)",
  35531. image: {
  35532. source: "./media/characters/saphinara/front-tail.svg",
  35533. extra: 2256/1630,
  35534. bottom: 261/2517
  35535. },
  35536. form: "normal"
  35537. },
  35538. insides: {
  35539. height: math.unit(11.92, "feet"),
  35540. name: "Insides",
  35541. image: {
  35542. source: "./media/characters/saphinara/insides.svg"
  35543. },
  35544. form: "normal"
  35545. },
  35546. head: {
  35547. height: math.unit(4.17, "feet"),
  35548. name: "Head",
  35549. image: {
  35550. source: "./media/characters/saphinara/head.svg"
  35551. },
  35552. form: "normal"
  35553. },
  35554. tongue: {
  35555. height: math.unit(4.60, "feet"),
  35556. name: "Tongue",
  35557. image: {
  35558. source: "./media/characters/saphinara/tongue.svg"
  35559. },
  35560. form: "normal"
  35561. },
  35562. headEnraged: {
  35563. height: math.unit(5.55, "feet"),
  35564. name: "Head (Enraged)",
  35565. image: {
  35566. source: "./media/characters/saphinara/head-enraged.svg"
  35567. },
  35568. form: "normal"
  35569. },
  35570. wings: {
  35571. height: math.unit(11.95, "feet"),
  35572. name: "Wings",
  35573. image: {
  35574. source: "./media/characters/saphinara/wings.svg"
  35575. },
  35576. form: "normal"
  35577. },
  35578. feathers: {
  35579. height: math.unit(8.92, "feet"),
  35580. name: "Feathers",
  35581. image: {
  35582. source: "./media/characters/saphinara/feathers.svg"
  35583. },
  35584. form: "normal"
  35585. },
  35586. shackles: {
  35587. height: math.unit(2, "feet"),
  35588. name: "Shackles",
  35589. image: {
  35590. source: "./media/characters/saphinara/shackles.svg"
  35591. },
  35592. form: "normal"
  35593. },
  35594. eyes: {
  35595. height: math.unit(1.331, "feet"),
  35596. name: "Eyes",
  35597. image: {
  35598. source: "./media/characters/saphinara/eyes.svg"
  35599. },
  35600. form: "normal"
  35601. },
  35602. eyesEnraged: {
  35603. height: math.unit(1.331, "feet"),
  35604. name: "Eyes (Enraged)",
  35605. image: {
  35606. source: "./media/characters/saphinara/eyes-enraged.svg"
  35607. },
  35608. form: "normal"
  35609. },
  35610. trueFormSide: {
  35611. height: math.unit(200, "feet"),
  35612. weight: math.unit(1e7, "tons"),
  35613. name: "Side",
  35614. image: {
  35615. source: "./media/characters/saphinara/true-form-side.svg",
  35616. extra: 1399/770,
  35617. bottom: 97/1496
  35618. },
  35619. form: "true-form",
  35620. default: true
  35621. },
  35622. trueFormMaw: {
  35623. height: math.unit(71.5, "feet"),
  35624. name: "Maw",
  35625. image: {
  35626. source: "./media/characters/saphinara/true-form-maw.svg",
  35627. extra: 2302/1453,
  35628. bottom: 0/2302
  35629. },
  35630. form: "true-form"
  35631. },
  35632. meowberusSide: {
  35633. height: math.unit(75, "feet"),
  35634. weight: math.unit(180000, "kg"),
  35635. preyCapacity: math.unit(50000, "people"),
  35636. name: "Side",
  35637. image: {
  35638. source: "./media/characters/saphinara/meowberus-side.svg",
  35639. extra: 1400/711,
  35640. bottom: 126/1526
  35641. },
  35642. form: "meowberus",
  35643. extraAttributes: {
  35644. "pawArea": {
  35645. name: "Paw Size",
  35646. power: 2,
  35647. type: "area",
  35648. base: math.unit(35, "m^2")
  35649. }
  35650. }
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "Normal",
  35656. height: math.unit(15 + 7/12, "feet"),
  35657. default: true,
  35658. form: "normal"
  35659. },
  35660. {
  35661. name: "Angry",
  35662. height: math.unit(30 + 6/12, "feet"),
  35663. form: "normal"
  35664. },
  35665. {
  35666. name: "Enraged",
  35667. height: math.unit(102 + 1/12, "feet"),
  35668. form: "normal"
  35669. },
  35670. {
  35671. name: "True",
  35672. height: math.unit(200, "feet"),
  35673. default: true,
  35674. form: "true-form"
  35675. },
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(75, "feet"),
  35679. default: true,
  35680. form: "meowberus"
  35681. },
  35682. ],
  35683. {
  35684. "normal": {
  35685. name: "Normal",
  35686. default: true
  35687. },
  35688. "true-form": {
  35689. name: "True Form"
  35690. },
  35691. "meowberus": {
  35692. name: "Meowberus",
  35693. },
  35694. }
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35698. {
  35699. front: {
  35700. height: math.unit(6 + 8/12, "feet"),
  35701. weight: math.unit(300, "lb"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/jrain/front.svg",
  35705. extra: 3039/2865,
  35706. bottom: 399/3438
  35707. }
  35708. },
  35709. back: {
  35710. height: math.unit(6 + 8/12, "feet"),
  35711. weight: math.unit(300, "lb"),
  35712. name: "Back",
  35713. image: {
  35714. source: "./media/characters/jrain/back.svg",
  35715. extra: 3089/2938,
  35716. bottom: 172/3261
  35717. }
  35718. },
  35719. head: {
  35720. height: math.unit(2.14, "feet"),
  35721. name: "Head",
  35722. image: {
  35723. source: "./media/characters/jrain/head.svg"
  35724. }
  35725. },
  35726. maw: {
  35727. height: math.unit(1.77, "feet"),
  35728. name: "Maw",
  35729. image: {
  35730. source: "./media/characters/jrain/maw.svg"
  35731. }
  35732. },
  35733. leftHand: {
  35734. height: math.unit(1.1, "feet"),
  35735. name: "Left Hand",
  35736. image: {
  35737. source: "./media/characters/jrain/left-hand.svg"
  35738. }
  35739. },
  35740. rightHand: {
  35741. height: math.unit(1.1, "feet"),
  35742. name: "Right Hand",
  35743. image: {
  35744. source: "./media/characters/jrain/right-hand.svg"
  35745. }
  35746. },
  35747. eye: {
  35748. height: math.unit(0.35, "feet"),
  35749. name: "Eye",
  35750. image: {
  35751. source: "./media/characters/jrain/eye.svg"
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Normal",
  35758. height: math.unit(6 + 8/12, "feet"),
  35759. default: true
  35760. },
  35761. {
  35762. name: "Casually Large",
  35763. height: math.unit(25, "feet")
  35764. },
  35765. {
  35766. name: "Giant",
  35767. height: math.unit(100, "feet")
  35768. },
  35769. {
  35770. name: "Kaiju",
  35771. height: math.unit(300, "feet")
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35777. {
  35778. dragon: {
  35779. height: math.unit(5, "meters"),
  35780. name: "Dragon",
  35781. image: {
  35782. source: "./media/characters/sabrina/dragon.svg",
  35783. extra: 3670 / 2365,
  35784. bottom: 333 / 4003
  35785. }
  35786. },
  35787. gryphon: {
  35788. height: math.unit(3, "meters"),
  35789. name: "Gryphon",
  35790. image: {
  35791. source: "./media/characters/sabrina/gryphon.svg",
  35792. extra: 1576 / 945,
  35793. bottom: 71 / 1647
  35794. }
  35795. },
  35796. snake: {
  35797. height: math.unit(12, "meters"),
  35798. name: "Snake",
  35799. image: {
  35800. source: "./media/characters/sabrina/snake.svg",
  35801. extra: 1758 / 1320,
  35802. bottom: 186 / 1944
  35803. }
  35804. },
  35805. collar: {
  35806. height: math.unit(1.86, "meters"),
  35807. name: "Collar",
  35808. image: {
  35809. source: "./media/characters/sabrina/collar.svg"
  35810. }
  35811. },
  35812. eye: {
  35813. height: math.unit(0.53, "meters"),
  35814. name: "Eye",
  35815. image: {
  35816. source: "./media/characters/sabrina/eye.svg"
  35817. }
  35818. },
  35819. foot: {
  35820. height: math.unit(1.86, "meters"),
  35821. name: "Foot",
  35822. image: {
  35823. source: "./media/characters/sabrina/foot.svg"
  35824. }
  35825. },
  35826. hand: {
  35827. height: math.unit(1.32, "meters"),
  35828. name: "Hand",
  35829. image: {
  35830. source: "./media/characters/sabrina/hand.svg"
  35831. }
  35832. },
  35833. head: {
  35834. height: math.unit(2.44, "meters"),
  35835. name: "Head",
  35836. image: {
  35837. source: "./media/characters/sabrina/head.svg"
  35838. }
  35839. },
  35840. headAngry: {
  35841. height: math.unit(2.44, "meters"),
  35842. name: "Head (Angry))",
  35843. image: {
  35844. source: "./media/characters/sabrina/head-angry.svg"
  35845. }
  35846. },
  35847. maw: {
  35848. height: math.unit(1.65, "meters"),
  35849. name: "Maw",
  35850. image: {
  35851. source: "./media/characters/sabrina/maw.svg"
  35852. }
  35853. },
  35854. spikes: {
  35855. height: math.unit(1.69, "meters"),
  35856. name: "Spikes",
  35857. image: {
  35858. source: "./media/characters/sabrina/spikes.svg"
  35859. }
  35860. },
  35861. stomach: {
  35862. height: math.unit(1.15, "meters"),
  35863. name: "Stomach",
  35864. image: {
  35865. source: "./media/characters/sabrina/stomach.svg"
  35866. }
  35867. },
  35868. tongue: {
  35869. height: math.unit(1.27, "meters"),
  35870. name: "Tongue",
  35871. image: {
  35872. source: "./media/characters/sabrina/tongue.svg"
  35873. }
  35874. },
  35875. wingDorsal: {
  35876. height: math.unit(4.85, "meters"),
  35877. name: "Wing (Dorsal)",
  35878. image: {
  35879. source: "./media/characters/sabrina/wing-dorsal.svg"
  35880. }
  35881. },
  35882. wingVentral: {
  35883. height: math.unit(4.85, "meters"),
  35884. name: "Wing (Ventral)",
  35885. image: {
  35886. source: "./media/characters/sabrina/wing-ventral.svg"
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Normal",
  35893. height: math.unit(5, "meters"),
  35894. default: true
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35900. {
  35901. frontMaid: {
  35902. height: math.unit(5 + 5/12, "feet"),
  35903. weight: math.unit(130, "lb"),
  35904. name: "Front (Maid)",
  35905. image: {
  35906. source: "./media/characters/midnight-tales/front-maid.svg",
  35907. extra: 489/454,
  35908. bottom: 61/550
  35909. }
  35910. },
  35911. frontFormal: {
  35912. height: math.unit(5 + 5/12, "feet"),
  35913. weight: math.unit(130, "lb"),
  35914. name: "Front (Formal)",
  35915. image: {
  35916. source: "./media/characters/midnight-tales/front-formal.svg",
  35917. extra: 489/454,
  35918. bottom: 61/550
  35919. }
  35920. },
  35921. back: {
  35922. height: math.unit(5 + 5/12, "feet"),
  35923. weight: math.unit(130, "lb"),
  35924. name: "Back",
  35925. image: {
  35926. source: "./media/characters/midnight-tales/back.svg",
  35927. extra: 498/456,
  35928. bottom: 33/531
  35929. }
  35930. },
  35931. frontBeast: {
  35932. height: math.unit(40, "feet"),
  35933. weight: math.unit(64000, "lb"),
  35934. name: "Front (Beast)",
  35935. image: {
  35936. source: "./media/characters/midnight-tales/front-beast.svg",
  35937. extra: 927/860,
  35938. bottom: 53/980
  35939. }
  35940. },
  35941. backBeast: {
  35942. height: math.unit(40, "feet"),
  35943. weight: math.unit(64000, "lb"),
  35944. name: "Back (Beast)",
  35945. image: {
  35946. source: "./media/characters/midnight-tales/back-beast.svg",
  35947. extra: 929/855,
  35948. bottom: 16/945
  35949. }
  35950. },
  35951. footBeast: {
  35952. height: math.unit(6.7, "feet"),
  35953. name: "Foot (Beast)",
  35954. image: {
  35955. source: "./media/characters/midnight-tales/foot-beast.svg"
  35956. }
  35957. },
  35958. headBeast: {
  35959. height: math.unit(8, "feet"),
  35960. name: "Head (Beast)",
  35961. image: {
  35962. source: "./media/characters/midnight-tales/head-beast.svg"
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Normal",
  35969. height: math.unit(5 + 5 / 12, "feet"),
  35970. default: true
  35971. },
  35972. {
  35973. name: "Macro",
  35974. height: math.unit(25, "feet")
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(5 + 10/12, "feet"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/argon/front.svg",
  35986. extra: 2009/1935,
  35987. bottom: 118/2127
  35988. }
  35989. },
  35990. back: {
  35991. height: math.unit(5 + 10/12, "feet"),
  35992. name: "Back",
  35993. image: {
  35994. source: "./media/characters/argon/back.svg",
  35995. extra: 2047/1992,
  35996. bottom: 20/2067
  35997. }
  35998. },
  35999. frontDressed: {
  36000. height: math.unit(5 + 10/12, "feet"),
  36001. name: "Front (Dressed)",
  36002. image: {
  36003. source: "./media/characters/argon/front-dressed.svg",
  36004. extra: 2009/1935,
  36005. bottom: 118/2127
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(5 + 10/12, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36019. {
  36020. front: {
  36021. height: math.unit(8 + 6/12, "feet"),
  36022. weight: math.unit(1150, "lb"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/kichi/front.svg",
  36026. extra: 1267/1164,
  36027. bottom: 61/1328
  36028. }
  36029. },
  36030. back: {
  36031. height: math.unit(8 + 6/12, "feet"),
  36032. weight: math.unit(1150, "lb"),
  36033. name: "Back",
  36034. image: {
  36035. source: "./media/characters/kichi/back.svg",
  36036. extra: 1273/1166,
  36037. bottom: 33/1306
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Normal",
  36044. height: math.unit(8 + 6/12, "feet"),
  36045. default: true
  36046. },
  36047. ]
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(6, "feet"),
  36054. weight: math.unit(210, "lb"),
  36055. name: "Front",
  36056. image: {
  36057. source: "./media/characters/manetel-greyscale/front.svg",
  36058. extra: 350/312,
  36059. bottom: 8/358
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Micro",
  36066. height: math.unit(2, "inches")
  36067. },
  36068. {
  36069. name: "Normal",
  36070. height: math.unit(6, "feet"),
  36071. default: true
  36072. },
  36073. {
  36074. name: "Minimacro",
  36075. height: math.unit(17, "feet")
  36076. },
  36077. {
  36078. name: "Macro",
  36079. height: math.unit(117, "feet")
  36080. },
  36081. ]
  36082. ))
  36083. characterMakers.push(() => makeCharacter(
  36084. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36085. {
  36086. side: {
  36087. height: math.unit(5 + 1/12, "feet"),
  36088. weight: math.unit(418, "lb"),
  36089. name: "Side",
  36090. image: {
  36091. source: "./media/characters/softpurr/side.svg",
  36092. extra: 1993/1945,
  36093. bottom: 134/2127
  36094. }
  36095. },
  36096. front: {
  36097. height: math.unit(5 + 1/12, "feet"),
  36098. weight: math.unit(418, "lb"),
  36099. name: "Front",
  36100. image: {
  36101. source: "./media/characters/softpurr/front.svg",
  36102. extra: 1950/1856,
  36103. bottom: 174/2124
  36104. }
  36105. },
  36106. paw: {
  36107. height: math.unit(1, "feet"),
  36108. name: "Paw",
  36109. image: {
  36110. source: "./media/characters/softpurr/paw.svg"
  36111. }
  36112. },
  36113. },
  36114. [
  36115. {
  36116. name: "Normal",
  36117. height: math.unit(5 + 1/12, "feet"),
  36118. default: true
  36119. },
  36120. ]
  36121. ))
  36122. characterMakers.push(() => makeCharacter(
  36123. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36124. {
  36125. front: {
  36126. height: math.unit(260, "meters"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/anahita/front.svg",
  36130. extra: 665/635,
  36131. bottom: 89/754
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Macro",
  36138. height: math.unit(260, "meters"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(4 + 10/12, "feet"),
  36148. weight: math.unit(160, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/chip-mouse/front.svg",
  36152. extra: 3528/3408,
  36153. bottom: 0/3528
  36154. }
  36155. },
  36156. frontNsfw: {
  36157. height: math.unit(4 + 10/12, "feet"),
  36158. weight: math.unit(160, "lb"),
  36159. name: "Front (NSFW)",
  36160. image: {
  36161. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36162. extra: 3528/3408,
  36163. bottom: 0/3528
  36164. }
  36165. },
  36166. },
  36167. [
  36168. {
  36169. name: "Normal",
  36170. height: math.unit(4 + 10/12, "feet"),
  36171. default: true
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36177. {
  36178. side: {
  36179. height: math.unit(10, "feet"),
  36180. weight: math.unit(14000, "lb"),
  36181. name: "Side",
  36182. image: {
  36183. source: "./media/characters/kremm/side.svg",
  36184. extra: 1390/1053,
  36185. bottom: 90/1480
  36186. }
  36187. },
  36188. gut: {
  36189. height: math.unit(5.8, "feet"),
  36190. name: "Gut",
  36191. image: {
  36192. source: "./media/characters/kremm/gut.svg"
  36193. }
  36194. },
  36195. ass: {
  36196. height: math.unit(6.1, "feet"),
  36197. name: "Ass",
  36198. image: {
  36199. source: "./media/characters/kremm/ass.svg"
  36200. }
  36201. },
  36202. jaws: {
  36203. height: math.unit(2.2, "feet"),
  36204. name: "Jaws",
  36205. image: {
  36206. source: "./media/characters/kremm/jaws.svg"
  36207. }
  36208. },
  36209. dick: {
  36210. height: math.unit(4.26, "feet"),
  36211. name: "Dick",
  36212. image: {
  36213. source: "./media/characters/kremm/dick.svg"
  36214. }
  36215. },
  36216. },
  36217. [
  36218. {
  36219. name: "Normal",
  36220. height: math.unit(10, "feet"),
  36221. default: true
  36222. },
  36223. ]
  36224. ))
  36225. characterMakers.push(() => makeCharacter(
  36226. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36227. {
  36228. front: {
  36229. height: math.unit(30, "stories"),
  36230. name: "Front",
  36231. image: {
  36232. source: "./media/characters/kai/front.svg",
  36233. extra: 1892/1718,
  36234. bottom: 162/2054
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Macro",
  36241. height: math.unit(30, "stories"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36248. {
  36249. front: {
  36250. height: math.unit(6 + 4/12, "feet"),
  36251. weight: math.unit(145, "lb"),
  36252. name: "Front",
  36253. image: {
  36254. source: "./media/characters/sykes/front.svg",
  36255. extra: 1321 / 1187,
  36256. bottom: 66 / 1387
  36257. }
  36258. },
  36259. back: {
  36260. height: math.unit(6 + 4/12, "feet"),
  36261. weight: math.unit(145, "lb"),
  36262. name: "Back",
  36263. image: {
  36264. source: "./media/characters/sykes/back.svg",
  36265. extra: 1326/1181,
  36266. bottom: 31/1357
  36267. }
  36268. },
  36269. traditionalOutfit: {
  36270. height: math.unit(6 + 4/12, "feet"),
  36271. weight: math.unit(145, "lb"),
  36272. name: "Traditional Outfit",
  36273. image: {
  36274. source: "./media/characters/sykes/traditional-outfit.svg",
  36275. extra: 1321 / 1187,
  36276. bottom: 66 / 1387
  36277. }
  36278. },
  36279. adventureOutfit: {
  36280. height: math.unit(6 + 4/12, "feet"),
  36281. weight: math.unit(145, "lb"),
  36282. name: "Adventure Outfit",
  36283. image: {
  36284. source: "./media/characters/sykes/adventure-outfit.svg",
  36285. extra: 1321 / 1187,
  36286. bottom: 66 / 1387
  36287. }
  36288. },
  36289. handLeft: {
  36290. height: math.unit(0.9, "feet"),
  36291. name: "Hand (Left)",
  36292. image: {
  36293. source: "./media/characters/sykes/hand-left.svg"
  36294. }
  36295. },
  36296. handRight: {
  36297. height: math.unit(0.839, "feet"),
  36298. name: "Hand (Right)",
  36299. image: {
  36300. source: "./media/characters/sykes/hand-right.svg"
  36301. }
  36302. },
  36303. leftFoot: {
  36304. height: math.unit(1.2, "feet"),
  36305. name: "Foot (Left)",
  36306. image: {
  36307. source: "./media/characters/sykes/foot-left.svg"
  36308. }
  36309. },
  36310. rightFoot: {
  36311. height: math.unit(1.2, "feet"),
  36312. name: "Foot (Right)",
  36313. image: {
  36314. source: "./media/characters/sykes/foot-right.svg"
  36315. }
  36316. },
  36317. maw: {
  36318. height: math.unit(1.93, "feet"),
  36319. name: "Maw",
  36320. image: {
  36321. source: "./media/characters/sykes/maw.svg"
  36322. }
  36323. },
  36324. teeth: {
  36325. height: math.unit(0.51, "feet"),
  36326. name: "Teeth",
  36327. image: {
  36328. source: "./media/characters/sykes/teeth.svg"
  36329. }
  36330. },
  36331. tongue: {
  36332. height: math.unit(2.13, "feet"),
  36333. name: "Tongue",
  36334. image: {
  36335. source: "./media/characters/sykes/tongue.svg"
  36336. }
  36337. },
  36338. uvula: {
  36339. height: math.unit(0.16, "feet"),
  36340. name: "Uvula",
  36341. image: {
  36342. source: "./media/characters/sykes/uvula.svg"
  36343. }
  36344. },
  36345. collar: {
  36346. height: math.unit(0.287, "feet"),
  36347. name: "Collar",
  36348. image: {
  36349. source: "./media/characters/sykes/collar.svg"
  36350. }
  36351. },
  36352. tail: {
  36353. height: math.unit(3.8, "feet"),
  36354. name: "Tail",
  36355. image: {
  36356. source: "./media/characters/sykes/tail.svg"
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Shrunken",
  36363. height: math.unit(5, "inches")
  36364. },
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(6 + 4 / 12, "feet"),
  36368. default: true
  36369. },
  36370. {
  36371. name: "Big",
  36372. height: math.unit(15, "feet")
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36378. {
  36379. front: {
  36380. height: math.unit(5 + 8/12, "feet"),
  36381. weight: math.unit(190, "lb"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/oven-otter/front.svg",
  36385. extra: 1809/1740,
  36386. bottom: 181/1990
  36387. }
  36388. },
  36389. back: {
  36390. height: math.unit(5 + 8/12, "feet"),
  36391. weight: math.unit(190, "lb"),
  36392. name: "Back",
  36393. image: {
  36394. source: "./media/characters/oven-otter/back.svg",
  36395. extra: 1709/1635,
  36396. bottom: 118/1827
  36397. }
  36398. },
  36399. hand: {
  36400. height: math.unit(1.07, "feet"),
  36401. name: "Hand",
  36402. image: {
  36403. source: "./media/characters/oven-otter/hand.svg"
  36404. }
  36405. },
  36406. beans: {
  36407. height: math.unit(1.74, "feet"),
  36408. name: "Beans",
  36409. image: {
  36410. source: "./media/characters/oven-otter/beans.svg"
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Micro",
  36417. height: math.unit(0.5, "inches")
  36418. },
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 8/12, "feet"),
  36422. default: true
  36423. },
  36424. {
  36425. name: "Macro",
  36426. height: math.unit(250, "feet")
  36427. },
  36428. {
  36429. name: "Really High",
  36430. height: math.unit(420, "feet")
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(5, "meters"),
  36439. weight: math.unit(292000000000000, "kg"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/devourer/front.svg",
  36443. extra: 1800/1733,
  36444. bottom: 211/2011
  36445. }
  36446. },
  36447. maw: {
  36448. height: math.unit(1.1, "meter"),
  36449. name: "Maw",
  36450. image: {
  36451. source: "./media/characters/devourer/maw.svg"
  36452. }
  36453. },
  36454. },
  36455. [
  36456. {
  36457. name: "Small",
  36458. height: math.unit(3, "meters")
  36459. },
  36460. {
  36461. name: "Large",
  36462. height: math.unit(5, "meters"),
  36463. default: true
  36464. },
  36465. ]
  36466. ))
  36467. characterMakers.push(() => makeCharacter(
  36468. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36469. {
  36470. front: {
  36471. height: math.unit(6, "feet"),
  36472. weight: math.unit(400, "lb"),
  36473. name: "Front",
  36474. image: {
  36475. source: "./media/characters/ellarby/front.svg",
  36476. extra: 1909/1763,
  36477. bottom: 80/1989
  36478. }
  36479. },
  36480. back: {
  36481. height: math.unit(6, "feet"),
  36482. weight: math.unit(400, "lb"),
  36483. name: "Back",
  36484. image: {
  36485. source: "./media/characters/ellarby/back.svg",
  36486. extra: 1914/1784,
  36487. bottom: 172/2086
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "Mischief",
  36494. height: math.unit(18, "inches")
  36495. },
  36496. {
  36497. name: "Trouble",
  36498. height: math.unit(12, "feet")
  36499. },
  36500. {
  36501. name: "Havoc",
  36502. height: math.unit(200, "feet"),
  36503. default: true
  36504. },
  36505. {
  36506. name: "Pandemonium",
  36507. height: math.unit(1, "mile")
  36508. },
  36509. {
  36510. name: "Catastrophe",
  36511. height: math.unit(100, "miles")
  36512. },
  36513. ]
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36517. {
  36518. front: {
  36519. height: math.unit(4.7, "meters"),
  36520. weight: math.unit(6500, "kg"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/vex/front.svg",
  36524. extra: 1288/1140,
  36525. bottom: 100/1388
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(4.7, "meters"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36539. {
  36540. normal: {
  36541. height: math.unit(6, "feet"),
  36542. weight: math.unit(350, "lb"),
  36543. name: "Normal",
  36544. image: {
  36545. source: "./media/characters/teshy/normal.svg",
  36546. extra: 1795/1735,
  36547. bottom: 16/1811
  36548. }
  36549. },
  36550. monsterFront: {
  36551. height: math.unit(12, "feet"),
  36552. weight: math.unit(4700, "lb"),
  36553. name: "Monster (Front)",
  36554. image: {
  36555. source: "./media/characters/teshy/monster-front.svg",
  36556. extra: 2042/2034,
  36557. bottom: 128/2170
  36558. }
  36559. },
  36560. monsterSide: {
  36561. height: math.unit(12, "feet"),
  36562. weight: math.unit(4700, "lb"),
  36563. name: "Monster (Side)",
  36564. image: {
  36565. source: "./media/characters/teshy/monster-side.svg",
  36566. extra: 2067/2056,
  36567. bottom: 70/2137
  36568. }
  36569. },
  36570. monsterBack: {
  36571. height: math.unit(12, "feet"),
  36572. weight: math.unit(4700, "lb"),
  36573. name: "Monster (Back)",
  36574. image: {
  36575. source: "./media/characters/teshy/monster-back.svg",
  36576. extra: 1921/1914,
  36577. bottom: 171/2092
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(6, "feet"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(6, "feet"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/ramey/front.svg",
  36597. extra: 790/787,
  36598. bottom: 27/817
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(6, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36612. {
  36613. front: {
  36614. height: math.unit(5 + 5/12, "feet"),
  36615. weight: math.unit(120, "lb"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/phirae/front.svg",
  36619. extra: 2491/2436,
  36620. bottom: 38/2529
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(5 + 5/12, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36634. {
  36635. front: {
  36636. height: math.unit(5 + 3/12, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/stagglas/front.svg",
  36640. extra: 962/882,
  36641. bottom: 53/1015
  36642. }
  36643. },
  36644. feral: {
  36645. height: math.unit(335, "cm"),
  36646. name: "Feral",
  36647. image: {
  36648. source: "./media/characters/stagglas/feral.svg",
  36649. extra: 1732/1090,
  36650. bottom: 48/1780
  36651. }
  36652. },
  36653. },
  36654. [
  36655. {
  36656. name: "Normal",
  36657. height: math.unit(5 + 3/12, "feet"),
  36658. default: true
  36659. },
  36660. ]
  36661. ))
  36662. characterMakers.push(() => makeCharacter(
  36663. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36664. {
  36665. front: {
  36666. height: math.unit(5 + 4/12, "feet"),
  36667. weight: math.unit(145, "lb"),
  36668. name: "Front",
  36669. image: {
  36670. source: "./media/characters/starra/front.svg",
  36671. extra: 1790/1691,
  36672. bottom: 91/1881
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(5 + 4/12, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36686. {
  36687. front: {
  36688. height: math.unit(3.5, "meters"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36692. extra: 1248/972,
  36693. bottom: 38/1286
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(3.5, "meters"),
  36701. default: true
  36702. },
  36703. ]
  36704. ))
  36705. characterMakers.push(() => makeCharacter(
  36706. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36707. {
  36708. side: {
  36709. height: math.unit(8 + 2/12, "feet"),
  36710. weight: math.unit(1240, "lb"),
  36711. name: "Side",
  36712. image: {
  36713. source: "./media/characters/mika-valentine/side.svg",
  36714. extra: 2670/2501,
  36715. bottom: 250/2920
  36716. }
  36717. },
  36718. },
  36719. [
  36720. {
  36721. name: "Normal",
  36722. height: math.unit(8 + 2/12, "feet"),
  36723. default: true
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36729. {
  36730. front: {
  36731. height: math.unit(7 + 2/12, "feet"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/xoltol/front.svg",
  36735. extra: 2212/2124,
  36736. bottom: 84/2296
  36737. }
  36738. },
  36739. side: {
  36740. height: math.unit(7 + 2/12, "feet"),
  36741. name: "Side",
  36742. image: {
  36743. source: "./media/characters/xoltol/side.svg",
  36744. extra: 2273/2197,
  36745. bottom: 26/2299
  36746. }
  36747. },
  36748. hand: {
  36749. height: math.unit(2.5, "feet"),
  36750. name: "Hand",
  36751. image: {
  36752. source: "./media/characters/xoltol/hand.svg"
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Small-ish",
  36759. height: math.unit(5 + 11/12, "feet")
  36760. },
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(7 + 2/12, "feet")
  36764. },
  36765. {
  36766. name: "\"Macro\"",
  36767. height: math.unit(14 + 9/12, "feet"),
  36768. default: true
  36769. },
  36770. {
  36771. name: "Alternate Height",
  36772. height: math.unit(20, "feet")
  36773. },
  36774. {
  36775. name: "Actually Macro",
  36776. height: math.unit(100, "feet")
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36782. {
  36783. front: {
  36784. height: math.unit(5 + 2/12, "feet"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/kotetsu-redwood/front.svg",
  36788. extra: 1053/942,
  36789. bottom: 60/1113
  36790. }
  36791. },
  36792. },
  36793. [
  36794. {
  36795. name: "Normal",
  36796. height: math.unit(5 + 2/12, "feet"),
  36797. default: true
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(2.4, "meters"),
  36806. weight: math.unit(125, "kg"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/lilith/front.svg",
  36810. extra: 1590/1513,
  36811. bottom: 203/1793
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Humanoid",
  36818. height: math.unit(2.4, "meters")
  36819. },
  36820. {
  36821. name: "Normal",
  36822. height: math.unit(6, "meters"),
  36823. default: true
  36824. },
  36825. {
  36826. name: "Largest",
  36827. height: math.unit(55, "meters")
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(8 + 4/12, "feet"),
  36836. weight: math.unit(535, "lb"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/beh'kah-bolger/front.svg",
  36840. extra: 1660/1603,
  36841. bottom: 37/1697
  36842. }
  36843. },
  36844. },
  36845. [
  36846. {
  36847. name: "Normal",
  36848. height: math.unit(8 + 4/12, "feet"),
  36849. default: true
  36850. },
  36851. {
  36852. name: "Kaiju",
  36853. height: math.unit(250, "feet")
  36854. },
  36855. {
  36856. name: "Still Growing",
  36857. height: math.unit(10, "miles")
  36858. },
  36859. {
  36860. name: "Continental",
  36861. height: math.unit(5000, "miles")
  36862. },
  36863. {
  36864. name: "Final Form",
  36865. height: math.unit(2500000, "miles")
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(7 + 2/12, "feet"),
  36874. weight: math.unit(230, "kg"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/tatyana-milewska/front.svg",
  36878. extra: 1199/1150,
  36879. bottom: 86/1285
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(7 + 2/12, "feet"),
  36887. default: true
  36888. },
  36889. {
  36890. name: "Big",
  36891. height: math.unit(12, "feet")
  36892. },
  36893. {
  36894. name: "Minimacro",
  36895. height: math.unit(20, "feet")
  36896. },
  36897. {
  36898. name: "Macro",
  36899. height: math.unit(120, "feet")
  36900. },
  36901. ]
  36902. ))
  36903. characterMakers.push(() => makeCharacter(
  36904. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36905. {
  36906. front: {
  36907. height: math.unit(7 + 8/12, "feet"),
  36908. weight: math.unit(152, "kg"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/helen-arri/front.svg",
  36912. extra: 440/423,
  36913. bottom: 14/454
  36914. }
  36915. },
  36916. back: {
  36917. height: math.unit(7 + 8/12, "feet"),
  36918. weight: math.unit(152, "kg"),
  36919. name: "Back",
  36920. image: {
  36921. source: "./media/characters/helen-arri/back.svg",
  36922. extra: 443/426,
  36923. bottom: 8/451
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(7 + 8/12, "feet"),
  36931. default: true
  36932. },
  36933. {
  36934. name: "Big",
  36935. height: math.unit(14, "feet")
  36936. },
  36937. {
  36938. name: "Minimacro",
  36939. height: math.unit(24, "feet")
  36940. },
  36941. {
  36942. name: "Macro",
  36943. height: math.unit(140, "feet")
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(6, "meters"),
  36952. name: "Front",
  36953. image: {
  36954. source: "./media/characters/ehanu-rehu/front.svg",
  36955. extra: 1800/1800,
  36956. bottom: 59/1859
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(6, "meters"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36970. {
  36971. front: {
  36972. height: math.unit(7 + 3/12, "feet"),
  36973. name: "Front",
  36974. image: {
  36975. source: "./media/characters/renholder/front.svg",
  36976. extra: 3096/2960,
  36977. bottom: 250/3346
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Normal Bat",
  36984. height: math.unit(7 + 3/12, "feet"),
  36985. default: true
  36986. },
  36987. {
  36988. name: "Slightly Tall Bat",
  36989. height: math.unit(100, "feet")
  36990. },
  36991. {
  36992. name: "Big Bat",
  36993. height: math.unit(1000, "feet")
  36994. },
  36995. {
  36996. name: "City-Sized Bat",
  36997. height: math.unit(200000, "feet")
  36998. },
  36999. {
  37000. name: "Bigger Bat",
  37001. height: math.unit(10000, "miles")
  37002. },
  37003. {
  37004. name: "Solar Sized Bat",
  37005. height: math.unit(100, "AU")
  37006. },
  37007. {
  37008. name: "Galactic Bat",
  37009. height: math.unit(200000, "lightyears")
  37010. },
  37011. {
  37012. name: "Universally Known Bat",
  37013. height: math.unit(1, "universe")
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37019. {
  37020. front: {
  37021. height: math.unit(6 + 11/12, "feet"),
  37022. weight: math.unit(250, "lb"),
  37023. name: "Front",
  37024. image: {
  37025. source: "./media/characters/cookiecat/front.svg",
  37026. extra: 893/827,
  37027. bottom: 14/907
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Micro",
  37034. height: math.unit(3, "inches")
  37035. },
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(6 + 11/12, "feet"),
  37039. default: true
  37040. },
  37041. {
  37042. name: "Macro",
  37043. height: math.unit(100, "feet")
  37044. },
  37045. {
  37046. name: "Macro+",
  37047. height: math.unit(404, "feet")
  37048. },
  37049. {
  37050. name: "Megamacro",
  37051. height: math.unit(165, "miles")
  37052. },
  37053. {
  37054. name: "Planetary",
  37055. height: math.unit(4600, "miles")
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37061. {
  37062. front: {
  37063. height: math.unit(10 + 3/12, "feet"),
  37064. weight: math.unit(1500, "lb"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/tux-kusanagi/front.svg",
  37068. extra: 944/840,
  37069. bottom: 39/983
  37070. }
  37071. },
  37072. back: {
  37073. height: math.unit(10 + 3/12, "feet"),
  37074. weight: math.unit(1500, "lb"),
  37075. name: "Back",
  37076. image: {
  37077. source: "./media/characters/tux-kusanagi/back.svg",
  37078. extra: 941/842,
  37079. bottom: 28/969
  37080. }
  37081. },
  37082. rump: {
  37083. height: math.unit(5.25, "feet"),
  37084. name: "Rump",
  37085. image: {
  37086. source: "./media/characters/tux-kusanagi/rump.svg"
  37087. }
  37088. },
  37089. beak: {
  37090. height: math.unit(1.54, "feet"),
  37091. name: "Beak",
  37092. image: {
  37093. source: "./media/characters/tux-kusanagi/beak.svg"
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(10 + 3/12, "feet"),
  37101. default: true
  37102. },
  37103. ]
  37104. ))
  37105. characterMakers.push(() => makeCharacter(
  37106. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37107. {
  37108. front: {
  37109. height: math.unit(58, "feet"),
  37110. weight: math.unit(200, "tons"),
  37111. name: "Front",
  37112. image: {
  37113. source: "./media/characters/uzarmazari/front.svg",
  37114. extra: 1575/1455,
  37115. bottom: 152/1727
  37116. }
  37117. },
  37118. back: {
  37119. height: math.unit(58, "feet"),
  37120. weight: math.unit(200, "tons"),
  37121. name: "Back",
  37122. image: {
  37123. source: "./media/characters/uzarmazari/back.svg",
  37124. extra: 1585/1510,
  37125. bottom: 157/1742
  37126. }
  37127. },
  37128. head: {
  37129. height: math.unit(26, "feet"),
  37130. name: "Head",
  37131. image: {
  37132. source: "./media/characters/uzarmazari/head.svg"
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(58, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37146. {
  37147. side: {
  37148. height: math.unit(15, "feet"),
  37149. name: "Side",
  37150. image: {
  37151. source: "./media/characters/akitu/side.svg",
  37152. extra: 1421/1321,
  37153. bottom: 157/1578
  37154. }
  37155. },
  37156. front: {
  37157. height: math.unit(15, "feet"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/akitu/front.svg",
  37161. extra: 1435/1326,
  37162. bottom: 232/1667
  37163. }
  37164. },
  37165. },
  37166. [
  37167. {
  37168. name: "Normal",
  37169. height: math.unit(15, "feet"),
  37170. default: true
  37171. },
  37172. ]
  37173. ))
  37174. characterMakers.push(() => makeCharacter(
  37175. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37176. {
  37177. front: {
  37178. height: math.unit(10 + 8/12, "feet"),
  37179. name: "Front",
  37180. image: {
  37181. source: "./media/characters/azalie-croixland/front.svg",
  37182. extra: 1972/1856,
  37183. bottom: 31/2003
  37184. }
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "Original Height",
  37190. height: math.unit(5 + 4/12, "feet")
  37191. },
  37192. {
  37193. name: "Normal Height",
  37194. height: math.unit(10 + 8/12, "feet"),
  37195. default: true
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37201. {
  37202. side: {
  37203. height: math.unit(7 + 1/12, "feet"),
  37204. weight: math.unit(245, "lb"),
  37205. name: "Side",
  37206. image: {
  37207. source: "./media/characters/kavus-kazian/side.svg",
  37208. extra: 349/342,
  37209. bottom: 15/364
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Normal",
  37216. height: math.unit(7 + 1/12, "feet"),
  37217. default: true
  37218. },
  37219. ]
  37220. ))
  37221. characterMakers.push(() => makeCharacter(
  37222. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37223. {
  37224. normalFront: {
  37225. height: math.unit(5 + 11/12, "feet"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/moonlight-rose/normal-front.svg",
  37229. extra: 1980/1825,
  37230. bottom: 18/1998
  37231. },
  37232. form: "normal",
  37233. default: true
  37234. },
  37235. normalBack: {
  37236. height: math.unit(5 + 11/12, "feet"),
  37237. name: "Back",
  37238. image: {
  37239. source: "./media/characters/moonlight-rose/normal-back.svg",
  37240. extra: 2010/1839,
  37241. bottom: 10/2020
  37242. },
  37243. form: "normal"
  37244. },
  37245. demonFront: {
  37246. height: math.unit(1.5, "earths"),
  37247. name: "Front",
  37248. image: {
  37249. source: "./media/characters/moonlight-rose/demon.svg",
  37250. extra: 1400/1294,
  37251. bottom: 45/1445
  37252. },
  37253. form: "demon",
  37254. default: true
  37255. },
  37256. terraFront: {
  37257. height: math.unit(1.5, "earths"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/moonlight-rose/terra.svg"
  37261. },
  37262. form: "terra",
  37263. default: true
  37264. },
  37265. jupiterFront: {
  37266. height: math.unit(69911*2, "km"),
  37267. name: "Front",
  37268. image: {
  37269. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37270. extra: 1367/1286,
  37271. bottom: 55/1422
  37272. },
  37273. form: "jupiter",
  37274. default: true
  37275. },
  37276. neptuneFront: {
  37277. height: math.unit(24622*2, "feet"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37281. extra: 1851/1712,
  37282. bottom: 0/1851
  37283. },
  37284. form: "neptune",
  37285. default: true
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "\"Natural\" Height",
  37291. height: math.unit(5 + 11/12, "feet"),
  37292. form: "normal"
  37293. },
  37294. {
  37295. name: "Smallest comfortable size",
  37296. height: math.unit(40, "meters"),
  37297. form: "normal"
  37298. },
  37299. {
  37300. name: "Common size",
  37301. height: math.unit(50, "km"),
  37302. form: "normal",
  37303. default: true
  37304. },
  37305. {
  37306. name: "Normal",
  37307. height: math.unit(1.5, "earths"),
  37308. form: "demon",
  37309. default: true
  37310. },
  37311. {
  37312. name: "Universal",
  37313. height: math.unit(15, "universes"),
  37314. form: "demon"
  37315. },
  37316. {
  37317. name: "Earth",
  37318. height: math.unit(1.5, "earths"),
  37319. form: "terra",
  37320. default: true
  37321. },
  37322. {
  37323. name: "Super Earth",
  37324. height: math.unit(67.5, "earths"),
  37325. form: "terra"
  37326. },
  37327. {
  37328. name: "Doesn't fit in a solar system...",
  37329. height: math.unit(1, "galaxy"),
  37330. form: "terra"
  37331. },
  37332. {
  37333. name: "Saturn",
  37334. height: math.unit(58232*2, "km"),
  37335. form: "jupiter"
  37336. },
  37337. {
  37338. name: "Jupiter",
  37339. height: math.unit(69911*2, "km"),
  37340. form: "jupiter",
  37341. default: true
  37342. },
  37343. {
  37344. name: "HD 100546 b",
  37345. height: math.unit(482938, "km"),
  37346. form: "jupiter"
  37347. },
  37348. {
  37349. name: "Enceladus",
  37350. height: math.unit(513*2, "km"),
  37351. form: "neptune"
  37352. },
  37353. {
  37354. name: "Europe",
  37355. height: math.unit(1560*2, "km"),
  37356. form: "neptune"
  37357. },
  37358. {
  37359. name: "Neptune",
  37360. height: math.unit(24622*2, "km"),
  37361. form: "neptune",
  37362. default: true
  37363. },
  37364. {
  37365. name: "CoRoT-9b",
  37366. height: math.unit(75067*2, "km"),
  37367. form: "neptune"
  37368. },
  37369. ],
  37370. {
  37371. "normal": {
  37372. name: "Normal",
  37373. default: true
  37374. },
  37375. "demon": {
  37376. name: "Demon"
  37377. },
  37378. "terra": {
  37379. name: "Terra"
  37380. },
  37381. "jupiter": {
  37382. name: "Jupiter"
  37383. },
  37384. "neptune": {
  37385. name: "Neptune"
  37386. }
  37387. }
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(16, "feet"),
  37394. weight: math.unit(610, "kg"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/huckle/front.svg",
  37398. extra: 1731/1625,
  37399. bottom: 33/1764
  37400. }
  37401. },
  37402. back: {
  37403. height: math.unit(16, "feet"),
  37404. weight: math.unit(610, "kg"),
  37405. name: "Back",
  37406. image: {
  37407. source: "./media/characters/huckle/back.svg",
  37408. extra: 1738/1651,
  37409. bottom: 37/1775
  37410. }
  37411. },
  37412. laughing: {
  37413. height: math.unit(3.75, "feet"),
  37414. name: "Laughing",
  37415. image: {
  37416. source: "./media/characters/huckle/laughing.svg"
  37417. }
  37418. },
  37419. angry: {
  37420. height: math.unit(4.15, "feet"),
  37421. name: "Angry",
  37422. image: {
  37423. source: "./media/characters/huckle/angry.svg"
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Normal",
  37430. height: math.unit(16, "feet"),
  37431. default: true
  37432. },
  37433. {
  37434. name: "Mini Macro",
  37435. height: math.unit(463, "feet")
  37436. },
  37437. {
  37438. name: "Macro",
  37439. height: math.unit(1680, "meters")
  37440. },
  37441. {
  37442. name: "Mega Macro",
  37443. height: math.unit(175, "km")
  37444. },
  37445. {
  37446. name: "Terra Macro",
  37447. height: math.unit(32, "gigameters")
  37448. },
  37449. {
  37450. name: "Multiverse+",
  37451. height: math.unit(2.56e23, "yottameters")
  37452. },
  37453. ]
  37454. ))
  37455. characterMakers.push(() => makeCharacter(
  37456. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37457. {
  37458. front: {
  37459. height: math.unit(6 + 9/12, "feet"),
  37460. weight: math.unit(280, "lb"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/candy/front.svg",
  37464. extra: 234/217,
  37465. bottom: 11/245
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Really Small",
  37472. height: math.unit(0.1, "nm")
  37473. },
  37474. {
  37475. name: "Micro",
  37476. height: math.unit(2, "inches")
  37477. },
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(6 + 9/12, "feet"),
  37481. default: true
  37482. },
  37483. {
  37484. name: "Small Macro",
  37485. height: math.unit(69, "feet")
  37486. },
  37487. {
  37488. name: "Macro",
  37489. height: math.unit(160, "feet")
  37490. },
  37491. {
  37492. name: "Megamacro",
  37493. height: math.unit(22000, "miles")
  37494. },
  37495. {
  37496. name: "Gigamacro",
  37497. height: math.unit(50000, "miles")
  37498. },
  37499. ]
  37500. ))
  37501. characterMakers.push(() => makeCharacter(
  37502. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37503. {
  37504. front: {
  37505. height: math.unit(4, "feet"),
  37506. weight: math.unit(90, "lb"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/joey-mcdonald/front.svg",
  37510. extra: 1059/852,
  37511. bottom: 33/1092
  37512. }
  37513. },
  37514. back: {
  37515. height: math.unit(4, "feet"),
  37516. weight: math.unit(90, "lb"),
  37517. name: "Back",
  37518. image: {
  37519. source: "./media/characters/joey-mcdonald/back.svg",
  37520. extra: 1077/879,
  37521. bottom: 5/1082
  37522. }
  37523. },
  37524. frontKobold: {
  37525. height: math.unit(4, "feet"),
  37526. weight: math.unit(100, "lb"),
  37527. name: "Front-kobold",
  37528. image: {
  37529. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37530. extra: 1480/1367,
  37531. bottom: 0/1480
  37532. }
  37533. },
  37534. backKobold: {
  37535. height: math.unit(4, "feet"),
  37536. weight: math.unit(100, "lb"),
  37537. name: "Back-kobold",
  37538. image: {
  37539. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37540. extra: 1449/1361,
  37541. bottom: 0/1449
  37542. }
  37543. },
  37544. },
  37545. [
  37546. {
  37547. name: "Normal",
  37548. height: math.unit(4, "feet"),
  37549. default: true
  37550. },
  37551. ]
  37552. ))
  37553. characterMakers.push(() => makeCharacter(
  37554. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37555. {
  37556. front: {
  37557. height: math.unit(12 + 6/12, "feet"),
  37558. name: "Front",
  37559. image: {
  37560. source: "./media/characters/kass-lockheed/front.svg",
  37561. extra: 354/343,
  37562. bottom: 9/363
  37563. }
  37564. },
  37565. back: {
  37566. height: math.unit(12 + 6/12, "feet"),
  37567. name: "Back",
  37568. image: {
  37569. source: "./media/characters/kass-lockheed/back.svg",
  37570. extra: 364/352,
  37571. bottom: 3/367
  37572. }
  37573. },
  37574. dick: {
  37575. height: math.unit(3.12, "feet"),
  37576. name: "Dick",
  37577. image: {
  37578. source: "./media/characters/kass-lockheed/dick.svg"
  37579. }
  37580. },
  37581. head: {
  37582. height: math.unit(2.6, "feet"),
  37583. name: "Head",
  37584. image: {
  37585. source: "./media/characters/kass-lockheed/head.svg"
  37586. }
  37587. },
  37588. bleh: {
  37589. height: math.unit(2.85, "feet"),
  37590. name: "Bleh",
  37591. image: {
  37592. source: "./media/characters/kass-lockheed/bleh.svg"
  37593. }
  37594. },
  37595. smug: {
  37596. height: math.unit(2.85, "feet"),
  37597. name: "Smug",
  37598. image: {
  37599. source: "./media/characters/kass-lockheed/smug.svg"
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(12 + 6/12, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(6 + 2/12, "feet"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/taylor/front.svg",
  37619. extra: 639/495,
  37620. bottom: 12/651
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Normal",
  37627. height: math.unit(6 + 2/12, "feet"),
  37628. default: true
  37629. },
  37630. {
  37631. name: "Big",
  37632. height: math.unit(15, "feet")
  37633. },
  37634. {
  37635. name: "Lorg",
  37636. height: math.unit(80, "feet")
  37637. },
  37638. {
  37639. name: "Too Lorg",
  37640. height: math.unit(120, "feet")
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(15, "feet"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/kaizer/front.svg",
  37652. extra: 1612/1436,
  37653. bottom: 43/1655
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(15, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(2, "feet"),
  37670. weight: math.unit(30, "lb"),
  37671. name: "Front",
  37672. image: {
  37673. source: "./media/characters/sandy/front.svg",
  37674. extra: 1439/1307,
  37675. bottom: 194/1633
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Normal",
  37682. height: math.unit(2, "feet"),
  37683. default: true
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37689. {
  37690. front: {
  37691. height: math.unit(3, "feet"),
  37692. name: "Front",
  37693. image: {
  37694. source: "./media/characters/mellvi/front.svg",
  37695. extra: 1831/1630,
  37696. bottom: 58/1889
  37697. }
  37698. },
  37699. },
  37700. [
  37701. {
  37702. name: "Normal",
  37703. height: math.unit(3, "feet"),
  37704. default: true
  37705. },
  37706. ]
  37707. ))
  37708. characterMakers.push(() => makeCharacter(
  37709. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37710. {
  37711. front: {
  37712. height: math.unit(5 + 11/12, "feet"),
  37713. weight: math.unit(200, "lb"),
  37714. name: "Front",
  37715. image: {
  37716. source: "./media/characters/shirou/front.svg",
  37717. extra: 2491/2383,
  37718. bottom: 189/2680
  37719. }
  37720. },
  37721. back: {
  37722. height: math.unit(5 + 11/12, "feet"),
  37723. weight: math.unit(200, "lb"),
  37724. name: "Back",
  37725. image: {
  37726. source: "./media/characters/shirou/back.svg",
  37727. extra: 2554/2450,
  37728. bottom: 76/2630
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(5 + 11/12, "feet"),
  37736. default: true
  37737. },
  37738. ]
  37739. ))
  37740. characterMakers.push(() => makeCharacter(
  37741. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37742. {
  37743. front: {
  37744. height: math.unit(6 + 3/12, "feet"),
  37745. weight: math.unit(177, "lb"),
  37746. name: "Front",
  37747. image: {
  37748. source: "./media/characters/noryu/front.svg",
  37749. extra: 973/885,
  37750. bottom: 10/983
  37751. }
  37752. },
  37753. },
  37754. [
  37755. {
  37756. name: "Normal",
  37757. height: math.unit(6 + 3/12, "feet"),
  37758. default: true
  37759. },
  37760. ]
  37761. ))
  37762. characterMakers.push(() => makeCharacter(
  37763. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37764. {
  37765. front: {
  37766. height: math.unit(5 + 6/12, "feet"),
  37767. weight: math.unit(170, "lb"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/mevolas-rubenido/front.svg",
  37771. extra: 2109/1901,
  37772. bottom: 96/2205
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(5 + 6/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(100, "feet"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/dee/front.svg",
  37792. extra: 2153/2036,
  37793. bottom: 59/2212
  37794. }
  37795. },
  37796. back: {
  37797. height: math.unit(100, "feet"),
  37798. name: "Back",
  37799. image: {
  37800. source: "./media/characters/dee/back.svg",
  37801. extra: 2183/2058,
  37802. bottom: 75/2258
  37803. }
  37804. },
  37805. foot: {
  37806. height: math.unit(19.43, "feet"),
  37807. name: "Foot",
  37808. image: {
  37809. source: "./media/characters/dee/foot.svg"
  37810. }
  37811. },
  37812. hoof: {
  37813. height: math.unit(20.6, "feet"),
  37814. name: "Hoof",
  37815. image: {
  37816. source: "./media/characters/dee/hoof.svg"
  37817. }
  37818. },
  37819. },
  37820. [
  37821. {
  37822. name: "Macro",
  37823. height: math.unit(100, "feet"),
  37824. default: true
  37825. },
  37826. ]
  37827. ))
  37828. characterMakers.push(() => makeCharacter(
  37829. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37830. {
  37831. front: {
  37832. height: math.unit(5 + 6/12, "feet"),
  37833. name: "Front",
  37834. image: {
  37835. source: "./media/characters/teh/front.svg",
  37836. extra: 1002/847,
  37837. bottom: 62/1064
  37838. }
  37839. },
  37840. },
  37841. [
  37842. {
  37843. name: "Normal",
  37844. height: math.unit(5 + 6/12, "feet"),
  37845. default: true
  37846. },
  37847. ]
  37848. ))
  37849. characterMakers.push(() => makeCharacter(
  37850. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37851. {
  37852. side: {
  37853. height: math.unit(6 + 1/12, "feet"),
  37854. weight: math.unit(204, "lb"),
  37855. name: "Side",
  37856. image: {
  37857. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37858. extra: 974/775,
  37859. bottom: 169/1143
  37860. }
  37861. },
  37862. sitting: {
  37863. height: math.unit(6 + 2/12, "feet"),
  37864. weight: math.unit(204, "lb"),
  37865. name: "Sitting",
  37866. image: {
  37867. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37868. extra: 1175/964,
  37869. bottom: 378/1553
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(6 + 1/12, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(6, "inches"),
  37886. name: "Front",
  37887. image: {
  37888. source: "./media/characters/tululi/front.svg",
  37889. extra: 1997/1876,
  37890. bottom: 20/2017
  37891. }
  37892. },
  37893. },
  37894. [
  37895. {
  37896. name: "Normal",
  37897. height: math.unit(6, "inches"),
  37898. default: true
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37904. {
  37905. front: {
  37906. height: math.unit(4 + 1/12, "feet"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/star/front.svg",
  37910. extra: 1493/1189,
  37911. bottom: 48/1541
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Normal",
  37918. height: math.unit(4 + 1/12, "feet"),
  37919. default: true
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(6 + 3/12, "feet"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/comet/front.svg",
  37931. extra: 1681/1462,
  37932. bottom: 26/1707
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Normal",
  37939. height: math.unit(6 + 3/12, "feet"),
  37940. default: true
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(950, "feet"),
  37949. name: "Front",
  37950. image: {
  37951. source: "./media/characters/vortex/front.svg",
  37952. extra: 1497/1434,
  37953. bottom: 56/1553
  37954. }
  37955. },
  37956. maw: {
  37957. height: math.unit(285, "feet"),
  37958. name: "Maw",
  37959. image: {
  37960. source: "./media/characters/vortex/maw.svg"
  37961. }
  37962. },
  37963. },
  37964. [
  37965. {
  37966. name: "Macro",
  37967. height: math.unit(950, "feet"),
  37968. default: true
  37969. },
  37970. ]
  37971. ))
  37972. characterMakers.push(() => makeCharacter(
  37973. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37974. {
  37975. front: {
  37976. height: math.unit(600, "feet"),
  37977. weight: math.unit(0.02, "grams"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/doodle/front.svg",
  37981. extra: 1578/1413,
  37982. bottom: 37/1615
  37983. }
  37984. },
  37985. },
  37986. [
  37987. {
  37988. name: "Macro",
  37989. height: math.unit(600, "feet"),
  37990. default: true
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37996. {
  37997. front: {
  37998. height: math.unit(6 + 6/12, "feet"),
  37999. name: "Front",
  38000. image: {
  38001. source: "./media/characters/jai/front.svg",
  38002. extra: 1645/1534,
  38003. bottom: 115/1760
  38004. }
  38005. },
  38006. },
  38007. [
  38008. {
  38009. name: "Normal",
  38010. height: math.unit(6 + 6/12, "feet"),
  38011. default: true
  38012. },
  38013. ]
  38014. ))
  38015. characterMakers.push(() => makeCharacter(
  38016. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38017. {
  38018. front: {
  38019. height: math.unit(6 + 8/12, "feet"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/pixel/front.svg",
  38023. extra: 1900/1735,
  38024. bottom: 63/1963
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Normal",
  38031. height: math.unit(6 + 8/12, "feet"),
  38032. default: true
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38038. {
  38039. back: {
  38040. height: math.unit(4 + 1/12, "feet"),
  38041. weight: math.unit(75, "lb"),
  38042. name: "Back",
  38043. image: {
  38044. source: "./media/characters/rhett/back.svg",
  38045. extra: 930/878,
  38046. bottom: 25/955
  38047. }
  38048. },
  38049. front: {
  38050. height: math.unit(4 + 1/12, "feet"),
  38051. weight: math.unit(75, "lb"),
  38052. name: "Front",
  38053. image: {
  38054. source: "./media/characters/rhett/front.svg",
  38055. extra: 1682/1586,
  38056. bottom: 92/1774
  38057. }
  38058. },
  38059. },
  38060. [
  38061. {
  38062. name: "Micro",
  38063. height: math.unit(8, "inches")
  38064. },
  38065. {
  38066. name: "Tiny",
  38067. height: math.unit(2, "feet")
  38068. },
  38069. {
  38070. name: "Normal",
  38071. height: math.unit(4 + 1/12, "feet"),
  38072. default: true
  38073. },
  38074. ]
  38075. ))
  38076. characterMakers.push(() => makeCharacter(
  38077. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38078. {
  38079. front: {
  38080. height: math.unit(3 + 3/12, "feet"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/penny/front.svg",
  38084. extra: 1406/1311,
  38085. bottom: 26/1432
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(3 + 3/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(4 + 11/12, "feet"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/monty/front.svg",
  38105. extra: 1479/1209,
  38106. bottom: 0/1479
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(4 + 11/12, "feet"),
  38114. default: true
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38120. {
  38121. front: {
  38122. height: math.unit(8 + 4/12, "feet"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/sterling/front.svg",
  38126. extra: 1420/1236,
  38127. bottom: 27/1447
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Normal",
  38134. height: math.unit(8 + 4/12, "feet"),
  38135. default: true
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(15, "feet"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/marble/front.svg",
  38147. extra: 973/937,
  38148. bottom: 32/1005
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(15, "feet"),
  38156. default: true
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38162. {
  38163. front: {
  38164. height: math.unit(3, "inches"),
  38165. name: "Front",
  38166. image: {
  38167. source: "./media/characters/powder/front.svg",
  38168. extra: 1504/1334,
  38169. bottom: 518/2022
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Normal",
  38176. height: math.unit(3, "inches"),
  38177. default: true
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38183. {
  38184. front: {
  38185. height: math.unit(4 + 5/12, "feet"),
  38186. name: "Front",
  38187. image: {
  38188. source: "./media/characters/joey-raccoon/front.svg",
  38189. extra: 1273/1197,
  38190. bottom: 0/1273
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(4 + 5/12, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(8 + 4/12, "feet"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/vick/front.svg",
  38210. extra: 2187/2118,
  38211. bottom: 47/2234
  38212. }
  38213. },
  38214. },
  38215. [
  38216. {
  38217. name: "Normal",
  38218. height: math.unit(8 + 4/12, "feet"),
  38219. default: true
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38225. {
  38226. front: {
  38227. height: math.unit(5 + 5/12, "feet"),
  38228. name: "Front",
  38229. image: {
  38230. source: "./media/characters/mitsy/front.svg",
  38231. extra: 1842/1695,
  38232. bottom: 0/1842
  38233. }
  38234. },
  38235. },
  38236. [
  38237. {
  38238. name: "Normal",
  38239. height: math.unit(5 + 5/12, "feet"),
  38240. default: true
  38241. },
  38242. ]
  38243. ))
  38244. characterMakers.push(() => makeCharacter(
  38245. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38246. {
  38247. front: {
  38248. height: math.unit(6 + 3/12, "feet"),
  38249. name: "Front",
  38250. image: {
  38251. source: "./media/characters/silvy/front.svg",
  38252. extra: 1995/1836,
  38253. bottom: 225/2220
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Normal",
  38260. height: math.unit(6 + 3/12, "feet"),
  38261. default: true
  38262. },
  38263. ]
  38264. ))
  38265. characterMakers.push(() => makeCharacter(
  38266. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38267. {
  38268. front: {
  38269. height: math.unit(3 + 8/12, "feet"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/rodney/front.svg",
  38273. extra: 1956/1747,
  38274. bottom: 31/1987
  38275. }
  38276. },
  38277. frontDressed: {
  38278. height: math.unit(2.9, "feet"),
  38279. name: "Front (Dressed)",
  38280. image: {
  38281. source: "./media/characters/rodney/front-dressed.svg",
  38282. extra: 1382/1241,
  38283. bottom: 385/1767
  38284. }
  38285. },
  38286. },
  38287. [
  38288. {
  38289. name: "Normal",
  38290. height: math.unit(3 + 8/12, "feet"),
  38291. default: true
  38292. },
  38293. ]
  38294. ))
  38295. characterMakers.push(() => makeCharacter(
  38296. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38297. {
  38298. front: {
  38299. height: math.unit(5 + 9/12, "feet"),
  38300. weight: math.unit(194, "lbs"),
  38301. name: "Front",
  38302. image: {
  38303. source: "./media/characters/zakail-sudekai/front.svg",
  38304. extra: 2696/2533,
  38305. bottom: 248/2944
  38306. }
  38307. },
  38308. maw: {
  38309. height: math.unit(1.35, "feet"),
  38310. name: "Maw",
  38311. image: {
  38312. source: "./media/characters/zakail-sudekai/maw.svg"
  38313. }
  38314. },
  38315. },
  38316. [
  38317. {
  38318. name: "Normal",
  38319. height: math.unit(5 + 9/12, "feet"),
  38320. default: true
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(8 + 4/12, "feet"),
  38329. weight: math.unit(1200, "lb"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/eleanor/front.svg",
  38333. extra: 1226/1192,
  38334. bottom: 52/1278
  38335. }
  38336. },
  38337. back: {
  38338. height: math.unit(8 + 4/12, "feet"),
  38339. weight: math.unit(1200, "lb"),
  38340. name: "Back",
  38341. image: {
  38342. source: "./media/characters/eleanor/back.svg",
  38343. extra: 1242/1184,
  38344. bottom: 60/1302
  38345. }
  38346. },
  38347. head: {
  38348. height: math.unit(2.62, "feet"),
  38349. name: "Head",
  38350. image: {
  38351. source: "./media/characters/eleanor/head.svg"
  38352. }
  38353. },
  38354. },
  38355. [
  38356. {
  38357. name: "Normal",
  38358. height: math.unit(8 + 4/12, "feet"),
  38359. default: true
  38360. },
  38361. ]
  38362. ))
  38363. characterMakers.push(() => makeCharacter(
  38364. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38365. {
  38366. front: {
  38367. height: math.unit(8 + 4/12, "feet"),
  38368. weight: math.unit(750, "lb"),
  38369. name: "Front",
  38370. image: {
  38371. source: "./media/characters/tanya/front.svg",
  38372. extra: 1749/1615,
  38373. bottom: 33/1782
  38374. }
  38375. },
  38376. },
  38377. [
  38378. {
  38379. name: "Normal",
  38380. height: math.unit(8 + 4/12, "feet"),
  38381. default: true
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38387. {
  38388. front: {
  38389. height: math.unit(5, "feet"),
  38390. weight: math.unit(225, "lb"),
  38391. name: "Front",
  38392. image: {
  38393. source: "./media/characters/cindy/front.svg",
  38394. extra: 1320/1250,
  38395. bottom: 42/1362
  38396. }
  38397. },
  38398. frontDressed: {
  38399. height: math.unit(5, "feet"),
  38400. weight: math.unit(225, "lb"),
  38401. name: "Front (Dressed)",
  38402. image: {
  38403. source: "./media/characters/cindy/front-dressed.svg",
  38404. extra: 1320/1250,
  38405. bottom: 42/1362
  38406. }
  38407. },
  38408. back: {
  38409. height: math.unit(5, "feet"),
  38410. weight: math.unit(225, "lb"),
  38411. name: "Back",
  38412. image: {
  38413. source: "./media/characters/cindy/back.svg",
  38414. extra: 1384/1346,
  38415. bottom: 14/1398
  38416. }
  38417. },
  38418. },
  38419. [
  38420. {
  38421. name: "Normal",
  38422. height: math.unit(5, "feet"),
  38423. default: true
  38424. },
  38425. ]
  38426. ))
  38427. characterMakers.push(() => makeCharacter(
  38428. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38429. {
  38430. front: {
  38431. height: math.unit(6 + 9/12, "feet"),
  38432. weight: math.unit(440, "lb"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/wilbur-owen/front.svg",
  38436. extra: 1575/1448,
  38437. bottom: 72/1647
  38438. }
  38439. },
  38440. back: {
  38441. height: math.unit(6 + 9/12, "feet"),
  38442. weight: math.unit(440, "lb"),
  38443. name: "Back",
  38444. image: {
  38445. source: "./media/characters/wilbur-owen/back.svg",
  38446. extra: 1578/1445,
  38447. bottom: 36/1614
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(6 + 9/12, "feet"),
  38455. default: true
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38461. {
  38462. front: {
  38463. height: math.unit(6 + 5/12, "feet"),
  38464. weight: math.unit(650, "lb"),
  38465. name: "Front",
  38466. image: {
  38467. source: "./media/characters/keegan/front.svg",
  38468. extra: 2387/2198,
  38469. bottom: 33/2420
  38470. }
  38471. },
  38472. side: {
  38473. height: math.unit(6 + 5/12, "feet"),
  38474. weight: math.unit(650, "lb"),
  38475. name: "Side",
  38476. image: {
  38477. source: "./media/characters/keegan/side.svg",
  38478. extra: 2390/2202,
  38479. bottom: 47/2437
  38480. }
  38481. },
  38482. back: {
  38483. height: math.unit(6 + 5/12, "feet"),
  38484. weight: math.unit(650, "lb"),
  38485. name: "Back",
  38486. image: {
  38487. source: "./media/characters/keegan/back.svg",
  38488. extra: 2418/2268,
  38489. bottom: 15/2433
  38490. }
  38491. },
  38492. frontSfw: {
  38493. height: math.unit(6 + 5/12, "feet"),
  38494. weight: math.unit(650, "lb"),
  38495. name: "Front (SFW)",
  38496. image: {
  38497. source: "./media/characters/keegan/front-sfw.svg",
  38498. extra: 2387/2198,
  38499. bottom: 33/2420
  38500. }
  38501. },
  38502. beans: {
  38503. height: math.unit(1.85, "feet"),
  38504. name: "Beans",
  38505. image: {
  38506. source: "./media/characters/keegan/beans.svg"
  38507. }
  38508. },
  38509. },
  38510. [
  38511. {
  38512. name: "Normal",
  38513. height: math.unit(6 + 5/12, "feet"),
  38514. default: true
  38515. },
  38516. ]
  38517. ))
  38518. characterMakers.push(() => makeCharacter(
  38519. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38520. {
  38521. front: {
  38522. height: math.unit(9, "feet"),
  38523. name: "Front",
  38524. image: {
  38525. source: "./media/characters/colton/front.svg",
  38526. extra: 1589/1326,
  38527. bottom: 139/1728
  38528. }
  38529. },
  38530. },
  38531. [
  38532. {
  38533. name: "Normal",
  38534. height: math.unit(9, "feet"),
  38535. default: true
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38541. {
  38542. front: {
  38543. height: math.unit(2 + 9/12, "feet"),
  38544. name: "Front",
  38545. image: {
  38546. source: "./media/characters/bora/front.svg",
  38547. extra: 1265/1250,
  38548. bottom: 24/1289
  38549. }
  38550. },
  38551. },
  38552. [
  38553. {
  38554. name: "Normal",
  38555. height: math.unit(2 + 9/12, "feet"),
  38556. default: true
  38557. },
  38558. ]
  38559. ))
  38560. characterMakers.push(() => makeCharacter(
  38561. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38562. {
  38563. front: {
  38564. height: math.unit(8, "feet"),
  38565. name: "Front",
  38566. image: {
  38567. source: "./media/characters/myu-myu/front.svg",
  38568. extra: 1949/1857,
  38569. bottom: 90/2039
  38570. }
  38571. },
  38572. },
  38573. [
  38574. {
  38575. name: "Normal",
  38576. height: math.unit(8, "feet"),
  38577. default: true
  38578. },
  38579. {
  38580. name: "Big",
  38581. height: math.unit(15, "feet")
  38582. },
  38583. {
  38584. name: "BIG",
  38585. height: math.unit(25, "feet")
  38586. },
  38587. ]
  38588. ))
  38589. characterMakers.push(() => makeCharacter(
  38590. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38591. {
  38592. side: {
  38593. height: math.unit(7 + 5/12, "feet"),
  38594. weight: math.unit(2800, "lb"),
  38595. name: "Side",
  38596. image: {
  38597. source: "./media/characters/haloren/side.svg",
  38598. extra: 1793/409,
  38599. bottom: 59/1852
  38600. }
  38601. },
  38602. frontPaw: {
  38603. height: math.unit(2.36, "feet"),
  38604. name: "Front paw",
  38605. image: {
  38606. source: "./media/characters/haloren/front-paw.svg"
  38607. }
  38608. },
  38609. hindPaw: {
  38610. height: math.unit(3.18, "feet"),
  38611. name: "Hind paw",
  38612. image: {
  38613. source: "./media/characters/haloren/hind-paw.svg"
  38614. }
  38615. },
  38616. maw: {
  38617. height: math.unit(5.05, "feet"),
  38618. name: "Maw",
  38619. image: {
  38620. source: "./media/characters/haloren/maw.svg"
  38621. }
  38622. },
  38623. dick: {
  38624. height: math.unit(2.90, "feet"),
  38625. name: "Dick",
  38626. image: {
  38627. source: "./media/characters/haloren/dick.svg"
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(7 + 5/12, "feet"),
  38635. default: true
  38636. },
  38637. {
  38638. name: "Enhanced",
  38639. height: math.unit(14 + 3/12, "feet")
  38640. },
  38641. ]
  38642. ))
  38643. characterMakers.push(() => makeCharacter(
  38644. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38645. {
  38646. front: {
  38647. height: math.unit(171, "cm"),
  38648. name: "Front",
  38649. image: {
  38650. source: "./media/characters/kimmy/front.svg",
  38651. extra: 1491/1435,
  38652. bottom: 53/1544
  38653. }
  38654. },
  38655. },
  38656. [
  38657. {
  38658. name: "Small",
  38659. height: math.unit(9, "cm")
  38660. },
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(171, "cm"),
  38664. default: true
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38670. {
  38671. front: {
  38672. height: math.unit(8, "feet"),
  38673. weight: math.unit(300, "lb"),
  38674. name: "Front",
  38675. image: {
  38676. source: "./media/characters/galeboomer/front.svg",
  38677. extra: 4651/4415,
  38678. bottom: 162/4813
  38679. }
  38680. },
  38681. back: {
  38682. height: math.unit(8, "feet"),
  38683. weight: math.unit(300, "lb"),
  38684. name: "Back",
  38685. image: {
  38686. source: "./media/characters/galeboomer/back.svg",
  38687. extra: 4544/4314,
  38688. bottom: 16/4560
  38689. }
  38690. },
  38691. frontAlt: {
  38692. height: math.unit(8, "feet"),
  38693. weight: math.unit(300, "lb"),
  38694. name: "Front (Alt)",
  38695. image: {
  38696. source: "./media/characters/galeboomer/front-alt.svg",
  38697. extra: 4458/4228,
  38698. bottom: 68/4526
  38699. }
  38700. },
  38701. maw: {
  38702. height: math.unit(1.2, "feet"),
  38703. name: "Maw",
  38704. image: {
  38705. source: "./media/characters/galeboomer/maw.svg"
  38706. }
  38707. },
  38708. },
  38709. [
  38710. {
  38711. name: "Normal",
  38712. height: math.unit(8, "feet"),
  38713. default: true
  38714. },
  38715. ]
  38716. ))
  38717. characterMakers.push(() => makeCharacter(
  38718. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38719. {
  38720. front: {
  38721. height: math.unit(5 + 9/12, "feet"),
  38722. weight: math.unit(120, "lb"),
  38723. name: "Front",
  38724. image: {
  38725. source: "./media/characters/chyr/front.svg",
  38726. extra: 1323/1254,
  38727. bottom: 63/1386
  38728. }
  38729. },
  38730. back: {
  38731. height: math.unit(5 + 9/12, "feet"),
  38732. weight: math.unit(120, "lb"),
  38733. name: "Back",
  38734. image: {
  38735. source: "./media/characters/chyr/back.svg",
  38736. extra: 1323/1252,
  38737. bottom: 48/1371
  38738. }
  38739. },
  38740. },
  38741. [
  38742. {
  38743. name: "Normal",
  38744. height: math.unit(5 + 9/12, "feet"),
  38745. default: true
  38746. },
  38747. ]
  38748. ))
  38749. characterMakers.push(() => makeCharacter(
  38750. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38751. {
  38752. front: {
  38753. height: math.unit(7, "feet"),
  38754. weight: math.unit(310, "lb"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/solarus/front.svg",
  38758. extra: 2415/2021,
  38759. bottom: 103/2518
  38760. }
  38761. },
  38762. back: {
  38763. height: math.unit(7, "feet"),
  38764. weight: math.unit(310, "lb"),
  38765. name: "Back",
  38766. image: {
  38767. source: "./media/characters/solarus/back.svg",
  38768. extra: 2463/2089,
  38769. bottom: 79/2542
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Normal",
  38776. height: math.unit(7, "feet"),
  38777. default: true
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(16, "feet"),
  38786. name: "Front",
  38787. image: {
  38788. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38789. extra: 1844/1780,
  38790. bottom: 58/1902
  38791. }
  38792. },
  38793. winterCoat: {
  38794. height: math.unit(16, "feet"),
  38795. name: "Winter Coat",
  38796. image: {
  38797. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38798. extra: 1807/1775,
  38799. bottom: 69/1876
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(16, "feet"),
  38807. default: true
  38808. },
  38809. {
  38810. name: "Chicago Size",
  38811. height: math.unit(560, "feet")
  38812. },
  38813. ]
  38814. ))
  38815. characterMakers.push(() => makeCharacter(
  38816. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38817. {
  38818. front: {
  38819. height: math.unit(11 + 6/12, "feet"),
  38820. weight: math.unit(1366, "lb"),
  38821. name: "Front",
  38822. image: {
  38823. source: "./media/characters/lexor/front.svg",
  38824. extra: 1560/1481,
  38825. bottom: 211/1771
  38826. }
  38827. },
  38828. back: {
  38829. height: math.unit(11 + 6/12, "feet"),
  38830. weight: math.unit(1366, "lb"),
  38831. name: "Back",
  38832. image: {
  38833. source: "./media/characters/lexor/back.svg",
  38834. extra: 1614/1533,
  38835. bottom: 76/1690
  38836. }
  38837. },
  38838. maw: {
  38839. height: math.unit(3, "feet"),
  38840. name: "Maw",
  38841. image: {
  38842. source: "./media/characters/lexor/maw.svg"
  38843. }
  38844. },
  38845. dick: {
  38846. height: math.unit(2.59, "feet"),
  38847. name: "Dick",
  38848. image: {
  38849. source: "./media/characters/lexor/dick.svg"
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(11 + 6/12, "feet"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(5 + 8/12, "feet"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/magnum/front.svg",
  38869. extra: 942/855,
  38870. bottom: 26/968
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(5 + 8/12, "feet"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(18 + 4/12, "feet"),
  38887. weight: math.unit(1500, "kg"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/solas-sharpsman/front.svg",
  38891. extra: 1698/1589,
  38892. bottom: 0/1698
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(18 + 4/12, "feet"),
  38900. default: true
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38906. {
  38907. front: {
  38908. height: math.unit(5 + 5/12, "feet"),
  38909. weight: math.unit(180, "lb"),
  38910. name: "Front",
  38911. image: {
  38912. source: "./media/characters/october/front.svg",
  38913. extra: 1800/1650,
  38914. bottom: 0/1800
  38915. }
  38916. },
  38917. frontNsfw: {
  38918. height: math.unit(5 + 5/12, "feet"),
  38919. weight: math.unit(180, "lb"),
  38920. name: "Front (NSFW)",
  38921. image: {
  38922. source: "./media/characters/october/front-nsfw.svg",
  38923. extra: 1392/1307,
  38924. bottom: 42/1434
  38925. }
  38926. },
  38927. },
  38928. [
  38929. {
  38930. name: "Normal",
  38931. height: math.unit(5 + 5/12, "feet"),
  38932. default: true
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38938. {
  38939. front: {
  38940. height: math.unit(8 + 6/12, "feet"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/essynkardi/front.svg",
  38944. extra: 1914/1846,
  38945. bottom: 22/1936
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(8 + 6/12, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(6 + 6/12, "feet"),
  38962. weight: math.unit(7, "lb"),
  38963. name: "Front",
  38964. image: {
  38965. source: "./media/characters/icky/front.svg",
  38966. extra: 813/782,
  38967. bottom: 66/879
  38968. }
  38969. },
  38970. back: {
  38971. height: math.unit(6 + 6/12, "feet"),
  38972. weight: math.unit(7, "lb"),
  38973. name: "Back",
  38974. image: {
  38975. source: "./media/characters/icky/back.svg",
  38976. extra: 754/735,
  38977. bottom: 56/810
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(6 + 6/12, "feet"),
  38985. default: true
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(15, "feet"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/rojas/front.svg",
  38997. extra: 1462/1408,
  38998. bottom: 95/1557
  38999. }
  39000. },
  39001. back: {
  39002. height: math.unit(15, "feet"),
  39003. name: "Back",
  39004. image: {
  39005. source: "./media/characters/rojas/back.svg",
  39006. extra: 1023/954,
  39007. bottom: 28/1051
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Normal",
  39014. height: math.unit(15, "feet"),
  39015. default: true
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39021. {
  39022. frontHuman: {
  39023. height: math.unit(5 + 7/12, "feet"),
  39024. name: "Front (Human)",
  39025. image: {
  39026. source: "./media/characters/alek-dryagan/front-human.svg",
  39027. extra: 1687/1667,
  39028. bottom: 69/1756
  39029. }
  39030. },
  39031. backHuman: {
  39032. height: math.unit(5 + 7/12, "feet"),
  39033. name: "Back (Human)",
  39034. image: {
  39035. source: "./media/characters/alek-dryagan/back-human.svg",
  39036. extra: 1670/1649,
  39037. bottom: 65/1735
  39038. }
  39039. },
  39040. frontDemi: {
  39041. height: math.unit(65, "feet"),
  39042. name: "Front (Demi)",
  39043. image: {
  39044. source: "./media/characters/alek-dryagan/front-demi.svg",
  39045. extra: 1669/1642,
  39046. bottom: 49/1718
  39047. }
  39048. },
  39049. backDemi: {
  39050. height: math.unit(65, "feet"),
  39051. name: "Back (Demi)",
  39052. image: {
  39053. source: "./media/characters/alek-dryagan/back-demi.svg",
  39054. extra: 1658/1637,
  39055. bottom: 40/1698
  39056. }
  39057. },
  39058. mawHuman: {
  39059. height: math.unit(0.3, "feet"),
  39060. name: "Maw (Human)",
  39061. image: {
  39062. source: "./media/characters/alek-dryagan/maw-human.svg"
  39063. }
  39064. },
  39065. mawDemi: {
  39066. height: math.unit(3.8, "feet"),
  39067. name: "Maw (Demi)",
  39068. image: {
  39069. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Normal",
  39076. height: math.unit(5 + 7/12, "feet"),
  39077. default: true
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39083. {
  39084. frontHuman: {
  39085. height: math.unit(5 + 2/12, "feet"),
  39086. name: "Front (Human)",
  39087. image: {
  39088. source: "./media/characters/gen/front-human.svg",
  39089. extra: 1627/1538,
  39090. bottom: 71/1698
  39091. }
  39092. },
  39093. backHuman: {
  39094. height: math.unit(5 + 2/12, "feet"),
  39095. name: "Back (Human)",
  39096. image: {
  39097. source: "./media/characters/gen/back-human.svg",
  39098. extra: 1638/1548,
  39099. bottom: 69/1707
  39100. }
  39101. },
  39102. frontDemi: {
  39103. height: math.unit(5 + 2/12, "feet"),
  39104. name: "Front (Demi)",
  39105. image: {
  39106. source: "./media/characters/gen/front-demi.svg",
  39107. extra: 1627/1538,
  39108. bottom: 71/1698
  39109. }
  39110. },
  39111. backDemi: {
  39112. height: math.unit(5 + 2/12, "feet"),
  39113. name: "Back (Demi)",
  39114. image: {
  39115. source: "./media/characters/gen/back-demi.svg",
  39116. extra: 1638/1548,
  39117. bottom: 69/1707
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Normal",
  39124. height: math.unit(5 + 2/12, "feet"),
  39125. default: true
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39131. {
  39132. frontImp: {
  39133. height: math.unit(1 + 11/12, "feet"),
  39134. name: "Front (Imp)",
  39135. image: {
  39136. source: "./media/characters/max-kobold/front-imp.svg",
  39137. extra: 1238/1134,
  39138. bottom: 81/1319
  39139. }
  39140. },
  39141. backImp: {
  39142. height: math.unit(1 + 11/12, "feet"),
  39143. name: "Back (Imp)",
  39144. image: {
  39145. source: "./media/characters/max-kobold/back-imp.svg",
  39146. extra: 1334/1175,
  39147. bottom: 34/1368
  39148. }
  39149. },
  39150. frontDemi: {
  39151. height: math.unit(5 + 9/12, "feet"),
  39152. name: "Front (Demi)",
  39153. image: {
  39154. source: "./media/characters/max-kobold/front-demi.svg",
  39155. extra: 1715/1685,
  39156. bottom: 54/1769
  39157. }
  39158. },
  39159. backDemi: {
  39160. height: math.unit(5 + 9/12, "feet"),
  39161. name: "Back (Demi)",
  39162. image: {
  39163. source: "./media/characters/max-kobold/back-demi.svg",
  39164. extra: 1752/1729,
  39165. bottom: 41/1793
  39166. }
  39167. },
  39168. handImp: {
  39169. height: math.unit(0.45, "feet"),
  39170. name: "Hand (Imp)",
  39171. image: {
  39172. source: "./media/characters/max-kobold/hand.svg"
  39173. }
  39174. },
  39175. pawImp: {
  39176. height: math.unit(0.46, "feet"),
  39177. name: "Paw (Imp)",
  39178. image: {
  39179. source: "./media/characters/max-kobold/paw.svg"
  39180. }
  39181. },
  39182. handDemi: {
  39183. height: math.unit(0.80, "feet"),
  39184. name: "Hand (Demi)",
  39185. image: {
  39186. source: "./media/characters/max-kobold/hand.svg"
  39187. }
  39188. },
  39189. pawDemi: {
  39190. height: math.unit(1.1, "feet"),
  39191. name: "Paw (Demi)",
  39192. image: {
  39193. source: "./media/characters/max-kobold/paw.svg"
  39194. }
  39195. },
  39196. headImp: {
  39197. height: math.unit(1.33, "feet"),
  39198. name: "Head (Imp)",
  39199. image: {
  39200. source: "./media/characters/max-kobold/head-imp.svg"
  39201. }
  39202. },
  39203. mawImp: {
  39204. height: math.unit(0.75, "feet"),
  39205. name: "Maw (Imp)",
  39206. image: {
  39207. source: "./media/characters/max-kobold/maw-imp.svg"
  39208. }
  39209. },
  39210. mawDemi: {
  39211. height: math.unit(0.42, "feet"),
  39212. name: "Maw (Demi)",
  39213. image: {
  39214. source: "./media/characters/max-kobold/maw-demi.svg"
  39215. }
  39216. },
  39217. },
  39218. [
  39219. {
  39220. name: "Normal",
  39221. height: math.unit(1 + 11/12, "feet"),
  39222. default: true
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39228. {
  39229. front: {
  39230. height: math.unit(7 + 5/12, "feet"),
  39231. name: "Front",
  39232. image: {
  39233. source: "./media/characters/carbon/front.svg",
  39234. extra: 1754/1689,
  39235. bottom: 65/1819
  39236. }
  39237. },
  39238. back: {
  39239. height: math.unit(7 + 5/12, "feet"),
  39240. name: "Back",
  39241. image: {
  39242. source: "./media/characters/carbon/back.svg",
  39243. extra: 1762/1695,
  39244. bottom: 24/1786
  39245. }
  39246. },
  39247. frontGigantamax: {
  39248. height: math.unit(150, "feet"),
  39249. name: "Front (Gigantamax)",
  39250. image: {
  39251. source: "./media/characters/carbon/front-gigantamax.svg",
  39252. extra: 1826/1669,
  39253. bottom: 59/1885
  39254. }
  39255. },
  39256. backGigantamax: {
  39257. height: math.unit(150, "feet"),
  39258. name: "Back (Gigantamax)",
  39259. image: {
  39260. source: "./media/characters/carbon/back-gigantamax.svg",
  39261. extra: 1796/1653,
  39262. bottom: 53/1849
  39263. }
  39264. },
  39265. maw: {
  39266. height: math.unit(0.48, "feet"),
  39267. name: "Maw",
  39268. image: {
  39269. source: "./media/characters/carbon/maw.svg"
  39270. }
  39271. },
  39272. mawGigantamax: {
  39273. height: math.unit(7.5, "feet"),
  39274. name: "Maw (Gigantamax)",
  39275. image: {
  39276. source: "./media/characters/carbon/maw-gigantamax.svg"
  39277. }
  39278. },
  39279. },
  39280. [
  39281. {
  39282. name: "Normal",
  39283. height: math.unit(7 + 5/12, "feet"),
  39284. default: true
  39285. },
  39286. ]
  39287. ))
  39288. characterMakers.push(() => makeCharacter(
  39289. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39290. {
  39291. front: {
  39292. height: math.unit(6, "feet"),
  39293. name: "Front",
  39294. image: {
  39295. source: "./media/characters/maverick/front.svg",
  39296. extra: 1672/1661,
  39297. bottom: 85/1757
  39298. }
  39299. },
  39300. back: {
  39301. height: math.unit(6, "feet"),
  39302. name: "Back",
  39303. image: {
  39304. source: "./media/characters/maverick/back.svg",
  39305. extra: 1642/1631,
  39306. bottom: 38/1680
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(6, "feet"),
  39314. default: true
  39315. },
  39316. ]
  39317. ))
  39318. characterMakers.push(() => makeCharacter(
  39319. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39320. {
  39321. front: {
  39322. height: math.unit(15, "feet"),
  39323. weight: math.unit(615, "lb"),
  39324. name: "Front",
  39325. image: {
  39326. source: "./media/characters/grockle/front.svg",
  39327. extra: 1535/1427,
  39328. bottom: 56/1591
  39329. }
  39330. },
  39331. },
  39332. [
  39333. {
  39334. name: "Normal",
  39335. height: math.unit(15, "feet"),
  39336. default: true
  39337. },
  39338. {
  39339. name: "Large",
  39340. height: math.unit(150, "feet")
  39341. },
  39342. {
  39343. name: "Macro",
  39344. height: math.unit(1876, "feet")
  39345. },
  39346. {
  39347. name: "Mega Macro",
  39348. height: math.unit(121940, "feet")
  39349. },
  39350. {
  39351. name: "Giga Macro",
  39352. height: math.unit(750, "km")
  39353. },
  39354. {
  39355. name: "Tera Macro",
  39356. height: math.unit(750000, "km")
  39357. },
  39358. {
  39359. name: "Galactic",
  39360. height: math.unit(1.4e5, "km")
  39361. },
  39362. {
  39363. name: "Godlike",
  39364. height: math.unit(9.8e280, "galaxies")
  39365. },
  39366. ]
  39367. ))
  39368. characterMakers.push(() => makeCharacter(
  39369. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39370. {
  39371. front: {
  39372. height: math.unit(11, "meters"),
  39373. weight: math.unit(20, "tonnes"),
  39374. name: "Front",
  39375. image: {
  39376. source: "./media/characters/alistair/front.svg",
  39377. extra: 1265/1009,
  39378. bottom: 93/1358
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(11, "meters"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(5 + 8/12, "feet"),
  39395. name: "Front",
  39396. image: {
  39397. source: "./media/characters/haruka/front.svg",
  39398. extra: 2012/1952,
  39399. bottom: 0/2012
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Normal",
  39406. height: math.unit(5 + 8/12, "feet"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39413. {
  39414. back: {
  39415. height: math.unit(9, "feet"),
  39416. name: "Back",
  39417. image: {
  39418. source: "./media/characters/vivian-sylveon/back.svg",
  39419. extra: 1853/1714,
  39420. bottom: 0/1853
  39421. }
  39422. },
  39423. },
  39424. [
  39425. {
  39426. name: "Normal",
  39427. height: math.unit(9, "feet"),
  39428. default: true
  39429. },
  39430. {
  39431. name: "Macro",
  39432. height: math.unit(500, "feet")
  39433. },
  39434. {
  39435. name: "Megamacro",
  39436. height: math.unit(600, "miles")
  39437. },
  39438. {
  39439. name: "Gigamacro",
  39440. height: math.unit(30000, "miles")
  39441. },
  39442. ]
  39443. ))
  39444. characterMakers.push(() => makeCharacter(
  39445. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39446. {
  39447. anthro: {
  39448. height: math.unit(5 + 10/12, "feet"),
  39449. weight: math.unit(100, "lb"),
  39450. name: "Anthro",
  39451. image: {
  39452. source: "./media/characters/daiki/anthro.svg",
  39453. extra: 1115/1027,
  39454. bottom: 69/1184
  39455. }
  39456. },
  39457. feral: {
  39458. height: math.unit(200, "feet"),
  39459. name: "Feral",
  39460. image: {
  39461. source: "./media/characters/daiki/feral.svg",
  39462. extra: 1256/313,
  39463. bottom: 39/1295
  39464. }
  39465. },
  39466. feralHead: {
  39467. height: math.unit(171, "feet"),
  39468. name: "Feral Head",
  39469. image: {
  39470. source: "./media/characters/daiki/feral-head.svg"
  39471. }
  39472. },
  39473. manaDragon: {
  39474. height: math.unit(170, "meters"),
  39475. name: "Mana-dragon",
  39476. image: {
  39477. source: "./media/characters/daiki/mana-dragon.svg",
  39478. extra: 763/420,
  39479. bottom: 97/860
  39480. }
  39481. },
  39482. },
  39483. [
  39484. {
  39485. name: "Normal",
  39486. height: math.unit(5 + 10/12, "feet"),
  39487. default: true
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39493. {
  39494. fullyEquippedFront: {
  39495. height: math.unit(3 + 1/12, "feet"),
  39496. weight: math.unit(24, "lb"),
  39497. name: "Fully Equipped (Front)",
  39498. image: {
  39499. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39500. extra: 687/605,
  39501. bottom: 18/705
  39502. }
  39503. },
  39504. fullyEquippedBack: {
  39505. height: math.unit(3 + 1/12, "feet"),
  39506. weight: math.unit(24, "lb"),
  39507. name: "Fully Equipped (Back)",
  39508. image: {
  39509. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39510. extra: 689/590,
  39511. bottom: 18/707
  39512. }
  39513. },
  39514. dailyWear: {
  39515. height: math.unit(3 + 1/12, "feet"),
  39516. weight: math.unit(24, "lb"),
  39517. name: "Daily Wear",
  39518. image: {
  39519. source: "./media/characters/tea-spot/daily-wear.svg",
  39520. extra: 701/620,
  39521. bottom: 21/722
  39522. }
  39523. },
  39524. maidWork: {
  39525. height: math.unit(3 + 1/12, "feet"),
  39526. weight: math.unit(24, "lb"),
  39527. name: "Maid Work",
  39528. image: {
  39529. source: "./media/characters/tea-spot/maid-work.svg",
  39530. extra: 693/609,
  39531. bottom: 15/708
  39532. }
  39533. },
  39534. },
  39535. [
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(3 + 1/12, "feet"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(175, "cm"),
  39548. weight: math.unit(75, "kg"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/chee/front.svg",
  39552. extra: 1796/1740,
  39553. bottom: 40/1836
  39554. }
  39555. },
  39556. },
  39557. [
  39558. {
  39559. name: "Micro-Micro",
  39560. height: math.unit(1, "nm")
  39561. },
  39562. {
  39563. name: "Micro-erst",
  39564. height: math.unit(1, "micrometer")
  39565. },
  39566. {
  39567. name: "Micro-er",
  39568. height: math.unit(1, "cm")
  39569. },
  39570. {
  39571. name: "Normal",
  39572. height: math.unit(175, "cm"),
  39573. default: true
  39574. },
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(100, "m")
  39578. },
  39579. {
  39580. name: "Macro-er",
  39581. height: math.unit(1, "km")
  39582. },
  39583. {
  39584. name: "Macro-erst",
  39585. height: math.unit(10, "km")
  39586. },
  39587. {
  39588. name: "Macro-Macro",
  39589. height: math.unit(100, "km")
  39590. },
  39591. ]
  39592. ))
  39593. characterMakers.push(() => makeCharacter(
  39594. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39595. {
  39596. front: {
  39597. height: math.unit(11 + 9/12, "feet"),
  39598. weight: math.unit(935, "lb"),
  39599. name: "Front",
  39600. image: {
  39601. source: "./media/characters/kingsley/front.svg",
  39602. extra: 1803/1674,
  39603. bottom: 127/1930
  39604. }
  39605. },
  39606. frontNude: {
  39607. height: math.unit(11 + 9/12, "feet"),
  39608. weight: math.unit(935, "lb"),
  39609. name: "Front (Nude)",
  39610. image: {
  39611. source: "./media/characters/kingsley/front-nude.svg",
  39612. extra: 1803/1674,
  39613. bottom: 127/1930
  39614. }
  39615. },
  39616. },
  39617. [
  39618. {
  39619. name: "Normal",
  39620. height: math.unit(11 + 9/12, "feet"),
  39621. default: true
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39627. {
  39628. side: {
  39629. height: math.unit(9, "feet"),
  39630. name: "Side",
  39631. image: {
  39632. source: "./media/characters/rymel/side.svg",
  39633. extra: 792/469,
  39634. bottom: 121/913
  39635. }
  39636. },
  39637. maw: {
  39638. height: math.unit(2.4, "meters"),
  39639. name: "Maw",
  39640. image: {
  39641. source: "./media/characters/rymel/maw.svg"
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "House Drake",
  39648. height: math.unit(2, "feet")
  39649. },
  39650. {
  39651. name: "Reduced",
  39652. height: math.unit(4.5, "feet")
  39653. },
  39654. {
  39655. name: "Normal",
  39656. height: math.unit(9, "feet"),
  39657. default: true
  39658. },
  39659. ]
  39660. ))
  39661. characterMakers.push(() => makeCharacter(
  39662. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39663. {
  39664. front: {
  39665. height: math.unit(1.74, "meters"),
  39666. weight: math.unit(55, "kg"),
  39667. name: "Front",
  39668. image: {
  39669. source: "./media/characters/rubus/front.svg",
  39670. extra: 1894/1742,
  39671. bottom: 44/1938
  39672. }
  39673. },
  39674. },
  39675. [
  39676. {
  39677. name: "Normal",
  39678. height: math.unit(1.74, "meters"),
  39679. default: true
  39680. },
  39681. ]
  39682. ))
  39683. characterMakers.push(() => makeCharacter(
  39684. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39685. {
  39686. front: {
  39687. height: math.unit(5 + 2/12, "feet"),
  39688. weight: math.unit(112, "lb"),
  39689. name: "Front",
  39690. image: {
  39691. source: "./media/characters/cassie-kingston/front.svg",
  39692. extra: 1438/1390,
  39693. bottom: 47/1485
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(5 + 2/12, "feet"),
  39701. default: true
  39702. },
  39703. {
  39704. name: "Macro",
  39705. height: math.unit(128, "feet")
  39706. },
  39707. {
  39708. name: "Megamacro",
  39709. height: math.unit(2.56, "miles")
  39710. },
  39711. ]
  39712. ))
  39713. characterMakers.push(() => makeCharacter(
  39714. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39715. {
  39716. front: {
  39717. height: math.unit(7, "feet"),
  39718. name: "Front",
  39719. image: {
  39720. source: "./media/characters/fox/front.svg",
  39721. extra: 1798/1703,
  39722. bottom: 55/1853
  39723. }
  39724. },
  39725. back: {
  39726. height: math.unit(7, "feet"),
  39727. name: "Back",
  39728. image: {
  39729. source: "./media/characters/fox/back.svg",
  39730. extra: 1748/1649,
  39731. bottom: 32/1780
  39732. }
  39733. },
  39734. head: {
  39735. height: math.unit(1.95, "feet"),
  39736. name: "Head",
  39737. image: {
  39738. source: "./media/characters/fox/head.svg"
  39739. }
  39740. },
  39741. dick: {
  39742. height: math.unit(1.33, "feet"),
  39743. name: "Dick",
  39744. image: {
  39745. source: "./media/characters/fox/dick.svg"
  39746. }
  39747. },
  39748. foot: {
  39749. height: math.unit(1, "feet"),
  39750. name: "Foot",
  39751. image: {
  39752. source: "./media/characters/fox/foot.svg"
  39753. }
  39754. },
  39755. paw: {
  39756. height: math.unit(0.92, "feet"),
  39757. name: "Paw",
  39758. image: {
  39759. source: "./media/characters/fox/paw.svg"
  39760. }
  39761. },
  39762. },
  39763. [
  39764. {
  39765. name: "Small",
  39766. height: math.unit(3, "inches")
  39767. },
  39768. {
  39769. name: "\"Realistic\"",
  39770. height: math.unit(7, "feet")
  39771. },
  39772. {
  39773. name: "Normal",
  39774. height: math.unit(150, "feet"),
  39775. default: true
  39776. },
  39777. {
  39778. name: "BIG",
  39779. height: math.unit(1200, "feet")
  39780. },
  39781. {
  39782. name: "👀",
  39783. height: math.unit(5, "miles")
  39784. },
  39785. {
  39786. name: "👀👀👀",
  39787. height: math.unit(64, "miles")
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39793. {
  39794. front: {
  39795. height: math.unit(625, "feet"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/asonja-rossa/front.svg",
  39799. extra: 1833/1686,
  39800. bottom: 24/1857
  39801. }
  39802. },
  39803. back: {
  39804. height: math.unit(625, "feet"),
  39805. name: "Back",
  39806. image: {
  39807. source: "./media/characters/asonja-rossa/back.svg",
  39808. extra: 1852/1753,
  39809. bottom: 26/1878
  39810. }
  39811. },
  39812. },
  39813. [
  39814. {
  39815. name: "Macro",
  39816. height: math.unit(625, "feet"),
  39817. default: true
  39818. },
  39819. ]
  39820. ))
  39821. characterMakers.push(() => makeCharacter(
  39822. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39823. {
  39824. side: {
  39825. height: math.unit(8, "feet"),
  39826. name: "Side",
  39827. image: {
  39828. source: "./media/characters/rezukii/side.svg",
  39829. extra: 979/542,
  39830. bottom: 87/1066
  39831. }
  39832. },
  39833. sitting: {
  39834. height: math.unit(14.6, "feet"),
  39835. name: "Sitting",
  39836. image: {
  39837. source: "./media/characters/rezukii/sitting.svg",
  39838. extra: 1023/813,
  39839. bottom: 45/1068
  39840. }
  39841. },
  39842. },
  39843. [
  39844. {
  39845. name: "Tiny",
  39846. height: math.unit(2, "feet")
  39847. },
  39848. {
  39849. name: "Smol",
  39850. height: math.unit(4, "feet")
  39851. },
  39852. {
  39853. name: "Normal",
  39854. height: math.unit(8, "feet"),
  39855. default: true
  39856. },
  39857. {
  39858. name: "Big",
  39859. height: math.unit(12, "feet")
  39860. },
  39861. {
  39862. name: "Macro",
  39863. height: math.unit(30, "feet")
  39864. },
  39865. ]
  39866. ))
  39867. characterMakers.push(() => makeCharacter(
  39868. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39869. {
  39870. front: {
  39871. height: math.unit(14, "feet"),
  39872. weight: math.unit(9.5, "tonnes"),
  39873. name: "Front",
  39874. image: {
  39875. source: "./media/characters/dawnheart/front.svg",
  39876. extra: 2792/2675,
  39877. bottom: 64/2856
  39878. }
  39879. },
  39880. },
  39881. [
  39882. {
  39883. name: "Normal",
  39884. height: math.unit(14, "feet"),
  39885. default: true
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39891. {
  39892. front: {
  39893. height: math.unit(1.7, "m"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/gladi/front.svg",
  39897. extra: 1460/1362,
  39898. bottom: 19/1479
  39899. }
  39900. },
  39901. back: {
  39902. height: math.unit(1.7, "m"),
  39903. name: "Back",
  39904. image: {
  39905. source: "./media/characters/gladi/back.svg",
  39906. extra: 1459/1357,
  39907. bottom: 12/1471
  39908. }
  39909. },
  39910. feral: {
  39911. height: math.unit(2.05, "m"),
  39912. name: "Feral",
  39913. image: {
  39914. source: "./media/characters/gladi/feral.svg",
  39915. extra: 821/557,
  39916. bottom: 91/912
  39917. }
  39918. },
  39919. },
  39920. [
  39921. {
  39922. name: "Shortest",
  39923. height: math.unit(70, "cm")
  39924. },
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(1.7, "m")
  39928. },
  39929. {
  39930. name: "Macro",
  39931. height: math.unit(10, "m"),
  39932. default: true
  39933. },
  39934. {
  39935. name: "Tallest",
  39936. height: math.unit(200, "m")
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(5 + 7/12, "feet"),
  39945. weight: math.unit(2, "tons"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/erdno/front.svg",
  39949. extra: 1234/1129,
  39950. bottom: 35/1269
  39951. }
  39952. },
  39953. angled: {
  39954. height: math.unit(5 + 7/12, "feet"),
  39955. weight: math.unit(2, "tons"),
  39956. name: "Angled",
  39957. image: {
  39958. source: "./media/characters/erdno/angled.svg",
  39959. extra: 1185/1139,
  39960. bottom: 36/1221
  39961. }
  39962. },
  39963. side: {
  39964. height: math.unit(5 + 7/12, "feet"),
  39965. weight: math.unit(2, "tons"),
  39966. name: "Side",
  39967. image: {
  39968. source: "./media/characters/erdno/side.svg",
  39969. extra: 1191/1144,
  39970. bottom: 40/1231
  39971. }
  39972. },
  39973. back: {
  39974. height: math.unit(5 + 7/12, "feet"),
  39975. weight: math.unit(2, "tons"),
  39976. name: "Back",
  39977. image: {
  39978. source: "./media/characters/erdno/back.svg",
  39979. extra: 1202/1146,
  39980. bottom: 17/1219
  39981. }
  39982. },
  39983. frontNsfw: {
  39984. height: math.unit(5 + 7/12, "feet"),
  39985. weight: math.unit(2, "tons"),
  39986. name: "Front (NSFW)",
  39987. image: {
  39988. source: "./media/characters/erdno/front-nsfw.svg",
  39989. extra: 1234/1129,
  39990. bottom: 35/1269
  39991. }
  39992. },
  39993. angledNsfw: {
  39994. height: math.unit(5 + 7/12, "feet"),
  39995. weight: math.unit(2, "tons"),
  39996. name: "Angled (NSFW)",
  39997. image: {
  39998. source: "./media/characters/erdno/angled-nsfw.svg",
  39999. extra: 1185/1139,
  40000. bottom: 36/1221
  40001. }
  40002. },
  40003. sideNsfw: {
  40004. height: math.unit(5 + 7/12, "feet"),
  40005. weight: math.unit(2, "tons"),
  40006. name: "Side (NSFW)",
  40007. image: {
  40008. source: "./media/characters/erdno/side-nsfw.svg",
  40009. extra: 1191/1144,
  40010. bottom: 40/1231
  40011. }
  40012. },
  40013. backNsfw: {
  40014. height: math.unit(5 + 7/12, "feet"),
  40015. weight: math.unit(2, "tons"),
  40016. name: "Back (NSFW)",
  40017. image: {
  40018. source: "./media/characters/erdno/back-nsfw.svg",
  40019. extra: 1202/1146,
  40020. bottom: 17/1219
  40021. }
  40022. },
  40023. frontHyper: {
  40024. height: math.unit(5 + 7/12, "feet"),
  40025. weight: math.unit(2, "tons"),
  40026. name: "Front (Hyper)",
  40027. image: {
  40028. source: "./media/characters/erdno/front-hyper.svg",
  40029. extra: 1298/1136,
  40030. bottom: 35/1333
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Normal",
  40037. height: math.unit(5 + 7/12, "feet"),
  40038. default: true
  40039. },
  40040. {
  40041. name: "Big",
  40042. height: math.unit(5.7, "meters")
  40043. },
  40044. {
  40045. name: "Macro",
  40046. height: math.unit(5.7, "kilometers")
  40047. },
  40048. {
  40049. name: "Megamacro",
  40050. height: math.unit(5.7, "earths")
  40051. },
  40052. ]
  40053. ))
  40054. characterMakers.push(() => makeCharacter(
  40055. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40056. {
  40057. front: {
  40058. height: math.unit(5 + 10/12, "feet"),
  40059. weight: math.unit(150, "lb"),
  40060. name: "Front",
  40061. image: {
  40062. source: "./media/characters/jamie/front.svg",
  40063. extra: 1908/1768,
  40064. bottom: 19/1927
  40065. }
  40066. },
  40067. },
  40068. [
  40069. {
  40070. name: "Minimum",
  40071. height: math.unit(2, "cm")
  40072. },
  40073. {
  40074. name: "Micro",
  40075. height: math.unit(3, "inches")
  40076. },
  40077. {
  40078. name: "Normal",
  40079. height: math.unit(5 + 10/12, "feet"),
  40080. default: true
  40081. },
  40082. {
  40083. name: "Macro",
  40084. height: math.unit(150, "feet")
  40085. },
  40086. {
  40087. name: "Megamacro",
  40088. height: math.unit(10000, "m")
  40089. },
  40090. ]
  40091. ))
  40092. characterMakers.push(() => makeCharacter(
  40093. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40094. {
  40095. front: {
  40096. height: math.unit(2, "meters"),
  40097. weight: math.unit(100, "kg"),
  40098. name: "Front",
  40099. image: {
  40100. source: "./media/characters/shiron/front.svg",
  40101. extra: 2103/1985,
  40102. bottom: 98/2201
  40103. }
  40104. },
  40105. back: {
  40106. height: math.unit(2, "meters"),
  40107. weight: math.unit(100, "kg"),
  40108. name: "Back",
  40109. image: {
  40110. source: "./media/characters/shiron/back.svg",
  40111. extra: 2110/2015,
  40112. bottom: 89/2199
  40113. }
  40114. },
  40115. hand: {
  40116. height: math.unit(0.96, "feet"),
  40117. name: "Hand",
  40118. image: {
  40119. source: "./media/characters/shiron/hand.svg"
  40120. }
  40121. },
  40122. foot: {
  40123. height: math.unit(1.464, "feet"),
  40124. name: "Foot",
  40125. image: {
  40126. source: "./media/characters/shiron/foot.svg"
  40127. }
  40128. },
  40129. },
  40130. [
  40131. {
  40132. name: "Normal",
  40133. height: math.unit(2, "meters")
  40134. },
  40135. {
  40136. name: "Macro",
  40137. height: math.unit(500, "meters"),
  40138. default: true
  40139. },
  40140. {
  40141. name: "Megamacro",
  40142. height: math.unit(20, "km")
  40143. },
  40144. ]
  40145. ))
  40146. characterMakers.push(() => makeCharacter(
  40147. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40148. {
  40149. front: {
  40150. height: math.unit(6, "feet"),
  40151. name: "Front",
  40152. image: {
  40153. source: "./media/characters/sam/front.svg",
  40154. extra: 849/826,
  40155. bottom: 19/868
  40156. }
  40157. },
  40158. },
  40159. [
  40160. {
  40161. name: "Normal",
  40162. height: math.unit(6, "feet"),
  40163. default: true
  40164. },
  40165. ]
  40166. ))
  40167. characterMakers.push(() => makeCharacter(
  40168. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40169. {
  40170. front: {
  40171. height: math.unit(8 + 4/12, "feet"),
  40172. weight: math.unit(122, "kg"),
  40173. name: "Front",
  40174. image: {
  40175. source: "./media/characters/namori-kurogawa/front.svg",
  40176. extra: 1894/1576,
  40177. bottom: 34/1928
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Normal",
  40184. height: math.unit(8 + 4/12, "feet"),
  40185. default: true
  40186. },
  40187. ]
  40188. ))
  40189. characterMakers.push(() => makeCharacter(
  40190. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40191. {
  40192. front: {
  40193. height: math.unit(9, "feet"),
  40194. weight: math.unit(621, "lb"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/unmru/front.svg",
  40198. extra: 1853/1747,
  40199. bottom: 73/1926
  40200. }
  40201. },
  40202. side: {
  40203. height: math.unit(9, "feet"),
  40204. weight: math.unit(621, "lb"),
  40205. name: "Side",
  40206. image: {
  40207. source: "./media/characters/unmru/side.svg",
  40208. extra: 1781/1671,
  40209. bottom: 127/1908
  40210. }
  40211. },
  40212. back: {
  40213. height: math.unit(9, "feet"),
  40214. weight: math.unit(621, "lb"),
  40215. name: "Back",
  40216. image: {
  40217. source: "./media/characters/unmru/back.svg",
  40218. extra: 1894/1765,
  40219. bottom: 75/1969
  40220. }
  40221. },
  40222. dick: {
  40223. height: math.unit(3, "feet"),
  40224. weight: math.unit(35, "lb"),
  40225. name: "Dick",
  40226. image: {
  40227. source: "./media/characters/unmru/dick.svg"
  40228. }
  40229. },
  40230. },
  40231. [
  40232. {
  40233. name: "Normal",
  40234. height: math.unit(9, "feet")
  40235. },
  40236. {
  40237. name: "Natural",
  40238. height: math.unit(27, "feet"),
  40239. default: true
  40240. },
  40241. {
  40242. name: "Giant",
  40243. height: math.unit(90, "feet")
  40244. },
  40245. {
  40246. name: "Kaiju",
  40247. height: math.unit(270, "feet")
  40248. },
  40249. {
  40250. name: "Macro",
  40251. height: math.unit(900, "feet")
  40252. },
  40253. {
  40254. name: "Macro+",
  40255. height: math.unit(2700, "feet")
  40256. },
  40257. {
  40258. name: "Megamacro",
  40259. height: math.unit(9000, "feet")
  40260. },
  40261. {
  40262. name: "City-Crushing",
  40263. height: math.unit(27000, "feet")
  40264. },
  40265. {
  40266. name: "Mountain-Mashing",
  40267. height: math.unit(90000, "feet")
  40268. },
  40269. {
  40270. name: "Earth-Eclipsing",
  40271. height: math.unit(2.7e8, "feet")
  40272. },
  40273. {
  40274. name: "Sol-Swallowing",
  40275. height: math.unit(9e10, "feet")
  40276. },
  40277. {
  40278. name: "Majoris-Munching",
  40279. height: math.unit(2.7e13, "feet")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40285. {
  40286. front: {
  40287. height: math.unit(1, "inch"),
  40288. name: "Front",
  40289. image: {
  40290. source: "./media/characters/squeaks-mouse/front.svg",
  40291. extra: 352/308,
  40292. bottom: 25/377
  40293. }
  40294. },
  40295. },
  40296. [
  40297. {
  40298. name: "Micro",
  40299. height: math.unit(1, "inch"),
  40300. default: true
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40306. {
  40307. side: {
  40308. height: math.unit(35, "feet"),
  40309. name: "Side",
  40310. image: {
  40311. source: "./media/characters/sayko/side.svg",
  40312. extra: 1697/1021,
  40313. bottom: 82/1779
  40314. }
  40315. },
  40316. head: {
  40317. height: math.unit(16, "feet"),
  40318. name: "Head",
  40319. image: {
  40320. source: "./media/characters/sayko/head.svg"
  40321. }
  40322. },
  40323. forepaw: {
  40324. height: math.unit(7.85, "feet"),
  40325. name: "Forepaw",
  40326. image: {
  40327. source: "./media/characters/sayko/forepaw.svg"
  40328. }
  40329. },
  40330. hindpaw: {
  40331. height: math.unit(8.8, "feet"),
  40332. name: "Hindpaw",
  40333. image: {
  40334. source: "./media/characters/sayko/hindpaw.svg"
  40335. }
  40336. },
  40337. },
  40338. [
  40339. {
  40340. name: "Normal",
  40341. height: math.unit(35, "feet"),
  40342. default: true
  40343. },
  40344. {
  40345. name: "Colossus",
  40346. height: math.unit(100, "meters")
  40347. },
  40348. {
  40349. name: "\"Small\" Deity",
  40350. height: math.unit(1, "km")
  40351. },
  40352. {
  40353. name: "\"Large\" Deity",
  40354. height: math.unit(15, "km")
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(6, "feet"),
  40363. weight: math.unit(250, "lb"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/mukiro/front.svg",
  40367. extra: 1368/1310,
  40368. bottom: 34/1402
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Normal",
  40375. height: math.unit(6, "feet"),
  40376. default: true
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(12 + 4/12, "feet"),
  40385. name: "Front",
  40386. image: {
  40387. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40388. extra: 1346/1311,
  40389. bottom: 65/1411
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Base",
  40396. height: math.unit(12 + 4/12, "feet"),
  40397. default: true
  40398. },
  40399. {
  40400. name: "Macro",
  40401. height: math.unit(150, "feet")
  40402. },
  40403. {
  40404. name: "Mega",
  40405. height: math.unit(2, "miles")
  40406. },
  40407. {
  40408. name: "Demi God",
  40409. height: math.unit(4, "AU")
  40410. },
  40411. {
  40412. name: "God Size",
  40413. height: math.unit(1, "universe")
  40414. },
  40415. ]
  40416. ))
  40417. characterMakers.push(() => makeCharacter(
  40418. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40419. {
  40420. front: {
  40421. height: math.unit(3 + 3/12, "feet"),
  40422. weight: math.unit(88, "lb"),
  40423. name: "Front",
  40424. image: {
  40425. source: "./media/characters/trey/front.svg",
  40426. extra: 1815/1509,
  40427. bottom: 60/1875
  40428. }
  40429. },
  40430. },
  40431. [
  40432. {
  40433. name: "Normal",
  40434. height: math.unit(3 + 3/12, "feet"),
  40435. default: true
  40436. },
  40437. ]
  40438. ))
  40439. characterMakers.push(() => makeCharacter(
  40440. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40441. {
  40442. front: {
  40443. height: math.unit(4, "meters"),
  40444. name: "Front",
  40445. image: {
  40446. source: "./media/characters/adelonda/front.svg",
  40447. extra: 1077/982,
  40448. bottom: 39/1116
  40449. }
  40450. },
  40451. back: {
  40452. height: math.unit(4, "meters"),
  40453. name: "Back",
  40454. image: {
  40455. source: "./media/characters/adelonda/back.svg",
  40456. extra: 1105/1003,
  40457. bottom: 25/1130
  40458. }
  40459. },
  40460. feral: {
  40461. height: math.unit(40/1.5, "meters"),
  40462. name: "Feral",
  40463. image: {
  40464. source: "./media/characters/adelonda/feral.svg",
  40465. extra: 597/271,
  40466. bottom: 387/984
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(4, "meters"),
  40474. default: true
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40480. {
  40481. front: {
  40482. height: math.unit(8 + 4/12, "feet"),
  40483. weight: math.unit(670, "lb"),
  40484. name: "Front",
  40485. image: {
  40486. source: "./media/characters/acadiel/front.svg",
  40487. extra: 1901/1595,
  40488. bottom: 142/2043
  40489. }
  40490. },
  40491. },
  40492. [
  40493. {
  40494. name: "Normal",
  40495. height: math.unit(8 + 4/12, "feet"),
  40496. default: true
  40497. },
  40498. {
  40499. name: "Macro",
  40500. height: math.unit(200, "feet")
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(6 + 2/12, "feet"),
  40509. weight: math.unit(185, "lb"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/kayne-ein/front.svg",
  40513. extra: 1780/1560,
  40514. bottom: 81/1861
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(6 + 2/12, "feet"),
  40522. default: true
  40523. },
  40524. {
  40525. name: "Transformation Stage",
  40526. height: math.unit(15, "feet")
  40527. },
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(150, "feet")
  40531. },
  40532. {
  40533. name: "Earth's Shadow",
  40534. height: math.unit(6200, "miles")
  40535. },
  40536. {
  40537. name: "Universal Demon",
  40538. height: math.unit(28e9, "parsecs")
  40539. },
  40540. {
  40541. name: "Multiverse God",
  40542. height: math.unit(3, "multiverses")
  40543. },
  40544. ]
  40545. ))
  40546. characterMakers.push(() => makeCharacter(
  40547. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40548. {
  40549. front: {
  40550. height: math.unit(5 + 5/12, "feet"),
  40551. name: "Front",
  40552. image: {
  40553. source: "./media/characters/fawn/front.svg",
  40554. extra: 1873/1731,
  40555. bottom: 95/1968
  40556. }
  40557. },
  40558. back: {
  40559. height: math.unit(5 + 5/12, "feet"),
  40560. name: "Back",
  40561. image: {
  40562. source: "./media/characters/fawn/back.svg",
  40563. extra: 1813/1700,
  40564. bottom: 14/1827
  40565. }
  40566. },
  40567. hoof: {
  40568. height: math.unit(1.45, "feet"),
  40569. name: "Hoof",
  40570. image: {
  40571. source: "./media/characters/fawn/hoof.svg"
  40572. }
  40573. },
  40574. },
  40575. [
  40576. {
  40577. name: "Normal",
  40578. height: math.unit(5 + 5/12, "feet"),
  40579. default: true
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40585. {
  40586. front: {
  40587. height: math.unit(2 + 5/12, "feet"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/orion/front.svg",
  40591. extra: 1366/1304,
  40592. bottom: 43/1409
  40593. }
  40594. },
  40595. paw: {
  40596. height: math.unit(0.52, "feet"),
  40597. name: "Paw",
  40598. image: {
  40599. source: "./media/characters/orion/paw.svg"
  40600. }
  40601. },
  40602. },
  40603. [
  40604. {
  40605. name: "Normal",
  40606. height: math.unit(2 + 5/12, "feet"),
  40607. default: true
  40608. },
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40613. {
  40614. front: {
  40615. height: math.unit(5 + 10/12, "feet"),
  40616. name: "Front",
  40617. image: {
  40618. source: "./media/characters/vera/front.svg",
  40619. extra: 1680/1575,
  40620. bottom: 49/1729
  40621. }
  40622. },
  40623. back: {
  40624. height: math.unit(5 + 10/12, "feet"),
  40625. name: "Back",
  40626. image: {
  40627. source: "./media/characters/vera/back.svg",
  40628. extra: 1700/1588,
  40629. bottom: 18/1718
  40630. }
  40631. },
  40632. arcanine: {
  40633. height: math.unit(6 + 8/12, "feet"),
  40634. name: "Arcanine",
  40635. image: {
  40636. source: "./media/characters/vera/arcanine.svg",
  40637. extra: 1590/1511,
  40638. bottom: 71/1661
  40639. }
  40640. },
  40641. maw: {
  40642. height: math.unit(0.82, "feet"),
  40643. name: "Maw",
  40644. image: {
  40645. source: "./media/characters/vera/maw.svg"
  40646. }
  40647. },
  40648. mawArcanine: {
  40649. height: math.unit(0.97, "feet"),
  40650. name: "Maw (Arcanine)",
  40651. image: {
  40652. source: "./media/characters/vera/maw-arcanine.svg"
  40653. }
  40654. },
  40655. paw: {
  40656. height: math.unit(0.75, "feet"),
  40657. name: "Paw",
  40658. image: {
  40659. source: "./media/characters/vera/paw.svg"
  40660. }
  40661. },
  40662. pawprint: {
  40663. height: math.unit(0.52, "feet"),
  40664. name: "Pawprint",
  40665. image: {
  40666. source: "./media/characters/vera/pawprint.svg"
  40667. }
  40668. },
  40669. },
  40670. [
  40671. {
  40672. name: "Normal",
  40673. height: math.unit(5 + 10/12, "feet"),
  40674. default: true
  40675. },
  40676. {
  40677. name: "Macro",
  40678. height: math.unit(75, "feet")
  40679. },
  40680. ]
  40681. ))
  40682. characterMakers.push(() => makeCharacter(
  40683. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40684. {
  40685. front: {
  40686. height: math.unit(4, "feet"),
  40687. weight: math.unit(40, "lb"),
  40688. name: "Front",
  40689. image: {
  40690. source: "./media/characters/orvan-rabbit/front.svg",
  40691. extra: 1896/1642,
  40692. bottom: 29/1925
  40693. }
  40694. },
  40695. },
  40696. [
  40697. {
  40698. name: "Normal",
  40699. height: math.unit(4, "feet"),
  40700. default: true
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(6, "feet"),
  40709. weight: math.unit(168, "lb"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/lisa/front.svg",
  40713. extra: 2065/1867,
  40714. bottom: 46/2111
  40715. }
  40716. },
  40717. back: {
  40718. height: math.unit(6, "feet"),
  40719. weight: math.unit(168, "lb"),
  40720. name: "Back",
  40721. image: {
  40722. source: "./media/characters/lisa/back.svg",
  40723. extra: 1982/1838,
  40724. bottom: 29/2011
  40725. }
  40726. },
  40727. maw: {
  40728. height: math.unit(0.81, "feet"),
  40729. name: "Maw",
  40730. image: {
  40731. source: "./media/characters/lisa/maw.svg"
  40732. }
  40733. },
  40734. paw: {
  40735. height: math.unit(0.9, "feet"),
  40736. name: "Paw",
  40737. image: {
  40738. source: "./media/characters/lisa/paw.svg"
  40739. }
  40740. },
  40741. caribousune: {
  40742. height: math.unit(7 + 2/12, "feet"),
  40743. weight: math.unit(268, "lb"),
  40744. name: "Caribousune",
  40745. image: {
  40746. source: "./media/characters/lisa/caribousune.svg",
  40747. extra: 1843/1633,
  40748. bottom: 29/1872
  40749. }
  40750. },
  40751. frontCaribousune: {
  40752. height: math.unit(7 + 2/12, "feet"),
  40753. weight: math.unit(268, "lb"),
  40754. name: "Front (Caribousune)",
  40755. image: {
  40756. source: "./media/characters/lisa/front-caribousune.svg",
  40757. extra: 1818/1638,
  40758. bottom: 52/1870
  40759. }
  40760. },
  40761. sideCaribousune: {
  40762. height: math.unit(7 + 2/12, "feet"),
  40763. weight: math.unit(268, "lb"),
  40764. name: "Side (Caribousune)",
  40765. image: {
  40766. source: "./media/characters/lisa/side-caribousune.svg",
  40767. extra: 1851/1635,
  40768. bottom: 16/1867
  40769. }
  40770. },
  40771. backCaribousune: {
  40772. height: math.unit(7 + 2/12, "feet"),
  40773. weight: math.unit(268, "lb"),
  40774. name: "Back (Caribousune)",
  40775. image: {
  40776. source: "./media/characters/lisa/back-caribousune.svg",
  40777. extra: 1801/1604,
  40778. bottom: 44/1845
  40779. }
  40780. },
  40781. caribou: {
  40782. height: math.unit(7 + 2/12, "feet"),
  40783. weight: math.unit(268, "lb"),
  40784. name: "Caribou",
  40785. image: {
  40786. source: "./media/characters/lisa/caribou.svg",
  40787. extra: 1843/1633,
  40788. bottom: 29/1872
  40789. }
  40790. },
  40791. frontCaribou: {
  40792. height: math.unit(7 + 2/12, "feet"),
  40793. weight: math.unit(268, "lb"),
  40794. name: "Front (Caribou)",
  40795. image: {
  40796. source: "./media/characters/lisa/front-caribou.svg",
  40797. extra: 1818/1638,
  40798. bottom: 52/1870
  40799. }
  40800. },
  40801. sideCaribou: {
  40802. height: math.unit(7 + 2/12, "feet"),
  40803. weight: math.unit(268, "lb"),
  40804. name: "Side (Caribou)",
  40805. image: {
  40806. source: "./media/characters/lisa/side-caribou.svg",
  40807. extra: 1851/1635,
  40808. bottom: 16/1867
  40809. }
  40810. },
  40811. backCaribou: {
  40812. height: math.unit(7 + 2/12, "feet"),
  40813. weight: math.unit(268, "lb"),
  40814. name: "Back (Caribou)",
  40815. image: {
  40816. source: "./media/characters/lisa/back-caribou.svg",
  40817. extra: 1801/1604,
  40818. bottom: 44/1845
  40819. }
  40820. },
  40821. mawCaribou: {
  40822. height: math.unit(1.45, "feet"),
  40823. name: "Maw (Caribou)",
  40824. image: {
  40825. source: "./media/characters/lisa/maw-caribou.svg"
  40826. }
  40827. },
  40828. mawCaribousune: {
  40829. height: math.unit(1.45, "feet"),
  40830. name: "Maw (Caribousune)",
  40831. image: {
  40832. source: "./media/characters/lisa/maw-caribousune.svg"
  40833. }
  40834. },
  40835. pawCaribousune: {
  40836. height: math.unit(1.61, "feet"),
  40837. name: "Paw (Caribou)",
  40838. image: {
  40839. source: "./media/characters/lisa/paw-caribousune.svg"
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Normal",
  40846. height: math.unit(6, "feet")
  40847. },
  40848. {
  40849. name: "God Size",
  40850. height: math.unit(72, "feet"),
  40851. default: true
  40852. },
  40853. {
  40854. name: "Towering",
  40855. height: math.unit(288, "feet")
  40856. },
  40857. {
  40858. name: "City Size",
  40859. height: math.unit(48384, "feet")
  40860. },
  40861. {
  40862. name: "Continental",
  40863. height: math.unit(4200, "miles")
  40864. },
  40865. {
  40866. name: "Planet Eater",
  40867. height: math.unit(42, "earths")
  40868. },
  40869. {
  40870. name: "Star Swallower",
  40871. height: math.unit(42, "solarradii")
  40872. },
  40873. {
  40874. name: "System Swallower",
  40875. height: math.unit(84000, "AU")
  40876. },
  40877. {
  40878. name: "Galaxy Gobbler",
  40879. height: math.unit(42, "galaxies")
  40880. },
  40881. {
  40882. name: "Universe Devourer",
  40883. height: math.unit(42, "universes")
  40884. },
  40885. {
  40886. name: "Multiverse Muncher",
  40887. height: math.unit(42, "multiverses")
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(36, "feet"),
  40896. name: "Front",
  40897. image: {
  40898. source: "./media/characters/shadow-rat/front.svg",
  40899. extra: 1845/1758,
  40900. bottom: 83/1928
  40901. }
  40902. },
  40903. },
  40904. [
  40905. {
  40906. name: "Macro",
  40907. height: math.unit(36, "feet"),
  40908. default: true
  40909. },
  40910. ]
  40911. ))
  40912. characterMakers.push(() => makeCharacter(
  40913. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40914. {
  40915. side: {
  40916. height: math.unit(8, "feet"),
  40917. weight: math.unit(2630, "lb"),
  40918. name: "Side",
  40919. image: {
  40920. source: "./media/characters/torallia/side.svg",
  40921. extra: 2164/2021,
  40922. bottom: 371/2535
  40923. }
  40924. },
  40925. },
  40926. [
  40927. {
  40928. name: "Mortal Interaction",
  40929. height: math.unit(8, "feet")
  40930. },
  40931. {
  40932. name: "Natural",
  40933. height: math.unit(24, "feet"),
  40934. default: true
  40935. },
  40936. {
  40937. name: "Giant",
  40938. height: math.unit(80, "feet")
  40939. },
  40940. {
  40941. name: "Kaiju",
  40942. height: math.unit(240, "feet")
  40943. },
  40944. {
  40945. name: "Macro",
  40946. height: math.unit(800, "feet")
  40947. },
  40948. {
  40949. name: "Macro+",
  40950. height: math.unit(2400, "feet")
  40951. },
  40952. {
  40953. name: "Macro++",
  40954. height: math.unit(8000, "feet")
  40955. },
  40956. {
  40957. name: "City-Crushing",
  40958. height: math.unit(24000, "feet")
  40959. },
  40960. {
  40961. name: "Mountain-Mashing",
  40962. height: math.unit(80000, "feet")
  40963. },
  40964. {
  40965. name: "District Demolisher",
  40966. height: math.unit(240000, "feet")
  40967. },
  40968. {
  40969. name: "Tri-County Terror",
  40970. height: math.unit(800000, "feet")
  40971. },
  40972. {
  40973. name: "State Smasher",
  40974. height: math.unit(2.4e6, "feet")
  40975. },
  40976. {
  40977. name: "Nation Nemesis",
  40978. height: math.unit(8e6, "feet")
  40979. },
  40980. {
  40981. name: "Continent Cracker",
  40982. height: math.unit(2.4e7, "feet")
  40983. },
  40984. {
  40985. name: "Planet-Pillaging",
  40986. height: math.unit(8e7, "feet")
  40987. },
  40988. {
  40989. name: "Earth-Eclipsing",
  40990. height: math.unit(2.4e8, "feet")
  40991. },
  40992. {
  40993. name: "Jovian-Jostling",
  40994. height: math.unit(8e8, "feet")
  40995. },
  40996. {
  40997. name: "Gas Giant Gulper",
  40998. height: math.unit(2.4e9, "feet")
  40999. },
  41000. {
  41001. name: "Astral Annihilator",
  41002. height: math.unit(8e9, "feet")
  41003. },
  41004. {
  41005. name: "Celestial Conqueror",
  41006. height: math.unit(2.4e10, "feet")
  41007. },
  41008. {
  41009. name: "Sol-Swallowing",
  41010. height: math.unit(8e10, "feet")
  41011. },
  41012. {
  41013. name: "Hunter of the Heavens",
  41014. height: math.unit(2.4e13, "feet")
  41015. },
  41016. ]
  41017. ))
  41018. characterMakers.push(() => makeCharacter(
  41019. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41020. {
  41021. front: {
  41022. height: math.unit(6 + 8/12, "feet"),
  41023. weight: math.unit(250, "kilograms"),
  41024. volume: math.unit(28, "liters"),
  41025. name: "Front",
  41026. image: {
  41027. source: "./media/characters/rebecca-pawlson/front.svg",
  41028. extra: 1737/1596,
  41029. bottom: 107/1844
  41030. }
  41031. },
  41032. back: {
  41033. height: math.unit(6 + 8/12, "feet"),
  41034. weight: math.unit(250, "kilograms"),
  41035. volume: math.unit(28, "liters"),
  41036. name: "Back",
  41037. image: {
  41038. source: "./media/characters/rebecca-pawlson/back.svg",
  41039. extra: 1702/1523,
  41040. bottom: 86/1788
  41041. }
  41042. },
  41043. },
  41044. [
  41045. {
  41046. name: "Normal",
  41047. height: math.unit(6 + 8/12, "feet")
  41048. },
  41049. {
  41050. name: "Mini Macro",
  41051. height: math.unit(10, "feet"),
  41052. default: true
  41053. },
  41054. {
  41055. name: "Macro",
  41056. height: math.unit(100, "feet")
  41057. },
  41058. {
  41059. name: "Mega Macro",
  41060. height: math.unit(2500, "feet")
  41061. },
  41062. {
  41063. name: "Giga Macro",
  41064. height: math.unit(50, "miles")
  41065. },
  41066. ]
  41067. ))
  41068. characterMakers.push(() => makeCharacter(
  41069. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41070. {
  41071. front: {
  41072. height: math.unit(7 + 6/12, "feet"),
  41073. weight: math.unit(600, "lb"),
  41074. name: "Front",
  41075. image: {
  41076. source: "./media/characters/moxie-nova/front.svg",
  41077. extra: 1734/1652,
  41078. bottom: 41/1775
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Normal",
  41085. height: math.unit(7 + 6/12, "feet"),
  41086. default: true
  41087. },
  41088. ]
  41089. ))
  41090. characterMakers.push(() => makeCharacter(
  41091. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41092. {
  41093. goat: {
  41094. height: math.unit(4, "feet"),
  41095. weight: math.unit(180, "lb"),
  41096. name: "Goat",
  41097. image: {
  41098. source: "./media/characters/tiffany/goat.svg",
  41099. extra: 1845/1595,
  41100. bottom: 106/1951
  41101. }
  41102. },
  41103. front: {
  41104. height: math.unit(5, "feet"),
  41105. weight: math.unit(150, "lb"),
  41106. name: "Foxcoon",
  41107. image: {
  41108. source: "./media/characters/tiffany/foxcoon.svg",
  41109. extra: 1941/1845,
  41110. bottom: 58/1999
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(5, "feet"),
  41118. default: true
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41124. {
  41125. front: {
  41126. height: math.unit(8, "feet"),
  41127. weight: math.unit(300, "lb"),
  41128. name: "Front",
  41129. image: {
  41130. source: "./media/characters/raxinath/front.svg",
  41131. extra: 1407/1309,
  41132. bottom: 39/1446
  41133. }
  41134. },
  41135. back: {
  41136. height: math.unit(8, "feet"),
  41137. weight: math.unit(300, "lb"),
  41138. name: "Back",
  41139. image: {
  41140. source: "./media/characters/raxinath/back.svg",
  41141. extra: 1405/1315,
  41142. bottom: 9/1414
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Speck",
  41149. height: math.unit(0.5, "nm")
  41150. },
  41151. {
  41152. name: "Micro",
  41153. height: math.unit(3, "inches")
  41154. },
  41155. {
  41156. name: "Kobold",
  41157. height: math.unit(3, "feet")
  41158. },
  41159. {
  41160. name: "Normal",
  41161. height: math.unit(8, "feet"),
  41162. default: true
  41163. },
  41164. {
  41165. name: "Giant",
  41166. height: math.unit(50, "feet")
  41167. },
  41168. {
  41169. name: "Macro",
  41170. height: math.unit(1000, "feet")
  41171. },
  41172. {
  41173. name: "Megamacro",
  41174. height: math.unit(1, "mile")
  41175. },
  41176. ]
  41177. ))
  41178. characterMakers.push(() => makeCharacter(
  41179. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41180. {
  41181. front: {
  41182. height: math.unit(10, "feet"),
  41183. weight: math.unit(1442, "lb"),
  41184. name: "Front",
  41185. image: {
  41186. source: "./media/characters/mal-dragon/front.svg",
  41187. extra: 1515/1444,
  41188. bottom: 113/1628
  41189. }
  41190. },
  41191. back: {
  41192. height: math.unit(10, "feet"),
  41193. weight: math.unit(1442, "lb"),
  41194. name: "Back",
  41195. image: {
  41196. source: "./media/characters/mal-dragon/back.svg",
  41197. extra: 1527/1434,
  41198. bottom: 25/1552
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Mortal Interaction",
  41205. height: math.unit(10, "feet"),
  41206. default: true
  41207. },
  41208. {
  41209. name: "Large",
  41210. height: math.unit(30, "feet")
  41211. },
  41212. {
  41213. name: "Kaiju",
  41214. height: math.unit(300, "feet")
  41215. },
  41216. {
  41217. name: "Megamacro",
  41218. height: math.unit(10000, "feet")
  41219. },
  41220. {
  41221. name: "Continent Cracker",
  41222. height: math.unit(30000000, "feet")
  41223. },
  41224. {
  41225. name: "Sol-Swallowing",
  41226. height: math.unit(1e11, "feet")
  41227. },
  41228. {
  41229. name: "Light Universal",
  41230. height: math.unit(5, "universes")
  41231. },
  41232. {
  41233. name: "Universe Atoms",
  41234. height: math.unit(1.829e9, "universes")
  41235. },
  41236. {
  41237. name: "Light Multiversal",
  41238. height: math.unit(5, "multiverses")
  41239. },
  41240. {
  41241. name: "Multiverse Atoms",
  41242. height: math.unit(1.829e9, "multiverses")
  41243. },
  41244. {
  41245. name: "Fabric of Time",
  41246. height: math.unit(1e262, "multiverses")
  41247. },
  41248. ]
  41249. ))
  41250. characterMakers.push(() => makeCharacter(
  41251. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41252. {
  41253. front: {
  41254. height: math.unit(9, "feet"),
  41255. weight: math.unit(1050, "lb"),
  41256. name: "Front",
  41257. image: {
  41258. source: "./media/characters/tabitha/front.svg",
  41259. extra: 2083/1994,
  41260. bottom: 68/2151
  41261. }
  41262. },
  41263. },
  41264. [
  41265. {
  41266. name: "Baseline",
  41267. height: math.unit(9, "feet"),
  41268. default: true
  41269. },
  41270. {
  41271. name: "Giant",
  41272. height: math.unit(90, "feet")
  41273. },
  41274. {
  41275. name: "Macro",
  41276. height: math.unit(900, "feet")
  41277. },
  41278. {
  41279. name: "Megamacro",
  41280. height: math.unit(9000, "feet")
  41281. },
  41282. {
  41283. name: "City-Crushing",
  41284. height: math.unit(27000, "feet")
  41285. },
  41286. {
  41287. name: "Mountain-Mashing",
  41288. height: math.unit(90000, "feet")
  41289. },
  41290. {
  41291. name: "Nation Nemesis",
  41292. height: math.unit(9e6, "feet")
  41293. },
  41294. {
  41295. name: "Continent Cracker",
  41296. height: math.unit(27e6, "feet")
  41297. },
  41298. {
  41299. name: "Earth-Eclipsing",
  41300. height: math.unit(2.7e8, "feet")
  41301. },
  41302. {
  41303. name: "Gas Giant Gulper",
  41304. height: math.unit(2.7e9, "feet")
  41305. },
  41306. {
  41307. name: "Sol-Swallowing",
  41308. height: math.unit(9e10, "feet")
  41309. },
  41310. {
  41311. name: "Galaxy Gulper",
  41312. height: math.unit(9, "galaxies")
  41313. },
  41314. {
  41315. name: "Cosmos Churner",
  41316. height: math.unit(9, "universes")
  41317. },
  41318. ]
  41319. ))
  41320. characterMakers.push(() => makeCharacter(
  41321. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41322. {
  41323. front: {
  41324. height: math.unit(160, "cm"),
  41325. weight: math.unit(55, "kg"),
  41326. name: "Front",
  41327. image: {
  41328. source: "./media/characters/tow/front.svg",
  41329. extra: 1751/1722,
  41330. bottom: 74/1825
  41331. }
  41332. },
  41333. },
  41334. [
  41335. {
  41336. name: "Norm",
  41337. height: math.unit(160, "cm")
  41338. },
  41339. {
  41340. name: "Casual",
  41341. height: math.unit(3200, "m"),
  41342. default: true
  41343. },
  41344. {
  41345. name: "Show-Off",
  41346. height: math.unit(160, "km")
  41347. },
  41348. ]
  41349. ))
  41350. characterMakers.push(() => makeCharacter(
  41351. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41352. {
  41353. front: {
  41354. height: math.unit(7 + 11/12, "feet"),
  41355. weight: math.unit(342.8, "lb"),
  41356. name: "Front",
  41357. image: {
  41358. source: "./media/characters/vivian-orca-dragon/front.svg",
  41359. extra: 1890/1865,
  41360. bottom: 28/1918
  41361. }
  41362. },
  41363. },
  41364. [
  41365. {
  41366. name: "Micro",
  41367. height: math.unit(5, "inches")
  41368. },
  41369. {
  41370. name: "Normal",
  41371. height: math.unit(7 + 11/12, "feet"),
  41372. default: true
  41373. },
  41374. {
  41375. name: "Macro",
  41376. height: math.unit(395 + 7/12, "feet")
  41377. },
  41378. ]
  41379. ))
  41380. characterMakers.push(() => makeCharacter(
  41381. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41382. {
  41383. side: {
  41384. height: math.unit(10, "feet"),
  41385. weight: math.unit(1442, "lb"),
  41386. name: "Side",
  41387. image: {
  41388. source: "./media/characters/lotherakon/side.svg",
  41389. extra: 1604/1497,
  41390. bottom: 89/1693
  41391. }
  41392. },
  41393. },
  41394. [
  41395. {
  41396. name: "Mortal Interaction",
  41397. height: math.unit(10, "feet")
  41398. },
  41399. {
  41400. name: "Large",
  41401. height: math.unit(30, "feet"),
  41402. default: true
  41403. },
  41404. {
  41405. name: "Giant",
  41406. height: math.unit(100, "feet")
  41407. },
  41408. {
  41409. name: "Kaiju",
  41410. height: math.unit(300, "feet")
  41411. },
  41412. {
  41413. name: "Macro",
  41414. height: math.unit(1000, "feet")
  41415. },
  41416. {
  41417. name: "Macro+",
  41418. height: math.unit(3000, "feet")
  41419. },
  41420. {
  41421. name: "Megamacro",
  41422. height: math.unit(10000, "feet")
  41423. },
  41424. {
  41425. name: "City-Crushing",
  41426. height: math.unit(30000, "feet")
  41427. },
  41428. {
  41429. name: "Continent Cracker",
  41430. height: math.unit(30e6, "feet")
  41431. },
  41432. {
  41433. name: "Earth Eclipsing",
  41434. height: math.unit(3e8, "feet")
  41435. },
  41436. {
  41437. name: "Gas Giant Gulper",
  41438. height: math.unit(3e9, "feet")
  41439. },
  41440. {
  41441. name: "Sol-Swallowing",
  41442. height: math.unit(1e11, "feet")
  41443. },
  41444. {
  41445. name: "System Swallower",
  41446. height: math.unit(3e14, "feet")
  41447. },
  41448. {
  41449. name: "Galaxy Gulper",
  41450. height: math.unit(10, "galaxies")
  41451. },
  41452. {
  41453. name: "Light Universal",
  41454. height: math.unit(5, "universes")
  41455. },
  41456. {
  41457. name: "Universe Palm",
  41458. height: math.unit(20, "universes")
  41459. },
  41460. {
  41461. name: "Light Multiversal",
  41462. height: math.unit(5, "multiverses")
  41463. },
  41464. {
  41465. name: "Multiverse Palm",
  41466. height: math.unit(20, "multiverses")
  41467. },
  41468. {
  41469. name: "Inferno Incarnate",
  41470. height: math.unit(1e7, "multiverses")
  41471. },
  41472. ]
  41473. ))
  41474. characterMakers.push(() => makeCharacter(
  41475. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41476. {
  41477. front: {
  41478. height: math.unit(8, "feet"),
  41479. weight: math.unit(1200, "lb"),
  41480. name: "Front",
  41481. image: {
  41482. source: "./media/characters/malithee/front.svg",
  41483. extra: 1675/1640,
  41484. bottom: 162/1837
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Mortal Interaction",
  41491. height: math.unit(8, "feet"),
  41492. default: true
  41493. },
  41494. {
  41495. name: "Large",
  41496. height: math.unit(24, "feet")
  41497. },
  41498. {
  41499. name: "Kaiju",
  41500. height: math.unit(240, "feet")
  41501. },
  41502. {
  41503. name: "Megamacro",
  41504. height: math.unit(8000, "feet")
  41505. },
  41506. {
  41507. name: "Continent Cracker",
  41508. height: math.unit(24e6, "feet")
  41509. },
  41510. {
  41511. name: "Earth-Eclipsing",
  41512. height: math.unit(2.4e8, "feet")
  41513. },
  41514. {
  41515. name: "Sol-Swallowing",
  41516. height: math.unit(8e10, "feet")
  41517. },
  41518. {
  41519. name: "Galaxy Gulper",
  41520. height: math.unit(8, "galaxies")
  41521. },
  41522. {
  41523. name: "Light Universal",
  41524. height: math.unit(4, "universes")
  41525. },
  41526. {
  41527. name: "Universe Atoms",
  41528. height: math.unit(1.829e9, "universes")
  41529. },
  41530. {
  41531. name: "Light Multiversal",
  41532. height: math.unit(4, "multiverses")
  41533. },
  41534. {
  41535. name: "Multiverse Atoms",
  41536. height: math.unit(1.829e9, "multiverses")
  41537. },
  41538. {
  41539. name: "Nigh-Omnipresence",
  41540. height: math.unit(8e261, "multiverses")
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41546. {
  41547. front: {
  41548. height: math.unit(10, "feet"),
  41549. weight: math.unit(1500, "lb"),
  41550. name: "Front",
  41551. image: {
  41552. source: "./media/characters/miles-thestia/front.svg",
  41553. extra: 1812/1727,
  41554. bottom: 86/1898
  41555. }
  41556. },
  41557. back: {
  41558. height: math.unit(10, "feet"),
  41559. weight: math.unit(1500, "lb"),
  41560. name: "Back",
  41561. image: {
  41562. source: "./media/characters/miles-thestia/back.svg",
  41563. extra: 1799/1690,
  41564. bottom: 47/1846
  41565. }
  41566. },
  41567. frontNsfw: {
  41568. height: math.unit(10, "feet"),
  41569. weight: math.unit(1500, "lb"),
  41570. name: "Front (NSFW)",
  41571. image: {
  41572. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41573. extra: 1812/1727,
  41574. bottom: 86/1898
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Mini-Macro",
  41581. height: math.unit(10, "feet"),
  41582. default: true
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(25, "feet"),
  41591. name: "Front",
  41592. image: {
  41593. source: "./media/characters/titan-s-wulf/front.svg",
  41594. extra: 1560/1484,
  41595. bottom: 76/1636
  41596. }
  41597. },
  41598. },
  41599. [
  41600. {
  41601. name: "Smallest",
  41602. height: math.unit(25, "feet"),
  41603. default: true
  41604. },
  41605. {
  41606. name: "Normal",
  41607. height: math.unit(200, "feet")
  41608. },
  41609. {
  41610. name: "Macro",
  41611. height: math.unit(200000, "feet")
  41612. },
  41613. {
  41614. name: "Multiversal Original",
  41615. height: math.unit(10000, "multiverses")
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(8, "feet"),
  41624. weight: math.unit(553, "lb"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/tawendeh/front.svg",
  41628. extra: 2365/2268,
  41629. bottom: 83/2448
  41630. }
  41631. },
  41632. frontClothed: {
  41633. height: math.unit(8, "feet"),
  41634. weight: math.unit(553, "lb"),
  41635. name: "Front (Clothed)",
  41636. image: {
  41637. source: "./media/characters/tawendeh/front-clothed.svg",
  41638. extra: 2365/2268,
  41639. bottom: 83/2448
  41640. }
  41641. },
  41642. back: {
  41643. height: math.unit(8, "feet"),
  41644. weight: math.unit(553, "lb"),
  41645. name: "Back",
  41646. image: {
  41647. source: "./media/characters/tawendeh/back.svg",
  41648. extra: 2397/2294,
  41649. bottom: 42/2439
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Mortal Interaction",
  41656. height: math.unit(8, "feet"),
  41657. default: true
  41658. },
  41659. {
  41660. name: "Giant",
  41661. height: math.unit(80, "feet")
  41662. },
  41663. {
  41664. name: "Macro",
  41665. height: math.unit(800, "feet")
  41666. },
  41667. {
  41668. name: "Megamacro",
  41669. height: math.unit(8000, "feet")
  41670. },
  41671. {
  41672. name: "City-Crushing",
  41673. height: math.unit(24000, "feet")
  41674. },
  41675. {
  41676. name: "Mountain-Mashing",
  41677. height: math.unit(80000, "feet")
  41678. },
  41679. {
  41680. name: "Nation Nemesis",
  41681. height: math.unit(8e6, "feet")
  41682. },
  41683. {
  41684. name: "Continent Cracker",
  41685. height: math.unit(24e6, "feet")
  41686. },
  41687. {
  41688. name: "Earth-Eclipsing",
  41689. height: math.unit(2.4e8, "feet")
  41690. },
  41691. {
  41692. name: "Gas Giant Gulper",
  41693. height: math.unit(2.4e9, "feet")
  41694. },
  41695. {
  41696. name: "Sol-Swallowing",
  41697. height: math.unit(8e10, "feet")
  41698. },
  41699. {
  41700. name: "Galaxy Gulper",
  41701. height: math.unit(8, "galaxies")
  41702. },
  41703. {
  41704. name: "Cosmos Churner",
  41705. height: math.unit(8, "universes")
  41706. },
  41707. {
  41708. name: "Omnipotent Otter",
  41709. height: math.unit(80, "universes")
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(2.6, "meters"),
  41718. weight: math.unit(900, "kg"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/neesha/front.svg",
  41722. extra: 1803/1653,
  41723. bottom: 128/1931
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Normal",
  41730. height: math.unit(2.6, "meters"),
  41731. default: true
  41732. },
  41733. {
  41734. name: "Macro",
  41735. height: math.unit(50, "meters")
  41736. },
  41737. ]
  41738. ))
  41739. characterMakers.push(() => makeCharacter(
  41740. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41741. {
  41742. front: {
  41743. height: math.unit(5, "feet"),
  41744. weight: math.unit(185, "lb"),
  41745. name: "Front",
  41746. image: {
  41747. source: "./media/characters/kyera/front.svg",
  41748. extra: 1875/1790,
  41749. bottom: 96/1971
  41750. }
  41751. },
  41752. },
  41753. [
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(5, "feet"),
  41757. default: true
  41758. },
  41759. ]
  41760. ))
  41761. characterMakers.push(() => makeCharacter(
  41762. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41763. {
  41764. front: {
  41765. height: math.unit(7 + 6/12, "feet"),
  41766. weight: math.unit(540, "lb"),
  41767. name: "Front",
  41768. image: {
  41769. source: "./media/characters/yuko/front.svg",
  41770. extra: 1282/1222,
  41771. bottom: 101/1383
  41772. }
  41773. },
  41774. frontClothed: {
  41775. height: math.unit(7 + 6/12, "feet"),
  41776. weight: math.unit(540, "lb"),
  41777. name: "Front (Clothed)",
  41778. image: {
  41779. source: "./media/characters/yuko/front-clothed.svg",
  41780. extra: 1282/1222,
  41781. bottom: 101/1383
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "Normal",
  41788. height: math.unit(7 + 6/12, "feet"),
  41789. default: true
  41790. },
  41791. {
  41792. name: "Macro",
  41793. height: math.unit(26 + 9/12, "feet")
  41794. },
  41795. {
  41796. name: "Megamacro",
  41797. height: math.unit(300, "feet")
  41798. },
  41799. {
  41800. name: "Gigamacro",
  41801. height: math.unit(5000, "feet")
  41802. },
  41803. {
  41804. name: "Planetary",
  41805. height: math.unit(10000, "miles")
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(8 + 2/12, "feet"),
  41814. weight: math.unit(600, "lb"),
  41815. name: "Front",
  41816. image: {
  41817. source: "./media/characters/deam-nitrel/front.svg",
  41818. extra: 1308/1234,
  41819. bottom: 125/1433
  41820. }
  41821. },
  41822. },
  41823. [
  41824. {
  41825. name: "Normal",
  41826. height: math.unit(8 + 2/12, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(6.1, "feet"),
  41836. weight: math.unit(180, "lb"),
  41837. name: "Front",
  41838. image: {
  41839. source: "./media/characters/skyress/front.svg",
  41840. extra: 1045/915,
  41841. bottom: 28/1073
  41842. }
  41843. },
  41844. maw: {
  41845. height: math.unit(1, "feet"),
  41846. name: "Maw",
  41847. image: {
  41848. source: "./media/characters/skyress/maw.svg"
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Normal",
  41855. height: math.unit(6.1, "feet"),
  41856. default: true
  41857. },
  41858. {
  41859. name: "Macro",
  41860. height: math.unit(200, "feet")
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(4 + 2/12, "feet"),
  41869. weight: math.unit(40, "kg"),
  41870. name: "Front",
  41871. image: {
  41872. source: "./media/characters/amethyst-jones/front.svg",
  41873. extra: 1220/1150,
  41874. bottom: 101/1321
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Normal",
  41881. height: math.unit(4 + 2/12, "feet"),
  41882. default: true
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41888. {
  41889. front: {
  41890. height: math.unit(1.7, "m"),
  41891. weight: math.unit(135, "lb"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/jade/front.svg",
  41895. extra: 1818/1767,
  41896. bottom: 32/1850
  41897. }
  41898. },
  41899. back: {
  41900. height: math.unit(1.7, "m"),
  41901. weight: math.unit(135, "lb"),
  41902. name: "Back",
  41903. image: {
  41904. source: "./media/characters/jade/back.svg",
  41905. extra: 1869/1809,
  41906. bottom: 35/1904
  41907. }
  41908. },
  41909. hand: {
  41910. height: math.unit(0.24, "m"),
  41911. name: "Hand",
  41912. image: {
  41913. source: "./media/characters/jade/hand.svg"
  41914. }
  41915. },
  41916. foot: {
  41917. height: math.unit(0.263, "m"),
  41918. name: "Foot",
  41919. image: {
  41920. source: "./media/characters/jade/foot.svg"
  41921. }
  41922. },
  41923. dick: {
  41924. height: math.unit(0.47, "m"),
  41925. name: "Dick",
  41926. image: {
  41927. source: "./media/characters/jade/dick.svg"
  41928. }
  41929. },
  41930. },
  41931. [
  41932. {
  41933. name: "Micro",
  41934. height: math.unit(22, "cm")
  41935. },
  41936. {
  41937. name: "Normal",
  41938. height: math.unit(1.7, "m"),
  41939. default: true
  41940. },
  41941. {
  41942. name: "Macro",
  41943. height: math.unit(152, "m")
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41949. {
  41950. front: {
  41951. height: math.unit(100, "miles"),
  41952. weight: math.unit(20000, "tons"),
  41953. name: "Front",
  41954. image: {
  41955. source: "./media/characters/cookie/front.svg",
  41956. extra: 1125/1070,
  41957. bottom: 30/1155
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Big",
  41964. height: math.unit(50, "feet")
  41965. },
  41966. {
  41967. name: "Macro",
  41968. height: math.unit(100, "miles"),
  41969. default: true
  41970. },
  41971. {
  41972. name: "Megamacro",
  41973. height: math.unit(90000, "miles")
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41979. {
  41980. front: {
  41981. height: math.unit(6, "feet"),
  41982. weight: math.unit(145, "lb"),
  41983. name: "Front",
  41984. image: {
  41985. source: "./media/characters/farzian/front.svg",
  41986. extra: 1902/1693,
  41987. bottom: 108/2010
  41988. }
  41989. },
  41990. },
  41991. [
  41992. {
  41993. name: "Macro",
  41994. height: math.unit(500, "feet"),
  41995. default: true
  41996. },
  41997. ]
  41998. ))
  41999. characterMakers.push(() => makeCharacter(
  42000. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42001. {
  42002. front: {
  42003. height: math.unit(3 + 6/12, "feet"),
  42004. weight: math.unit(50, "lb"),
  42005. name: "Front",
  42006. image: {
  42007. source: "./media/characters/kimberly-tilson/front.svg",
  42008. extra: 1400/1322,
  42009. bottom: 36/1436
  42010. }
  42011. },
  42012. back: {
  42013. height: math.unit(3 + 6/12, "feet"),
  42014. weight: math.unit(50, "lb"),
  42015. name: "Back",
  42016. image: {
  42017. source: "./media/characters/kimberly-tilson/back.svg",
  42018. extra: 1370/1307,
  42019. bottom: 20/1390
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Normal",
  42026. height: math.unit(3 + 6/12, "feet"),
  42027. default: true
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(1148, "feet"),
  42036. weight: math.unit(34057, "lb"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/harthos/front.svg",
  42040. extra: 1391/1339,
  42041. bottom: 13/1404
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Macro",
  42048. height: math.unit(1148, "feet"),
  42049. default: true
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(15, "feet"),
  42058. name: "Front",
  42059. image: {
  42060. source: "./media/characters/hypatia/front.svg",
  42061. extra: 1653/1591,
  42062. bottom: 79/1732
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Normal",
  42069. height: math.unit(15, "feet")
  42070. },
  42071. {
  42072. name: "Small",
  42073. height: math.unit(300, "feet")
  42074. },
  42075. {
  42076. name: "Macro",
  42077. height: math.unit(2500, "feet"),
  42078. default: true
  42079. },
  42080. {
  42081. name: "Mega Macro",
  42082. height: math.unit(1500, "miles")
  42083. },
  42084. {
  42085. name: "Giga Macro",
  42086. height: math.unit(1.5e6, "miles")
  42087. },
  42088. ]
  42089. ))
  42090. characterMakers.push(() => makeCharacter(
  42091. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42092. {
  42093. front: {
  42094. height: math.unit(6, "feet"),
  42095. weight: math.unit(200, "lb"),
  42096. name: "Front",
  42097. image: {
  42098. source: "./media/characters/wulver/front.svg",
  42099. extra: 1724/1632,
  42100. bottom: 130/1854
  42101. }
  42102. },
  42103. frontNsfw: {
  42104. height: math.unit(6, "feet"),
  42105. weight: math.unit(200, "lb"),
  42106. name: "Front (NSFW)",
  42107. image: {
  42108. source: "./media/characters/wulver/front-nsfw.svg",
  42109. extra: 1724/1632,
  42110. bottom: 130/1854
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Human-Sized",
  42117. height: math.unit(6, "feet")
  42118. },
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(4, "meters"),
  42122. default: true
  42123. },
  42124. {
  42125. name: "Large",
  42126. height: math.unit(6, "m")
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(7, "feet"),
  42135. name: "Front",
  42136. image: {
  42137. source: "./media/characters/maru/front.svg",
  42138. extra: 1595/1570,
  42139. bottom: 0/1595
  42140. }
  42141. },
  42142. },
  42143. [
  42144. {
  42145. name: "Normal",
  42146. height: math.unit(7, "feet"),
  42147. default: true
  42148. },
  42149. {
  42150. name: "Macro",
  42151. height: math.unit(700, "feet")
  42152. },
  42153. {
  42154. name: "Mega Macro",
  42155. height: math.unit(25, "miles")
  42156. },
  42157. ]
  42158. ))
  42159. characterMakers.push(() => makeCharacter(
  42160. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42161. {
  42162. front: {
  42163. height: math.unit(6, "feet"),
  42164. weight: math.unit(170, "lb"),
  42165. name: "Front",
  42166. image: {
  42167. source: "./media/characters/xenon/front.svg",
  42168. extra: 1376/1305,
  42169. bottom: 56/1432
  42170. }
  42171. },
  42172. back: {
  42173. height: math.unit(6, "feet"),
  42174. weight: math.unit(170, "lb"),
  42175. name: "Back",
  42176. image: {
  42177. source: "./media/characters/xenon/back.svg",
  42178. extra: 1328/1259,
  42179. bottom: 95/1423
  42180. }
  42181. },
  42182. maw: {
  42183. height: math.unit(0.52, "feet"),
  42184. name: "Maw",
  42185. image: {
  42186. source: "./media/characters/xenon/maw.svg"
  42187. }
  42188. },
  42189. handLeft: {
  42190. height: math.unit(0.82 * 169 / 153, "feet"),
  42191. name: "Hand (Left)",
  42192. image: {
  42193. source: "./media/characters/xenon/hand-left.svg"
  42194. }
  42195. },
  42196. handRight: {
  42197. height: math.unit(0.82, "feet"),
  42198. name: "Hand (Right)",
  42199. image: {
  42200. source: "./media/characters/xenon/hand-right.svg"
  42201. }
  42202. },
  42203. footLeft: {
  42204. height: math.unit(1.13, "feet"),
  42205. name: "Foot (Left)",
  42206. image: {
  42207. source: "./media/characters/xenon/foot-left.svg"
  42208. }
  42209. },
  42210. footRight: {
  42211. height: math.unit(1.13 * 194 / 196, "feet"),
  42212. name: "Foot (Right)",
  42213. image: {
  42214. source: "./media/characters/xenon/foot-right.svg"
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Micro",
  42221. height: math.unit(0.8, "inches")
  42222. },
  42223. {
  42224. name: "Normal",
  42225. height: math.unit(6, "feet")
  42226. },
  42227. {
  42228. name: "Macro",
  42229. height: math.unit(50, "feet"),
  42230. default: true
  42231. },
  42232. {
  42233. name: "Macro+",
  42234. height: math.unit(250, "feet")
  42235. },
  42236. {
  42237. name: "Megamacro",
  42238. height: math.unit(1500, "feet")
  42239. },
  42240. ]
  42241. ))
  42242. characterMakers.push(() => makeCharacter(
  42243. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42244. {
  42245. front: {
  42246. height: math.unit(7 + 5/12, "feet"),
  42247. name: "Front",
  42248. image: {
  42249. source: "./media/characters/zane/front.svg",
  42250. extra: 1260/1203,
  42251. bottom: 94/1354
  42252. }
  42253. },
  42254. back: {
  42255. height: math.unit(5.05, "feet"),
  42256. name: "Back",
  42257. image: {
  42258. source: "./media/characters/zane/back.svg",
  42259. extra: 893/829,
  42260. bottom: 30/923
  42261. }
  42262. },
  42263. werewolf: {
  42264. height: math.unit(11, "feet"),
  42265. name: "Werewolf",
  42266. image: {
  42267. source: "./media/characters/zane/werewolf.svg",
  42268. extra: 1383/1323,
  42269. bottom: 89/1472
  42270. }
  42271. },
  42272. foot: {
  42273. height: math.unit(1.46, "feet"),
  42274. name: "Foot",
  42275. image: {
  42276. source: "./media/characters/zane/foot.svg"
  42277. }
  42278. },
  42279. footFront: {
  42280. height: math.unit(0.784, "feet"),
  42281. name: "Foot (Front)",
  42282. image: {
  42283. source: "./media/characters/zane/foot-front.svg"
  42284. }
  42285. },
  42286. dick: {
  42287. height: math.unit(1.95, "feet"),
  42288. name: "Dick",
  42289. image: {
  42290. source: "./media/characters/zane/dick.svg"
  42291. }
  42292. },
  42293. dickWerewolf: {
  42294. height: math.unit(3.77, "feet"),
  42295. name: "Dick (Werewolf)",
  42296. image: {
  42297. source: "./media/characters/zane/dick.svg"
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Normal",
  42304. height: math.unit(7 + 5/12, "feet"),
  42305. default: true
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(6 + 2/12, "feet"),
  42314. weight: math.unit(284, "lb"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/benni-desparque/front.svg",
  42318. extra: 1353/1126,
  42319. bottom: 69/1422
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Civilian",
  42326. height: math.unit(6 + 2/12, "feet")
  42327. },
  42328. {
  42329. name: "Normal",
  42330. height: math.unit(98, "feet"),
  42331. default: true
  42332. },
  42333. {
  42334. name: "Kaiju Fighter",
  42335. height: math.unit(268, "feet")
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(5, "feet"),
  42344. weight: math.unit(105, "lb"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/maxine/front.svg",
  42348. extra: 1386/1250,
  42349. bottom: 71/1457
  42350. }
  42351. },
  42352. },
  42353. [
  42354. {
  42355. name: "Normal",
  42356. height: math.unit(5, "feet"),
  42357. default: true
  42358. },
  42359. ]
  42360. ))
  42361. characterMakers.push(() => makeCharacter(
  42362. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42363. {
  42364. front: {
  42365. height: math.unit(11 + 7/12, "feet"),
  42366. weight: math.unit(9576, "lb"),
  42367. name: "Front",
  42368. image: {
  42369. source: "./media/characters/scaly/front.svg",
  42370. extra: 888/867,
  42371. bottom: 36/924
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Normal",
  42378. height: math.unit(11 + 7/12, "feet"),
  42379. default: true
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42385. {
  42386. front: {
  42387. height: math.unit(6 + 3/12, "feet"),
  42388. name: "Front",
  42389. image: {
  42390. source: "./media/characters/saelria/front.svg",
  42391. extra: 1243/1138,
  42392. bottom: 46/1289
  42393. }
  42394. },
  42395. },
  42396. [
  42397. {
  42398. name: "Micro",
  42399. height: math.unit(6, "inches"),
  42400. },
  42401. {
  42402. name: "Normal",
  42403. height: math.unit(6 + 3/12, "feet"),
  42404. default: true
  42405. },
  42406. {
  42407. name: "Macro",
  42408. height: math.unit(25, "feet")
  42409. },
  42410. ]
  42411. ))
  42412. characterMakers.push(() => makeCharacter(
  42413. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42414. {
  42415. front: {
  42416. height: math.unit(80, "meters"),
  42417. weight: math.unit(7000, "tonnes"),
  42418. name: "Front",
  42419. image: {
  42420. source: "./media/characters/tef/front.svg",
  42421. extra: 2036/1991,
  42422. bottom: 54/2090
  42423. }
  42424. },
  42425. back: {
  42426. height: math.unit(80, "meters"),
  42427. weight: math.unit(7000, "tonnes"),
  42428. name: "Back",
  42429. image: {
  42430. source: "./media/characters/tef/back.svg",
  42431. extra: 2036/1991,
  42432. bottom: 54/2090
  42433. }
  42434. },
  42435. },
  42436. [
  42437. {
  42438. name: "Macro",
  42439. height: math.unit(80, "meters"),
  42440. default: true
  42441. },
  42442. ]
  42443. ))
  42444. characterMakers.push(() => makeCharacter(
  42445. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42446. {
  42447. front: {
  42448. height: math.unit(13, "feet"),
  42449. weight: math.unit(6, "tons"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/rover/front.svg",
  42453. extra: 1233/1156,
  42454. bottom: 50/1283
  42455. }
  42456. },
  42457. back: {
  42458. height: math.unit(13, "feet"),
  42459. weight: math.unit(6, "tons"),
  42460. name: "Back",
  42461. image: {
  42462. source: "./media/characters/rover/back.svg",
  42463. extra: 1327/1258,
  42464. bottom: 39/1366
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Normal",
  42471. height: math.unit(13, "feet"),
  42472. default: true
  42473. },
  42474. {
  42475. name: "Macro",
  42476. height: math.unit(1300, "feet")
  42477. },
  42478. {
  42479. name: "Megamacro",
  42480. height: math.unit(1300, "miles")
  42481. },
  42482. {
  42483. name: "Gigamacro",
  42484. height: math.unit(1300000, "miles")
  42485. },
  42486. ]
  42487. ))
  42488. characterMakers.push(() => makeCharacter(
  42489. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42490. {
  42491. front: {
  42492. height: math.unit(6, "feet"),
  42493. weight: math.unit(150, "lb"),
  42494. name: "Front",
  42495. image: {
  42496. source: "./media/characters/ariz/front.svg",
  42497. extra: 1401/1346,
  42498. bottom: 5/1406
  42499. }
  42500. },
  42501. },
  42502. [
  42503. {
  42504. name: "Normal",
  42505. height: math.unit(10, "feet"),
  42506. default: true
  42507. },
  42508. ]
  42509. ))
  42510. characterMakers.push(() => makeCharacter(
  42511. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42512. {
  42513. front: {
  42514. height: math.unit(6, "feet"),
  42515. weight: math.unit(140, "lb"),
  42516. name: "Front",
  42517. image: {
  42518. source: "./media/characters/sigrun/front.svg",
  42519. extra: 1418/1359,
  42520. bottom: 27/1445
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Macro",
  42527. height: math.unit(35, "feet"),
  42528. default: true
  42529. },
  42530. ]
  42531. ))
  42532. characterMakers.push(() => makeCharacter(
  42533. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42534. {
  42535. front: {
  42536. height: math.unit(6, "feet"),
  42537. weight: math.unit(150, "lb"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/numin/front.svg",
  42541. extra: 1433/1388,
  42542. bottom: 12/1445
  42543. }
  42544. },
  42545. },
  42546. [
  42547. {
  42548. name: "Macro",
  42549. height: math.unit(21.5, "km"),
  42550. default: true
  42551. },
  42552. ]
  42553. ))
  42554. characterMakers.push(() => makeCharacter(
  42555. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42556. {
  42557. front: {
  42558. height: math.unit(6, "feet"),
  42559. weight: math.unit(463, "lb"),
  42560. name: "Front",
  42561. image: {
  42562. source: "./media/characters/melwa/front.svg",
  42563. extra: 1307/1248,
  42564. bottom: 93/1400
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Macro",
  42571. height: math.unit(50, "meters"),
  42572. default: true
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42578. {
  42579. front: {
  42580. height: math.unit(325, "feet"),
  42581. name: "Front",
  42582. image: {
  42583. source: "./media/characters/zorkaiju/front.svg",
  42584. extra: 1955/1814,
  42585. bottom: 40/1995
  42586. }
  42587. },
  42588. frontExtended: {
  42589. height: math.unit(325, "feet"),
  42590. name: "Front (Extended)",
  42591. image: {
  42592. source: "./media/characters/zorkaiju/front-extended.svg",
  42593. extra: 1955/1814,
  42594. bottom: 40/1995
  42595. }
  42596. },
  42597. side: {
  42598. height: math.unit(325, "feet"),
  42599. name: "Side",
  42600. image: {
  42601. source: "./media/characters/zorkaiju/side.svg",
  42602. extra: 1495/1396,
  42603. bottom: 17/1512
  42604. }
  42605. },
  42606. sideExtended: {
  42607. height: math.unit(325, "feet"),
  42608. name: "Side (Extended)",
  42609. image: {
  42610. source: "./media/characters/zorkaiju/side-extended.svg",
  42611. extra: 1495/1396,
  42612. bottom: 17/1512
  42613. }
  42614. },
  42615. back: {
  42616. height: math.unit(325, "feet"),
  42617. name: "Back",
  42618. image: {
  42619. source: "./media/characters/zorkaiju/back.svg",
  42620. extra: 1959/1821,
  42621. bottom: 31/1990
  42622. }
  42623. },
  42624. backExtended: {
  42625. height: math.unit(325, "feet"),
  42626. name: "Back (Extended)",
  42627. image: {
  42628. source: "./media/characters/zorkaiju/back-extended.svg",
  42629. extra: 1959/1821,
  42630. bottom: 31/1990
  42631. }
  42632. },
  42633. hand: {
  42634. height: math.unit(58.4, "feet"),
  42635. name: "Hand",
  42636. image: {
  42637. source: "./media/characters/zorkaiju/hand.svg"
  42638. }
  42639. },
  42640. handExtended: {
  42641. height: math.unit(61.4, "feet"),
  42642. name: "Hand (Extended)",
  42643. image: {
  42644. source: "./media/characters/zorkaiju/hand-extended.svg"
  42645. }
  42646. },
  42647. foot: {
  42648. height: math.unit(95, "feet"),
  42649. name: "Foot",
  42650. image: {
  42651. source: "./media/characters/zorkaiju/foot.svg"
  42652. }
  42653. },
  42654. leftArm: {
  42655. height: math.unit(59, "feet"),
  42656. name: "Left Arm",
  42657. image: {
  42658. source: "./media/characters/zorkaiju/left-arm.svg"
  42659. }
  42660. },
  42661. rightArm: {
  42662. height: math.unit(59, "feet"),
  42663. name: "Right Arm",
  42664. image: {
  42665. source: "./media/characters/zorkaiju/right-arm.svg"
  42666. }
  42667. },
  42668. leftArmExtended: {
  42669. height: math.unit(59 * 1.033546, "feet"),
  42670. name: "Left Arm (Extended)",
  42671. image: {
  42672. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42673. }
  42674. },
  42675. rightArmExtended: {
  42676. height: math.unit(59 * 1.0496, "feet"),
  42677. name: "Right Arm (Extended)",
  42678. image: {
  42679. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42680. }
  42681. },
  42682. tail: {
  42683. height: math.unit(104, "feet"),
  42684. name: "Tail",
  42685. image: {
  42686. source: "./media/characters/zorkaiju/tail.svg"
  42687. }
  42688. },
  42689. tailExtended: {
  42690. height: math.unit(104, "feet"),
  42691. name: "Tail (Extended)",
  42692. image: {
  42693. source: "./media/characters/zorkaiju/tail-extended.svg"
  42694. }
  42695. },
  42696. tailBottom: {
  42697. height: math.unit(104, "feet"),
  42698. name: "Tail Bottom",
  42699. image: {
  42700. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42701. }
  42702. },
  42703. crystal: {
  42704. height: math.unit(27.54, "feet"),
  42705. name: "Crystal",
  42706. image: {
  42707. source: "./media/characters/zorkaiju/crystal.svg"
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Kaiju",
  42714. height: math.unit(325, "feet"),
  42715. default: true
  42716. },
  42717. ]
  42718. ))
  42719. characterMakers.push(() => makeCharacter(
  42720. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42721. {
  42722. front: {
  42723. height: math.unit(6 + 1/12, "feet"),
  42724. weight: math.unit(115, "lb"),
  42725. name: "Front",
  42726. image: {
  42727. source: "./media/characters/bailey-belfry/front.svg",
  42728. extra: 1240/1121,
  42729. bottom: 101/1341
  42730. }
  42731. },
  42732. },
  42733. [
  42734. {
  42735. name: "Normal",
  42736. height: math.unit(6 + 1/12, "feet"),
  42737. default: true
  42738. },
  42739. ]
  42740. ))
  42741. characterMakers.push(() => makeCharacter(
  42742. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42743. {
  42744. side: {
  42745. height: math.unit(4, "meters"),
  42746. weight: math.unit(250, "kg"),
  42747. name: "Side",
  42748. image: {
  42749. source: "./media/characters/blacky/side.svg",
  42750. extra: 1027/919,
  42751. bottom: 43/1070
  42752. }
  42753. },
  42754. maw: {
  42755. height: math.unit(1, "meters"),
  42756. name: "Maw",
  42757. image: {
  42758. source: "./media/characters/blacky/maw.svg"
  42759. }
  42760. },
  42761. paw: {
  42762. height: math.unit(1, "meters"),
  42763. name: "Paw",
  42764. image: {
  42765. source: "./media/characters/blacky/paw.svg"
  42766. }
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Normal",
  42772. height: math.unit(4, "meters"),
  42773. default: true
  42774. },
  42775. ]
  42776. ))
  42777. characterMakers.push(() => makeCharacter(
  42778. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42779. {
  42780. front: {
  42781. height: math.unit(170, "cm"),
  42782. weight: math.unit(66, "kg"),
  42783. name: "Front",
  42784. image: {
  42785. source: "./media/characters/thux-ei/front.svg",
  42786. extra: 1109/1011,
  42787. bottom: 8/1117
  42788. }
  42789. },
  42790. },
  42791. [
  42792. {
  42793. name: "Normal",
  42794. height: math.unit(170, "cm"),
  42795. default: true
  42796. },
  42797. ]
  42798. ))
  42799. characterMakers.push(() => makeCharacter(
  42800. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42801. {
  42802. front: {
  42803. height: math.unit(5, "feet"),
  42804. weight: math.unit(120, "lb"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/roxanne-voltaire/front.svg",
  42808. extra: 1901/1779,
  42809. bottom: 53/1954
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Normal",
  42816. height: math.unit(5, "feet"),
  42817. default: true
  42818. },
  42819. {
  42820. name: "Giant",
  42821. height: math.unit(50, "feet")
  42822. },
  42823. {
  42824. name: "Titan",
  42825. height: math.unit(500, "feet")
  42826. },
  42827. {
  42828. name: "Macro",
  42829. height: math.unit(5000, "feet")
  42830. },
  42831. {
  42832. name: "Megamacro",
  42833. height: math.unit(50000, "feet")
  42834. },
  42835. {
  42836. name: "Gigamacro",
  42837. height: math.unit(500000, "feet")
  42838. },
  42839. {
  42840. name: "Teramacro",
  42841. height: math.unit(5e6, "feet")
  42842. },
  42843. ]
  42844. ))
  42845. characterMakers.push(() => makeCharacter(
  42846. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42847. {
  42848. front: {
  42849. height: math.unit(6 + 2/12, "feet"),
  42850. name: "Front",
  42851. image: {
  42852. source: "./media/characters/squeaks/front.svg",
  42853. extra: 1823/1768,
  42854. bottom: 138/1961
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Micro",
  42861. height: math.unit(0.5, "inches")
  42862. },
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(6 + 2/12, "feet"),
  42866. default: true
  42867. },
  42868. {
  42869. name: "Macro",
  42870. height: math.unit(600, "feet")
  42871. },
  42872. ]
  42873. ))
  42874. characterMakers.push(() => makeCharacter(
  42875. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42876. {
  42877. front: {
  42878. height: math.unit(1.72, "meters"),
  42879. name: "Front",
  42880. image: {
  42881. source: "./media/characters/archinger/front.svg",
  42882. extra: 1861/1675,
  42883. bottom: 125/1986
  42884. }
  42885. },
  42886. back: {
  42887. height: math.unit(1.72, "meters"),
  42888. name: "Back",
  42889. image: {
  42890. source: "./media/characters/archinger/back.svg",
  42891. extra: 1844/1701,
  42892. bottom: 104/1948
  42893. }
  42894. },
  42895. cock: {
  42896. height: math.unit(0.59, "feet"),
  42897. name: "Cock",
  42898. image: {
  42899. source: "./media/characters/archinger/cock.svg"
  42900. }
  42901. },
  42902. },
  42903. [
  42904. {
  42905. name: "Normal",
  42906. height: math.unit(1.72, "meters"),
  42907. default: true
  42908. },
  42909. {
  42910. name: "Macro",
  42911. height: math.unit(84, "meters")
  42912. },
  42913. {
  42914. name: "Macro+",
  42915. height: math.unit(112, "meters")
  42916. },
  42917. {
  42918. name: "Macro++",
  42919. height: math.unit(960, "meters")
  42920. },
  42921. {
  42922. name: "Macro+++",
  42923. height: math.unit(4, "km")
  42924. },
  42925. {
  42926. name: "Macro++++",
  42927. height: math.unit(48, "km")
  42928. },
  42929. {
  42930. name: "Macro+++++",
  42931. height: math.unit(4500, "km")
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42937. {
  42938. front: {
  42939. height: math.unit(5 + 5/12, "feet"),
  42940. name: "Front",
  42941. image: {
  42942. source: "./media/characters/alsnapz/front.svg",
  42943. extra: 1157/1065,
  42944. bottom: 42/1199
  42945. }
  42946. },
  42947. },
  42948. [
  42949. {
  42950. name: "Normal",
  42951. height: math.unit(5 + 5/12, "feet"),
  42952. default: true
  42953. },
  42954. ]
  42955. ))
  42956. characterMakers.push(() => makeCharacter(
  42957. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42958. {
  42959. side: {
  42960. height: math.unit(3.2, "earths"),
  42961. name: "Side",
  42962. image: {
  42963. source: "./media/characters/mag/side.svg",
  42964. extra: 1331/1008,
  42965. bottom: 52/1383
  42966. }
  42967. },
  42968. wing: {
  42969. height: math.unit(1.94, "earths"),
  42970. name: "Wing",
  42971. image: {
  42972. source: "./media/characters/mag/wing.svg"
  42973. }
  42974. },
  42975. dick: {
  42976. height: math.unit(1.8, "earths"),
  42977. name: "Dick",
  42978. image: {
  42979. source: "./media/characters/mag/dick.svg"
  42980. }
  42981. },
  42982. ass: {
  42983. height: math.unit(1.33, "earths"),
  42984. name: "Ass",
  42985. image: {
  42986. source: "./media/characters/mag/ass.svg"
  42987. }
  42988. },
  42989. head: {
  42990. height: math.unit(1.1, "earths"),
  42991. name: "Head",
  42992. image: {
  42993. source: "./media/characters/mag/head.svg"
  42994. }
  42995. },
  42996. maw: {
  42997. height: math.unit(1.62, "earths"),
  42998. name: "Maw",
  42999. image: {
  43000. source: "./media/characters/mag/maw.svg"
  43001. }
  43002. },
  43003. },
  43004. [
  43005. {
  43006. name: "Small",
  43007. height: math.unit(162, "feet")
  43008. },
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(3.2, "earths"),
  43012. default: true
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43018. {
  43019. front: {
  43020. height: math.unit(512, "feet"),
  43021. weight: math.unit(63509, "tonnes"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/vorrel-harroc/front.svg",
  43025. extra: 1075/1063,
  43026. bottom: 62/1137
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Normal",
  43033. height: math.unit(10, "feet")
  43034. },
  43035. {
  43036. name: "Macro",
  43037. height: math.unit(512, "feet"),
  43038. default: true
  43039. },
  43040. {
  43041. name: "Megamacro",
  43042. height: math.unit(256, "miles")
  43043. },
  43044. {
  43045. name: "Gigamacro",
  43046. height: math.unit(4096, "miles")
  43047. },
  43048. ]
  43049. ))
  43050. characterMakers.push(() => makeCharacter(
  43051. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43052. {
  43053. side: {
  43054. height: math.unit(50, "feet"),
  43055. name: "Side",
  43056. image: {
  43057. source: "./media/characters/froimar/side.svg",
  43058. extra: 855/638,
  43059. bottom: 99/954
  43060. }
  43061. },
  43062. },
  43063. [
  43064. {
  43065. name: "Macro",
  43066. height: math.unit(50, "feet"),
  43067. default: true
  43068. },
  43069. ]
  43070. ))
  43071. characterMakers.push(() => makeCharacter(
  43072. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43073. {
  43074. front: {
  43075. height: math.unit(210, "miles"),
  43076. name: "Front",
  43077. image: {
  43078. source: "./media/characters/timothy/front.svg",
  43079. extra: 1007/943,
  43080. bottom: 62/1069
  43081. }
  43082. },
  43083. frontSkirt: {
  43084. height: math.unit(210, "miles"),
  43085. name: "Front (Skirt)",
  43086. image: {
  43087. source: "./media/characters/timothy/front-skirt.svg",
  43088. extra: 1007/943,
  43089. bottom: 62/1069
  43090. }
  43091. },
  43092. frontCoat: {
  43093. height: math.unit(210, "miles"),
  43094. name: "Front (Coat)",
  43095. image: {
  43096. source: "./media/characters/timothy/front-coat.svg",
  43097. extra: 1007/943,
  43098. bottom: 62/1069
  43099. }
  43100. },
  43101. },
  43102. [
  43103. {
  43104. name: "Macro",
  43105. height: math.unit(210, "miles"),
  43106. default: true
  43107. },
  43108. {
  43109. name: "Megamacro",
  43110. height: math.unit(210000, "miles")
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(188, "feet"),
  43119. name: "Front",
  43120. image: {
  43121. source: "./media/characters/pyotr/front.svg",
  43122. extra: 1912/1826,
  43123. bottom: 18/1930
  43124. }
  43125. },
  43126. },
  43127. [
  43128. {
  43129. name: "Macro",
  43130. height: math.unit(188, "feet"),
  43131. default: true
  43132. },
  43133. {
  43134. name: "Megamacro",
  43135. height: math.unit(8, "miles")
  43136. },
  43137. ]
  43138. ))
  43139. characterMakers.push(() => makeCharacter(
  43140. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43141. {
  43142. side: {
  43143. height: math.unit(10, "feet"),
  43144. weight: math.unit(4500, "lb"),
  43145. name: "Side",
  43146. image: {
  43147. source: "./media/characters/ackart/side.svg",
  43148. extra: 1776/1668,
  43149. bottom: 116/1892
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Normal",
  43156. height: math.unit(10, "feet"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43163. {
  43164. side: {
  43165. height: math.unit(21, "feet"),
  43166. name: "Side",
  43167. image: {
  43168. source: "./media/characters/nolow/side.svg",
  43169. extra: 1484/1434,
  43170. bottom: 85/1569
  43171. }
  43172. },
  43173. sideErect: {
  43174. height: math.unit(21, "feet"),
  43175. name: "Side-erect",
  43176. image: {
  43177. source: "./media/characters/nolow/side-erect.svg",
  43178. extra: 1484/1434,
  43179. bottom: 85/1569
  43180. }
  43181. },
  43182. },
  43183. [
  43184. {
  43185. name: "Regular",
  43186. height: math.unit(12, "feet")
  43187. },
  43188. {
  43189. name: "Big Chee",
  43190. height: math.unit(21, "feet"),
  43191. default: true
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43197. {
  43198. front: {
  43199. height: math.unit(7, "feet"),
  43200. weight: math.unit(250, "lb"),
  43201. name: "Front",
  43202. image: {
  43203. source: "./media/characters/nines/front.svg",
  43204. extra: 1741/1607,
  43205. bottom: 41/1782
  43206. }
  43207. },
  43208. side: {
  43209. height: math.unit(7, "feet"),
  43210. weight: math.unit(250, "lb"),
  43211. name: "Side",
  43212. image: {
  43213. source: "./media/characters/nines/side.svg",
  43214. extra: 1854/1735,
  43215. bottom: 93/1947
  43216. }
  43217. },
  43218. back: {
  43219. height: math.unit(7, "feet"),
  43220. weight: math.unit(250, "lb"),
  43221. name: "Back",
  43222. image: {
  43223. source: "./media/characters/nines/back.svg",
  43224. extra: 1748/1615,
  43225. bottom: 20/1768
  43226. }
  43227. },
  43228. },
  43229. [
  43230. {
  43231. name: "Megamacro",
  43232. height: math.unit(99, "km"),
  43233. default: true
  43234. },
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43239. {
  43240. front: {
  43241. height: math.unit(5 + 10/12, "feet"),
  43242. weight: math.unit(210, "lb"),
  43243. name: "Front",
  43244. image: {
  43245. source: "./media/characters/zenith/front.svg",
  43246. extra: 1531/1452,
  43247. bottom: 198/1729
  43248. }
  43249. },
  43250. back: {
  43251. height: math.unit(5 + 10/12, "feet"),
  43252. weight: math.unit(210, "lb"),
  43253. name: "Back",
  43254. image: {
  43255. source: "./media/characters/zenith/back.svg",
  43256. extra: 1571/1487,
  43257. bottom: 75/1646
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(5 + 10/12, "feet"),
  43265. default: true
  43266. }
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(4, "feet"),
  43274. weight: math.unit(60, "lb"),
  43275. name: "Front",
  43276. image: {
  43277. source: "./media/characters/jasper/front.svg",
  43278. extra: 1450/1379,
  43279. bottom: 19/1469
  43280. }
  43281. },
  43282. },
  43283. [
  43284. {
  43285. name: "Normal",
  43286. height: math.unit(4, "feet"),
  43287. default: true
  43288. },
  43289. ]
  43290. ))
  43291. characterMakers.push(() => makeCharacter(
  43292. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43293. {
  43294. front: {
  43295. height: math.unit(6 + 5/12, "feet"),
  43296. weight: math.unit(290, "lb"),
  43297. name: "Front",
  43298. image: {
  43299. source: "./media/characters/tiberius-thyben/front.svg",
  43300. extra: 757/739,
  43301. bottom: 39/796
  43302. }
  43303. },
  43304. },
  43305. [
  43306. {
  43307. name: "Micro",
  43308. height: math.unit(1.5, "inches")
  43309. },
  43310. {
  43311. name: "Normal",
  43312. height: math.unit(6 + 5/12, "feet"),
  43313. default: true
  43314. },
  43315. {
  43316. name: "Macro",
  43317. height: math.unit(300, "feet")
  43318. },
  43319. ]
  43320. ))
  43321. characterMakers.push(() => makeCharacter(
  43322. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43323. {
  43324. front: {
  43325. height: math.unit(5 + 6/12, "feet"),
  43326. weight: math.unit(60, "kg"),
  43327. name: "Front",
  43328. image: {
  43329. source: "./media/characters/sabre/front.svg",
  43330. extra: 738/671,
  43331. bottom: 27/765
  43332. }
  43333. },
  43334. },
  43335. [
  43336. {
  43337. name: "Teeny",
  43338. height: math.unit(2, "inches")
  43339. },
  43340. {
  43341. name: "Smol",
  43342. height: math.unit(8, "inches")
  43343. },
  43344. {
  43345. name: "Normal",
  43346. height: math.unit(5 + 6/12, "feet"),
  43347. default: true
  43348. },
  43349. {
  43350. name: "Mini-Macro",
  43351. height: math.unit(15, "feet")
  43352. },
  43353. {
  43354. name: "Macro",
  43355. height: math.unit(50, "feet")
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43361. {
  43362. front: {
  43363. height: math.unit(6 + 4/12, "feet"),
  43364. weight: math.unit(170, "lb"),
  43365. name: "Front",
  43366. image: {
  43367. source: "./media/characters/charlie/front.svg",
  43368. extra: 1348/1228,
  43369. bottom: 15/1363
  43370. }
  43371. },
  43372. },
  43373. [
  43374. {
  43375. name: "Macro",
  43376. height: math.unit(1700, "meters"),
  43377. default: true
  43378. },
  43379. {
  43380. name: "MegaMacro",
  43381. height: math.unit(20400, "meters")
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43387. {
  43388. front: {
  43389. height: math.unit(6 + 3/12, "feet"),
  43390. weight: math.unit(185, "lb"),
  43391. name: "Front",
  43392. image: {
  43393. source: "./media/characters/susan-grant/front.svg",
  43394. extra: 1351/1327,
  43395. bottom: 26/1377
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(6 + 3/12, "feet"),
  43403. default: true
  43404. },
  43405. {
  43406. name: "Macro",
  43407. height: math.unit(225, "feet")
  43408. },
  43409. {
  43410. name: "Macro+",
  43411. height: math.unit(900, "feet")
  43412. },
  43413. {
  43414. name: "MegaMacro",
  43415. height: math.unit(14400, "feet")
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(5 + 4/12, "feet"),
  43424. weight: math.unit(110, "lb"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/axel-isanov/front.svg",
  43428. extra: 1096/1065,
  43429. bottom: 13/1109
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Normal",
  43436. height: math.unit(5 + 4/12, "feet"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(9, "feet"),
  43446. weight: math.unit(467, "lb"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/necahual/front.svg",
  43450. extra: 920/873,
  43451. bottom: 26/946
  43452. }
  43453. },
  43454. back: {
  43455. height: math.unit(9, "feet"),
  43456. weight: math.unit(467, "lb"),
  43457. name: "Back",
  43458. image: {
  43459. source: "./media/characters/necahual/back.svg",
  43460. extra: 930/884,
  43461. bottom: 16/946
  43462. }
  43463. },
  43464. frontUnderwear: {
  43465. height: math.unit(9, "feet"),
  43466. weight: math.unit(467, "lb"),
  43467. name: "Front (Underwear)",
  43468. image: {
  43469. source: "./media/characters/necahual/front-underwear.svg",
  43470. extra: 920/873,
  43471. bottom: 26/946
  43472. }
  43473. },
  43474. frontDressed: {
  43475. height: math.unit(9, "feet"),
  43476. weight: math.unit(467, "lb"),
  43477. name: "Front (Dressed)",
  43478. image: {
  43479. source: "./media/characters/necahual/front-dressed.svg",
  43480. extra: 920/873,
  43481. bottom: 26/946
  43482. }
  43483. },
  43484. },
  43485. [
  43486. {
  43487. name: "Comprsesed",
  43488. height: math.unit(9, "feet")
  43489. },
  43490. {
  43491. name: "Natural",
  43492. height: math.unit(15, "feet"),
  43493. default: true
  43494. },
  43495. {
  43496. name: "Boosted",
  43497. height: math.unit(50, "feet")
  43498. },
  43499. {
  43500. name: "Boosted+",
  43501. height: math.unit(150, "feet")
  43502. },
  43503. {
  43504. name: "Max",
  43505. height: math.unit(500, "feet")
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(22 + 1/12, "feet"),
  43514. weight: math.unit(3200, "lb"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/theo-acacia/front.svg",
  43518. extra: 1796/1741,
  43519. bottom: 83/1879
  43520. }
  43521. },
  43522. frontUnderwear: {
  43523. height: math.unit(22 + 1/12, "feet"),
  43524. weight: math.unit(3200, "lb"),
  43525. name: "Front (Underwear)",
  43526. image: {
  43527. source: "./media/characters/theo-acacia/front-underwear.svg",
  43528. extra: 1796/1741,
  43529. bottom: 83/1879
  43530. }
  43531. },
  43532. frontNude: {
  43533. height: math.unit(22 + 1/12, "feet"),
  43534. weight: math.unit(3200, "lb"),
  43535. name: "Front (Nude)",
  43536. image: {
  43537. source: "./media/characters/theo-acacia/front-nude.svg",
  43538. extra: 1796/1741,
  43539. bottom: 83/1879
  43540. }
  43541. },
  43542. },
  43543. [
  43544. {
  43545. name: "Normal",
  43546. height: math.unit(22 + 1/12, "feet"),
  43547. default: true
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(20, "feet"),
  43556. name: "Front",
  43557. image: {
  43558. source: "./media/characters/astra/front.svg",
  43559. extra: 1850/1714,
  43560. bottom: 106/1956
  43561. }
  43562. },
  43563. frontUndressed: {
  43564. height: math.unit(20, "feet"),
  43565. name: "Front (Undressed)",
  43566. image: {
  43567. source: "./media/characters/astra/front-undressed.svg",
  43568. extra: 1926/1749,
  43569. bottom: 0/1926
  43570. }
  43571. },
  43572. hand: {
  43573. height: math.unit(1.53, "feet"),
  43574. name: "Hand",
  43575. image: {
  43576. source: "./media/characters/astra/hand.svg"
  43577. }
  43578. },
  43579. paw: {
  43580. height: math.unit(1.53, "feet"),
  43581. name: "Paw",
  43582. image: {
  43583. source: "./media/characters/astra/paw.svg"
  43584. }
  43585. },
  43586. },
  43587. [
  43588. {
  43589. name: "Smallest",
  43590. height: math.unit(20, "feet")
  43591. },
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(1e9, "miles"),
  43595. default: true
  43596. },
  43597. {
  43598. name: "Larger",
  43599. height: math.unit(5, "multiverses")
  43600. },
  43601. {
  43602. name: "Largest",
  43603. height: math.unit(1e9, "multiverses")
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43609. {
  43610. front: {
  43611. height: math.unit(8, "feet"),
  43612. name: "Front",
  43613. image: {
  43614. source: "./media/characters/breanna/front.svg",
  43615. extra: 1912/1632,
  43616. bottom: 33/1945
  43617. }
  43618. },
  43619. },
  43620. [
  43621. {
  43622. name: "Smallest",
  43623. height: math.unit(8, "feet")
  43624. },
  43625. {
  43626. name: "Normal",
  43627. height: math.unit(1, "mile"),
  43628. default: true
  43629. },
  43630. {
  43631. name: "Maximum",
  43632. height: math.unit(1500000000000, "lightyears")
  43633. },
  43634. ]
  43635. ))
  43636. characterMakers.push(() => makeCharacter(
  43637. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43638. {
  43639. front: {
  43640. height: math.unit(5 + 11/12, "feet"),
  43641. weight: math.unit(155, "lb"),
  43642. name: "Front",
  43643. image: {
  43644. source: "./media/characters/cai/front.svg",
  43645. extra: 1823/1702,
  43646. bottom: 32/1855
  43647. }
  43648. },
  43649. back: {
  43650. height: math.unit(5 + 11/12, "feet"),
  43651. weight: math.unit(155, "lb"),
  43652. name: "Back",
  43653. image: {
  43654. source: "./media/characters/cai/back.svg",
  43655. extra: 1809/1708,
  43656. bottom: 31/1840
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(5 + 11/12, "feet"),
  43664. default: true
  43665. },
  43666. {
  43667. name: "Big",
  43668. height: math.unit(15, "feet")
  43669. },
  43670. {
  43671. name: "Macro",
  43672. height: math.unit(200, "feet")
  43673. },
  43674. ]
  43675. ))
  43676. characterMakers.push(() => makeCharacter(
  43677. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43678. {
  43679. front: {
  43680. height: math.unit(5 + 6/12, "feet"),
  43681. weight: math.unit(160, "lb"),
  43682. name: "Front",
  43683. image: {
  43684. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43685. extra: 1227/1174,
  43686. bottom: 37/1264
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Macro",
  43693. height: math.unit(444, "meters"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(18 + 7/12, "feet"),
  43703. name: "Front",
  43704. image: {
  43705. source: "./media/characters/rex/front.svg",
  43706. extra: 1941/1807,
  43707. bottom: 66/2007
  43708. }
  43709. },
  43710. back: {
  43711. height: math.unit(18 + 7/12, "feet"),
  43712. name: "Back",
  43713. image: {
  43714. source: "./media/characters/rex/back.svg",
  43715. extra: 1937/1822,
  43716. bottom: 42/1979
  43717. }
  43718. },
  43719. boot: {
  43720. height: math.unit(3.45, "feet"),
  43721. name: "Boot",
  43722. image: {
  43723. source: "./media/characters/rex/boot.svg"
  43724. }
  43725. },
  43726. paw: {
  43727. height: math.unit(4.17, "feet"),
  43728. name: "Paw",
  43729. image: {
  43730. source: "./media/characters/rex/paw.svg"
  43731. }
  43732. },
  43733. head: {
  43734. height: math.unit(6.728, "feet"),
  43735. name: "Head",
  43736. image: {
  43737. source: "./media/characters/rex/head.svg"
  43738. }
  43739. },
  43740. },
  43741. [
  43742. {
  43743. name: "Nano",
  43744. height: math.unit(18 + 7/12, "feet")
  43745. },
  43746. {
  43747. name: "Micro",
  43748. height: math.unit(1.5, "megameters")
  43749. },
  43750. {
  43751. name: "Normal",
  43752. height: math.unit(440, "megameters"),
  43753. default: true
  43754. },
  43755. {
  43756. name: "Macro",
  43757. height: math.unit(2.5, "gigameters")
  43758. },
  43759. {
  43760. name: "Gigamacro",
  43761. height: math.unit(2, "galaxies")
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43767. {
  43768. side: {
  43769. height: math.unit(32, "feet"),
  43770. weight: math.unit(250000, "lb"),
  43771. name: "Side",
  43772. image: {
  43773. source: "./media/characters/silverwing/side.svg",
  43774. extra: 1100/1019,
  43775. bottom: 204/1304
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(32, "feet"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43789. {
  43790. front: {
  43791. height: math.unit(6 + 6/12, "feet"),
  43792. weight: math.unit(350, "lb"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/tristan-hawthorne/front.svg",
  43796. extra: 1159/1124,
  43797. bottom: 37/1196
  43798. },
  43799. form: "labrador",
  43800. default: true
  43801. },
  43802. skunkFront: {
  43803. height: math.unit(4 + 6/12, "feet"),
  43804. weight: math.unit(120, "lb"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43808. extra: 1609/1551,
  43809. bottom: 169/1778
  43810. },
  43811. form: "skunk",
  43812. default: true
  43813. },
  43814. },
  43815. [
  43816. {
  43817. name: "Normal",
  43818. height: math.unit(6 + 6/12, "feet"),
  43819. form: "labrador",
  43820. default: true
  43821. },
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(4 + 6/12, "feet"),
  43825. form: "skunk",
  43826. default: true
  43827. },
  43828. ],
  43829. {
  43830. "labrador": {
  43831. name: "Labrador",
  43832. default: true
  43833. },
  43834. "skunk": {
  43835. name: "Skunk"
  43836. }
  43837. }
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43841. {
  43842. front: {
  43843. height: math.unit(5 + 11/12, "feet"),
  43844. weight: math.unit(190, "lb"),
  43845. name: "Front",
  43846. image: {
  43847. source: "./media/characters/mizu/front.svg",
  43848. extra: 1988/1788,
  43849. bottom: 14/2002
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(5 + 11/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(1.7, "feet"),
  43866. weight: math.unit(50, "lb"),
  43867. name: "Front",
  43868. image: {
  43869. source: "./media/characters/dechroma/front.svg",
  43870. extra: 1095/859,
  43871. bottom: 64/1159
  43872. }
  43873. },
  43874. },
  43875. [
  43876. {
  43877. name: "Normal",
  43878. height: math.unit(1.7, "feet"),
  43879. default: true
  43880. },
  43881. ]
  43882. ))
  43883. characterMakers.push(() => makeCharacter(
  43884. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43885. {
  43886. side: {
  43887. height: math.unit(30, "feet"),
  43888. name: "Side",
  43889. image: {
  43890. source: "./media/characters/veluren-thanazel/side.svg",
  43891. extra: 1611/633,
  43892. bottom: 118/1729
  43893. }
  43894. },
  43895. front: {
  43896. height: math.unit(30, "feet"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/veluren-thanazel/front.svg",
  43900. extra: 1486/636,
  43901. bottom: 238/1724
  43902. }
  43903. },
  43904. head: {
  43905. height: math.unit(21.4, "feet"),
  43906. name: "Head",
  43907. image: {
  43908. source: "./media/characters/veluren-thanazel/head.svg"
  43909. }
  43910. },
  43911. genitals: {
  43912. height: math.unit(19.4, "feet"),
  43913. name: "Genitals",
  43914. image: {
  43915. source: "./media/characters/veluren-thanazel/genitals.svg"
  43916. }
  43917. },
  43918. },
  43919. [
  43920. {
  43921. name: "Social",
  43922. height: math.unit(6, "feet")
  43923. },
  43924. {
  43925. name: "Play",
  43926. height: math.unit(12, "feet")
  43927. },
  43928. {
  43929. name: "True",
  43930. height: math.unit(30, "feet"),
  43931. default: true
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43937. {
  43938. front: {
  43939. height: math.unit(7 + 6/12, "feet"),
  43940. weight: math.unit(500, "kg"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/arcturas/front.svg",
  43944. extra: 1700/1500,
  43945. bottom: 145/1845
  43946. }
  43947. },
  43948. },
  43949. [
  43950. {
  43951. name: "Normal",
  43952. height: math.unit(7 + 6/12, "feet"),
  43953. default: true
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43959. {
  43960. side: {
  43961. height: math.unit(6, "feet"),
  43962. weight: math.unit(2, "tons"),
  43963. name: "Side",
  43964. image: {
  43965. source: "./media/characters/vitaen/side.svg",
  43966. extra: 1157/617,
  43967. bottom: 122/1279
  43968. }
  43969. },
  43970. },
  43971. [
  43972. {
  43973. name: "Normal",
  43974. height: math.unit(6, "feet"),
  43975. default: true
  43976. },
  43977. ]
  43978. ))
  43979. characterMakers.push(() => makeCharacter(
  43980. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43981. {
  43982. front: {
  43983. height: math.unit(19, "feet"),
  43984. name: "Front",
  43985. image: {
  43986. source: "./media/characters/fia-dreamweaver/front.svg",
  43987. extra: 1630/1504,
  43988. bottom: 25/1655
  43989. }
  43990. },
  43991. },
  43992. [
  43993. {
  43994. name: "Normal",
  43995. height: math.unit(19, "feet"),
  43996. default: true
  43997. },
  43998. ]
  43999. ))
  44000. characterMakers.push(() => makeCharacter(
  44001. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44002. {
  44003. front: {
  44004. height: math.unit(5 + 4/12, "feet"),
  44005. name: "Front",
  44006. image: {
  44007. source: "./media/characters/artan/front.svg",
  44008. extra: 1618/1535,
  44009. bottom: 46/1664
  44010. }
  44011. },
  44012. back: {
  44013. height: math.unit(5 + 4/12, "feet"),
  44014. name: "Back",
  44015. image: {
  44016. source: "./media/characters/artan/back.svg",
  44017. extra: 1618/1543,
  44018. bottom: 31/1649
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Normal",
  44025. height: math.unit(5 + 4/12, "feet"),
  44026. default: true
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44032. {
  44033. side: {
  44034. height: math.unit(182, "cm"),
  44035. weight: math.unit(1000, "lb"),
  44036. name: "Side",
  44037. image: {
  44038. source: "./media/characters/silver-dragon/side.svg",
  44039. extra: 710/287,
  44040. bottom: 88/798
  44041. }
  44042. },
  44043. },
  44044. [
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(182, "cm"),
  44048. default: true
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44054. {
  44055. side: {
  44056. height: math.unit(6 + 6/12, "feet"),
  44057. weight: math.unit(1.5, "tons"),
  44058. name: "Side",
  44059. image: {
  44060. source: "./media/characters/zephyr/side.svg",
  44061. extra: 1433/586,
  44062. bottom: 109/1542
  44063. }
  44064. },
  44065. },
  44066. [
  44067. {
  44068. name: "Normal",
  44069. height: math.unit(6 + 6/12, "feet"),
  44070. default: true
  44071. },
  44072. ]
  44073. ))
  44074. characterMakers.push(() => makeCharacter(
  44075. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44076. {
  44077. side: {
  44078. height: math.unit(1, "feet"),
  44079. name: "Side",
  44080. image: {
  44081. source: "./media/characters/vixye/side.svg",
  44082. extra: 632/541,
  44083. bottom: 0/632
  44084. }
  44085. },
  44086. },
  44087. [
  44088. {
  44089. name: "Normal",
  44090. height: math.unit(1, "feet"),
  44091. default: true
  44092. },
  44093. {
  44094. name: "True",
  44095. height: math.unit(1e15, "multiverses")
  44096. },
  44097. ]
  44098. ))
  44099. characterMakers.push(() => makeCharacter(
  44100. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44101. {
  44102. front: {
  44103. height: math.unit(8 + 2/12, "feet"),
  44104. weight: math.unit(650, "lb"),
  44105. name: "Front",
  44106. image: {
  44107. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44108. extra: 1174/1137,
  44109. bottom: 82/1256
  44110. }
  44111. },
  44112. back: {
  44113. height: math.unit(8 + 2/12, "feet"),
  44114. weight: math.unit(650, "lb"),
  44115. name: "Back",
  44116. image: {
  44117. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44118. extra: 1204/1157,
  44119. bottom: 46/1250
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Wildform",
  44126. height: math.unit(8 + 2/12, "feet"),
  44127. default: true
  44128. },
  44129. ]
  44130. ))
  44131. characterMakers.push(() => makeCharacter(
  44132. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44133. {
  44134. front: {
  44135. height: math.unit(18, "feet"),
  44136. name: "Front",
  44137. image: {
  44138. source: "./media/characters/cyphin/front.svg",
  44139. extra: 970/886,
  44140. bottom: 42/1012
  44141. }
  44142. },
  44143. back: {
  44144. height: math.unit(18, "feet"),
  44145. name: "Back",
  44146. image: {
  44147. source: "./media/characters/cyphin/back.svg",
  44148. extra: 1009/894,
  44149. bottom: 24/1033
  44150. }
  44151. },
  44152. head: {
  44153. height: math.unit(5.05, "feet"),
  44154. name: "Head",
  44155. image: {
  44156. source: "./media/characters/cyphin/head.svg"
  44157. }
  44158. },
  44159. tailbud: {
  44160. height: math.unit(5, "feet"),
  44161. name: "Tailbud",
  44162. image: {
  44163. source: "./media/characters/cyphin/tailbud.svg"
  44164. }
  44165. },
  44166. },
  44167. [
  44168. ]
  44169. ))
  44170. characterMakers.push(() => makeCharacter(
  44171. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44172. {
  44173. side: {
  44174. height: math.unit(10, "feet"),
  44175. weight: math.unit(6, "tons"),
  44176. name: "Side",
  44177. image: {
  44178. source: "./media/characters/raijin/side.svg",
  44179. extra: 1529/613,
  44180. bottom: 337/1866
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Normal",
  44187. height: math.unit(10, "feet"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44194. {
  44195. side: {
  44196. height: math.unit(9, "feet"),
  44197. name: "Side",
  44198. image: {
  44199. source: "./media/characters/nilghais/side.svg",
  44200. extra: 1047/744,
  44201. bottom: 91/1138
  44202. }
  44203. },
  44204. head: {
  44205. height: math.unit(3.14, "feet"),
  44206. name: "Head",
  44207. image: {
  44208. source: "./media/characters/nilghais/head.svg"
  44209. }
  44210. },
  44211. mouth: {
  44212. height: math.unit(4.6, "feet"),
  44213. name: "Mouth",
  44214. image: {
  44215. source: "./media/characters/nilghais/mouth.svg"
  44216. }
  44217. },
  44218. wings: {
  44219. height: math.unit(24, "feet"),
  44220. name: "Wings",
  44221. image: {
  44222. source: "./media/characters/nilghais/wings.svg"
  44223. }
  44224. },
  44225. ass: {
  44226. height: math.unit(6.12, "feet"),
  44227. name: "Ass",
  44228. image: {
  44229. source: "./media/characters/nilghais/ass.svg"
  44230. }
  44231. },
  44232. },
  44233. [
  44234. {
  44235. name: "Normal",
  44236. height: math.unit(9, "feet"),
  44237. default: true
  44238. },
  44239. ]
  44240. ))
  44241. characterMakers.push(() => makeCharacter(
  44242. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44243. {
  44244. regular: {
  44245. height: math.unit(16 + 2/12, "feet"),
  44246. weight: math.unit(2300, "lb"),
  44247. name: "Regular",
  44248. image: {
  44249. source: "./media/characters/zolgar/regular.svg",
  44250. extra: 1246/1004,
  44251. bottom: 124/1370
  44252. }
  44253. },
  44254. boxers: {
  44255. height: math.unit(16 + 2/12, "feet"),
  44256. weight: math.unit(2300, "lb"),
  44257. name: "Boxers",
  44258. image: {
  44259. source: "./media/characters/zolgar/boxers.svg",
  44260. extra: 1246/1004,
  44261. bottom: 124/1370
  44262. }
  44263. },
  44264. armored: {
  44265. height: math.unit(16 + 2/12, "feet"),
  44266. weight: math.unit(2300, "lb"),
  44267. name: "Armored",
  44268. image: {
  44269. source: "./media/characters/zolgar/armored.svg",
  44270. extra: 1246/1004,
  44271. bottom: 124/1370
  44272. }
  44273. },
  44274. goth: {
  44275. height: math.unit(16 + 2/12, "feet"),
  44276. weight: math.unit(2300, "lb"),
  44277. name: "Goth",
  44278. image: {
  44279. source: "./media/characters/zolgar/goth.svg",
  44280. extra: 1246/1004,
  44281. bottom: 124/1370
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Shrunken Down",
  44288. height: math.unit(9 + 2/12, "feet")
  44289. },
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(16 + 2/12, "feet"),
  44293. default: true
  44294. },
  44295. ]
  44296. ))
  44297. characterMakers.push(() => makeCharacter(
  44298. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44299. {
  44300. front: {
  44301. height: math.unit(6, "feet"),
  44302. weight: math.unit(168, "lb"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/luca/front.svg",
  44306. extra: 841/667,
  44307. bottom: 102/943
  44308. }
  44309. },
  44310. },
  44311. [
  44312. {
  44313. name: "Normal",
  44314. height: math.unit(6, "feet"),
  44315. default: true
  44316. },
  44317. ]
  44318. ))
  44319. characterMakers.push(() => makeCharacter(
  44320. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44321. {
  44322. side: {
  44323. height: math.unit(7 + 3/12, "feet"),
  44324. weight: math.unit(312, "lb"),
  44325. name: "Side",
  44326. image: {
  44327. source: "./media/characters/zezo/side.svg",
  44328. extra: 1192/1067,
  44329. bottom: 63/1255
  44330. }
  44331. },
  44332. },
  44333. [
  44334. {
  44335. name: "Normal",
  44336. height: math.unit(7 + 3/12, "feet"),
  44337. default: true
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(5 + 5/12, "feet"),
  44346. weight: math.unit(170, "lb"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/mayso/front.svg",
  44350. extra: 1215/1108,
  44351. bottom: 16/1231
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Normal",
  44358. height: math.unit(5 + 5/12, "feet"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(4 + 3/12, "feet"),
  44368. weight: math.unit(80, "lb"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/hess/front.svg",
  44372. extra: 1200/1123,
  44373. bottom: 16/1216
  44374. }
  44375. },
  44376. },
  44377. [
  44378. {
  44379. name: "Normal",
  44380. height: math.unit(4 + 3/12, "feet"),
  44381. default: true
  44382. },
  44383. ]
  44384. ))
  44385. characterMakers.push(() => makeCharacter(
  44386. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44387. {
  44388. front: {
  44389. height: math.unit(1.9, "meters"),
  44390. name: "Front",
  44391. image: {
  44392. source: "./media/characters/ashgar/front.svg",
  44393. extra: 1177/1146,
  44394. bottom: 99/1276
  44395. }
  44396. },
  44397. back: {
  44398. height: math.unit(1.9, "meters"),
  44399. name: "Back",
  44400. image: {
  44401. source: "./media/characters/ashgar/back.svg",
  44402. extra: 1201/1183,
  44403. bottom: 53/1254
  44404. }
  44405. },
  44406. feral: {
  44407. height: math.unit(1.4, "meters"),
  44408. name: "Feral",
  44409. image: {
  44410. source: "./media/characters/ashgar/feral.svg",
  44411. extra: 370/345,
  44412. bottom: 45/415
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(1.9, "meters"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44426. {
  44427. regular: {
  44428. height: math.unit(6, "feet"),
  44429. weight: math.unit(220, "lb"),
  44430. name: "Regular",
  44431. image: {
  44432. source: "./media/characters/phillip/regular.svg",
  44433. extra: 1373/1277,
  44434. bottom: 75/1448
  44435. }
  44436. },
  44437. dressed: {
  44438. height: math.unit(6, "feet"),
  44439. weight: math.unit(220, "lb"),
  44440. name: "Dressed",
  44441. image: {
  44442. source: "./media/characters/phillip/dressed.svg",
  44443. extra: 1373/1277,
  44444. bottom: 75/1448
  44445. }
  44446. },
  44447. paw: {
  44448. height: math.unit(1.44, "feet"),
  44449. name: "Paw",
  44450. image: {
  44451. source: "./media/characters/phillip/paw.svg"
  44452. }
  44453. },
  44454. },
  44455. [
  44456. {
  44457. name: "Normal",
  44458. height: math.unit(6, "feet"),
  44459. default: true
  44460. },
  44461. ]
  44462. ))
  44463. characterMakers.push(() => makeCharacter(
  44464. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44465. {
  44466. side: {
  44467. height: math.unit(42, "feet"),
  44468. name: "Side",
  44469. image: {
  44470. source: "./media/characters/uvula/side.svg",
  44471. extra: 683/586,
  44472. bottom: 60/743
  44473. }
  44474. },
  44475. front: {
  44476. height: math.unit(42, "feet"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/uvula/front.svg",
  44480. extra: 705/613,
  44481. bottom: 54/759
  44482. }
  44483. },
  44484. maw: {
  44485. height: math.unit(23.5, "feet"),
  44486. name: "Maw",
  44487. image: {
  44488. source: "./media/characters/uvula/maw.svg"
  44489. }
  44490. },
  44491. },
  44492. [
  44493. {
  44494. name: "Original Size",
  44495. height: math.unit(14, "inches")
  44496. },
  44497. {
  44498. name: "Human Size",
  44499. height: math.unit(6, "feet")
  44500. },
  44501. {
  44502. name: "Big",
  44503. height: math.unit(42, "feet"),
  44504. default: true
  44505. },
  44506. {
  44507. name: "Bigger",
  44508. height: math.unit(100, "feet")
  44509. },
  44510. ]
  44511. ))
  44512. characterMakers.push(() => makeCharacter(
  44513. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44514. {
  44515. front: {
  44516. height: math.unit(5 + 11/12, "feet"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/lannah/front.svg",
  44520. extra: 1208/1113,
  44521. bottom: 97/1305
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(5 + 11/12, "feet"),
  44529. default: true
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44535. {
  44536. front: {
  44537. height: math.unit(6 + 3/12, "feet"),
  44538. weight: math.unit(3.5, "tons"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/emberflame/front.svg",
  44542. extra: 1198/672,
  44543. bottom: 82/1280
  44544. }
  44545. },
  44546. side: {
  44547. height: math.unit(6 + 3/12, "feet"),
  44548. weight: math.unit(3.5, "tons"),
  44549. name: "Side",
  44550. image: {
  44551. source: "./media/characters/emberflame/side.svg",
  44552. extra: 938/527,
  44553. bottom: 56/994
  44554. }
  44555. },
  44556. },
  44557. [
  44558. {
  44559. name: "Normal",
  44560. height: math.unit(6 + 3/12, "feet"),
  44561. default: true
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44567. {
  44568. side: {
  44569. height: math.unit(17.5, "feet"),
  44570. weight: math.unit(35, "tons"),
  44571. name: "Side",
  44572. image: {
  44573. source: "./media/characters/sophie-ambrose/side.svg",
  44574. extra: 1573/1242,
  44575. bottom: 71/1644
  44576. }
  44577. },
  44578. maw: {
  44579. height: math.unit(7.4, "feet"),
  44580. name: "Maw",
  44581. image: {
  44582. source: "./media/characters/sophie-ambrose/maw.svg"
  44583. }
  44584. },
  44585. },
  44586. [
  44587. {
  44588. name: "Normal",
  44589. height: math.unit(17.5, "feet"),
  44590. default: true
  44591. },
  44592. ]
  44593. ))
  44594. characterMakers.push(() => makeCharacter(
  44595. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44596. {
  44597. front: {
  44598. height: math.unit(280, "feet"),
  44599. weight: math.unit(550, "tons"),
  44600. name: "Front",
  44601. image: {
  44602. source: "./media/characters/king-mugi/front.svg",
  44603. extra: 1102/947,
  44604. bottom: 104/1206
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "King Mugi",
  44611. height: math.unit(280, "feet"),
  44612. default: true
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44618. {
  44619. front: {
  44620. height: math.unit(64, "meters"),
  44621. name: "Front",
  44622. image: {
  44623. source: "./media/characters/nova-fox/front.svg",
  44624. extra: 1310/1246,
  44625. bottom: 65/1375
  44626. }
  44627. },
  44628. },
  44629. [
  44630. {
  44631. name: "Macro",
  44632. height: math.unit(64, "meters"),
  44633. default: true
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44639. {
  44640. front: {
  44641. height: math.unit(6 + 3/12, "feet"),
  44642. weight: math.unit(170, "lb"),
  44643. name: "Front",
  44644. image: {
  44645. source: "./media/characters/sam-bat/front.svg",
  44646. extra: 1601/1411,
  44647. bottom: 125/1726
  44648. }
  44649. },
  44650. back: {
  44651. height: math.unit(6 + 3/12, "feet"),
  44652. weight: math.unit(170, "lb"),
  44653. name: "Back",
  44654. image: {
  44655. source: "./media/characters/sam-bat/back.svg",
  44656. extra: 1577/1405,
  44657. bottom: 58/1635
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(6 + 3/12, "feet"),
  44665. default: true
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44671. {
  44672. front: {
  44673. height: math.unit(59, "feet"),
  44674. weight: math.unit(40000, "lb"),
  44675. name: "Front",
  44676. image: {
  44677. source: "./media/characters/inari/front.svg",
  44678. extra: 1884/1350,
  44679. bottom: 95/1979
  44680. }
  44681. },
  44682. },
  44683. [
  44684. {
  44685. name: "Gigantamax",
  44686. height: math.unit(59, "feet"),
  44687. default: true
  44688. },
  44689. ]
  44690. ))
  44691. characterMakers.push(() => makeCharacter(
  44692. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44693. {
  44694. front: {
  44695. height: math.unit(5 + 8/12, "feet"),
  44696. name: "Front",
  44697. image: {
  44698. source: "./media/characters/elizabeth/front.svg",
  44699. extra: 1395/1298,
  44700. bottom: 54/1449
  44701. }
  44702. },
  44703. mouth: {
  44704. height: math.unit(1.97, "feet"),
  44705. name: "Mouth",
  44706. image: {
  44707. source: "./media/characters/elizabeth/mouth.svg"
  44708. }
  44709. },
  44710. foot: {
  44711. height: math.unit(1.17, "feet"),
  44712. name: "Foot",
  44713. image: {
  44714. source: "./media/characters/elizabeth/foot.svg"
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(5 + 8/12, "feet"),
  44722. default: true
  44723. },
  44724. {
  44725. name: "Minimacro",
  44726. height: math.unit(18, "feet")
  44727. },
  44728. {
  44729. name: "Macro",
  44730. height: math.unit(180, "feet")
  44731. },
  44732. ]
  44733. ))
  44734. characterMakers.push(() => makeCharacter(
  44735. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44736. {
  44737. front: {
  44738. height: math.unit(5 + 2/12, "feet"),
  44739. name: "Front",
  44740. image: {
  44741. source: "./media/characters/october-gossamer/front.svg",
  44742. extra: 505/454,
  44743. bottom: 7/512
  44744. }
  44745. },
  44746. back: {
  44747. height: math.unit(5 + 2/12, "feet"),
  44748. name: "Back",
  44749. image: {
  44750. source: "./media/characters/october-gossamer/back.svg",
  44751. extra: 501/454,
  44752. bottom: 11/512
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(5 + 2/12, "feet"),
  44760. default: true
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44766. {
  44767. front: {
  44768. height: math.unit(5, "feet"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/epiglottis/front.svg",
  44772. extra: 923/849,
  44773. bottom: 17/940
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Original Size",
  44780. height: math.unit(10, "inches")
  44781. },
  44782. {
  44783. name: "Human Size",
  44784. height: math.unit(5, "feet"),
  44785. default: true
  44786. },
  44787. {
  44788. name: "Big",
  44789. height: math.unit(25, "feet")
  44790. },
  44791. {
  44792. name: "Bigger",
  44793. height: math.unit(50, "feet")
  44794. },
  44795. {
  44796. name: "oh lawd",
  44797. height: math.unit(75, "feet")
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(2 + 4/12, "feet"),
  44806. weight: math.unit(60, "lb"),
  44807. name: "Front",
  44808. image: {
  44809. source: "./media/characters/lerm/front.svg",
  44810. extra: 796/790,
  44811. bottom: 79/875
  44812. }
  44813. },
  44814. },
  44815. [
  44816. {
  44817. name: "Normal",
  44818. height: math.unit(2 + 4/12, "feet"),
  44819. default: true
  44820. },
  44821. ]
  44822. ))
  44823. characterMakers.push(() => makeCharacter(
  44824. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44825. {
  44826. front: {
  44827. height: math.unit(5.5, "feet"),
  44828. weight: math.unit(130, "lb"),
  44829. name: "Front",
  44830. image: {
  44831. source: "./media/characters/xena-nebadon/front.svg",
  44832. extra: 1828/1730,
  44833. bottom: 79/1907
  44834. }
  44835. },
  44836. },
  44837. [
  44838. {
  44839. name: "Tiny Puppy",
  44840. height: math.unit(3, "inches")
  44841. },
  44842. {
  44843. name: "Normal",
  44844. height: math.unit(5.5, "feet"),
  44845. default: true
  44846. },
  44847. {
  44848. name: "Lotta Lady",
  44849. height: math.unit(12, "feet")
  44850. },
  44851. {
  44852. name: "Pretty Big",
  44853. height: math.unit(100, "feet")
  44854. },
  44855. {
  44856. name: "Big",
  44857. height: math.unit(500, "feet")
  44858. },
  44859. {
  44860. name: "Skyscraper Toys",
  44861. height: math.unit(2500, "feet")
  44862. },
  44863. {
  44864. name: "Plane Catcher",
  44865. height: math.unit(8, "miles")
  44866. },
  44867. {
  44868. name: "Planet Toys",
  44869. height: math.unit(15, "earths")
  44870. },
  44871. {
  44872. name: "Stardust",
  44873. height: math.unit(0.25, "galaxies")
  44874. },
  44875. {
  44876. name: "Snacks",
  44877. height: math.unit(70, "universes")
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44883. {
  44884. front: {
  44885. height: math.unit(1.6, "meters"),
  44886. weight: math.unit(60, "kg"),
  44887. name: "Front",
  44888. image: {
  44889. source: "./media/characters/bounty/front.svg",
  44890. extra: 1426/1308,
  44891. bottom: 15/1441
  44892. }
  44893. },
  44894. back: {
  44895. height: math.unit(1.6, "meters"),
  44896. weight: math.unit(60, "kg"),
  44897. name: "Back",
  44898. image: {
  44899. source: "./media/characters/bounty/back.svg",
  44900. extra: 1417/1307,
  44901. bottom: 8/1425
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(1.6, "meters"),
  44909. default: true
  44910. },
  44911. {
  44912. name: "Macro",
  44913. height: math.unit(300, "meters")
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44919. {
  44920. front: {
  44921. height: math.unit(2 + 8/12, "feet"),
  44922. weight: math.unit(15, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/mochi/front.svg",
  44926. extra: 1022/852,
  44927. bottom: 435/1457
  44928. }
  44929. },
  44930. back: {
  44931. height: math.unit(2 + 8/12, "feet"),
  44932. weight: math.unit(15, "lb"),
  44933. name: "Back",
  44934. image: {
  44935. source: "./media/characters/mochi/back.svg",
  44936. extra: 1335/1119,
  44937. bottom: 39/1374
  44938. }
  44939. },
  44940. bird: {
  44941. height: math.unit(2 + 8/12, "feet"),
  44942. weight: math.unit(15, "lb"),
  44943. name: "Bird",
  44944. image: {
  44945. source: "./media/characters/mochi/bird.svg",
  44946. extra: 1251/1113,
  44947. bottom: 178/1429
  44948. }
  44949. },
  44950. kaiju: {
  44951. height: math.unit(154, "feet"),
  44952. weight: math.unit(1e7, "lb"),
  44953. name: "Kaiju",
  44954. image: {
  44955. source: "./media/characters/mochi/kaiju.svg",
  44956. extra: 460/324,
  44957. bottom: 40/500
  44958. }
  44959. },
  44960. head: {
  44961. height: math.unit(1.21, "feet"),
  44962. name: "Head",
  44963. image: {
  44964. source: "./media/characters/mochi/head.svg"
  44965. }
  44966. },
  44967. alternateTail: {
  44968. height: math.unit(2 + 8/12, "feet"),
  44969. weight: math.unit(45, "lb"),
  44970. name: "Alternate Tail",
  44971. image: {
  44972. source: "./media/characters/mochi/alternate-tail.svg",
  44973. extra: 139/76,
  44974. bottom: 45/184
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Micro",
  44981. height: math.unit(2, "inches")
  44982. },
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(2 + 8/12, "feet"),
  44986. default: true
  44987. },
  44988. {
  44989. name: "Macro",
  44990. height: math.unit(106, "feet")
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(5.67, "feet"),
  44999. weight: math.unit(135, "lb"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/sarel/front.svg",
  45003. extra: 865/788,
  45004. bottom: 97/962
  45005. }
  45006. },
  45007. back: {
  45008. height: math.unit(5.67, "feet"),
  45009. weight: math.unit(135, "lb"),
  45010. name: "Back",
  45011. image: {
  45012. source: "./media/characters/sarel/back.svg",
  45013. extra: 857/777,
  45014. bottom: 32/889
  45015. }
  45016. },
  45017. chozoan: {
  45018. height: math.unit(5.67, "feet"),
  45019. weight: math.unit(135, "lb"),
  45020. name: "Chozoan",
  45021. image: {
  45022. source: "./media/characters/sarel/chozoan.svg",
  45023. extra: 865/788,
  45024. bottom: 97/962
  45025. }
  45026. },
  45027. current: {
  45028. height: math.unit(5.67, "feet"),
  45029. weight: math.unit(135, "lb"),
  45030. name: "Current",
  45031. image: {
  45032. source: "./media/characters/sarel/current.svg",
  45033. extra: 865/788,
  45034. bottom: 97/962
  45035. }
  45036. },
  45037. head: {
  45038. height: math.unit(1.77, "feet"),
  45039. name: "Head",
  45040. image: {
  45041. source: "./media/characters/sarel/head.svg"
  45042. }
  45043. },
  45044. claws: {
  45045. height: math.unit(1.8, "feet"),
  45046. name: "Claws",
  45047. image: {
  45048. source: "./media/characters/sarel/claws.svg"
  45049. }
  45050. },
  45051. clawsAlt: {
  45052. height: math.unit(1.8, "feet"),
  45053. name: "Claws-alt",
  45054. image: {
  45055. source: "./media/characters/sarel/claws-alt.svg"
  45056. }
  45057. },
  45058. },
  45059. [
  45060. {
  45061. name: "Normal",
  45062. height: math.unit(5.67, "feet"),
  45063. default: true
  45064. },
  45065. ]
  45066. ))
  45067. characterMakers.push(() => makeCharacter(
  45068. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45069. {
  45070. front: {
  45071. height: math.unit(5500, "feet"),
  45072. name: "Front",
  45073. image: {
  45074. source: "./media/characters/alyonia/front.svg",
  45075. extra: 1200/1135,
  45076. bottom: 29/1229
  45077. }
  45078. },
  45079. back: {
  45080. height: math.unit(5500, "feet"),
  45081. name: "Back",
  45082. image: {
  45083. source: "./media/characters/alyonia/back.svg",
  45084. extra: 1205/1138,
  45085. bottom: 10/1215
  45086. }
  45087. },
  45088. },
  45089. [
  45090. {
  45091. name: "Small",
  45092. height: math.unit(10, "feet")
  45093. },
  45094. {
  45095. name: "Macro",
  45096. height: math.unit(500, "feet")
  45097. },
  45098. {
  45099. name: "Mega Macro",
  45100. height: math.unit(5500, "feet"),
  45101. default: true
  45102. },
  45103. {
  45104. name: "Mega Macro+",
  45105. height: math.unit(500000, "feet")
  45106. },
  45107. {
  45108. name: "Giga Macro",
  45109. height: math.unit(3000, "miles")
  45110. },
  45111. {
  45112. name: "Tera Macro",
  45113. height: math.unit(2.8e6, "miles")
  45114. },
  45115. {
  45116. name: "Galactic",
  45117. height: math.unit(120000, "lightyears")
  45118. },
  45119. ]
  45120. ))
  45121. characterMakers.push(() => makeCharacter(
  45122. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45123. {
  45124. werewolf: {
  45125. height: math.unit(8, "feet"),
  45126. weight: math.unit(425, "lb"),
  45127. name: "Werewolf",
  45128. image: {
  45129. source: "./media/characters/autumn/werewolf.svg",
  45130. extra: 2154/2031,
  45131. bottom: 160/2314
  45132. }
  45133. },
  45134. human: {
  45135. height: math.unit(5 + 8/12, "feet"),
  45136. weight: math.unit(150, "lb"),
  45137. name: "Human",
  45138. image: {
  45139. source: "./media/characters/autumn/human.svg",
  45140. extra: 1200/1149,
  45141. bottom: 30/1230
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Normal",
  45148. height: math.unit(8, "feet"),
  45149. default: true
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45155. {
  45156. front: {
  45157. height: math.unit(8 + 5/12, "feet"),
  45158. weight: math.unit(825, "lb"),
  45159. name: "Front",
  45160. image: {
  45161. source: "./media/characters/cobalt-charizard/front.svg",
  45162. extra: 1268/1155,
  45163. bottom: 122/1390
  45164. }
  45165. },
  45166. side: {
  45167. height: math.unit(8 + 5/12, "feet"),
  45168. weight: math.unit(825, "lb"),
  45169. name: "Side",
  45170. image: {
  45171. source: "./media/characters/cobalt-charizard/side.svg",
  45172. extra: 1348/1257,
  45173. bottom: 58/1406
  45174. }
  45175. },
  45176. gMax: {
  45177. height: math.unit(134 + 11/12, "feet"),
  45178. name: "G-Max",
  45179. image: {
  45180. source: "./media/characters/cobalt-charizard/g-max.svg",
  45181. extra: 1835/1541,
  45182. bottom: 151/1986
  45183. }
  45184. },
  45185. },
  45186. [
  45187. {
  45188. name: "Normal",
  45189. height: math.unit(8 + 5/12, "feet"),
  45190. default: true
  45191. },
  45192. ]
  45193. ))
  45194. characterMakers.push(() => makeCharacter(
  45195. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45196. {
  45197. front: {
  45198. height: math.unit(6 + 3/12, "feet"),
  45199. weight: math.unit(210, "lb"),
  45200. name: "Front",
  45201. image: {
  45202. source: "./media/characters/stella/front.svg",
  45203. extra: 3549/3335,
  45204. bottom: 51/3600
  45205. }
  45206. },
  45207. },
  45208. [
  45209. {
  45210. name: "Normal",
  45211. height: math.unit(6 + 3/12, "feet"),
  45212. default: true
  45213. },
  45214. ]
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45218. {
  45219. front: {
  45220. height: math.unit(5, "feet"),
  45221. weight: math.unit(90, "lb"),
  45222. name: "Front",
  45223. image: {
  45224. source: "./media/characters/riley-bishop/front.svg",
  45225. extra: 1450/1428,
  45226. bottom: 152/1602
  45227. }
  45228. },
  45229. },
  45230. [
  45231. {
  45232. name: "Normal",
  45233. height: math.unit(5, "feet"),
  45234. default: true
  45235. },
  45236. ]
  45237. ))
  45238. characterMakers.push(() => makeCharacter(
  45239. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45240. {
  45241. side: {
  45242. height: math.unit(8 + 2/12, "feet"),
  45243. weight: math.unit(500, "kg"),
  45244. name: "Side",
  45245. image: {
  45246. source: "./media/characters/theo-arcanine/side.svg",
  45247. extra: 1342/1074,
  45248. bottom: 111/1453
  45249. }
  45250. },
  45251. },
  45252. [
  45253. {
  45254. name: "Normal",
  45255. height: math.unit(8 + 2/12, "feet"),
  45256. default: true
  45257. },
  45258. ]
  45259. ))
  45260. characterMakers.push(() => makeCharacter(
  45261. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45262. {
  45263. front: {
  45264. height: math.unit(4, "feet"),
  45265. name: "Front",
  45266. image: {
  45267. source: "./media/characters/kali/front.svg",
  45268. extra: 1921/1357,
  45269. bottom: 70/1991
  45270. }
  45271. },
  45272. },
  45273. [
  45274. {
  45275. name: "Normal",
  45276. height: math.unit(4, "feet"),
  45277. default: true
  45278. },
  45279. {
  45280. name: "Macro",
  45281. height: math.unit(32, "meters")
  45282. },
  45283. {
  45284. name: "Macro+",
  45285. height: math.unit(150, "meters")
  45286. },
  45287. {
  45288. name: "Megamacro",
  45289. height: math.unit(7500, "meters")
  45290. },
  45291. {
  45292. name: "Megamacro+",
  45293. height: math.unit(80, "kilometers")
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45299. {
  45300. side: {
  45301. height: math.unit(5 + 11/12, "feet"),
  45302. weight: math.unit(236, "lb"),
  45303. name: "Side",
  45304. image: {
  45305. source: "./media/characters/gapp/side.svg",
  45306. extra: 775/340,
  45307. bottom: 58/833
  45308. }
  45309. },
  45310. mouth: {
  45311. height: math.unit(2.98, "feet"),
  45312. name: "Mouth",
  45313. image: {
  45314. source: "./media/characters/gapp/mouth.svg"
  45315. }
  45316. },
  45317. },
  45318. [
  45319. {
  45320. name: "Normal",
  45321. height: math.unit(5 + 1/12, "feet"),
  45322. default: true
  45323. },
  45324. ]
  45325. ))
  45326. characterMakers.push(() => makeCharacter(
  45327. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45328. {
  45329. front: {
  45330. height: math.unit(6, "feet"),
  45331. name: "Front",
  45332. image: {
  45333. source: "./media/characters/persephone/front.svg",
  45334. extra: 1895/1717,
  45335. bottom: 96/1991
  45336. }
  45337. },
  45338. back: {
  45339. height: math.unit(6, "feet"),
  45340. name: "Back",
  45341. image: {
  45342. source: "./media/characters/persephone/back.svg",
  45343. extra: 1868/1679,
  45344. bottom: 26/1894
  45345. }
  45346. },
  45347. casual: {
  45348. height: math.unit(6, "feet"),
  45349. name: "Casual",
  45350. image: {
  45351. source: "./media/characters/persephone/casual.svg",
  45352. extra: 1713/1541,
  45353. bottom: 76/1789
  45354. }
  45355. },
  45356. },
  45357. [
  45358. {
  45359. name: "Human Size",
  45360. height: math.unit(6, "feet")
  45361. },
  45362. {
  45363. name: "Big Steppy",
  45364. height: math.unit(600, "meters"),
  45365. default: true
  45366. },
  45367. {
  45368. name: "Galaxy Brain",
  45369. height: math.unit(1, "zettameter")
  45370. },
  45371. ]
  45372. ))
  45373. characterMakers.push(() => makeCharacter(
  45374. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45375. {
  45376. front: {
  45377. height: math.unit(1.85, "meters"),
  45378. name: "Front",
  45379. image: {
  45380. source: "./media/characters/riley-foxthing/front.svg",
  45381. extra: 1495/1354,
  45382. bottom: 122/1617
  45383. }
  45384. },
  45385. frontAlt: {
  45386. height: math.unit(1.85, "meters"),
  45387. name: "Front (Alt)",
  45388. image: {
  45389. source: "./media/characters/riley-foxthing/front-alt.svg",
  45390. extra: 1572/1389,
  45391. bottom: 116/1688
  45392. }
  45393. },
  45394. },
  45395. [
  45396. {
  45397. name: "Normal Sized",
  45398. height: math.unit(1.85, "meters"),
  45399. default: true
  45400. },
  45401. {
  45402. name: "Quite Sizable",
  45403. height: math.unit(5, "meters")
  45404. },
  45405. {
  45406. name: "Rather Large",
  45407. height: math.unit(20, "meters")
  45408. },
  45409. {
  45410. name: "Macro",
  45411. height: math.unit(450, "meters")
  45412. },
  45413. {
  45414. name: "Giga",
  45415. height: math.unit(5, "km")
  45416. },
  45417. ]
  45418. ))
  45419. characterMakers.push(() => makeCharacter(
  45420. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45421. {
  45422. front: {
  45423. height: math.unit(6, "feet"),
  45424. weight: math.unit(200, "lb"),
  45425. name: "Front",
  45426. image: {
  45427. source: "./media/characters/blizzard/front.svg",
  45428. extra: 1136/990,
  45429. bottom: 136/1272
  45430. }
  45431. },
  45432. back: {
  45433. height: math.unit(6, "feet"),
  45434. weight: math.unit(200, "lb"),
  45435. name: "Back",
  45436. image: {
  45437. source: "./media/characters/blizzard/back.svg",
  45438. extra: 1175/1034,
  45439. bottom: 97/1272
  45440. }
  45441. },
  45442. sitting: {
  45443. height: math.unit(3.725, "feet"),
  45444. weight: math.unit(200, "lb"),
  45445. name: "Sitting",
  45446. image: {
  45447. source: "./media/characters/blizzard/sitting.svg",
  45448. extra: 581/485,
  45449. bottom: 90/671
  45450. }
  45451. },
  45452. frontWizard: {
  45453. height: math.unit(7.9, "feet"),
  45454. weight: math.unit(200, "lb"),
  45455. name: "Front (Wizard)",
  45456. image: {
  45457. source: "./media/characters/blizzard/front-wizard.svg"
  45458. }
  45459. },
  45460. backWizard: {
  45461. height: math.unit(7.9, "feet"),
  45462. weight: math.unit(200, "lb"),
  45463. name: "Back (Wizard)",
  45464. image: {
  45465. source: "./media/characters/blizzard/back-wizard.svg"
  45466. }
  45467. },
  45468. frontNsfw: {
  45469. height: math.unit(6, "feet"),
  45470. weight: math.unit(200, "lb"),
  45471. name: "Front (NSFW)",
  45472. image: {
  45473. source: "./media/characters/blizzard/front-nsfw.svg",
  45474. extra: 1136/990,
  45475. bottom: 136/1272
  45476. }
  45477. },
  45478. backNsfw: {
  45479. height: math.unit(6, "feet"),
  45480. weight: math.unit(200, "lb"),
  45481. name: "Back (NSFW)",
  45482. image: {
  45483. source: "./media/characters/blizzard/back-nsfw.svg",
  45484. extra: 1175/1034,
  45485. bottom: 97/1272
  45486. }
  45487. },
  45488. sittingNsfw: {
  45489. height: math.unit(3.725, "feet"),
  45490. weight: math.unit(200, "lb"),
  45491. name: "Sitting (NSFW)",
  45492. image: {
  45493. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45494. extra: 581/485,
  45495. bottom: 90/671
  45496. }
  45497. },
  45498. wizardFrontNsfw: {
  45499. height: math.unit(7.9, "feet"),
  45500. weight: math.unit(200, "lb"),
  45501. name: "Wizard (Front, NSFW)",
  45502. image: {
  45503. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45504. }
  45505. },
  45506. },
  45507. [
  45508. {
  45509. name: "Normal",
  45510. height: math.unit(6, "feet"),
  45511. default: true
  45512. },
  45513. ]
  45514. ))
  45515. characterMakers.push(() => makeCharacter(
  45516. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45517. {
  45518. front: {
  45519. height: math.unit(5 + 2/12, "feet"),
  45520. name: "Front",
  45521. image: {
  45522. source: "./media/characters/lumi/front.svg",
  45523. extra: 1328/1268,
  45524. bottom: 103/1431
  45525. }
  45526. },
  45527. back: {
  45528. height: math.unit(5 + 2/12, "feet"),
  45529. name: "Back",
  45530. image: {
  45531. source: "./media/characters/lumi/back.svg",
  45532. extra: 1381/1327,
  45533. bottom: 43/1424
  45534. }
  45535. },
  45536. },
  45537. [
  45538. {
  45539. name: "Normal",
  45540. height: math.unit(5 + 2/12, "feet"),
  45541. default: true
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45547. {
  45548. front: {
  45549. height: math.unit(5 + 9/12, "feet"),
  45550. name: "Front",
  45551. image: {
  45552. source: "./media/characters/aliya-cotton/front.svg",
  45553. extra: 577/564,
  45554. bottom: 29/606
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(5 + 9/12, "feet"),
  45562. default: true
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45568. {
  45569. front: {
  45570. height: math.unit(2.7, "meters"),
  45571. weight: math.unit(25000, "lb"),
  45572. name: "Front",
  45573. image: {
  45574. source: "./media/characters/noah-luxray/front.svg",
  45575. extra: 1644/825,
  45576. bottom: 339/1983
  45577. }
  45578. },
  45579. side: {
  45580. height: math.unit(2.97, "meters"),
  45581. weight: math.unit(25000, "lb"),
  45582. name: "Side",
  45583. image: {
  45584. source: "./media/characters/noah-luxray/side.svg",
  45585. extra: 1319/650,
  45586. bottom: 163/1482
  45587. }
  45588. },
  45589. dick: {
  45590. height: math.unit(7.4, "feet"),
  45591. weight: math.unit(2500, "lb"),
  45592. name: "Dick",
  45593. image: {
  45594. source: "./media/characters/noah-luxray/dick.svg"
  45595. }
  45596. },
  45597. dickAlt: {
  45598. height: math.unit(10.83, "feet"),
  45599. weight: math.unit(2500, "lb"),
  45600. name: "Dick-alt",
  45601. image: {
  45602. source: "./media/characters/noah-luxray/dick-alt.svg"
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "BIG",
  45609. height: math.unit(2.7, "meters"),
  45610. default: true
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45616. {
  45617. standing: {
  45618. height: math.unit(183, "cm"),
  45619. weight: math.unit(68, "kg"),
  45620. name: "Standing",
  45621. image: {
  45622. source: "./media/characters/arion/standing.svg",
  45623. extra: 1869/1807,
  45624. bottom: 93/1962
  45625. }
  45626. },
  45627. reclining: {
  45628. height: math.unit(70.5, "cm"),
  45629. weight: math.unit(68, "lb"),
  45630. name: "Reclining",
  45631. image: {
  45632. source: "./media/characters/arion/reclining.svg",
  45633. extra: 937/870,
  45634. bottom: 63/1000
  45635. }
  45636. },
  45637. },
  45638. [
  45639. {
  45640. name: "Colossus Size, Low",
  45641. height: math.unit(33, "meters"),
  45642. default: true
  45643. },
  45644. {
  45645. name: "Colossus Size, Mid",
  45646. height: math.unit(52, "meters")
  45647. },
  45648. {
  45649. name: "Colossus Size, High",
  45650. height: math.unit(60, "meters")
  45651. },
  45652. {
  45653. name: "Titan Size, Low",
  45654. height: math.unit(91, "meters"),
  45655. },
  45656. {
  45657. name: "Titan Size, Mid",
  45658. height: math.unit(122, "meters")
  45659. },
  45660. {
  45661. name: "Titan Size, High",
  45662. height: math.unit(162, "meters")
  45663. },
  45664. ]
  45665. ))
  45666. characterMakers.push(() => makeCharacter(
  45667. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45668. {
  45669. front: {
  45670. height: math.unit(53, "meters"),
  45671. name: "Front",
  45672. image: {
  45673. source: "./media/characters/stellar-marbey/front.svg",
  45674. extra: 1913/1805,
  45675. bottom: 92/2005
  45676. }
  45677. },
  45678. back: {
  45679. height: math.unit(53, "meters"),
  45680. name: "Back",
  45681. image: {
  45682. source: "./media/characters/stellar-marbey/back.svg",
  45683. extra: 1960/1851,
  45684. bottom: 28/1988
  45685. }
  45686. },
  45687. mouth: {
  45688. height: math.unit(3.5, "meters"),
  45689. name: "Mouth",
  45690. image: {
  45691. source: "./media/characters/stellar-marbey/mouth.svg"
  45692. }
  45693. },
  45694. },
  45695. [
  45696. {
  45697. name: "Macro",
  45698. height: math.unit(53, "meters"),
  45699. default: true
  45700. },
  45701. ]
  45702. ))
  45703. characterMakers.push(() => makeCharacter(
  45704. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45705. {
  45706. front: {
  45707. height: math.unit(8 + 1/12, "feet"),
  45708. weight: math.unit(233, "lb"),
  45709. name: "Front",
  45710. image: {
  45711. source: "./media/characters/matsu/front.svg",
  45712. extra: 832/772,
  45713. bottom: 40/872
  45714. }
  45715. },
  45716. back: {
  45717. height: math.unit(8 + 1/12, "feet"),
  45718. weight: math.unit(233, "lb"),
  45719. name: "Back",
  45720. image: {
  45721. source: "./media/characters/matsu/back.svg",
  45722. extra: 839/780,
  45723. bottom: 47/886
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(8 + 1/12, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(4, "feet"),
  45740. weight: math.unit(148, "lb"),
  45741. name: "Front",
  45742. image: {
  45743. source: "./media/characters/thiz/front.svg",
  45744. extra: 1913/1748,
  45745. bottom: 62/1975
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Normal",
  45752. height: math.unit(4, "feet"),
  45753. default: true
  45754. },
  45755. ]
  45756. ))
  45757. characterMakers.push(() => makeCharacter(
  45758. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45759. {
  45760. front: {
  45761. height: math.unit(7 + 6/12, "feet"),
  45762. weight: math.unit(267, "lb"),
  45763. name: "Front",
  45764. image: {
  45765. source: "./media/characters/marcel/front.svg",
  45766. extra: 1221/1096,
  45767. bottom: 76/1297
  45768. }
  45769. },
  45770. },
  45771. [
  45772. {
  45773. name: "Normal",
  45774. height: math.unit(7 + 6/12, "feet"),
  45775. default: true
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45781. {
  45782. side: {
  45783. height: math.unit(42, "meters"),
  45784. name: "Side",
  45785. image: {
  45786. source: "./media/characters/flake/side.svg",
  45787. extra: 1525/1306,
  45788. bottom: 209/1734
  45789. }
  45790. },
  45791. },
  45792. [
  45793. {
  45794. name: "Normal",
  45795. height: math.unit(42, "meters"),
  45796. default: true
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45802. {
  45803. dressed: {
  45804. height: math.unit(6 + 4/12, "feet"),
  45805. weight: math.unit(520, "lb"),
  45806. name: "Dressed",
  45807. image: {
  45808. source: "./media/characters/someonne/dressed.svg",
  45809. extra: 1020/1010,
  45810. bottom: 178/1198
  45811. }
  45812. },
  45813. undressed: {
  45814. height: math.unit(6 + 4/12, "feet"),
  45815. weight: math.unit(520, "lb"),
  45816. name: "Undressed",
  45817. image: {
  45818. source: "./media/characters/someonne/undressed.svg",
  45819. extra: 1019/1014,
  45820. bottom: 169/1188
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Normal",
  45827. height: math.unit(6 + 4/12, "feet"),
  45828. default: true
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45834. {
  45835. front: {
  45836. height: math.unit(3, "feet"),
  45837. weight: math.unit(30, "lb"),
  45838. name: "Front",
  45839. image: {
  45840. source: "./media/characters/till/front.svg",
  45841. extra: 892/823,
  45842. bottom: 55/947
  45843. }
  45844. },
  45845. },
  45846. [
  45847. {
  45848. name: "Normal",
  45849. height: math.unit(3, "feet"),
  45850. default: true
  45851. },
  45852. ]
  45853. ))
  45854. characterMakers.push(() => makeCharacter(
  45855. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45856. {
  45857. front: {
  45858. height: math.unit(9 + 8/12, "feet"),
  45859. weight: math.unit(800, "lb"),
  45860. name: "Front",
  45861. image: {
  45862. source: "./media/characters/sydney-heki/front.svg",
  45863. extra: 1360/1300,
  45864. bottom: 22/1382
  45865. }
  45866. },
  45867. back: {
  45868. height: math.unit(9 + 8/12, "feet"),
  45869. weight: math.unit(800, "lb"),
  45870. name: "Back",
  45871. image: {
  45872. source: "./media/characters/sydney-heki/back.svg",
  45873. extra: 1356/1293,
  45874. bottom: 12/1368
  45875. }
  45876. },
  45877. frontDressed: {
  45878. height: math.unit(9 + 8/12, "feet"),
  45879. weight: math.unit(800, "lb"),
  45880. name: "Front-dressed",
  45881. image: {
  45882. source: "./media/characters/sydney-heki/front-dressed.svg",
  45883. extra: 1360/1300,
  45884. bottom: 22/1382
  45885. }
  45886. },
  45887. },
  45888. [
  45889. {
  45890. name: "Normal",
  45891. height: math.unit(9 + 8/12, "feet"),
  45892. default: true
  45893. },
  45894. {
  45895. name: "Macro",
  45896. height: math.unit(500, "feet")
  45897. },
  45898. {
  45899. name: "Megamacro",
  45900. height: math.unit(3.6, "miles")
  45901. },
  45902. ]
  45903. ))
  45904. characterMakers.push(() => makeCharacter(
  45905. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45906. {
  45907. front: {
  45908. height: math.unit(200, "cm"),
  45909. weight: math.unit(250, "lb"),
  45910. name: "Front",
  45911. image: {
  45912. source: "./media/characters/fowler-karlsson/front.svg",
  45913. extra: 897/845,
  45914. bottom: 123/1020
  45915. }
  45916. },
  45917. back: {
  45918. height: math.unit(200, "cm"),
  45919. weight: math.unit(250, "lb"),
  45920. name: "Back",
  45921. image: {
  45922. source: "./media/characters/fowler-karlsson/back.svg",
  45923. extra: 999/944,
  45924. bottom: 26/1025
  45925. }
  45926. },
  45927. dick: {
  45928. height: math.unit(1.92, "feet"),
  45929. weight: math.unit(150, "lb"),
  45930. name: "Dick",
  45931. image: {
  45932. source: "./media/characters/fowler-karlsson/dick.svg"
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(200, "cm"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Smaller Macro",
  45944. height: math.unit(90, "m")
  45945. },
  45946. {
  45947. name: "Macro",
  45948. height: math.unit(150, "m")
  45949. },
  45950. {
  45951. name: "Bigger Macro",
  45952. height: math.unit(300, "m")
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45958. {
  45959. side: {
  45960. height: math.unit(8 + 2/12, "feet"),
  45961. weight: math.unit(1, "tonne"),
  45962. name: "Side",
  45963. image: {
  45964. source: "./media/characters/rylide/side.svg",
  45965. extra: 1318/1034,
  45966. bottom: 106/1424
  45967. }
  45968. },
  45969. sitting: {
  45970. height: math.unit(303, "cm"),
  45971. weight: math.unit(1, "tonne"),
  45972. name: "Sitting",
  45973. image: {
  45974. source: "./media/characters/rylide/sitting.svg",
  45975. extra: 1303/1103,
  45976. bottom: 36/1339
  45977. }
  45978. },
  45979. },
  45980. [
  45981. {
  45982. name: "Normal",
  45983. height: math.unit(8 + 2/12, "feet"),
  45984. default: true
  45985. },
  45986. ]
  45987. ))
  45988. characterMakers.push(() => makeCharacter(
  45989. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45990. {
  45991. front: {
  45992. height: math.unit(5 + 10/12, "feet"),
  45993. weight: math.unit(160, "lb"),
  45994. name: "Front",
  45995. image: {
  45996. source: "./media/characters/pudask/front.svg",
  45997. extra: 1616/1590,
  45998. bottom: 161/1777
  45999. }
  46000. },
  46001. },
  46002. [
  46003. {
  46004. name: "Ferret Height",
  46005. height: math.unit(2 + 5/12, "feet")
  46006. },
  46007. {
  46008. name: "Canon Height",
  46009. height: math.unit(5 + 10/12, "feet"),
  46010. default: true
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46016. {
  46017. front: {
  46018. height: math.unit(3 + 6/12, "feet"),
  46019. weight: math.unit(60, "lb"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/ramita/front.svg",
  46023. extra: 1402/1232,
  46024. bottom: 62/1464
  46025. }
  46026. },
  46027. dressed: {
  46028. height: math.unit(3 + 6/12, "feet"),
  46029. weight: math.unit(60, "lb"),
  46030. name: "Dressed",
  46031. image: {
  46032. source: "./media/characters/ramita/dressed.svg",
  46033. extra: 1534/1249,
  46034. bottom: 50/1584
  46035. }
  46036. },
  46037. },
  46038. [
  46039. {
  46040. name: "Normal",
  46041. height: math.unit(3 + 6/12, "feet"),
  46042. default: true
  46043. },
  46044. ]
  46045. ))
  46046. characterMakers.push(() => makeCharacter(
  46047. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46048. {
  46049. front: {
  46050. height: math.unit(8, "feet"),
  46051. name: "Front",
  46052. image: {
  46053. source: "./media/characters/ark/front.svg",
  46054. extra: 772/693,
  46055. bottom: 45/817
  46056. }
  46057. },
  46058. },
  46059. [
  46060. {
  46061. name: "Normal",
  46062. height: math.unit(8, "feet"),
  46063. default: true
  46064. },
  46065. ]
  46066. ))
  46067. characterMakers.push(() => makeCharacter(
  46068. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46069. {
  46070. front: {
  46071. height: math.unit(6, "feet"),
  46072. weight: math.unit(250, "lb"),
  46073. volume: math.unit(5/8, "gallons"),
  46074. name: "Front",
  46075. image: {
  46076. source: "./media/characters/ludwig-horn/front.svg",
  46077. extra: 1782/1635,
  46078. bottom: 96/1878
  46079. }
  46080. },
  46081. back: {
  46082. height: math.unit(6, "feet"),
  46083. weight: math.unit(250, "lb"),
  46084. volume: math.unit(5/8, "gallons"),
  46085. name: "Back",
  46086. image: {
  46087. source: "./media/characters/ludwig-horn/back.svg",
  46088. extra: 1874/1729,
  46089. bottom: 27/1901
  46090. }
  46091. },
  46092. dick: {
  46093. height: math.unit(1.05, "feet"),
  46094. weight: math.unit(15, "lb"),
  46095. volume: math.unit(5/8, "gallons"),
  46096. name: "Dick",
  46097. image: {
  46098. source: "./media/characters/ludwig-horn/dick.svg"
  46099. }
  46100. },
  46101. },
  46102. [
  46103. {
  46104. name: "Small",
  46105. height: math.unit(6, "feet")
  46106. },
  46107. {
  46108. name: "Typical",
  46109. height: math.unit(12, "feet"),
  46110. default: true
  46111. },
  46112. {
  46113. name: "Building",
  46114. height: math.unit(80, "feet")
  46115. },
  46116. {
  46117. name: "Town",
  46118. height: math.unit(800, "feet")
  46119. },
  46120. {
  46121. name: "Kingdom",
  46122. height: math.unit(80000, "feet")
  46123. },
  46124. {
  46125. name: "Planet",
  46126. height: math.unit(8000000, "feet")
  46127. },
  46128. {
  46129. name: "Universe",
  46130. height: math.unit(8000000000, "feet")
  46131. },
  46132. {
  46133. name: "Transcended",
  46134. height: math.unit(8e27, "feet")
  46135. },
  46136. ]
  46137. ))
  46138. characterMakers.push(() => makeCharacter(
  46139. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46140. {
  46141. front: {
  46142. height: math.unit(5, "feet"),
  46143. weight: math.unit(50, "kg"),
  46144. name: "Front",
  46145. image: {
  46146. source: "./media/characters/biot-avery/front.svg",
  46147. extra: 1295/1232,
  46148. bottom: 86/1381
  46149. }
  46150. },
  46151. },
  46152. [
  46153. {
  46154. name: "Normal",
  46155. height: math.unit(5, "feet"),
  46156. default: true
  46157. },
  46158. ]
  46159. ))
  46160. characterMakers.push(() => makeCharacter(
  46161. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46162. {
  46163. front: {
  46164. height: math.unit(6, "feet"),
  46165. name: "Front",
  46166. image: {
  46167. source: "./media/characters/kitsune-kiro/front.svg",
  46168. extra: 1270/1158,
  46169. bottom: 42/1312
  46170. }
  46171. },
  46172. frontAlt: {
  46173. height: math.unit(6, "feet"),
  46174. name: "Front-alt",
  46175. image: {
  46176. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46177. extra: 1130/1081,
  46178. bottom: 36/1166
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Smol",
  46185. height: math.unit(3, "feet")
  46186. },
  46187. {
  46188. name: "Normal",
  46189. height: math.unit(6, "feet"),
  46190. default: true
  46191. },
  46192. ]
  46193. ))
  46194. characterMakers.push(() => makeCharacter(
  46195. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46196. {
  46197. front: {
  46198. height: math.unit(6, "feet"),
  46199. weight: math.unit(125, "lb"),
  46200. name: "Front",
  46201. image: {
  46202. source: "./media/characters/jack-thatcher/front.svg",
  46203. extra: 1474/1370,
  46204. bottom: 26/1500
  46205. }
  46206. },
  46207. back: {
  46208. height: math.unit(6, "feet"),
  46209. weight: math.unit(125, "lb"),
  46210. name: "Back",
  46211. image: {
  46212. source: "./media/characters/jack-thatcher/back.svg",
  46213. extra: 1489/1384,
  46214. bottom: 18/1507
  46215. }
  46216. },
  46217. },
  46218. [
  46219. {
  46220. name: "Normal",
  46221. height: math.unit(6, "feet"),
  46222. default: true
  46223. },
  46224. {
  46225. name: "Macro",
  46226. height: math.unit(75, "feet")
  46227. },
  46228. {
  46229. name: "Macro-er",
  46230. height: math.unit(250, "feet")
  46231. },
  46232. ]
  46233. ))
  46234. characterMakers.push(() => makeCharacter(
  46235. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46236. {
  46237. front: {
  46238. height: math.unit(7, "feet"),
  46239. weight: math.unit(110, "kg"),
  46240. name: "Front",
  46241. image: {
  46242. source: "./media/characters/max-hyper/front.svg",
  46243. extra: 1969/1881,
  46244. bottom: 49/2018
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(7, "feet"),
  46252. default: true
  46253. },
  46254. ]
  46255. ))
  46256. characterMakers.push(() => makeCharacter(
  46257. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46258. {
  46259. front: {
  46260. height: math.unit(5 + 5/12, "feet"),
  46261. weight: math.unit(160, "lb"),
  46262. name: "Front",
  46263. image: {
  46264. source: "./media/characters/spook/front.svg",
  46265. extra: 794/791,
  46266. bottom: 54/848
  46267. }
  46268. },
  46269. back: {
  46270. height: math.unit(5 + 5/12, "feet"),
  46271. weight: math.unit(160, "lb"),
  46272. name: "Back",
  46273. image: {
  46274. source: "./media/characters/spook/back.svg",
  46275. extra: 812/798,
  46276. bottom: 32/844
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Normal",
  46283. height: math.unit(5 + 5/12, "feet"),
  46284. default: true
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(18, "feet"),
  46293. name: "Front",
  46294. image: {
  46295. source: "./media/characters/xeaduulix/front.svg",
  46296. extra: 1380/1166,
  46297. bottom: 110/1490
  46298. }
  46299. },
  46300. back: {
  46301. height: math.unit(18, "feet"),
  46302. name: "Back",
  46303. image: {
  46304. source: "./media/characters/xeaduulix/back.svg",
  46305. extra: 1592/1170,
  46306. bottom: 128/1720
  46307. }
  46308. },
  46309. frontNsfw: {
  46310. height: math.unit(18, "feet"),
  46311. name: "Front (NSFW)",
  46312. image: {
  46313. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46314. extra: 1380/1166,
  46315. bottom: 110/1490
  46316. }
  46317. },
  46318. backNsfw: {
  46319. height: math.unit(18, "feet"),
  46320. name: "Back (NSFW)",
  46321. image: {
  46322. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46323. extra: 1592/1170,
  46324. bottom: 128/1720
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Normal",
  46331. height: math.unit(18, "feet"),
  46332. default: true
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46338. {
  46339. spreadWings: {
  46340. height: math.unit(20, "feet"),
  46341. name: "Spread Wings",
  46342. image: {
  46343. source: "./media/characters/fledge/spread-wings.svg",
  46344. extra: 693/635,
  46345. bottom: 26/719
  46346. }
  46347. },
  46348. front: {
  46349. height: math.unit(20, "feet"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/fledge/front.svg",
  46353. extra: 684/637,
  46354. bottom: 18/702
  46355. }
  46356. },
  46357. frontAlt: {
  46358. height: math.unit(20, "feet"),
  46359. name: "Front (Alt)",
  46360. image: {
  46361. source: "./media/characters/fledge/front-alt.svg",
  46362. extra: 708/664,
  46363. bottom: 13/721
  46364. }
  46365. },
  46366. back: {
  46367. height: math.unit(20, "feet"),
  46368. name: "Back",
  46369. image: {
  46370. source: "./media/characters/fledge/back.svg",
  46371. extra: 718/634,
  46372. bottom: 22/740
  46373. }
  46374. },
  46375. head: {
  46376. height: math.unit(5.55, "feet"),
  46377. name: "Head",
  46378. image: {
  46379. source: "./media/characters/fledge/head.svg"
  46380. }
  46381. },
  46382. headAlt: {
  46383. height: math.unit(5.1, "feet"),
  46384. name: "Head (Alt)",
  46385. image: {
  46386. source: "./media/characters/fledge/head-alt.svg"
  46387. }
  46388. },
  46389. },
  46390. [
  46391. {
  46392. name: "Small",
  46393. height: math.unit(6 + 2/12, "feet")
  46394. },
  46395. {
  46396. name: "Big",
  46397. height: math.unit(20, "feet"),
  46398. default: true
  46399. },
  46400. {
  46401. name: "Giant",
  46402. height: math.unit(100, "feet")
  46403. },
  46404. {
  46405. name: "Macro",
  46406. height: math.unit(200, "feet")
  46407. },
  46408. ]
  46409. ))
  46410. characterMakers.push(() => makeCharacter(
  46411. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46412. {
  46413. front: {
  46414. height: math.unit(1, "meter"),
  46415. name: "Front",
  46416. image: {
  46417. source: "./media/characters/atlas-morenai/front.svg",
  46418. extra: 1275/1043,
  46419. bottom: 19/1294
  46420. }
  46421. },
  46422. back: {
  46423. height: math.unit(1, "meter"),
  46424. name: "Back",
  46425. image: {
  46426. source: "./media/characters/atlas-morenai/back.svg",
  46427. extra: 1141/1001,
  46428. bottom: 25/1166
  46429. }
  46430. },
  46431. },
  46432. [
  46433. {
  46434. name: "Normal",
  46435. height: math.unit(1, "meter"),
  46436. default: true
  46437. },
  46438. {
  46439. name: "Magic-Infused",
  46440. height: math.unit(5, "meters")
  46441. },
  46442. ]
  46443. ))
  46444. characterMakers.push(() => makeCharacter(
  46445. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46446. {
  46447. front: {
  46448. height: math.unit(5, "meters"),
  46449. name: "Front",
  46450. image: {
  46451. source: "./media/characters/cintia/front.svg",
  46452. extra: 1312/1228,
  46453. bottom: 38/1350
  46454. }
  46455. },
  46456. back: {
  46457. height: math.unit(5, "meters"),
  46458. name: "Back",
  46459. image: {
  46460. source: "./media/characters/cintia/back.svg",
  46461. extra: 1260/1166,
  46462. bottom: 98/1358
  46463. }
  46464. },
  46465. frontDick: {
  46466. height: math.unit(5, "meters"),
  46467. name: "Front (Dick)",
  46468. image: {
  46469. source: "./media/characters/cintia/front-dick.svg",
  46470. extra: 1312/1228,
  46471. bottom: 38/1350
  46472. }
  46473. },
  46474. backDick: {
  46475. height: math.unit(5, "meters"),
  46476. name: "Back (Dick)",
  46477. image: {
  46478. source: "./media/characters/cintia/back-dick.svg",
  46479. extra: 1260/1166,
  46480. bottom: 98/1358
  46481. }
  46482. },
  46483. bust: {
  46484. height: math.unit(1.97, "meters"),
  46485. name: "Bust",
  46486. image: {
  46487. source: "./media/characters/cintia/bust.svg",
  46488. extra: 617/565,
  46489. bottom: 0/617
  46490. }
  46491. },
  46492. },
  46493. [
  46494. {
  46495. name: "Normal",
  46496. height: math.unit(5, "meters"),
  46497. default: true
  46498. },
  46499. ]
  46500. ))
  46501. characterMakers.push(() => makeCharacter(
  46502. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46503. {
  46504. side: {
  46505. height: math.unit(100, "feet"),
  46506. name: "Side",
  46507. image: {
  46508. source: "./media/characters/denora/side.svg",
  46509. extra: 875/803,
  46510. bottom: 9/884
  46511. }
  46512. },
  46513. },
  46514. [
  46515. {
  46516. name: "Standard",
  46517. height: math.unit(100, "feet"),
  46518. default: true
  46519. },
  46520. {
  46521. name: "Grand",
  46522. height: math.unit(1000, "feet")
  46523. },
  46524. {
  46525. name: "Conquering",
  46526. height: math.unit(10000, "feet")
  46527. },
  46528. ]
  46529. ))
  46530. characterMakers.push(() => makeCharacter(
  46531. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46532. {
  46533. dressed: {
  46534. height: math.unit(8 + 5/12, "feet"),
  46535. weight: math.unit(700, "lb"),
  46536. name: "Dressed",
  46537. image: {
  46538. source: "./media/characters/kiva/dressed.svg",
  46539. extra: 1102/1055,
  46540. bottom: 60/1162
  46541. }
  46542. },
  46543. nude: {
  46544. height: math.unit(8 + 5/12, "feet"),
  46545. weight: math.unit(700, "lb"),
  46546. name: "Nude",
  46547. image: {
  46548. source: "./media/characters/kiva/nude.svg",
  46549. extra: 1102/1055,
  46550. bottom: 60/1162
  46551. }
  46552. },
  46553. },
  46554. [
  46555. {
  46556. name: "Base Height",
  46557. height: math.unit(8 + 5/12, "feet"),
  46558. default: true
  46559. },
  46560. {
  46561. name: "Macro",
  46562. height: math.unit(100, "feet")
  46563. },
  46564. {
  46565. name: "Max",
  46566. height: math.unit(3280, "feet")
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46572. {
  46573. front: {
  46574. height: math.unit(6 + 8/12, "feet"),
  46575. weight: math.unit(250, "lb"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/ztragon/front.svg",
  46579. extra: 1825/1684,
  46580. bottom: 98/1923
  46581. }
  46582. },
  46583. },
  46584. [
  46585. {
  46586. name: "Normal",
  46587. height: math.unit(6 + 8/12, "feet"),
  46588. default: true
  46589. },
  46590. {
  46591. name: "Macro",
  46592. height: math.unit(80, "feet")
  46593. },
  46594. ]
  46595. ))
  46596. characterMakers.push(() => makeCharacter(
  46597. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46598. {
  46599. front: {
  46600. height: math.unit(10.4, "feet"),
  46601. weight: math.unit(2, "tons"),
  46602. name: "Front",
  46603. image: {
  46604. source: "./media/characters/yesenia/front.svg",
  46605. extra: 1479/1474,
  46606. bottom: 233/1712
  46607. }
  46608. },
  46609. },
  46610. [
  46611. {
  46612. name: "Normal",
  46613. height: math.unit(10.4, "feet"),
  46614. default: true
  46615. },
  46616. ]
  46617. ))
  46618. characterMakers.push(() => makeCharacter(
  46619. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46620. {
  46621. normal: {
  46622. height: math.unit(6 + 1/12, "feet"),
  46623. weight: math.unit(180, "lb"),
  46624. name: "Normal",
  46625. image: {
  46626. source: "./media/characters/leanne-lycheborne/normal.svg",
  46627. extra: 1748/1660,
  46628. bottom: 98/1846
  46629. }
  46630. },
  46631. were: {
  46632. height: math.unit(12, "feet"),
  46633. weight: math.unit(1600, "lb"),
  46634. name: "Were",
  46635. image: {
  46636. source: "./media/characters/leanne-lycheborne/were.svg",
  46637. extra: 1485/1432,
  46638. bottom: 66/1551
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(6 + 1/12, "feet"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46652. {
  46653. side: {
  46654. height: math.unit(13, "feet"),
  46655. name: "Side",
  46656. image: {
  46657. source: "./media/characters/kira-tyler/side.svg",
  46658. extra: 693/393,
  46659. bottom: 58/751
  46660. }
  46661. },
  46662. },
  46663. [
  46664. {
  46665. name: "Normal",
  46666. height: math.unit(13, "feet"),
  46667. default: true
  46668. },
  46669. ]
  46670. ))
  46671. characterMakers.push(() => makeCharacter(
  46672. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46673. {
  46674. front: {
  46675. height: math.unit(10.3, "feet"),
  46676. weight: math.unit(150, "lb"),
  46677. name: "Front",
  46678. image: {
  46679. source: "./media/characters/blaze/front.svg",
  46680. extra: 1378/1286,
  46681. bottom: 172/1550
  46682. }
  46683. },
  46684. },
  46685. [
  46686. {
  46687. name: "Normal",
  46688. height: math.unit(10.3, "feet"),
  46689. default: true
  46690. },
  46691. ]
  46692. ))
  46693. characterMakers.push(() => makeCharacter(
  46694. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46695. {
  46696. side: {
  46697. height: math.unit(2, "meters"),
  46698. weight: math.unit(400, "kg"),
  46699. name: "Side",
  46700. image: {
  46701. source: "./media/characters/anu/side.svg",
  46702. extra: 506/394,
  46703. bottom: 18/524
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Humanoid",
  46710. height: math.unit(2, "meters")
  46711. },
  46712. {
  46713. name: "Normal",
  46714. height: math.unit(5, "meters"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46721. {
  46722. front: {
  46723. height: math.unit(5 + 5/12, "feet"),
  46724. weight: math.unit(170, "lb"),
  46725. name: "Front",
  46726. image: {
  46727. source: "./media/characters/synx-the-lynx/front.svg",
  46728. extra: 1893/1745,
  46729. bottom: 17/1910
  46730. }
  46731. },
  46732. side: {
  46733. height: math.unit(5 + 5/12, "feet"),
  46734. weight: math.unit(170, "lb"),
  46735. name: "Side",
  46736. image: {
  46737. source: "./media/characters/synx-the-lynx/side.svg",
  46738. extra: 1884/1740,
  46739. bottom: 39/1923
  46740. }
  46741. },
  46742. back: {
  46743. height: math.unit(5 + 5/12, "feet"),
  46744. weight: math.unit(170, "lb"),
  46745. name: "Back",
  46746. image: {
  46747. source: "./media/characters/synx-the-lynx/back.svg",
  46748. extra: 1903/1755,
  46749. bottom: 14/1917
  46750. }
  46751. },
  46752. },
  46753. [
  46754. {
  46755. name: "Normal",
  46756. height: math.unit(5 + 5/12, "feet"),
  46757. default: true
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46763. {
  46764. back: {
  46765. height: math.unit(15, "feet"),
  46766. name: "Back",
  46767. image: {
  46768. source: "./media/characters/nadezda-fex/back.svg",
  46769. extra: 1695/1481,
  46770. bottom: 25/1720
  46771. }
  46772. },
  46773. },
  46774. [
  46775. {
  46776. name: "Normal",
  46777. height: math.unit(15, "feet"),
  46778. default: true
  46779. },
  46780. {
  46781. name: "Macro",
  46782. height: math.unit(2.5, "miles")
  46783. },
  46784. {
  46785. name: "Goddess",
  46786. height: math.unit(2, "multiverses")
  46787. },
  46788. ]
  46789. ))
  46790. characterMakers.push(() => makeCharacter(
  46791. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46792. {
  46793. front: {
  46794. height: math.unit(216, "cm"),
  46795. name: "Front",
  46796. image: {
  46797. source: "./media/characters/lev/front.svg",
  46798. extra: 1728/1670,
  46799. bottom: 82/1810
  46800. }
  46801. },
  46802. back: {
  46803. height: math.unit(216, "cm"),
  46804. name: "Back",
  46805. image: {
  46806. source: "./media/characters/lev/back.svg",
  46807. extra: 1738/1675,
  46808. bottom: 24/1762
  46809. }
  46810. },
  46811. dressed: {
  46812. height: math.unit(216, "cm"),
  46813. name: "Dressed",
  46814. image: {
  46815. source: "./media/characters/lev/dressed.svg",
  46816. extra: 1397/1351,
  46817. bottom: 73/1470
  46818. }
  46819. },
  46820. head: {
  46821. height: math.unit(0.51, "meter"),
  46822. name: "Head",
  46823. image: {
  46824. source: "./media/characters/lev/head.svg"
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Normal",
  46831. height: math.unit(216, "cm"),
  46832. default: true
  46833. },
  46834. {
  46835. name: "Relatively Macro",
  46836. height: math.unit(80, "meters")
  46837. },
  46838. {
  46839. name: "Megamacro",
  46840. height: math.unit(21600, "meters")
  46841. },
  46842. {
  46843. name: "Megamacro+",
  46844. height: math.unit(64800, "meters")
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(2, "meters"),
  46853. weight: math.unit(80, "kg"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/moka/front.svg",
  46857. extra: 1337/1255,
  46858. bottom: 58/1395
  46859. }
  46860. },
  46861. },
  46862. [
  46863. {
  46864. name: "Micro",
  46865. height: math.unit(15, "cm")
  46866. },
  46867. {
  46868. name: "Normal",
  46869. height: math.unit(2, "meters"),
  46870. default: true
  46871. },
  46872. {
  46873. name: "Macro",
  46874. height: math.unit(20, "meters"),
  46875. },
  46876. ]
  46877. ))
  46878. characterMakers.push(() => makeCharacter(
  46879. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46880. {
  46881. front: {
  46882. height: math.unit(9, "feet"),
  46883. weight: math.unit(240, "lb"),
  46884. name: "Front",
  46885. image: {
  46886. source: "./media/characters/kuzco/front.svg",
  46887. extra: 1593/1487,
  46888. bottom: 32/1625
  46889. }
  46890. },
  46891. side: {
  46892. height: math.unit(9, "feet"),
  46893. weight: math.unit(240, "lb"),
  46894. name: "Side",
  46895. image: {
  46896. source: "./media/characters/kuzco/side.svg",
  46897. extra: 1575/1485,
  46898. bottom: 30/1605
  46899. }
  46900. },
  46901. back: {
  46902. height: math.unit(9, "feet"),
  46903. weight: math.unit(240, "lb"),
  46904. name: "Back",
  46905. image: {
  46906. source: "./media/characters/kuzco/back.svg",
  46907. extra: 1603/1514,
  46908. bottom: 14/1617
  46909. }
  46910. },
  46911. },
  46912. [
  46913. {
  46914. name: "Normal",
  46915. height: math.unit(9, "feet"),
  46916. default: true
  46917. },
  46918. ]
  46919. ))
  46920. characterMakers.push(() => makeCharacter(
  46921. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46922. {
  46923. side: {
  46924. height: math.unit(2, "meters"),
  46925. weight: math.unit(300, "kg"),
  46926. name: "Side",
  46927. image: {
  46928. source: "./media/characters/ceruleus/side.svg",
  46929. extra: 1068/974,
  46930. bottom: 126/1194
  46931. }
  46932. },
  46933. maw: {
  46934. height: math.unit(0.8125, "meter"),
  46935. name: "Maw",
  46936. image: {
  46937. source: "./media/characters/ceruleus/maw.svg"
  46938. }
  46939. },
  46940. },
  46941. [
  46942. {
  46943. name: "Normal",
  46944. height: math.unit(16, "meters"),
  46945. default: true
  46946. },
  46947. ]
  46948. ))
  46949. characterMakers.push(() => makeCharacter(
  46950. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46951. {
  46952. front: {
  46953. height: math.unit(9, "feet"),
  46954. weight: math.unit(500, "kg"),
  46955. name: "Front",
  46956. image: {
  46957. source: "./media/characters/acouya/front.svg",
  46958. extra: 1660/1473,
  46959. bottom: 28/1688
  46960. }
  46961. },
  46962. },
  46963. [
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(9, "feet"),
  46967. default: true
  46968. },
  46969. ]
  46970. ))
  46971. characterMakers.push(() => makeCharacter(
  46972. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46973. {
  46974. front: {
  46975. height: math.unit(5 + 6/12, "feet"),
  46976. weight: math.unit(195, "lb"),
  46977. name: "Front",
  46978. image: {
  46979. source: "./media/characters/vant/front.svg",
  46980. extra: 1396/1320,
  46981. bottom: 20/1416
  46982. }
  46983. },
  46984. back: {
  46985. height: math.unit(5 + 6/12, "feet"),
  46986. weight: math.unit(195, "lb"),
  46987. name: "Back",
  46988. image: {
  46989. source: "./media/characters/vant/back.svg",
  46990. extra: 1396/1320,
  46991. bottom: 20/1416
  46992. }
  46993. },
  46994. maw: {
  46995. height: math.unit(0.75, "feet"),
  46996. name: "Maw",
  46997. image: {
  46998. source: "./media/characters/vant/maw.svg"
  46999. }
  47000. },
  47001. paw: {
  47002. height: math.unit(1.07, "feet"),
  47003. name: "Paw",
  47004. image: {
  47005. source: "./media/characters/vant/paw.svg"
  47006. }
  47007. },
  47008. },
  47009. [
  47010. {
  47011. name: "Micro",
  47012. height: math.unit(0.25, "inches")
  47013. },
  47014. {
  47015. name: "Normal",
  47016. height: math.unit(5 + 6/12, "feet"),
  47017. default: true
  47018. },
  47019. {
  47020. name: "Macro",
  47021. height: math.unit(75, "feet")
  47022. },
  47023. ]
  47024. ))
  47025. characterMakers.push(() => makeCharacter(
  47026. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47027. {
  47028. front: {
  47029. height: math.unit(30, "meters"),
  47030. weight: math.unit(363, "tons"),
  47031. name: "Front",
  47032. image: {
  47033. source: "./media/characters/ahra/front.svg",
  47034. extra: 1914/1814,
  47035. bottom: 46/1960
  47036. }
  47037. },
  47038. },
  47039. [
  47040. {
  47041. name: "Macro",
  47042. height: math.unit(30, "meters"),
  47043. default: true
  47044. },
  47045. ]
  47046. ))
  47047. characterMakers.push(() => makeCharacter(
  47048. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47049. {
  47050. undressed: {
  47051. height: math.unit(2, "m"),
  47052. weight: math.unit(250, "kg"),
  47053. name: "Undressed",
  47054. image: {
  47055. source: "./media/characters/coriander/undressed.svg",
  47056. extra: 1757/1606,
  47057. bottom: 107/1864
  47058. }
  47059. },
  47060. dressed: {
  47061. height: math.unit(2, "m"),
  47062. weight: math.unit(250, "kg"),
  47063. name: "Dressed",
  47064. image: {
  47065. source: "./media/characters/coriander/dressed.svg",
  47066. extra: 1757/1606,
  47067. bottom: 107/1864
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Normal",
  47074. height: math.unit(4, "meters"),
  47075. default: true
  47076. },
  47077. {
  47078. name: "XL",
  47079. height: math.unit(6, "meters")
  47080. },
  47081. {
  47082. name: "XXL",
  47083. height: math.unit(8, "meters")
  47084. },
  47085. ]
  47086. ))
  47087. characterMakers.push(() => makeCharacter(
  47088. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47089. {
  47090. front: {
  47091. height: math.unit(6, "feet"),
  47092. name: "Front",
  47093. image: {
  47094. source: "./media/characters/syrinx/front.svg",
  47095. extra: 1557/1259,
  47096. bottom: 171/1728
  47097. }
  47098. },
  47099. },
  47100. [
  47101. {
  47102. name: "Normal",
  47103. height: math.unit(6 + 3/12, "feet"),
  47104. default: true
  47105. },
  47106. ]
  47107. ))
  47108. characterMakers.push(() => makeCharacter(
  47109. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47110. {
  47111. front: {
  47112. height: math.unit(11 + 6/12, "feet"),
  47113. weight: math.unit(1.5, "tons"),
  47114. name: "Front",
  47115. image: {
  47116. source: "./media/characters/bor/front.svg",
  47117. extra: 1189/1109,
  47118. bottom: 170/1359
  47119. }
  47120. },
  47121. },
  47122. [
  47123. {
  47124. name: "Normal",
  47125. height: math.unit(11 + 6/12, "feet"),
  47126. default: true
  47127. },
  47128. {
  47129. name: "Macro",
  47130. height: math.unit(32 + 9/12, "feet")
  47131. },
  47132. ]
  47133. ))
  47134. characterMakers.push(() => makeCharacter(
  47135. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47136. {
  47137. anthro: {
  47138. height: math.unit(9, "feet"),
  47139. weight: math.unit(2076, "lb"),
  47140. name: "Anthro",
  47141. image: {
  47142. source: "./media/characters/abacus/anthro.svg",
  47143. extra: 1540/1494,
  47144. bottom: 233/1773
  47145. }
  47146. },
  47147. pigeon: {
  47148. height: math.unit(1, "feet"),
  47149. name: "Pigeon",
  47150. image: {
  47151. source: "./media/characters/abacus/pigeon.svg",
  47152. extra: 528/525,
  47153. bottom: 46/574
  47154. }
  47155. },
  47156. },
  47157. [
  47158. {
  47159. name: "Normal",
  47160. height: math.unit(9, "feet"),
  47161. default: true
  47162. },
  47163. ]
  47164. ))
  47165. characterMakers.push(() => makeCharacter(
  47166. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47167. {
  47168. side: {
  47169. height: math.unit(6, "feet"),
  47170. name: "Side",
  47171. image: {
  47172. source: "./media/characters/delkhan/side.svg",
  47173. extra: 1884/1786,
  47174. bottom: 308/2192
  47175. }
  47176. },
  47177. head: {
  47178. height: math.unit(3.38, "feet"),
  47179. name: "Head",
  47180. image: {
  47181. source: "./media/characters/delkhan/head.svg"
  47182. }
  47183. },
  47184. },
  47185. [
  47186. {
  47187. name: "Normal",
  47188. height: math.unit(72, "feet"),
  47189. default: true
  47190. },
  47191. {
  47192. name: "Giant",
  47193. height: math.unit(172, "feet")
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47199. {
  47200. standing: {
  47201. height: math.unit(6, "feet"),
  47202. name: "Standing",
  47203. image: {
  47204. source: "./media/characters/euchidat/standing.svg",
  47205. extra: 1612/1553,
  47206. bottom: 116/1728
  47207. }
  47208. },
  47209. leaning: {
  47210. height: math.unit(6, "feet"),
  47211. name: "Leaning",
  47212. image: {
  47213. source: "./media/characters/euchidat/leaning.svg",
  47214. extra: 1719/1674,
  47215. bottom: 27/1746
  47216. }
  47217. },
  47218. },
  47219. [
  47220. {
  47221. name: "Normal",
  47222. height: math.unit(175, "feet"),
  47223. default: true
  47224. },
  47225. {
  47226. name: "Megamacro",
  47227. height: math.unit(190, "miles")
  47228. },
  47229. {
  47230. name: "Gigamacro",
  47231. height: math.unit(190000, "miles")
  47232. },
  47233. ]
  47234. ))
  47235. characterMakers.push(() => makeCharacter(
  47236. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47237. {
  47238. front: {
  47239. height: math.unit(6, "feet"),
  47240. weight: math.unit(150, "lb"),
  47241. name: "Front",
  47242. image: {
  47243. source: "./media/characters/rebecca-stack/front.svg",
  47244. extra: 1256/1201,
  47245. bottom: 18/1274
  47246. }
  47247. },
  47248. },
  47249. [
  47250. {
  47251. name: "Normal",
  47252. height: math.unit(5 + 8/12, "feet"),
  47253. default: true
  47254. },
  47255. {
  47256. name: "Demolitionist",
  47257. height: math.unit(200, "feet")
  47258. },
  47259. {
  47260. name: "Out of Control",
  47261. height: math.unit(2, "miles")
  47262. },
  47263. {
  47264. name: "Giga",
  47265. height: math.unit(7200, "miles")
  47266. },
  47267. ]
  47268. ))
  47269. characterMakers.push(() => makeCharacter(
  47270. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47271. {
  47272. front: {
  47273. height: math.unit(6, "feet"),
  47274. weight: math.unit(150, "lb"),
  47275. name: "Front",
  47276. image: {
  47277. source: "./media/characters/jenny-cartwright/front.svg",
  47278. extra: 1384/1376,
  47279. bottom: 58/1442
  47280. }
  47281. },
  47282. },
  47283. [
  47284. {
  47285. name: "Normal",
  47286. height: math.unit(6 + 7/12, "feet"),
  47287. default: true
  47288. },
  47289. {
  47290. name: "Librarian",
  47291. height: math.unit(55, "feet")
  47292. },
  47293. {
  47294. name: "Sightseer",
  47295. height: math.unit(50, "miles")
  47296. },
  47297. {
  47298. name: "Giga",
  47299. height: math.unit(30000, "miles")
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47305. {
  47306. nude: {
  47307. height: math.unit(8, "feet"),
  47308. weight: math.unit(225, "lb"),
  47309. name: "Nude",
  47310. image: {
  47311. source: "./media/characters/marvy/nude.svg",
  47312. extra: 1900/1683,
  47313. bottom: 89/1989
  47314. }
  47315. },
  47316. dressed: {
  47317. height: math.unit(8, "feet"),
  47318. weight: math.unit(225, "lb"),
  47319. name: "Dressed",
  47320. image: {
  47321. source: "./media/characters/marvy/dressed.svg",
  47322. extra: 1900/1683,
  47323. bottom: 89/1989
  47324. }
  47325. },
  47326. head: {
  47327. height: math.unit(2.85, "feet"),
  47328. name: "Head",
  47329. image: {
  47330. source: "./media/characters/marvy/head.svg"
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Normal",
  47337. height: math.unit(8, "feet"),
  47338. default: true
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(8, "feet"),
  47347. weight: math.unit(250, "lb"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/leah/front.svg",
  47351. extra: 1257/1149,
  47352. bottom: 109/1366
  47353. }
  47354. },
  47355. },
  47356. [
  47357. {
  47358. name: "Normal",
  47359. height: math.unit(8, "feet"),
  47360. default: true
  47361. },
  47362. {
  47363. name: "Minimacro",
  47364. height: math.unit(40, "feet")
  47365. },
  47366. {
  47367. name: "Macro",
  47368. height: math.unit(124, "feet")
  47369. },
  47370. {
  47371. name: "Megamacro",
  47372. height: math.unit(850, "feet")
  47373. },
  47374. ]
  47375. ))
  47376. characterMakers.push(() => makeCharacter(
  47377. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47378. {
  47379. side: {
  47380. height: math.unit(13 + 6/12, "feet"),
  47381. weight: math.unit(3200, "lb"),
  47382. name: "Side",
  47383. image: {
  47384. source: "./media/characters/alvir/side.svg",
  47385. extra: 896/589,
  47386. bottom: 26/922
  47387. }
  47388. },
  47389. },
  47390. [
  47391. {
  47392. name: "Normal",
  47393. height: math.unit(13 + 6/12, "feet"),
  47394. default: true
  47395. },
  47396. ]
  47397. ))
  47398. characterMakers.push(() => makeCharacter(
  47399. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47400. {
  47401. front: {
  47402. height: math.unit(5 + 4/12, "feet"),
  47403. weight: math.unit(236, "lb"),
  47404. name: "Front",
  47405. image: {
  47406. source: "./media/characters/zaina-khalil/front.svg",
  47407. extra: 1533/1485,
  47408. bottom: 94/1627
  47409. }
  47410. },
  47411. side: {
  47412. height: math.unit(5 + 4/12, "feet"),
  47413. weight: math.unit(236, "lb"),
  47414. name: "Side",
  47415. image: {
  47416. source: "./media/characters/zaina-khalil/side.svg",
  47417. extra: 1537/1498,
  47418. bottom: 66/1603
  47419. }
  47420. },
  47421. back: {
  47422. height: math.unit(5 + 4/12, "feet"),
  47423. weight: math.unit(236, "lb"),
  47424. name: "Back",
  47425. image: {
  47426. source: "./media/characters/zaina-khalil/back.svg",
  47427. extra: 1546/1494,
  47428. bottom: 89/1635
  47429. }
  47430. },
  47431. },
  47432. [
  47433. {
  47434. name: "Normal",
  47435. height: math.unit(5 + 4/12, "feet"),
  47436. default: true
  47437. },
  47438. ]
  47439. ))
  47440. characterMakers.push(() => makeCharacter(
  47441. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47442. {
  47443. side: {
  47444. height: math.unit(12, "feet"),
  47445. weight: math.unit(4000, "lb"),
  47446. name: "Side",
  47447. image: {
  47448. source: "./media/characters/terry/side.svg",
  47449. extra: 1518/1439,
  47450. bottom: 149/1667
  47451. }
  47452. },
  47453. },
  47454. [
  47455. {
  47456. name: "Normal",
  47457. height: math.unit(12, "feet"),
  47458. default: true
  47459. },
  47460. ]
  47461. ))
  47462. characterMakers.push(() => makeCharacter(
  47463. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47464. {
  47465. front: {
  47466. height: math.unit(12, "feet"),
  47467. weight: math.unit(1500, "lb"),
  47468. name: "Front",
  47469. image: {
  47470. source: "./media/characters/kahea/front.svg",
  47471. extra: 1722/1617,
  47472. bottom: 179/1901
  47473. }
  47474. },
  47475. },
  47476. [
  47477. {
  47478. name: "Normal",
  47479. height: math.unit(12, "feet"),
  47480. default: true
  47481. },
  47482. ]
  47483. ))
  47484. characterMakers.push(() => makeCharacter(
  47485. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47486. {
  47487. demonFront: {
  47488. height: math.unit(36, "feet"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/alex-xuria/demon-front.svg",
  47492. extra: 1705/1673,
  47493. bottom: 198/1903
  47494. },
  47495. form: "demon",
  47496. default: true
  47497. },
  47498. demonBack: {
  47499. height: math.unit(36, "feet"),
  47500. name: "Back",
  47501. image: {
  47502. source: "./media/characters/alex-xuria/demon-back.svg",
  47503. extra: 1725/1693,
  47504. bottom: 70/1795
  47505. },
  47506. form: "demon"
  47507. },
  47508. demonHead: {
  47509. height: math.unit(2.14, "meters"),
  47510. name: "Head",
  47511. image: {
  47512. source: "./media/characters/alex-xuria/demon-head.svg"
  47513. },
  47514. form: "demon"
  47515. },
  47516. demonHand: {
  47517. height: math.unit(1.61, "meters"),
  47518. name: "Hand",
  47519. image: {
  47520. source: "./media/characters/alex-xuria/demon-hand.svg"
  47521. },
  47522. form: "demon"
  47523. },
  47524. demonPaw: {
  47525. height: math.unit(1.35, "meters"),
  47526. name: "Paw",
  47527. image: {
  47528. source: "./media/characters/alex-xuria/demon-paw.svg"
  47529. },
  47530. form: "demon"
  47531. },
  47532. demonFoot: {
  47533. height: math.unit(2.2, "meters"),
  47534. name: "Foot",
  47535. image: {
  47536. source: "./media/characters/alex-xuria/demon-foot.svg"
  47537. },
  47538. form: "demon"
  47539. },
  47540. demonCock: {
  47541. height: math.unit(1.74, "meters"),
  47542. name: "Cock",
  47543. image: {
  47544. source: "./media/characters/alex-xuria/demon-cock.svg"
  47545. },
  47546. form: "demon"
  47547. },
  47548. demonTailClosed: {
  47549. height: math.unit(1.47, "meters"),
  47550. name: "Tail (Closed)",
  47551. image: {
  47552. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47553. },
  47554. form: "demon"
  47555. },
  47556. demonTailOpen: {
  47557. height: math.unit(2.85, "meters"),
  47558. name: "Tail (Open)",
  47559. image: {
  47560. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47561. },
  47562. form: "demon"
  47563. },
  47564. incubusFront: {
  47565. height: math.unit(12, "feet"),
  47566. name: "Front",
  47567. image: {
  47568. source: "./media/characters/alex-xuria/incubus-front.svg",
  47569. extra: 1754/1677,
  47570. bottom: 125/1879
  47571. },
  47572. form: "incubus",
  47573. default: true
  47574. },
  47575. incubusBack: {
  47576. height: math.unit(12, "feet"),
  47577. name: "Back",
  47578. image: {
  47579. source: "./media/characters/alex-xuria/incubus-back.svg",
  47580. extra: 1702/1647,
  47581. bottom: 30/1732
  47582. },
  47583. form: "incubus"
  47584. },
  47585. incubusHead: {
  47586. height: math.unit(3.45, "feet"),
  47587. name: "Head",
  47588. image: {
  47589. source: "./media/characters/alex-xuria/incubus-head.svg"
  47590. },
  47591. form: "incubus"
  47592. },
  47593. rabbitFront: {
  47594. height: math.unit(6, "feet"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47598. extra: 1369/1349,
  47599. bottom: 45/1414
  47600. },
  47601. form: "rabbit",
  47602. default: true
  47603. },
  47604. rabbitSide: {
  47605. height: math.unit(6, "feet"),
  47606. name: "Side",
  47607. image: {
  47608. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47609. extra: 1370/1356,
  47610. bottom: 37/1407
  47611. },
  47612. form: "rabbit"
  47613. },
  47614. rabbitBack: {
  47615. height: math.unit(6, "feet"),
  47616. name: "Back",
  47617. image: {
  47618. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47619. extra: 1375/1358,
  47620. bottom: 43/1418
  47621. },
  47622. form: "rabbit"
  47623. },
  47624. },
  47625. [
  47626. {
  47627. name: "Normal",
  47628. height: math.unit(6, "feet"),
  47629. default: true,
  47630. form: "rabbit"
  47631. },
  47632. {
  47633. name: "Incubus",
  47634. height: math.unit(12, "feet"),
  47635. default: true,
  47636. form: "incubus"
  47637. },
  47638. {
  47639. name: "Demon",
  47640. height: math.unit(36, "feet"),
  47641. default: true,
  47642. form: "demon"
  47643. }
  47644. ],
  47645. {
  47646. "demon": {
  47647. name: "Demon",
  47648. default: true
  47649. },
  47650. "incubus": {
  47651. name: "Incubus",
  47652. },
  47653. "rabbit": {
  47654. name: "Rabbit"
  47655. }
  47656. }
  47657. ))
  47658. characterMakers.push(() => makeCharacter(
  47659. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47660. {
  47661. front: {
  47662. height: math.unit(7 + 5/12, "feet"),
  47663. weight: math.unit(510, "lb"),
  47664. name: "Front",
  47665. image: {
  47666. source: "./media/characters/syrup/front.svg",
  47667. extra: 932/916,
  47668. bottom: 26/958
  47669. }
  47670. },
  47671. },
  47672. [
  47673. {
  47674. name: "Normal",
  47675. height: math.unit(7 + 5/12, "feet"),
  47676. default: true
  47677. },
  47678. {
  47679. name: "Big",
  47680. height: math.unit(50, "feet")
  47681. },
  47682. {
  47683. name: "Macro",
  47684. height: math.unit(300, "feet")
  47685. },
  47686. {
  47687. name: "Megamacro",
  47688. height: math.unit(1, "mile")
  47689. },
  47690. ]
  47691. ))
  47692. characterMakers.push(() => makeCharacter(
  47693. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47694. {
  47695. front: {
  47696. height: math.unit(6 + 9/12, "feet"),
  47697. name: "Front",
  47698. image: {
  47699. source: "./media/characters/zeimne/front.svg",
  47700. extra: 1969/1806,
  47701. bottom: 53/2022
  47702. }
  47703. },
  47704. },
  47705. [
  47706. {
  47707. name: "Normal",
  47708. height: math.unit(6 + 9/12, "feet"),
  47709. default: true
  47710. },
  47711. {
  47712. name: "Giant",
  47713. height: math.unit(550, "feet")
  47714. },
  47715. {
  47716. name: "Mega",
  47717. height: math.unit(3, "miles")
  47718. },
  47719. {
  47720. name: "Giga",
  47721. height: math.unit(250, "miles")
  47722. },
  47723. {
  47724. name: "Tera",
  47725. height: math.unit(1, "AU")
  47726. },
  47727. ]
  47728. ))
  47729. characterMakers.push(() => makeCharacter(
  47730. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47731. {
  47732. front: {
  47733. height: math.unit(5 + 2/12, "feet"),
  47734. name: "Front",
  47735. image: {
  47736. source: "./media/characters/grar/front.svg",
  47737. extra: 1331/1119,
  47738. bottom: 60/1391
  47739. }
  47740. },
  47741. back: {
  47742. height: math.unit(5 + 2/12, "feet"),
  47743. name: "Back",
  47744. image: {
  47745. source: "./media/characters/grar/back.svg",
  47746. extra: 1385/1169,
  47747. bottom: 23/1408
  47748. }
  47749. },
  47750. },
  47751. [
  47752. {
  47753. name: "Normal",
  47754. height: math.unit(5 + 2/12, "feet"),
  47755. default: true
  47756. },
  47757. ]
  47758. ))
  47759. characterMakers.push(() => makeCharacter(
  47760. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47761. {
  47762. front: {
  47763. height: math.unit(13 + 7/12, "feet"),
  47764. weight: math.unit(2200, "lb"),
  47765. name: "Front",
  47766. image: {
  47767. source: "./media/characters/endraya/front.svg",
  47768. extra: 1289/1215,
  47769. bottom: 50/1339
  47770. }
  47771. },
  47772. nude: {
  47773. height: math.unit(13 + 7/12, "feet"),
  47774. weight: math.unit(2200, "lb"),
  47775. name: "Nude",
  47776. image: {
  47777. source: "./media/characters/endraya/nude.svg",
  47778. extra: 1247/1171,
  47779. bottom: 40/1287
  47780. }
  47781. },
  47782. head: {
  47783. height: math.unit(2.6, "feet"),
  47784. name: "Head",
  47785. image: {
  47786. source: "./media/characters/endraya/head.svg"
  47787. }
  47788. },
  47789. slit: {
  47790. height: math.unit(3.4, "feet"),
  47791. name: "Slit",
  47792. image: {
  47793. source: "./media/characters/endraya/slit.svg"
  47794. }
  47795. },
  47796. },
  47797. [
  47798. {
  47799. name: "Normal",
  47800. height: math.unit(13 + 7/12, "feet"),
  47801. default: true
  47802. },
  47803. {
  47804. name: "Macro",
  47805. height: math.unit(200, "feet")
  47806. },
  47807. ]
  47808. ))
  47809. characterMakers.push(() => makeCharacter(
  47810. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47811. {
  47812. front: {
  47813. height: math.unit(1.81, "meters"),
  47814. weight: math.unit(69, "kg"),
  47815. name: "Front",
  47816. image: {
  47817. source: "./media/characters/rodryana/front.svg",
  47818. extra: 2002/1921,
  47819. bottom: 53/2055
  47820. }
  47821. },
  47822. back: {
  47823. height: math.unit(1.81, "meters"),
  47824. weight: math.unit(69, "kg"),
  47825. name: "Back",
  47826. image: {
  47827. source: "./media/characters/rodryana/back.svg",
  47828. extra: 1993/1926,
  47829. bottom: 48/2041
  47830. }
  47831. },
  47832. maw: {
  47833. height: math.unit(0.19769417475, "meters"),
  47834. name: "Maw",
  47835. image: {
  47836. source: "./media/characters/rodryana/maw.svg"
  47837. }
  47838. },
  47839. slit: {
  47840. height: math.unit(0.31631067961, "meters"),
  47841. name: "Slit",
  47842. image: {
  47843. source: "./media/characters/rodryana/slit.svg"
  47844. }
  47845. },
  47846. },
  47847. [
  47848. {
  47849. name: "Normal",
  47850. height: math.unit(1.81, "meters")
  47851. },
  47852. {
  47853. name: "Mini Macro",
  47854. height: math.unit(181, "meters")
  47855. },
  47856. {
  47857. name: "Macro",
  47858. height: math.unit(452, "meters"),
  47859. default: true
  47860. },
  47861. {
  47862. name: "Mega Macro",
  47863. height: math.unit(1.375, "km")
  47864. },
  47865. {
  47866. name: "Giga Macro",
  47867. height: math.unit(13.575, "km")
  47868. },
  47869. ]
  47870. ))
  47871. characterMakers.push(() => makeCharacter(
  47872. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47873. {
  47874. front: {
  47875. height: math.unit(6, "feet"),
  47876. weight: math.unit(1000, "lb"),
  47877. name: "Front",
  47878. image: {
  47879. source: "./media/characters/asaya/front.svg",
  47880. extra: 1460/1200,
  47881. bottom: 71/1531
  47882. }
  47883. },
  47884. },
  47885. [
  47886. {
  47887. name: "Normal",
  47888. height: math.unit(8, "km"),
  47889. default: true
  47890. },
  47891. ]
  47892. ))
  47893. characterMakers.push(() => makeCharacter(
  47894. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47895. {
  47896. front: {
  47897. height: math.unit(3.5, "meters"),
  47898. name: "Front",
  47899. image: {
  47900. source: "./media/characters/sarzu-and-israz/front.svg",
  47901. extra: 1570/1558,
  47902. bottom: 150/1720
  47903. },
  47904. },
  47905. back: {
  47906. height: math.unit(3.5, "meters"),
  47907. name: "Back",
  47908. image: {
  47909. source: "./media/characters/sarzu-and-israz/back.svg",
  47910. extra: 1523/1509,
  47911. bottom: 132/1655
  47912. },
  47913. },
  47914. frontFemale: {
  47915. height: math.unit(3.5, "meters"),
  47916. name: "Front (Female)",
  47917. image: {
  47918. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47919. extra: 1570/1558,
  47920. bottom: 150/1720
  47921. },
  47922. },
  47923. frontHerm: {
  47924. height: math.unit(3.5, "meters"),
  47925. name: "Front (Herm)",
  47926. image: {
  47927. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47928. extra: 1570/1558,
  47929. bottom: 150/1720
  47930. },
  47931. },
  47932. },
  47933. [
  47934. {
  47935. name: "Normal",
  47936. height: math.unit(3.5, "meters"),
  47937. default: true,
  47938. },
  47939. {
  47940. name: "Macro",
  47941. height: math.unit(65.5, "meters"),
  47942. },
  47943. ],
  47944. ))
  47945. characterMakers.push(() => makeCharacter(
  47946. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47947. {
  47948. front: {
  47949. height: math.unit(6, "feet"),
  47950. weight: math.unit(250, "lb"),
  47951. name: "Front",
  47952. image: {
  47953. source: "./media/characters/zenimma/front.svg",
  47954. extra: 1346/1320,
  47955. bottom: 58/1404
  47956. }
  47957. },
  47958. back: {
  47959. height: math.unit(6, "feet"),
  47960. weight: math.unit(250, "lb"),
  47961. name: "Back",
  47962. image: {
  47963. source: "./media/characters/zenimma/back.svg",
  47964. extra: 1324/1308,
  47965. bottom: 44/1368
  47966. }
  47967. },
  47968. dick: {
  47969. height: math.unit(1.44, "feet"),
  47970. name: "Dick",
  47971. image: {
  47972. source: "./media/characters/zenimma/dick.svg"
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Canon Height",
  47979. height: math.unit(66, "miles"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47986. {
  47987. nude: {
  47988. height: math.unit(6, "feet"),
  47989. weight: math.unit(150, "lb"),
  47990. name: "Nude",
  47991. image: {
  47992. source: "./media/characters/shavon/nude.svg",
  47993. extra: 1242/1096,
  47994. bottom: 98/1340
  47995. }
  47996. },
  47997. dressed: {
  47998. height: math.unit(6, "feet"),
  47999. weight: math.unit(150, "lb"),
  48000. name: "Dressed",
  48001. image: {
  48002. source: "./media/characters/shavon/dressed.svg",
  48003. extra: 1242/1096,
  48004. bottom: 98/1340
  48005. }
  48006. },
  48007. },
  48008. [
  48009. {
  48010. name: "Macro",
  48011. height: math.unit(255, "feet"),
  48012. default: true
  48013. },
  48014. ]
  48015. ))
  48016. characterMakers.push(() => makeCharacter(
  48017. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48018. {
  48019. front: {
  48020. height: math.unit(6, "feet"),
  48021. name: "Front",
  48022. image: {
  48023. source: "./media/characters/steph/front.svg",
  48024. extra: 1430/1330,
  48025. bottom: 54/1484
  48026. }
  48027. },
  48028. },
  48029. [
  48030. {
  48031. name: "Normal",
  48032. height: math.unit(6, "feet"),
  48033. default: true
  48034. },
  48035. ]
  48036. ))
  48037. characterMakers.push(() => makeCharacter(
  48038. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48039. {
  48040. front: {
  48041. height: math.unit(9, "feet"),
  48042. weight: math.unit(400, "lb"),
  48043. name: "Front",
  48044. image: {
  48045. source: "./media/characters/kil'aman/front.svg",
  48046. extra: 1210/1159,
  48047. bottom: 109/1319
  48048. }
  48049. },
  48050. head: {
  48051. height: math.unit(2.14, "feet"),
  48052. name: "Head",
  48053. image: {
  48054. source: "./media/characters/kil'aman/head.svg"
  48055. }
  48056. },
  48057. maw: {
  48058. height: math.unit(1.21, "feet"),
  48059. name: "Maw",
  48060. image: {
  48061. source: "./media/characters/kil'aman/maw.svg"
  48062. }
  48063. },
  48064. foot: {
  48065. height: math.unit(1.7, "feet"),
  48066. name: "Foot",
  48067. image: {
  48068. source: "./media/characters/kil'aman/foot.svg"
  48069. }
  48070. },
  48071. dick: {
  48072. height: math.unit(2.1, "feet"),
  48073. name: "Dick",
  48074. image: {
  48075. source: "./media/characters/kil'aman/dick.svg"
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Normal",
  48082. height: math.unit(9, "feet")
  48083. },
  48084. {
  48085. name: "Canon Height",
  48086. height: math.unit(10, "miles"),
  48087. default: true
  48088. },
  48089. {
  48090. name: "Maximum",
  48091. height: math.unit(6e9, "miles")
  48092. },
  48093. ]
  48094. ))
  48095. characterMakers.push(() => makeCharacter(
  48096. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48097. {
  48098. front: {
  48099. height: math.unit(90, "feet"),
  48100. weight: math.unit(675000, "lb"),
  48101. name: "Front",
  48102. image: {
  48103. source: "./media/characters/qadan/front.svg",
  48104. extra: 1012/1004,
  48105. bottom: 78/1090
  48106. }
  48107. },
  48108. back: {
  48109. height: math.unit(90, "feet"),
  48110. weight: math.unit(675000, "lb"),
  48111. name: "Back",
  48112. image: {
  48113. source: "./media/characters/qadan/back.svg",
  48114. extra: 1042/1031,
  48115. bottom: 55/1097
  48116. }
  48117. },
  48118. armored: {
  48119. height: math.unit(90, "feet"),
  48120. weight: math.unit(675000, "lb"),
  48121. name: "Armored",
  48122. image: {
  48123. source: "./media/characters/qadan/armored.svg",
  48124. extra: 1047/1037,
  48125. bottom: 48/1095
  48126. }
  48127. },
  48128. },
  48129. [
  48130. {
  48131. name: "Normal",
  48132. height: math.unit(90, "feet"),
  48133. default: true
  48134. },
  48135. ]
  48136. ))
  48137. characterMakers.push(() => makeCharacter(
  48138. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48139. {
  48140. front: {
  48141. height: math.unit(6, "feet"),
  48142. weight: math.unit(225, "lb"),
  48143. name: "Front",
  48144. image: {
  48145. source: "./media/characters/brooke/front.svg",
  48146. extra: 1050/1010,
  48147. bottom: 66/1116
  48148. }
  48149. },
  48150. back: {
  48151. height: math.unit(6, "feet"),
  48152. weight: math.unit(225, "lb"),
  48153. name: "Back",
  48154. image: {
  48155. source: "./media/characters/brooke/back.svg",
  48156. extra: 1053/1013,
  48157. bottom: 41/1094
  48158. }
  48159. },
  48160. dressed: {
  48161. height: math.unit(6, "feet"),
  48162. weight: math.unit(225, "lb"),
  48163. name: "Dressed",
  48164. image: {
  48165. source: "./media/characters/brooke/dressed.svg",
  48166. extra: 1050/1010,
  48167. bottom: 66/1116
  48168. }
  48169. },
  48170. },
  48171. [
  48172. {
  48173. name: "Canon Height",
  48174. height: math.unit(500, "miles"),
  48175. default: true
  48176. },
  48177. ]
  48178. ))
  48179. characterMakers.push(() => makeCharacter(
  48180. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48181. {
  48182. front: {
  48183. height: math.unit(6 + 2/12, "feet"),
  48184. weight: math.unit(210, "lb"),
  48185. name: "Front",
  48186. image: {
  48187. source: "./media/characters/wubs/front.svg",
  48188. extra: 1345/1325,
  48189. bottom: 70/1415
  48190. }
  48191. },
  48192. back: {
  48193. height: math.unit(6 + 2/12, "feet"),
  48194. weight: math.unit(210, "lb"),
  48195. name: "Back",
  48196. image: {
  48197. source: "./media/characters/wubs/back.svg",
  48198. extra: 1296/1275,
  48199. bottom: 58/1354
  48200. }
  48201. },
  48202. },
  48203. [
  48204. {
  48205. name: "Normal",
  48206. height: math.unit(6 + 2/12, "feet"),
  48207. default: true
  48208. },
  48209. {
  48210. name: "Macro",
  48211. height: math.unit(1000, "feet")
  48212. },
  48213. {
  48214. name: "Megamacro",
  48215. height: math.unit(1, "mile")
  48216. },
  48217. ]
  48218. ))
  48219. characterMakers.push(() => makeCharacter(
  48220. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48221. {
  48222. front: {
  48223. height: math.unit(4, "feet"),
  48224. weight: math.unit(120, "lb"),
  48225. name: "Front",
  48226. image: {
  48227. source: "./media/characters/blue/front.svg",
  48228. extra: 1636/1525,
  48229. bottom: 43/1679
  48230. }
  48231. },
  48232. back: {
  48233. height: math.unit(4, "feet"),
  48234. weight: math.unit(120, "lb"),
  48235. name: "Back",
  48236. image: {
  48237. source: "./media/characters/blue/back.svg",
  48238. extra: 1660/1560,
  48239. bottom: 57/1717
  48240. }
  48241. },
  48242. paws: {
  48243. height: math.unit(0.826, "feet"),
  48244. name: "Paws",
  48245. image: {
  48246. source: "./media/characters/blue/paws.svg"
  48247. }
  48248. },
  48249. },
  48250. [
  48251. {
  48252. name: "Micro",
  48253. height: math.unit(3, "inches")
  48254. },
  48255. {
  48256. name: "Normal",
  48257. height: math.unit(4, "feet"),
  48258. default: true
  48259. },
  48260. {
  48261. name: "Femenine Form",
  48262. height: math.unit(14, "feet")
  48263. },
  48264. {
  48265. name: "Werebat Form",
  48266. height: math.unit(18, "feet")
  48267. },
  48268. ]
  48269. ))
  48270. characterMakers.push(() => makeCharacter(
  48271. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48272. {
  48273. female: {
  48274. height: math.unit(7 + 4/12, "feet"),
  48275. weight: math.unit(243, "lb"),
  48276. name: "Female",
  48277. image: {
  48278. source: "./media/characters/kaya/female.svg",
  48279. extra: 975/898,
  48280. bottom: 34/1009
  48281. }
  48282. },
  48283. herm: {
  48284. height: math.unit(7 + 4/12, "feet"),
  48285. weight: math.unit(243, "lb"),
  48286. name: "Herm",
  48287. image: {
  48288. source: "./media/characters/kaya/herm.svg",
  48289. extra: 975/898,
  48290. bottom: 34/1009
  48291. }
  48292. },
  48293. },
  48294. [
  48295. {
  48296. name: "Normal",
  48297. height: math.unit(7 + 4/12, "feet"),
  48298. default: true
  48299. },
  48300. ]
  48301. ))
  48302. characterMakers.push(() => makeCharacter(
  48303. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48304. {
  48305. female: {
  48306. height: math.unit(9 + 4/12, "feet"),
  48307. weight: math.unit(398, "lb"),
  48308. name: "Female",
  48309. image: {
  48310. source: "./media/characters/kassandra/female.svg",
  48311. extra: 908/839,
  48312. bottom: 61/969
  48313. }
  48314. },
  48315. intersex: {
  48316. height: math.unit(9 + 4/12, "feet"),
  48317. weight: math.unit(398, "lb"),
  48318. name: "Intersex",
  48319. image: {
  48320. source: "./media/characters/kassandra/intersex.svg",
  48321. extra: 908/839,
  48322. bottom: 61/969
  48323. }
  48324. },
  48325. },
  48326. [
  48327. {
  48328. name: "Normal",
  48329. height: math.unit(9 + 4/12, "feet"),
  48330. default: true
  48331. },
  48332. ]
  48333. ))
  48334. characterMakers.push(() => makeCharacter(
  48335. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48336. {
  48337. front: {
  48338. height: math.unit(3, "meters"),
  48339. name: "Front",
  48340. image: {
  48341. source: "./media/characters/amy/front.svg",
  48342. extra: 1380/1343,
  48343. bottom: 70/1450
  48344. }
  48345. },
  48346. back: {
  48347. height: math.unit(3, "meters"),
  48348. name: "Back",
  48349. image: {
  48350. source: "./media/characters/amy/back.svg",
  48351. extra: 1380/1347,
  48352. bottom: 66/1446
  48353. }
  48354. },
  48355. },
  48356. [
  48357. {
  48358. name: "Normal",
  48359. height: math.unit(3, "meters"),
  48360. default: true
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48366. {
  48367. side: {
  48368. height: math.unit(47, "cm"),
  48369. weight: math.unit(10.8, "kg"),
  48370. name: "Side",
  48371. image: {
  48372. source: "./media/characters/alphaschakal/side.svg",
  48373. extra: 1058/568,
  48374. bottom: 62/1120
  48375. }
  48376. },
  48377. back: {
  48378. height: math.unit(78, "cm"),
  48379. weight: math.unit(10.8, "kg"),
  48380. name: "Back",
  48381. image: {
  48382. source: "./media/characters/alphaschakal/back.svg",
  48383. extra: 1102/942,
  48384. bottom: 185/1287
  48385. }
  48386. },
  48387. head: {
  48388. height: math.unit(28, "cm"),
  48389. name: "Head",
  48390. image: {
  48391. source: "./media/characters/alphaschakal/head.svg",
  48392. extra: 696/508,
  48393. bottom: 0/696
  48394. }
  48395. },
  48396. paw: {
  48397. height: math.unit(16, "cm"),
  48398. name: "Paw",
  48399. image: {
  48400. source: "./media/characters/alphaschakal/paw.svg"
  48401. }
  48402. },
  48403. },
  48404. [
  48405. {
  48406. name: "Normal",
  48407. height: math.unit(47, "cm"),
  48408. default: true
  48409. },
  48410. {
  48411. name: "Macro",
  48412. height: math.unit(340, "cm")
  48413. },
  48414. ]
  48415. ))
  48416. characterMakers.push(() => makeCharacter(
  48417. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48418. {
  48419. front: {
  48420. height: math.unit(36, "earths"),
  48421. name: "Front",
  48422. image: {
  48423. source: "./media/characters/ecobyss/front.svg",
  48424. extra: 1282/1215,
  48425. bottom: 11/1293
  48426. }
  48427. },
  48428. back: {
  48429. height: math.unit(36, "earths"),
  48430. name: "Back",
  48431. image: {
  48432. source: "./media/characters/ecobyss/back.svg",
  48433. extra: 1291/1222,
  48434. bottom: 8/1299
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Normal",
  48441. height: math.unit(36, "earths"),
  48442. default: true
  48443. },
  48444. ]
  48445. ))
  48446. characterMakers.push(() => makeCharacter(
  48447. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48448. {
  48449. front: {
  48450. height: math.unit(12, "feet"),
  48451. name: "Front",
  48452. image: {
  48453. source: "./media/characters/vasuk/front.svg",
  48454. extra: 1326/1207,
  48455. bottom: 64/1390
  48456. }
  48457. },
  48458. },
  48459. [
  48460. {
  48461. name: "Normal",
  48462. height: math.unit(12, "feet"),
  48463. default: true
  48464. },
  48465. ]
  48466. ))
  48467. characterMakers.push(() => makeCharacter(
  48468. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48469. {
  48470. side: {
  48471. height: math.unit(100, "feet"),
  48472. name: "Side",
  48473. image: {
  48474. source: "./media/characters/linneaus/side.svg",
  48475. extra: 987/807,
  48476. bottom: 47/1034
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Macro",
  48483. height: math.unit(100, "feet"),
  48484. default: true
  48485. },
  48486. ]
  48487. ))
  48488. characterMakers.push(() => makeCharacter(
  48489. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48490. {
  48491. front: {
  48492. height: math.unit(8, "feet"),
  48493. weight: math.unit(1200, "lb"),
  48494. name: "Front",
  48495. image: {
  48496. source: "./media/characters/nyterious-daligdig/front.svg",
  48497. extra: 1284/1094,
  48498. bottom: 84/1368
  48499. }
  48500. },
  48501. back: {
  48502. height: math.unit(8, "feet"),
  48503. weight: math.unit(1200, "lb"),
  48504. name: "Back",
  48505. image: {
  48506. source: "./media/characters/nyterious-daligdig/back.svg",
  48507. extra: 1301/1121,
  48508. bottom: 129/1430
  48509. }
  48510. },
  48511. mouth: {
  48512. height: math.unit(1.464, "feet"),
  48513. name: "Mouth",
  48514. image: {
  48515. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48516. }
  48517. },
  48518. },
  48519. [
  48520. {
  48521. name: "Small",
  48522. height: math.unit(8, "feet"),
  48523. default: true
  48524. },
  48525. {
  48526. name: "Normal",
  48527. height: math.unit(15, "feet")
  48528. },
  48529. {
  48530. name: "Macro",
  48531. height: math.unit(90, "feet")
  48532. },
  48533. ]
  48534. ))
  48535. characterMakers.push(() => makeCharacter(
  48536. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48537. {
  48538. front: {
  48539. height: math.unit(7 + 4/12, "feet"),
  48540. weight: math.unit(252, "lb"),
  48541. name: "Front",
  48542. image: {
  48543. source: "./media/characters/bandel/front.svg",
  48544. extra: 1946/1775,
  48545. bottom: 26/1972
  48546. }
  48547. },
  48548. back: {
  48549. height: math.unit(7 + 4/12, "feet"),
  48550. weight: math.unit(252, "lb"),
  48551. name: "Back",
  48552. image: {
  48553. source: "./media/characters/bandel/back.svg",
  48554. extra: 1940/1770,
  48555. bottom: 25/1965
  48556. }
  48557. },
  48558. maw: {
  48559. height: math.unit(2.15, "feet"),
  48560. name: "Maw",
  48561. image: {
  48562. source: "./media/characters/bandel/maw.svg"
  48563. }
  48564. },
  48565. stomach: {
  48566. height: math.unit(1.95, "feet"),
  48567. name: "Stomach",
  48568. image: {
  48569. source: "./media/characters/bandel/stomach.svg"
  48570. }
  48571. },
  48572. },
  48573. [
  48574. {
  48575. name: "Normal",
  48576. height: math.unit(7 + 4/12, "feet"),
  48577. default: true
  48578. },
  48579. ]
  48580. ))
  48581. characterMakers.push(() => makeCharacter(
  48582. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48583. {
  48584. front: {
  48585. height: math.unit(10 + 5/12, "feet"),
  48586. weight: math.unit(773.5, "kg"),
  48587. name: "Front",
  48588. image: {
  48589. source: "./media/characters/zed/front.svg",
  48590. extra: 987/941,
  48591. bottom: 52/1039
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Short",
  48598. height: math.unit(5 + 4/12, "feet")
  48599. },
  48600. {
  48601. name: "Average",
  48602. height: math.unit(10 + 5/12, "feet"),
  48603. default: true
  48604. },
  48605. {
  48606. name: "Mini-Macro",
  48607. height: math.unit(24 + 9/12, "feet")
  48608. },
  48609. {
  48610. name: "Macro",
  48611. height: math.unit(249, "feet")
  48612. },
  48613. {
  48614. name: "Mega-Macro",
  48615. height: math.unit(12490, "feet")
  48616. },
  48617. {
  48618. name: "Giga-Macro",
  48619. height: math.unit(24.9, "miles")
  48620. },
  48621. {
  48622. name: "Tera-Macro",
  48623. height: math.unit(24900, "miles")
  48624. },
  48625. {
  48626. name: "Cosmic Scale",
  48627. height: math.unit(38.9, "lightyears")
  48628. },
  48629. {
  48630. name: "Universal Scale",
  48631. height: math.unit(138e12, "lightyears")
  48632. },
  48633. ]
  48634. ))
  48635. characterMakers.push(() => makeCharacter(
  48636. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48637. {
  48638. front: {
  48639. height: math.unit(1561, "inches"),
  48640. name: "Front",
  48641. image: {
  48642. source: "./media/characters/ivan/front.svg",
  48643. extra: 1126/1071,
  48644. bottom: 26/1152
  48645. }
  48646. },
  48647. back: {
  48648. height: math.unit(1561, "inches"),
  48649. name: "Back",
  48650. image: {
  48651. source: "./media/characters/ivan/back.svg",
  48652. extra: 1134/1079,
  48653. bottom: 30/1164
  48654. }
  48655. },
  48656. },
  48657. [
  48658. {
  48659. name: "Normal",
  48660. height: math.unit(1561, "inches"),
  48661. default: true
  48662. },
  48663. ]
  48664. ))
  48665. characterMakers.push(() => makeCharacter(
  48666. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48667. {
  48668. front: {
  48669. height: math.unit(5 + 7/12, "feet"),
  48670. weight: math.unit(150, "lb"),
  48671. name: "Front",
  48672. image: {
  48673. source: "./media/characters/robin-arctic-hare/front.svg",
  48674. extra: 1148/974,
  48675. bottom: 20/1168
  48676. }
  48677. },
  48678. },
  48679. [
  48680. {
  48681. name: "Normal",
  48682. height: math.unit(5 + 7/12, "feet"),
  48683. default: true
  48684. },
  48685. ]
  48686. ))
  48687. characterMakers.push(() => makeCharacter(
  48688. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48689. {
  48690. side: {
  48691. height: math.unit(5, "feet"),
  48692. name: "Side",
  48693. image: {
  48694. source: "./media/characters/birch/side.svg",
  48695. extra: 985/796,
  48696. bottom: 111/1096
  48697. }
  48698. },
  48699. },
  48700. [
  48701. {
  48702. name: "Normal",
  48703. height: math.unit(5, "feet"),
  48704. default: true
  48705. },
  48706. ]
  48707. ))
  48708. characterMakers.push(() => makeCharacter(
  48709. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48710. {
  48711. front: {
  48712. height: math.unit(4, "feet"),
  48713. name: "Front",
  48714. image: {
  48715. source: "./media/characters/rasp/front.svg",
  48716. extra: 561/478,
  48717. bottom: 74/635
  48718. }
  48719. },
  48720. },
  48721. [
  48722. {
  48723. name: "Normal",
  48724. height: math.unit(4, "feet"),
  48725. default: true
  48726. },
  48727. ]
  48728. ))
  48729. characterMakers.push(() => makeCharacter(
  48730. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48731. {
  48732. front: {
  48733. height: math.unit(4 + 6/12, "feet"),
  48734. name: "Front",
  48735. image: {
  48736. source: "./media/characters/agatha/front.svg",
  48737. extra: 947/933,
  48738. bottom: 42/989
  48739. }
  48740. },
  48741. back: {
  48742. height: math.unit(4 + 6/12, "feet"),
  48743. name: "Back",
  48744. image: {
  48745. source: "./media/characters/agatha/back.svg",
  48746. extra: 935/922,
  48747. bottom: 48/983
  48748. }
  48749. },
  48750. },
  48751. [
  48752. {
  48753. name: "Normal",
  48754. height: math.unit(4 + 6 /12, "feet"),
  48755. default: true
  48756. },
  48757. {
  48758. name: "Max Size",
  48759. height: math.unit(500, "feet")
  48760. },
  48761. ]
  48762. ))
  48763. characterMakers.push(() => makeCharacter(
  48764. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48765. {
  48766. side: {
  48767. height: math.unit(30, "feet"),
  48768. name: "Side",
  48769. image: {
  48770. source: "./media/characters/roggy/side.svg",
  48771. extra: 909/643,
  48772. bottom: 63/972
  48773. }
  48774. },
  48775. lounging: {
  48776. height: math.unit(20, "feet"),
  48777. name: "Lounging",
  48778. image: {
  48779. source: "./media/characters/roggy/lounging.svg",
  48780. extra: 643/479,
  48781. bottom: 145/788
  48782. }
  48783. },
  48784. handpaw: {
  48785. height: math.unit(13.1, "feet"),
  48786. name: "Handpaw",
  48787. image: {
  48788. source: "./media/characters/roggy/handpaw.svg"
  48789. }
  48790. },
  48791. footpaw: {
  48792. height: math.unit(15.8, "feet"),
  48793. name: "Footpaw",
  48794. image: {
  48795. source: "./media/characters/roggy/footpaw.svg"
  48796. }
  48797. },
  48798. },
  48799. [
  48800. {
  48801. name: "Menacing",
  48802. height: math.unit(30, "feet"),
  48803. default: true
  48804. },
  48805. ]
  48806. ))
  48807. characterMakers.push(() => makeCharacter(
  48808. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48809. {
  48810. front: {
  48811. height: math.unit(5 + 7/12, "feet"),
  48812. weight: math.unit(135, "lb"),
  48813. name: "Front",
  48814. image: {
  48815. source: "./media/characters/naomi/front.svg",
  48816. extra: 1209/1154,
  48817. bottom: 129/1338
  48818. }
  48819. },
  48820. back: {
  48821. height: math.unit(5 + 7/12, "feet"),
  48822. weight: math.unit(135, "lb"),
  48823. name: "Back",
  48824. image: {
  48825. source: "./media/characters/naomi/back.svg",
  48826. extra: 1252/1190,
  48827. bottom: 23/1275
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(5 + 7 /12, "feet"),
  48835. default: true
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48841. {
  48842. side: {
  48843. height: math.unit(35, "meters"),
  48844. name: "Side",
  48845. image: {
  48846. source: "./media/characters/kimpi/side.svg",
  48847. extra: 419/382,
  48848. bottom: 63/482
  48849. }
  48850. },
  48851. hand: {
  48852. height: math.unit(8.96, "meters"),
  48853. name: "Hand",
  48854. image: {
  48855. source: "./media/characters/kimpi/hand.svg"
  48856. }
  48857. },
  48858. },
  48859. [
  48860. {
  48861. name: "Normal",
  48862. height: math.unit(35, "meters"),
  48863. default: true
  48864. },
  48865. ]
  48866. ))
  48867. characterMakers.push(() => makeCharacter(
  48868. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48869. {
  48870. front: {
  48871. height: math.unit(4 + 4/12, "feet"),
  48872. name: "Front",
  48873. image: {
  48874. source: "./media/characters/pepper-purrloin/front.svg",
  48875. extra: 1141/1024,
  48876. bottom: 21/1162
  48877. }
  48878. },
  48879. },
  48880. [
  48881. {
  48882. name: "Normal",
  48883. height: math.unit(4 + 4/12, "feet"),
  48884. default: true
  48885. },
  48886. ]
  48887. ))
  48888. characterMakers.push(() => makeCharacter(
  48889. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48890. {
  48891. front: {
  48892. height: math.unit(6 + 2/12, "feet"),
  48893. name: "Front",
  48894. image: {
  48895. source: "./media/characters/raphael/front.svg",
  48896. extra: 1101/962,
  48897. bottom: 59/1160
  48898. }
  48899. },
  48900. },
  48901. [
  48902. {
  48903. name: "Normal",
  48904. height: math.unit(6 + 2/12, "feet"),
  48905. default: true
  48906. },
  48907. ]
  48908. ))
  48909. characterMakers.push(() => makeCharacter(
  48910. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48911. {
  48912. front: {
  48913. height: math.unit(6, "feet"),
  48914. weight: math.unit(150, "lb"),
  48915. name: "Front",
  48916. image: {
  48917. source: "./media/characters/victor-williams/front.svg",
  48918. extra: 1894/1825,
  48919. bottom: 67/1961
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Normal",
  48926. height: math.unit(6, "feet"),
  48927. default: true
  48928. },
  48929. ]
  48930. ))
  48931. characterMakers.push(() => makeCharacter(
  48932. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48933. {
  48934. front: {
  48935. height: math.unit(5 + 8/12, "feet"),
  48936. weight: math.unit(150, "lb"),
  48937. name: "Front",
  48938. image: {
  48939. source: "./media/characters/rachel/front.svg",
  48940. extra: 1902/1787,
  48941. bottom: 46/1948
  48942. }
  48943. },
  48944. },
  48945. [
  48946. {
  48947. name: "Base Height",
  48948. height: math.unit(5 + 8/12, "feet"),
  48949. default: true
  48950. },
  48951. {
  48952. name: "Macro",
  48953. height: math.unit(200, "feet")
  48954. },
  48955. {
  48956. name: "Mega Macro",
  48957. height: math.unit(1, "mile")
  48958. },
  48959. {
  48960. name: "Giga Macro",
  48961. height: math.unit(1500, "miles")
  48962. },
  48963. {
  48964. name: "Tera Macro",
  48965. height: math.unit(8000, "miles")
  48966. },
  48967. {
  48968. name: "Tera Macro+",
  48969. height: math.unit(2e5, "miles")
  48970. },
  48971. ]
  48972. ))
  48973. characterMakers.push(() => makeCharacter(
  48974. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48975. {
  48976. front: {
  48977. height: math.unit(6.5, "feet"),
  48978. name: "Front",
  48979. image: {
  48980. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48981. extra: 860/819,
  48982. bottom: 307/1167
  48983. }
  48984. },
  48985. back: {
  48986. height: math.unit(6.5, "feet"),
  48987. name: "Back",
  48988. image: {
  48989. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48990. extra: 880/837,
  48991. bottom: 395/1275
  48992. }
  48993. },
  48994. sleeping: {
  48995. height: math.unit(2.79, "feet"),
  48996. name: "Sleeping",
  48997. image: {
  48998. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48999. extra: 465/383,
  49000. bottom: 263/728
  49001. }
  49002. },
  49003. maw: {
  49004. height: math.unit(2.52, "feet"),
  49005. name: "Maw",
  49006. image: {
  49007. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49008. }
  49009. },
  49010. },
  49011. [
  49012. {
  49013. name: "Normal",
  49014. height: math.unit(6.5, "feet"),
  49015. default: true
  49016. },
  49017. ]
  49018. ))
  49019. characterMakers.push(() => makeCharacter(
  49020. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49021. {
  49022. front: {
  49023. height: math.unit(5, "feet"),
  49024. name: "Front",
  49025. image: {
  49026. source: "./media/characters/nova-nerium/front.svg",
  49027. extra: 1548/1392,
  49028. bottom: 374/1922
  49029. }
  49030. },
  49031. back: {
  49032. height: math.unit(5, "feet"),
  49033. name: "Back",
  49034. image: {
  49035. source: "./media/characters/nova-nerium/back.svg",
  49036. extra: 1658/1468,
  49037. bottom: 257/1915
  49038. }
  49039. },
  49040. },
  49041. [
  49042. {
  49043. name: "Normal",
  49044. height: math.unit(5, "feet"),
  49045. default: true
  49046. },
  49047. ]
  49048. ))
  49049. characterMakers.push(() => makeCharacter(
  49050. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49051. {
  49052. front: {
  49053. height: math.unit(5 + 4/12, "feet"),
  49054. name: "Front",
  49055. image: {
  49056. source: "./media/characters/ashe-pyriph/front.svg",
  49057. extra: 1935/1747,
  49058. bottom: 60/1995
  49059. }
  49060. },
  49061. },
  49062. [
  49063. {
  49064. name: "Normal",
  49065. height: math.unit(5 + 4/12, "feet"),
  49066. default: true
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(8.7, "feet"),
  49075. name: "Front",
  49076. image: {
  49077. source: "./media/characters/flicker-wisp/front.svg",
  49078. extra: 1835/1613,
  49079. bottom: 449/2284
  49080. }
  49081. },
  49082. side: {
  49083. height: math.unit(8.7, "feet"),
  49084. name: "Side",
  49085. image: {
  49086. source: "./media/characters/flicker-wisp/side.svg",
  49087. extra: 1841/1642,
  49088. bottom: 336/2177
  49089. },
  49090. default: true
  49091. },
  49092. maw: {
  49093. height: math.unit(3.35, "feet"),
  49094. name: "Maw",
  49095. image: {
  49096. source: "./media/characters/flicker-wisp/maw.svg",
  49097. extra: 2338/1506,
  49098. bottom: 0/2338
  49099. }
  49100. },
  49101. ovipositor: {
  49102. height: math.unit(4.95, "feet"),
  49103. name: "Ovipositor",
  49104. image: {
  49105. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49106. }
  49107. },
  49108. egg: {
  49109. height: math.unit(0.385, "feet"),
  49110. weight: math.unit(2, "lb"),
  49111. name: "Egg",
  49112. image: {
  49113. source: "./media/characters/flicker-wisp/egg.svg"
  49114. }
  49115. },
  49116. },
  49117. [
  49118. {
  49119. name: "Normal",
  49120. height: math.unit(8.7, "feet"),
  49121. default: true
  49122. },
  49123. ]
  49124. ))
  49125. characterMakers.push(() => makeCharacter(
  49126. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49127. {
  49128. side: {
  49129. height: math.unit(11, "feet"),
  49130. name: "Side",
  49131. image: {
  49132. source: "./media/characters/faefnul/side.svg",
  49133. extra: 1100/1007,
  49134. bottom: 0/1100
  49135. }
  49136. },
  49137. },
  49138. [
  49139. {
  49140. name: "Normal",
  49141. height: math.unit(11, "feet"),
  49142. default: true
  49143. },
  49144. ]
  49145. ))
  49146. characterMakers.push(() => makeCharacter(
  49147. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49148. {
  49149. front: {
  49150. height: math.unit(6 + 2/12, "feet"),
  49151. name: "Front",
  49152. image: {
  49153. source: "./media/characters/shady/front.svg",
  49154. extra: 502/461,
  49155. bottom: 9/511
  49156. }
  49157. },
  49158. kneeling: {
  49159. height: math.unit(4.6, "feet"),
  49160. name: "Kneeling",
  49161. image: {
  49162. source: "./media/characters/shady/kneeling.svg",
  49163. extra: 1328/1219,
  49164. bottom: 117/1445
  49165. }
  49166. },
  49167. maw: {
  49168. height: math.unit(2, "feet"),
  49169. name: "Maw",
  49170. image: {
  49171. source: "./media/characters/shady/maw.svg"
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Nano",
  49178. height: math.unit(1, "mm")
  49179. },
  49180. {
  49181. name: "Micro",
  49182. height: math.unit(12, "mm")
  49183. },
  49184. {
  49185. name: "Tiny",
  49186. height: math.unit(3, "inches")
  49187. },
  49188. {
  49189. name: "Normal",
  49190. height: math.unit(6 + 2/12, "feet"),
  49191. default: true
  49192. },
  49193. {
  49194. name: "Big",
  49195. height: math.unit(15, "feet")
  49196. },
  49197. {
  49198. name: "Macro",
  49199. height: math.unit(150, "feet")
  49200. },
  49201. {
  49202. name: "Titanic",
  49203. height: math.unit(500, "feet")
  49204. },
  49205. ]
  49206. ))
  49207. characterMakers.push(() => makeCharacter(
  49208. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49209. {
  49210. front: {
  49211. height: math.unit(12, "feet"),
  49212. name: "Front",
  49213. image: {
  49214. source: "./media/characters/fenrir/front.svg",
  49215. extra: 968/875,
  49216. bottom: 22/990
  49217. }
  49218. },
  49219. },
  49220. [
  49221. {
  49222. name: "Big",
  49223. height: math.unit(12, "feet"),
  49224. default: true
  49225. },
  49226. ]
  49227. ))
  49228. characterMakers.push(() => makeCharacter(
  49229. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49230. {
  49231. front: {
  49232. height: math.unit(5 + 4/12, "feet"),
  49233. name: "Front",
  49234. image: {
  49235. source: "./media/characters/makar/front.svg",
  49236. extra: 1181/1112,
  49237. bottom: 78/1259
  49238. }
  49239. },
  49240. },
  49241. [
  49242. {
  49243. name: "Normal",
  49244. height: math.unit(5 + 4/12, "feet"),
  49245. default: true
  49246. },
  49247. ]
  49248. ))
  49249. characterMakers.push(() => makeCharacter(
  49250. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49251. {
  49252. front: {
  49253. height: math.unit(5 + 7/12, "feet"),
  49254. name: "Front",
  49255. image: {
  49256. source: "./media/characters/callow/front.svg",
  49257. extra: 1482/1304,
  49258. bottom: 23/1505
  49259. }
  49260. },
  49261. back: {
  49262. height: math.unit(5 + 7/12, "feet"),
  49263. name: "Back",
  49264. image: {
  49265. source: "./media/characters/callow/back.svg",
  49266. extra: 1484/1296,
  49267. bottom: 25/1509
  49268. }
  49269. },
  49270. },
  49271. [
  49272. {
  49273. name: "Micro",
  49274. height: math.unit(3, "inches"),
  49275. default: true
  49276. },
  49277. {
  49278. name: "Normal",
  49279. height: math.unit(5 + 7/12, "feet")
  49280. },
  49281. ]
  49282. ))
  49283. characterMakers.push(() => makeCharacter(
  49284. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49285. {
  49286. front: {
  49287. height: math.unit(6 + 2/12, "feet"),
  49288. name: "Front",
  49289. image: {
  49290. source: "./media/characters/natel/front.svg",
  49291. extra: 1833/1692,
  49292. bottom: 166/1999
  49293. }
  49294. },
  49295. },
  49296. [
  49297. {
  49298. name: "Normal",
  49299. height: math.unit(6 + 2/12, "feet"),
  49300. default: true
  49301. },
  49302. ]
  49303. ))
  49304. characterMakers.push(() => makeCharacter(
  49305. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49306. {
  49307. front: {
  49308. height: math.unit(1.75, "meters"),
  49309. name: "Front",
  49310. image: {
  49311. source: "./media/characters/misu/front.svg",
  49312. extra: 1690/1558,
  49313. bottom: 234/1924
  49314. }
  49315. },
  49316. back: {
  49317. height: math.unit(1.75, "meters"),
  49318. name: "Back",
  49319. image: {
  49320. source: "./media/characters/misu/back.svg",
  49321. extra: 1762/1618,
  49322. bottom: 146/1908
  49323. }
  49324. },
  49325. frontNude: {
  49326. height: math.unit(1.75, "meters"),
  49327. name: "Front (Nude)",
  49328. image: {
  49329. source: "./media/characters/misu/front-nude.svg",
  49330. extra: 1690/1558,
  49331. bottom: 234/1924
  49332. }
  49333. },
  49334. backNude: {
  49335. height: math.unit(1.75, "meters"),
  49336. name: "Back (Nude)",
  49337. image: {
  49338. source: "./media/characters/misu/back-nude.svg",
  49339. extra: 1762/1618,
  49340. bottom: 146/1908
  49341. }
  49342. },
  49343. frontErect: {
  49344. height: math.unit(1.75, "meters"),
  49345. name: "Front (Erect)",
  49346. image: {
  49347. source: "./media/characters/misu/front-erect.svg",
  49348. extra: 1690/1558,
  49349. bottom: 234/1924
  49350. }
  49351. },
  49352. maw: {
  49353. height: math.unit(0.47, "meters"),
  49354. name: "Maw",
  49355. image: {
  49356. source: "./media/characters/misu/maw.svg"
  49357. }
  49358. },
  49359. head: {
  49360. height: math.unit(0.35, "meters"),
  49361. name: "Head",
  49362. image: {
  49363. source: "./media/characters/misu/head.svg"
  49364. }
  49365. },
  49366. rear: {
  49367. height: math.unit(0.47, "meters"),
  49368. name: "Rear",
  49369. image: {
  49370. source: "./media/characters/misu/rear.svg"
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(1.75, "meters")
  49378. },
  49379. {
  49380. name: "Not good for the people",
  49381. height: math.unit(42, "meters")
  49382. },
  49383. {
  49384. name: "Not good for the neighborhood",
  49385. height: math.unit(135, "meters")
  49386. },
  49387. {
  49388. name: "Bit bigger problem",
  49389. height: math.unit(380, "meters"),
  49390. default: true
  49391. },
  49392. {
  49393. name: "Not good for the city",
  49394. height: math.unit(1.5, "km")
  49395. },
  49396. {
  49397. name: "Not good for the county",
  49398. height: math.unit(5.5, "km")
  49399. },
  49400. {
  49401. name: "Not good for the state",
  49402. height: math.unit(25, "km")
  49403. },
  49404. {
  49405. name: "Not good for the country",
  49406. height: math.unit(125, "km")
  49407. },
  49408. {
  49409. name: "Not good for the continent",
  49410. height: math.unit(2100, "km")
  49411. },
  49412. {
  49413. name: "Not good for the planet",
  49414. height: math.unit(35000, "km")
  49415. },
  49416. {
  49417. name: "Just no",
  49418. height: math.unit(8.5e18, "km")
  49419. },
  49420. ]
  49421. ))
  49422. characterMakers.push(() => makeCharacter(
  49423. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49424. {
  49425. front: {
  49426. height: math.unit(6.5, "feet"),
  49427. name: "Front",
  49428. image: {
  49429. source: "./media/characters/poppy/front.svg",
  49430. extra: 1878/1812,
  49431. bottom: 43/1921
  49432. }
  49433. },
  49434. feet: {
  49435. height: math.unit(1.06, "feet"),
  49436. name: "Feet",
  49437. image: {
  49438. source: "./media/characters/poppy/feet.svg",
  49439. extra: 1083/1083,
  49440. bottom: 87/1170
  49441. }
  49442. },
  49443. },
  49444. [
  49445. {
  49446. name: "Human",
  49447. height: math.unit(6.5, "feet")
  49448. },
  49449. {
  49450. name: "Default",
  49451. height: math.unit(300, "feet"),
  49452. default: true
  49453. },
  49454. {
  49455. name: "Huge",
  49456. height: math.unit(850, "feet")
  49457. },
  49458. {
  49459. name: "Mega",
  49460. height: math.unit(8000, "feet")
  49461. },
  49462. {
  49463. name: "Giga",
  49464. height: math.unit(300, "miles")
  49465. },
  49466. ]
  49467. ))
  49468. characterMakers.push(() => makeCharacter(
  49469. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49470. {
  49471. bipedal: {
  49472. height: math.unit(7, "feet"),
  49473. name: "Bipedal",
  49474. image: {
  49475. source: "./media/characters/zener/bipedal.svg",
  49476. extra: 874/805,
  49477. bottom: 109/983
  49478. }
  49479. },
  49480. quadrupedal: {
  49481. height: math.unit(4.64, "feet"),
  49482. name: "Quadrupedal",
  49483. image: {
  49484. source: "./media/characters/zener/quadrupedal.svg",
  49485. extra: 638/507,
  49486. bottom: 190/828
  49487. }
  49488. },
  49489. cock: {
  49490. height: math.unit(18, "inches"),
  49491. name: "Cock",
  49492. image: {
  49493. source: "./media/characters/zener/cock.svg"
  49494. }
  49495. },
  49496. },
  49497. [
  49498. {
  49499. name: "Normal",
  49500. height: math.unit(7, "feet"),
  49501. default: true
  49502. },
  49503. ]
  49504. ))
  49505. characterMakers.push(() => makeCharacter(
  49506. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49507. {
  49508. nude: {
  49509. height: math.unit(5 + 6/12, "feet"),
  49510. name: "Nude",
  49511. image: {
  49512. source: "./media/characters/charlie-dog/nude.svg",
  49513. extra: 768/734,
  49514. bottom: 26/794
  49515. }
  49516. },
  49517. dressed: {
  49518. height: math.unit(5 + 6/12, "feet"),
  49519. name: "Dressed",
  49520. image: {
  49521. source: "./media/characters/charlie-dog/dressed.svg",
  49522. extra: 768/734,
  49523. bottom: 26/794
  49524. }
  49525. },
  49526. },
  49527. [
  49528. {
  49529. name: "Normal",
  49530. height: math.unit(5 + 6/12, "feet"),
  49531. default: true
  49532. },
  49533. ]
  49534. ))
  49535. characterMakers.push(() => makeCharacter(
  49536. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49537. {
  49538. front: {
  49539. height: math.unit(6 + 4/12, "feet"),
  49540. name: "Front",
  49541. image: {
  49542. source: "./media/characters/ir'istrasz/front.svg",
  49543. extra: 1014/977,
  49544. bottom: 65/1079
  49545. }
  49546. },
  49547. back: {
  49548. height: math.unit(6 + 4/12, "feet"),
  49549. name: "Back",
  49550. image: {
  49551. source: "./media/characters/ir'istrasz/back.svg",
  49552. extra: 1024/992,
  49553. bottom: 34/1058
  49554. }
  49555. },
  49556. },
  49557. [
  49558. {
  49559. name: "Normal",
  49560. height: math.unit(6 + 4/12, "feet"),
  49561. default: true
  49562. },
  49563. ]
  49564. ))
  49565. characterMakers.push(() => makeCharacter(
  49566. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49567. {
  49568. front: {
  49569. height: math.unit(5 + 8/12, "feet"),
  49570. name: "Front",
  49571. image: {
  49572. source: "./media/characters/dee-ditto/front.svg",
  49573. extra: 1874/1785,
  49574. bottom: 68/1942
  49575. }
  49576. },
  49577. back: {
  49578. height: math.unit(5 + 8/12, "feet"),
  49579. name: "Back",
  49580. image: {
  49581. source: "./media/characters/dee-ditto/back.svg",
  49582. extra: 1870/1783,
  49583. bottom: 77/1947
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Normal",
  49590. height: math.unit(5 + 8/12, "feet"),
  49591. default: true
  49592. },
  49593. ]
  49594. ))
  49595. characterMakers.push(() => makeCharacter(
  49596. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49597. {
  49598. front: {
  49599. height: math.unit(7 + 6/12, "feet"),
  49600. name: "Front",
  49601. image: {
  49602. source: "./media/characters/fey/front.svg",
  49603. extra: 995/979,
  49604. bottom: 30/1025
  49605. }
  49606. },
  49607. back: {
  49608. height: math.unit(7 + 6/12, "feet"),
  49609. name: "Back",
  49610. image: {
  49611. source: "./media/characters/fey/back.svg",
  49612. extra: 1079/1008,
  49613. bottom: 5/1084
  49614. }
  49615. },
  49616. dressed: {
  49617. height: math.unit(7 + 6/12, "feet"),
  49618. name: "Dressed",
  49619. image: {
  49620. source: "./media/characters/fey/dressed.svg",
  49621. extra: 995/979,
  49622. bottom: 30/1025
  49623. }
  49624. },
  49625. },
  49626. [
  49627. {
  49628. name: "Normal",
  49629. height: math.unit(7 + 6/12, "feet"),
  49630. default: true
  49631. },
  49632. ]
  49633. ))
  49634. characterMakers.push(() => makeCharacter(
  49635. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49636. {
  49637. standing: {
  49638. height: math.unit(17, "feet"),
  49639. name: "Standing",
  49640. image: {
  49641. source: "./media/characters/aster/standing.svg",
  49642. extra: 1798/1598,
  49643. bottom: 117/1915
  49644. }
  49645. },
  49646. },
  49647. [
  49648. {
  49649. name: "Normal",
  49650. height: math.unit(17, "feet"),
  49651. default: true
  49652. },
  49653. {
  49654. name: "Homewrecker",
  49655. height: math.unit(95, "feet")
  49656. },
  49657. {
  49658. name: "Planet Devourer",
  49659. height: math.unit(1008000, "miles")
  49660. },
  49661. ]
  49662. ))
  49663. characterMakers.push(() => makeCharacter(
  49664. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49665. {
  49666. front: {
  49667. height: math.unit(6 + 5/12, "feet"),
  49668. weight: math.unit(265, "lb"),
  49669. name: "Front",
  49670. image: {
  49671. source: "./media/characters/devon-childs/front.svg",
  49672. extra: 1795/1721,
  49673. bottom: 41/1836
  49674. }
  49675. },
  49676. side: {
  49677. height: math.unit(6 + 5/12, "feet"),
  49678. weight: math.unit(265, "lb"),
  49679. name: "Side",
  49680. image: {
  49681. source: "./media/characters/devon-childs/side.svg",
  49682. extra: 1812/1738,
  49683. bottom: 30/1842
  49684. }
  49685. },
  49686. back: {
  49687. height: math.unit(6 + 5/12, "feet"),
  49688. weight: math.unit(265, "lb"),
  49689. name: "Back",
  49690. image: {
  49691. source: "./media/characters/devon-childs/back.svg",
  49692. extra: 1808/1735,
  49693. bottom: 23/1831
  49694. }
  49695. },
  49696. hand: {
  49697. height: math.unit(1.464, "feet"),
  49698. name: "Hand",
  49699. image: {
  49700. source: "./media/characters/devon-childs/hand.svg"
  49701. }
  49702. },
  49703. foot: {
  49704. height: math.unit(1.6, "feet"),
  49705. name: "Foot",
  49706. image: {
  49707. source: "./media/characters/devon-childs/foot.svg"
  49708. }
  49709. },
  49710. },
  49711. [
  49712. {
  49713. name: "Micro",
  49714. height: math.unit(7, "cm")
  49715. },
  49716. {
  49717. name: "Normal",
  49718. height: math.unit(6 + 5/12, "feet"),
  49719. default: true
  49720. },
  49721. {
  49722. name: "Macro",
  49723. height: math.unit(154, "feet")
  49724. },
  49725. ]
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49729. {
  49730. front: {
  49731. height: math.unit(6, "feet"),
  49732. weight: math.unit(180, "lb"),
  49733. name: "Front",
  49734. image: {
  49735. source: "./media/characters/lydemox-vir/front.svg",
  49736. extra: 1632/1435,
  49737. bottom: 58/1690
  49738. }
  49739. },
  49740. frontSFW: {
  49741. height: math.unit(6, "feet"),
  49742. weight: math.unit(180, "lb"),
  49743. name: "Front (SFW)",
  49744. image: {
  49745. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49746. extra: 1632/1435,
  49747. bottom: 58/1690
  49748. }
  49749. },
  49750. back: {
  49751. height: math.unit(6, "feet"),
  49752. weight: math.unit(180, "lb"),
  49753. name: "Back",
  49754. image: {
  49755. source: "./media/characters/lydemox-vir/back.svg",
  49756. extra: 1593/1408,
  49757. bottom: 31/1624
  49758. }
  49759. },
  49760. paw: {
  49761. height: math.unit(1.85, "feet"),
  49762. name: "Paw",
  49763. image: {
  49764. source: "./media/characters/lydemox-vir/paw.svg"
  49765. }
  49766. },
  49767. dick: {
  49768. height: math.unit(1.8, "feet"),
  49769. name: "Dick",
  49770. image: {
  49771. source: "./media/characters/lydemox-vir/dick.svg"
  49772. }
  49773. },
  49774. },
  49775. [
  49776. {
  49777. name: "Macro",
  49778. height: math.unit(100, "feet"),
  49779. default: true
  49780. },
  49781. {
  49782. name: "Teramacro",
  49783. height: math.unit(1, "earth")
  49784. },
  49785. {
  49786. name: "Planetary",
  49787. height: math.unit(20, "earths")
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49793. {
  49794. front: {
  49795. height: math.unit(15 + 8/12, "feet"),
  49796. weight: math.unit(1237, "kg"),
  49797. name: "Front",
  49798. image: {
  49799. source: "./media/characters/mia/front.svg",
  49800. extra: 1573/1446,
  49801. bottom: 58/1631
  49802. }
  49803. },
  49804. },
  49805. [
  49806. {
  49807. name: "Small",
  49808. height: math.unit(9 + 5/12, "feet")
  49809. },
  49810. {
  49811. name: "Normal",
  49812. height: math.unit(15 + 8/12, "feet"),
  49813. default: true
  49814. },
  49815. ]
  49816. ))
  49817. characterMakers.push(() => makeCharacter(
  49818. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49819. {
  49820. front: {
  49821. height: math.unit(10 + 6/12, "feet"),
  49822. weight: math.unit(1.3, "tons"),
  49823. name: "Front",
  49824. image: {
  49825. source: "./media/characters/mr-graves/front.svg",
  49826. extra: 1779/1695,
  49827. bottom: 198/1977
  49828. }
  49829. },
  49830. },
  49831. [
  49832. {
  49833. name: "Normal",
  49834. height: math.unit(10 + 6 /12, "feet"),
  49835. default: true
  49836. },
  49837. ]
  49838. ))
  49839. characterMakers.push(() => makeCharacter(
  49840. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49841. {
  49842. dressedFront: {
  49843. height: math.unit(5 + 8/12, "feet"),
  49844. weight: math.unit(125, "lb"),
  49845. name: "Dressed (Front)",
  49846. image: {
  49847. source: "./media/characters/jess/dressed-front.svg",
  49848. extra: 1176/1152,
  49849. bottom: 42/1218
  49850. }
  49851. },
  49852. dressedSide: {
  49853. height: math.unit(5 + 8/12, "feet"),
  49854. weight: math.unit(125, "lb"),
  49855. name: "Dressed (Side)",
  49856. image: {
  49857. source: "./media/characters/jess/dressed-side.svg",
  49858. extra: 1204/1190,
  49859. bottom: 6/1210
  49860. }
  49861. },
  49862. nudeFront: {
  49863. height: math.unit(5 + 8/12, "feet"),
  49864. weight: math.unit(125, "lb"),
  49865. name: "Nude (Front)",
  49866. image: {
  49867. source: "./media/characters/jess/nude-front.svg",
  49868. extra: 1176/1152,
  49869. bottom: 42/1218
  49870. }
  49871. },
  49872. nudeSide: {
  49873. height: math.unit(5 + 8/12, "feet"),
  49874. weight: math.unit(125, "lb"),
  49875. name: "Nude (Side)",
  49876. image: {
  49877. source: "./media/characters/jess/nude-side.svg",
  49878. extra: 1204/1190,
  49879. bottom: 6/1210
  49880. }
  49881. },
  49882. organsFront: {
  49883. height: math.unit(2.83799342105, "feet"),
  49884. name: "Organs (Front)",
  49885. image: {
  49886. source: "./media/characters/jess/organs-front.svg"
  49887. }
  49888. },
  49889. organsSide: {
  49890. height: math.unit(2.64225290474, "feet"),
  49891. name: "Organs (Side)",
  49892. image: {
  49893. source: "./media/characters/jess/organs-side.svg"
  49894. }
  49895. },
  49896. digestiveTractFront: {
  49897. height: math.unit(2.8106580871, "feet"),
  49898. name: "Digestive Tract (Front)",
  49899. image: {
  49900. source: "./media/characters/jess/digestive-tract-front.svg"
  49901. }
  49902. },
  49903. digestiveTractSide: {
  49904. height: math.unit(2.54365045014, "feet"),
  49905. name: "Digestive Tract (Side)",
  49906. image: {
  49907. source: "./media/characters/jess/digestive-tract-side.svg"
  49908. }
  49909. },
  49910. respiratorySystemFront: {
  49911. height: math.unit(1.11196233456, "feet"),
  49912. name: "Respiratory System (Front)",
  49913. image: {
  49914. source: "./media/characters/jess/respiratory-system-front.svg"
  49915. }
  49916. },
  49917. respiratorySystemSide: {
  49918. height: math.unit(0.89327966297, "feet"),
  49919. name: "Respiratory System (Side)",
  49920. image: {
  49921. source: "./media/characters/jess/respiratory-system-side.svg"
  49922. }
  49923. },
  49924. urinaryTractFront: {
  49925. height: math.unit(1.16126356186, "feet"),
  49926. name: "Urinary Tract (Front)",
  49927. image: {
  49928. source: "./media/characters/jess/urinary-tract-front.svg"
  49929. }
  49930. },
  49931. urinaryTractSide: {
  49932. height: math.unit(1.20910039627, "feet"),
  49933. name: "Urinary Tract (Side)",
  49934. image: {
  49935. source: "./media/characters/jess/urinary-tract-side.svg"
  49936. }
  49937. },
  49938. reproductiveOrgansFront: {
  49939. height: math.unit(0.48422591566, "feet"),
  49940. name: "Reproductive Organs (Front)",
  49941. image: {
  49942. source: "./media/characters/jess/reproductive-organs-front.svg"
  49943. }
  49944. },
  49945. reproductiveOrgansSide: {
  49946. height: math.unit(0.61553314481, "feet"),
  49947. name: "Reproductive Organs (Side)",
  49948. image: {
  49949. source: "./media/characters/jess/reproductive-organs-side.svg"
  49950. }
  49951. },
  49952. breastsFront: {
  49953. height: math.unit(0.47690395121, "feet"),
  49954. name: "Breasts (Front)",
  49955. image: {
  49956. source: "./media/characters/jess/breasts-front.svg"
  49957. }
  49958. },
  49959. breastsSide: {
  49960. height: math.unit(0.30556998307, "feet"),
  49961. name: "Breasts (Side)",
  49962. image: {
  49963. source: "./media/characters/jess/breasts-side.svg"
  49964. }
  49965. },
  49966. heartFront: {
  49967. height: math.unit(0.53011022622, "feet"),
  49968. name: "Heart (Front)",
  49969. image: {
  49970. source: "./media/characters/jess/heart-front.svg"
  49971. }
  49972. },
  49973. heartSide: {
  49974. height: math.unit(0.51790695213, "feet"),
  49975. name: "Heart (Side)",
  49976. image: {
  49977. source: "./media/characters/jess/heart-side.svg"
  49978. }
  49979. },
  49980. earsAndNoseFront: {
  49981. height: math.unit(0.29385483995, "feet"),
  49982. name: "Ears and Nose (Front)",
  49983. image: {
  49984. source: "./media/characters/jess/ears-and-nose-front.svg"
  49985. }
  49986. },
  49987. earsAndNoseSide: {
  49988. height: math.unit(0.18109658741, "feet"),
  49989. name: "Ears and Nose (Side)",
  49990. image: {
  49991. source: "./media/characters/jess/ears-and-nose-side.svg"
  49992. }
  49993. },
  49994. },
  49995. [
  49996. {
  49997. name: "Normal",
  49998. height: math.unit(5 + 8/12, "feet"),
  49999. default: true
  50000. },
  50001. ]
  50002. ))
  50003. characterMakers.push(() => makeCharacter(
  50004. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50005. {
  50006. front: {
  50007. height: math.unit(6, "feet"),
  50008. weight: math.unit(6.64467e-7, "grams"),
  50009. name: "Front",
  50010. image: {
  50011. source: "./media/characters/wimpering/front.svg",
  50012. extra: 597/587,
  50013. bottom: 34/631
  50014. }
  50015. },
  50016. },
  50017. [
  50018. {
  50019. name: "Micro",
  50020. height: math.unit(0.4, "mm"),
  50021. default: true
  50022. },
  50023. ]
  50024. ))
  50025. characterMakers.push(() => makeCharacter(
  50026. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50027. {
  50028. front: {
  50029. height: math.unit(5 + 2/12, "feet"),
  50030. weight: math.unit(110, "lb"),
  50031. name: "Front",
  50032. image: {
  50033. source: "./media/characters/keltre/front.svg",
  50034. extra: 1099/1057,
  50035. bottom: 22/1121
  50036. }
  50037. },
  50038. back: {
  50039. height: math.unit(5 + 2/12, "feet"),
  50040. weight: math.unit(110, "lb"),
  50041. name: "Back",
  50042. image: {
  50043. source: "./media/characters/keltre/back.svg",
  50044. extra: 1095/1053,
  50045. bottom: 17/1112
  50046. }
  50047. },
  50048. dressed: {
  50049. height: math.unit(5 + 2/12, "feet"),
  50050. weight: math.unit(110, "lb"),
  50051. name: "Dressed",
  50052. image: {
  50053. source: "./media/characters/keltre/dressed.svg",
  50054. extra: 1099/1057,
  50055. bottom: 22/1121
  50056. }
  50057. },
  50058. winter: {
  50059. height: math.unit(5 + 2/12, "feet"),
  50060. weight: math.unit(110, "lb"),
  50061. name: "Winter",
  50062. image: {
  50063. source: "./media/characters/keltre/winter.svg",
  50064. extra: 1099/1057,
  50065. bottom: 22/1121
  50066. }
  50067. },
  50068. head: {
  50069. height: math.unit(1.61 * 0.86, "feet"),
  50070. name: "Head",
  50071. image: {
  50072. source: "./media/characters/keltre/head.svg",
  50073. extra: 534/421,
  50074. bottom: 0/534
  50075. }
  50076. },
  50077. hand: {
  50078. height: math.unit(1.3 * 0.86, "feet"),
  50079. name: "Hand",
  50080. image: {
  50081. source: "./media/characters/keltre/hand.svg"
  50082. }
  50083. },
  50084. foot: {
  50085. height: math.unit(1.8 * 0.86, "feet"),
  50086. name: "Foot",
  50087. image: {
  50088. source: "./media/characters/keltre/foot.svg"
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Fine",
  50095. height: math.unit(1, "inch")
  50096. },
  50097. {
  50098. name: "Dimnutive",
  50099. height: math.unit(4, "inches")
  50100. },
  50101. {
  50102. name: "Tiny",
  50103. height: math.unit(1, "foot")
  50104. },
  50105. {
  50106. name: "Small",
  50107. height: math.unit(3, "feet")
  50108. },
  50109. {
  50110. name: "Normal",
  50111. height: math.unit(5 + 2/12, "feet"),
  50112. default: true
  50113. },
  50114. ]
  50115. ))
  50116. characterMakers.push(() => makeCharacter(
  50117. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50118. {
  50119. front: {
  50120. height: math.unit(6 + 2/12, "feet"),
  50121. name: "Front",
  50122. image: {
  50123. source: "./media/characters/nox/front.svg",
  50124. extra: 1917/1830,
  50125. bottom: 74/1991
  50126. }
  50127. },
  50128. back: {
  50129. height: math.unit(6 + 2/12, "feet"),
  50130. name: "Back",
  50131. image: {
  50132. source: "./media/characters/nox/back.svg",
  50133. extra: 1896/1815,
  50134. bottom: 21/1917
  50135. }
  50136. },
  50137. head: {
  50138. height: math.unit(1.1, "feet"),
  50139. name: "Head",
  50140. image: {
  50141. source: "./media/characters/nox/head.svg",
  50142. extra: 874/704,
  50143. bottom: 0/874
  50144. }
  50145. },
  50146. tattoo: {
  50147. height: math.unit(0.729, "feet"),
  50148. name: "Tattoo",
  50149. image: {
  50150. source: "./media/characters/nox/tattoo.svg"
  50151. }
  50152. },
  50153. },
  50154. [
  50155. {
  50156. name: "Normal",
  50157. height: math.unit(6 + 2/12, "feet")
  50158. },
  50159. {
  50160. name: "Gigamacro",
  50161. height: math.unit(2, "earths"),
  50162. default: true
  50163. },
  50164. {
  50165. name: "Cosmic",
  50166. height: math.unit(867, "yottameters")
  50167. },
  50168. ]
  50169. ))
  50170. characterMakers.push(() => makeCharacter(
  50171. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50172. {
  50173. front: {
  50174. height: math.unit(6, "feet"),
  50175. weight: math.unit(150, "lb"),
  50176. name: "Front",
  50177. image: {
  50178. source: "./media/characters/caspian/front.svg",
  50179. extra: 1443/1359,
  50180. bottom: 0/1443
  50181. }
  50182. },
  50183. back: {
  50184. height: math.unit(6, "feet"),
  50185. weight: math.unit(150, "lb"),
  50186. name: "Back",
  50187. image: {
  50188. source: "./media/characters/caspian/back.svg",
  50189. extra: 1379/1309,
  50190. bottom: 0/1379
  50191. }
  50192. },
  50193. head: {
  50194. height: math.unit(0.9, "feet"),
  50195. name: "Head",
  50196. image: {
  50197. source: "./media/characters/caspian/head.svg",
  50198. extra: 692/492,
  50199. bottom: 0/692
  50200. }
  50201. },
  50202. headAlt: {
  50203. height: math.unit(0.95, "feet"),
  50204. name: "Head (Alt)",
  50205. image: {
  50206. source: "./media/characters/caspian/head-alt.svg",
  50207. extra: 668/508,
  50208. bottom: 0/668
  50209. }
  50210. },
  50211. hand: {
  50212. height: math.unit(0.8, "feet"),
  50213. name: "Hand",
  50214. image: {
  50215. source: "./media/characters/caspian/hand.svg"
  50216. }
  50217. },
  50218. paw: {
  50219. height: math.unit(0.95, "feet"),
  50220. name: "Paw",
  50221. image: {
  50222. source: "./media/characters/caspian/paw.svg"
  50223. }
  50224. },
  50225. },
  50226. [
  50227. {
  50228. name: "Normal",
  50229. height: math.unit(162, "feet"),
  50230. default: true
  50231. },
  50232. ]
  50233. ))
  50234. characterMakers.push(() => makeCharacter(
  50235. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50236. {
  50237. front: {
  50238. height: math.unit(6, "feet"),
  50239. name: "Front",
  50240. image: {
  50241. source: "./media/characters/myra-aisling/front.svg",
  50242. extra: 1268/1166,
  50243. bottom: 73/1341
  50244. }
  50245. },
  50246. back: {
  50247. height: math.unit(6, "feet"),
  50248. name: "Back",
  50249. image: {
  50250. source: "./media/characters/myra-aisling/back.svg",
  50251. extra: 1249/1149,
  50252. bottom: 79/1328
  50253. }
  50254. },
  50255. dressed: {
  50256. height: math.unit(6, "feet"),
  50257. name: "Dressed",
  50258. image: {
  50259. source: "./media/characters/myra-aisling/dressed.svg",
  50260. extra: 1290/1189,
  50261. bottom: 47/1337
  50262. }
  50263. },
  50264. hand: {
  50265. height: math.unit(1.1, "feet"),
  50266. name: "Hand",
  50267. image: {
  50268. source: "./media/characters/myra-aisling/hand.svg"
  50269. }
  50270. },
  50271. paw: {
  50272. height: math.unit(1.23, "feet"),
  50273. name: "Paw",
  50274. image: {
  50275. source: "./media/characters/myra-aisling/paw.svg"
  50276. }
  50277. },
  50278. },
  50279. [
  50280. {
  50281. name: "Normal",
  50282. height: math.unit(160, "feet"),
  50283. default: true
  50284. },
  50285. ]
  50286. ))
  50287. characterMakers.push(() => makeCharacter(
  50288. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50289. {
  50290. front: {
  50291. height: math.unit(6, "feet"),
  50292. name: "Front",
  50293. image: {
  50294. source: "./media/characters/tenley-sidero/front.svg",
  50295. extra: 1365/1276,
  50296. bottom: 47/1412
  50297. }
  50298. },
  50299. back: {
  50300. height: math.unit(6, "feet"),
  50301. name: "Back",
  50302. image: {
  50303. source: "./media/characters/tenley-sidero/back.svg",
  50304. extra: 1383/1283,
  50305. bottom: 35/1418
  50306. }
  50307. },
  50308. dressed: {
  50309. height: math.unit(6, "feet"),
  50310. name: "Dressed",
  50311. image: {
  50312. source: "./media/characters/tenley-sidero/dressed.svg",
  50313. extra: 1364/1275,
  50314. bottom: 42/1406
  50315. }
  50316. },
  50317. head: {
  50318. height: math.unit(1.47, "feet"),
  50319. name: "Head",
  50320. image: {
  50321. source: "./media/characters/tenley-sidero/head.svg",
  50322. extra: 610/490,
  50323. bottom: 0/610
  50324. }
  50325. },
  50326. },
  50327. [
  50328. {
  50329. name: "Normal",
  50330. height: math.unit(154, "feet"),
  50331. default: true
  50332. },
  50333. ]
  50334. ))
  50335. characterMakers.push(() => makeCharacter(
  50336. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50337. {
  50338. front: {
  50339. height: math.unit(5, "inches"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/mallory/front.svg",
  50343. extra: 1919/1678,
  50344. bottom: 29/1948
  50345. }
  50346. },
  50347. hand: {
  50348. height: math.unit(0.73, "inches"),
  50349. name: "Hand",
  50350. image: {
  50351. source: "./media/characters/mallory/hand.svg"
  50352. }
  50353. },
  50354. paw: {
  50355. height: math.unit(0.68, "inches"),
  50356. name: "Paw",
  50357. image: {
  50358. source: "./media/characters/mallory/paw.svg"
  50359. }
  50360. },
  50361. },
  50362. [
  50363. {
  50364. name: "Small",
  50365. height: math.unit(5, "inches"),
  50366. default: true
  50367. },
  50368. ]
  50369. ))
  50370. characterMakers.push(() => makeCharacter(
  50371. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50372. {
  50373. naked: {
  50374. height: math.unit(6, "feet"),
  50375. name: "Naked",
  50376. image: {
  50377. source: "./media/characters/mab/naked.svg",
  50378. extra: 1855/1757,
  50379. bottom: 208/2063
  50380. }
  50381. },
  50382. outside: {
  50383. height: math.unit(6, "feet"),
  50384. name: "Outside",
  50385. image: {
  50386. source: "./media/characters/mab/outside.svg",
  50387. extra: 1855/1757,
  50388. bottom: 208/2063
  50389. }
  50390. },
  50391. party: {
  50392. height: math.unit(6, "feet"),
  50393. name: "Party",
  50394. image: {
  50395. source: "./media/characters/mab/party.svg",
  50396. extra: 1855/1757,
  50397. bottom: 208/2063
  50398. }
  50399. },
  50400. },
  50401. [
  50402. {
  50403. name: "Normal",
  50404. height: math.unit(165, "feet"),
  50405. default: true
  50406. },
  50407. ]
  50408. ))
  50409. characterMakers.push(() => makeCharacter(
  50410. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50411. {
  50412. feral: {
  50413. height: math.unit(12, "feet"),
  50414. weight: math.unit(20000, "lb"),
  50415. name: "Side",
  50416. image: {
  50417. source: "./media/characters/winter/feral.svg",
  50418. extra: 1286/943,
  50419. bottom: 112/1398
  50420. },
  50421. form: "feral",
  50422. default: true
  50423. },
  50424. feralNsfw: {
  50425. height: math.unit(12, "feet"),
  50426. weight: math.unit(20000, "lb"),
  50427. name: "Side (NSFW)",
  50428. image: {
  50429. source: "./media/characters/winter/feral-nsfw.svg",
  50430. extra: 1286/943,
  50431. bottom: 112/1398
  50432. },
  50433. form: "feral"
  50434. },
  50435. dick: {
  50436. height: math.unit(3.79, "feet"),
  50437. name: "Dick",
  50438. image: {
  50439. source: "./media/characters/winter/dick.svg"
  50440. },
  50441. form: "feral"
  50442. },
  50443. anthro: {
  50444. height: math.unit(12, "feet"),
  50445. weight: math.unit(10, "tons"),
  50446. name: "Anthro",
  50447. image: {
  50448. source: "./media/characters/winter/anthro.svg",
  50449. extra: 1701/1553,
  50450. bottom: 64/1765
  50451. },
  50452. form: "anthro",
  50453. default: true
  50454. },
  50455. },
  50456. [
  50457. {
  50458. name: "Big",
  50459. height: math.unit(12, "feet"),
  50460. default: true,
  50461. form: "feral"
  50462. },
  50463. {
  50464. name: "Big",
  50465. height: math.unit(12, "feet"),
  50466. default: true,
  50467. form: "anthro"
  50468. },
  50469. ],
  50470. {
  50471. "feral": {
  50472. name: "Feral",
  50473. default: true
  50474. },
  50475. "anthro": {
  50476. name: "Anthro"
  50477. }
  50478. }
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(4.1, "inches"),
  50485. name: "Front",
  50486. image: {
  50487. source: "./media/characters/alto/front.svg",
  50488. extra: 736/627,
  50489. bottom: 90/826
  50490. }
  50491. },
  50492. },
  50493. [
  50494. {
  50495. name: "Normal",
  50496. height: math.unit(4.1, "inches"),
  50497. default: true
  50498. },
  50499. ]
  50500. ))
  50501. characterMakers.push(() => makeCharacter(
  50502. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50503. {
  50504. sitting: {
  50505. height: math.unit(3, "feet"),
  50506. name: "Sitting",
  50507. image: {
  50508. source: "./media/characters/ratstrid-v/sitting.svg",
  50509. extra: 355/310,
  50510. bottom: 136/491
  50511. }
  50512. },
  50513. },
  50514. [
  50515. {
  50516. name: "Normal",
  50517. height: math.unit(3, "feet"),
  50518. default: true
  50519. },
  50520. ]
  50521. ))
  50522. characterMakers.push(() => makeCharacter(
  50523. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50524. {
  50525. back: {
  50526. height: math.unit(6, "feet"),
  50527. weight: math.unit(450, "lb"),
  50528. name: "Back",
  50529. image: {
  50530. source: "./media/characters/siz/back.svg",
  50531. extra: 1449/1274,
  50532. bottom: 13/1462
  50533. }
  50534. },
  50535. },
  50536. [
  50537. {
  50538. name: "Smallest",
  50539. height: math.unit(18 + 3/12, "feet")
  50540. },
  50541. {
  50542. name: "Modest",
  50543. height: math.unit(56 + 8/12, "feet"),
  50544. default: true
  50545. },
  50546. {
  50547. name: "Largest",
  50548. height: math.unit(3590, "feet")
  50549. },
  50550. ]
  50551. ))
  50552. characterMakers.push(() => makeCharacter(
  50553. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50554. {
  50555. front: {
  50556. height: math.unit(5 + 9/12, "feet"),
  50557. weight: math.unit(150, "lb"),
  50558. name: "Front",
  50559. image: {
  50560. source: "./media/characters/ven/front.svg",
  50561. extra: 1372/1320,
  50562. bottom: 73/1445
  50563. }
  50564. },
  50565. side: {
  50566. height: math.unit(5 + 9/12, "feet"),
  50567. weight: math.unit(1150, "lb"),
  50568. name: "Side",
  50569. image: {
  50570. source: "./media/characters/ven/side.svg",
  50571. extra: 1119/1070,
  50572. bottom: 42/1161
  50573. },
  50574. default: true
  50575. },
  50576. },
  50577. [
  50578. {
  50579. name: "Normal",
  50580. height: math.unit(5 + 9/12, "feet"),
  50581. default: true
  50582. },
  50583. ]
  50584. ))
  50585. characterMakers.push(() => makeCharacter(
  50586. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50587. {
  50588. front: {
  50589. height: math.unit(12, "feet"),
  50590. weight: math.unit(1000, "kg"),
  50591. name: "Front",
  50592. image: {
  50593. source: "./media/characters/maple/front.svg",
  50594. extra: 1193/1081,
  50595. bottom: 22/1215
  50596. }
  50597. },
  50598. },
  50599. [
  50600. {
  50601. name: "Compressed",
  50602. height: math.unit(7, "feet")
  50603. },
  50604. {
  50605. name: "Normal",
  50606. height: math.unit(12, "feet"),
  50607. default: true
  50608. },
  50609. ]
  50610. ))
  50611. characterMakers.push(() => makeCharacter(
  50612. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50613. {
  50614. front: {
  50615. height: math.unit(9, "feet"),
  50616. weight: math.unit(1500, "lb"),
  50617. name: "Front",
  50618. image: {
  50619. source: "./media/characters/nora/front.svg",
  50620. extra: 1348/1286,
  50621. bottom: 218/1566
  50622. }
  50623. },
  50624. erect: {
  50625. height: math.unit(9, "feet"),
  50626. weight: math.unit(11500, "lb"),
  50627. name: "Erect",
  50628. image: {
  50629. source: "./media/characters/nora/erect.svg",
  50630. extra: 1488/1433,
  50631. bottom: 133/1621
  50632. }
  50633. },
  50634. },
  50635. [
  50636. {
  50637. name: "Normal",
  50638. height: math.unit(9, "feet"),
  50639. default: true
  50640. },
  50641. ]
  50642. ))
  50643. characterMakers.push(() => makeCharacter(
  50644. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50645. {
  50646. front: {
  50647. height: math.unit(25, "feet"),
  50648. weight: math.unit(27500, "lb"),
  50649. name: "Front",
  50650. image: {
  50651. source: "./media/characters/north-caudin/front.svg",
  50652. extra: 1184/1082,
  50653. bottom: 23/1207
  50654. }
  50655. },
  50656. },
  50657. [
  50658. {
  50659. name: "Compressed",
  50660. height: math.unit(10, "feet")
  50661. },
  50662. {
  50663. name: "Normal",
  50664. height: math.unit(25, "feet"),
  50665. default: true
  50666. },
  50667. ]
  50668. ))
  50669. characterMakers.push(() => makeCharacter(
  50670. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50671. {
  50672. front: {
  50673. height: math.unit(9, "feet"),
  50674. weight: math.unit(1250, "lb"),
  50675. name: "Front",
  50676. image: {
  50677. source: "./media/characters/merrian/front.svg",
  50678. extra: 2393/2304,
  50679. bottom: 40/2433
  50680. }
  50681. },
  50682. },
  50683. [
  50684. {
  50685. name: "Normal",
  50686. height: math.unit(9, "feet"),
  50687. default: true
  50688. },
  50689. ]
  50690. ))
  50691. characterMakers.push(() => makeCharacter(
  50692. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50693. {
  50694. front: {
  50695. height: math.unit(9, "feet"),
  50696. weight: math.unit(1000, "lb"),
  50697. name: "Front",
  50698. image: {
  50699. source: "./media/characters/hazel/front.svg",
  50700. extra: 2351/2298,
  50701. bottom: 38/2389
  50702. }
  50703. },
  50704. },
  50705. [
  50706. {
  50707. name: "Normal",
  50708. height: math.unit(9, "feet"),
  50709. default: true
  50710. },
  50711. ]
  50712. ))
  50713. characterMakers.push(() => makeCharacter(
  50714. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50715. {
  50716. front: {
  50717. height: math.unit(13, "feet"),
  50718. weight: math.unit(3200, "lb"),
  50719. name: "Front",
  50720. image: {
  50721. source: "./media/characters/emma/front.svg",
  50722. extra: 2263/2029,
  50723. bottom: 68/2331
  50724. }
  50725. },
  50726. },
  50727. [
  50728. {
  50729. name: "Normal",
  50730. height: math.unit(13, "feet"),
  50731. default: true
  50732. },
  50733. ]
  50734. ))
  50735. characterMakers.push(() => makeCharacter(
  50736. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50737. {
  50738. front: {
  50739. height: math.unit(11 + 9/12, "feet"),
  50740. weight: math.unit(2500, "lb"),
  50741. name: "Front",
  50742. image: {
  50743. source: "./media/characters/ilumina/front.svg",
  50744. extra: 2248/2209,
  50745. bottom: 164/2412
  50746. }
  50747. },
  50748. },
  50749. [
  50750. {
  50751. name: "Normal",
  50752. height: math.unit(11 + 9/12, "feet"),
  50753. default: true
  50754. },
  50755. ]
  50756. ))
  50757. characterMakers.push(() => makeCharacter(
  50758. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50759. {
  50760. front: {
  50761. height: math.unit(8 + 10/12, "feet"),
  50762. weight: math.unit(1350, "lb"),
  50763. name: "Front",
  50764. image: {
  50765. source: "./media/characters/moonshine/front.svg",
  50766. extra: 2395/2288,
  50767. bottom: 40/2435
  50768. }
  50769. },
  50770. },
  50771. [
  50772. {
  50773. name: "Normal",
  50774. height: math.unit(8 + 10/12, "feet"),
  50775. default: true
  50776. },
  50777. ]
  50778. ))
  50779. characterMakers.push(() => makeCharacter(
  50780. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50781. {
  50782. front: {
  50783. height: math.unit(14, "feet"),
  50784. weight: math.unit(3400, "lb"),
  50785. name: "Front",
  50786. image: {
  50787. source: "./media/characters/aletia/front.svg",
  50788. extra: 1185/1052,
  50789. bottom: 21/1206
  50790. }
  50791. },
  50792. },
  50793. [
  50794. {
  50795. name: "Compressed",
  50796. height: math.unit(8, "feet")
  50797. },
  50798. {
  50799. name: "Normal",
  50800. height: math.unit(14, "feet"),
  50801. default: true
  50802. },
  50803. ]
  50804. ))
  50805. characterMakers.push(() => makeCharacter(
  50806. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50807. {
  50808. front: {
  50809. height: math.unit(17, "feet"),
  50810. weight: math.unit(6500, "lb"),
  50811. name: "Front",
  50812. image: {
  50813. source: "./media/characters/deidra/front.svg",
  50814. extra: 1201/1081,
  50815. bottom: 16/1217
  50816. }
  50817. },
  50818. },
  50819. [
  50820. {
  50821. name: "Compressed",
  50822. height: math.unit(9 + 6/12, "feet")
  50823. },
  50824. {
  50825. name: "Normal",
  50826. height: math.unit(17, "feet"),
  50827. default: true
  50828. },
  50829. ]
  50830. ))
  50831. characterMakers.push(() => makeCharacter(
  50832. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50833. {
  50834. front: {
  50835. height: math.unit(7 + 4/12, "feet"),
  50836. weight: math.unit(280, "lb"),
  50837. name: "Front",
  50838. image: {
  50839. source: "./media/characters/freki-yrmori/front.svg",
  50840. extra: 1286/1182,
  50841. bottom: 29/1315
  50842. }
  50843. },
  50844. maw: {
  50845. height: math.unit(0.9, "feet"),
  50846. name: "Maw",
  50847. image: {
  50848. source: "./media/characters/freki-yrmori/maw.svg"
  50849. }
  50850. },
  50851. },
  50852. [
  50853. {
  50854. name: "Normal",
  50855. height: math.unit(7 + 4/12, "feet"),
  50856. default: true
  50857. },
  50858. {
  50859. name: "Macro",
  50860. height: math.unit(38.5, "meters")
  50861. },
  50862. ]
  50863. ))
  50864. characterMakers.push(() => makeCharacter(
  50865. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50866. {
  50867. side: {
  50868. height: math.unit(47.2, "meters"),
  50869. weight: math.unit(10000, "tons"),
  50870. name: "Side",
  50871. image: {
  50872. source: "./media/characters/aetherios/side.svg",
  50873. extra: 2363/642,
  50874. bottom: 221/2584
  50875. }
  50876. },
  50877. top: {
  50878. height: math.unit(240, "meters"),
  50879. weight: math.unit(10000, "tons"),
  50880. name: "Top",
  50881. image: {
  50882. source: "./media/characters/aetherios/top.svg"
  50883. }
  50884. },
  50885. bottom: {
  50886. height: math.unit(240, "meters"),
  50887. weight: math.unit(10000, "tons"),
  50888. name: "Bottom",
  50889. image: {
  50890. source: "./media/characters/aetherios/bottom.svg"
  50891. }
  50892. },
  50893. head: {
  50894. height: math.unit(38.6, "meters"),
  50895. name: "Head",
  50896. image: {
  50897. source: "./media/characters/aetherios/head.svg",
  50898. extra: 1335/1112,
  50899. bottom: 0/1335
  50900. }
  50901. },
  50902. front: {
  50903. height: math.unit(29, "meters"),
  50904. name: "Front",
  50905. image: {
  50906. source: "./media/characters/aetherios/front.svg",
  50907. extra: 1266/953,
  50908. bottom: 158/1424
  50909. }
  50910. },
  50911. maw: {
  50912. height: math.unit(16.37, "meters"),
  50913. name: "Maw",
  50914. image: {
  50915. source: "./media/characters/aetherios/maw.svg",
  50916. extra: 748/637,
  50917. bottom: 0/748
  50918. },
  50919. extraAttributes: {
  50920. preyCapacity: {
  50921. name: "Capacity",
  50922. power: 3,
  50923. type: "volume",
  50924. base: math.unit(1000, "people")
  50925. },
  50926. tongueSize: {
  50927. name: "Tongue Size",
  50928. power: 2,
  50929. type: "area",
  50930. base: math.unit(21, "m^2")
  50931. }
  50932. }
  50933. },
  50934. forepaw: {
  50935. height: math.unit(18, "meters"),
  50936. name: "Forepaw",
  50937. image: {
  50938. source: "./media/characters/aetherios/forepaw.svg"
  50939. }
  50940. },
  50941. hindpaw: {
  50942. height: math.unit(23, "meters"),
  50943. name: "Hindpaw",
  50944. image: {
  50945. source: "./media/characters/aetherios/hindpaw.svg"
  50946. }
  50947. },
  50948. genitals: {
  50949. height: math.unit(42, "meters"),
  50950. name: "Genitals",
  50951. image: {
  50952. source: "./media/characters/aetherios/genitals.svg"
  50953. }
  50954. },
  50955. },
  50956. [
  50957. {
  50958. name: "Normal",
  50959. height: math.unit(47.2, "meters"),
  50960. default: true
  50961. },
  50962. {
  50963. name: "Macro",
  50964. height: math.unit(160, "meters")
  50965. },
  50966. {
  50967. name: "Mega",
  50968. height: math.unit(1.87, "km")
  50969. },
  50970. {
  50971. name: "Giga",
  50972. height: math.unit(40000, "km")
  50973. },
  50974. {
  50975. name: "Stellar",
  50976. height: math.unit(158000000, "km")
  50977. },
  50978. {
  50979. name: "Cosmic",
  50980. height: math.unit(9.46e12, "km")
  50981. },
  50982. ]
  50983. ))
  50984. characterMakers.push(() => makeCharacter(
  50985. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50986. {
  50987. front: {
  50988. height: math.unit(5 + 4/12, "feet"),
  50989. weight: math.unit(80, "lb"),
  50990. name: "Front",
  50991. image: {
  50992. source: "./media/characters/mizu-gieeg/front.svg",
  50993. extra: 850/709,
  50994. bottom: 52/902
  50995. }
  50996. },
  50997. back: {
  50998. height: math.unit(5 + 4/12, "feet"),
  50999. weight: math.unit(80, "lb"),
  51000. name: "Back",
  51001. image: {
  51002. source: "./media/characters/mizu-gieeg/back.svg",
  51003. extra: 882/745,
  51004. bottom: 25/907
  51005. }
  51006. },
  51007. },
  51008. [
  51009. {
  51010. name: "Normal",
  51011. height: math.unit(5 + 4/12, "feet"),
  51012. default: true
  51013. },
  51014. ]
  51015. ))
  51016. characterMakers.push(() => makeCharacter(
  51017. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51018. {
  51019. front: {
  51020. height: math.unit(6, "feet"),
  51021. name: "Front",
  51022. image: {
  51023. source: "./media/characters/roselle-st-papier/front.svg",
  51024. extra: 1430/1280,
  51025. bottom: 37/1467
  51026. }
  51027. },
  51028. back: {
  51029. height: math.unit(6, "feet"),
  51030. name: "Back",
  51031. image: {
  51032. source: "./media/characters/roselle-st-papier/back.svg",
  51033. extra: 1491/1296,
  51034. bottom: 23/1514
  51035. }
  51036. },
  51037. ear: {
  51038. height: math.unit(1.26, "feet"),
  51039. name: "Ear",
  51040. image: {
  51041. source: "./media/characters/roselle-st-papier/ear.svg"
  51042. }
  51043. },
  51044. },
  51045. [
  51046. {
  51047. name: "Normal",
  51048. height: math.unit(150, "feet"),
  51049. default: true
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(1, "inches"),
  51058. name: "Front",
  51059. image: {
  51060. source: "./media/characters/valargent/front.svg",
  51061. extra: 1825/1694,
  51062. bottom: 62/1887
  51063. }
  51064. },
  51065. back: {
  51066. height: math.unit(1, "inches"),
  51067. name: "Back",
  51068. image: {
  51069. source: "./media/characters/valargent/back.svg",
  51070. extra: 1775/1682,
  51071. bottom: 88/1863
  51072. }
  51073. },
  51074. },
  51075. [
  51076. {
  51077. name: "Micro",
  51078. height: math.unit(1, "inch"),
  51079. default: true
  51080. },
  51081. ]
  51082. ))
  51083. characterMakers.push(() => makeCharacter(
  51084. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51085. {
  51086. front: {
  51087. height: math.unit(3.4, "meters"),
  51088. name: "Front",
  51089. image: {
  51090. source: "./media/characters/zarina/front.svg",
  51091. extra: 1733/1425,
  51092. bottom: 93/1826
  51093. }
  51094. },
  51095. squatting: {
  51096. height: math.unit(2.14, "meters"),
  51097. name: "Squatting",
  51098. image: {
  51099. source: "./media/characters/zarina/squatting.svg",
  51100. extra: 1073/788,
  51101. bottom: 63/1136
  51102. }
  51103. },
  51104. back: {
  51105. height: math.unit(2.14, "meters"),
  51106. name: "Back",
  51107. image: {
  51108. source: "./media/characters/zarina/back.svg",
  51109. extra: 1128/885,
  51110. bottom: 0/1128
  51111. }
  51112. },
  51113. },
  51114. [
  51115. {
  51116. name: "Normal",
  51117. height: math.unit(3.4, "meters"),
  51118. default: true
  51119. },
  51120. {
  51121. name: "Big",
  51122. height: math.unit(5, "meters")
  51123. },
  51124. {
  51125. name: "Macro",
  51126. height: math.unit(110, "meters")
  51127. },
  51128. ]
  51129. ))
  51130. characterMakers.push(() => makeCharacter(
  51131. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51132. {
  51133. front: {
  51134. height: math.unit(7, "feet"),
  51135. name: "Front",
  51136. image: {
  51137. source: "./media/characters/ventus-astro-fox/front.svg",
  51138. extra: 1792/1623,
  51139. bottom: 28/1820
  51140. }
  51141. },
  51142. back: {
  51143. height: math.unit(7, "feet"),
  51144. name: "Back",
  51145. image: {
  51146. source: "./media/characters/ventus-astro-fox/back.svg",
  51147. extra: 1789/1620,
  51148. bottom: 31/1820
  51149. }
  51150. },
  51151. outfit: {
  51152. height: math.unit(7, "feet"),
  51153. name: "Outfit",
  51154. image: {
  51155. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51156. extra: 1054/925,
  51157. bottom: 15/1069
  51158. }
  51159. },
  51160. head: {
  51161. height: math.unit(1.12, "feet"),
  51162. name: "Head",
  51163. image: {
  51164. source: "./media/characters/ventus-astro-fox/head.svg",
  51165. extra: 866/504,
  51166. bottom: 0/866
  51167. }
  51168. },
  51169. hand: {
  51170. height: math.unit(1, "feet"),
  51171. name: "Hand",
  51172. image: {
  51173. source: "./media/characters/ventus-astro-fox/hand.svg"
  51174. }
  51175. },
  51176. paw: {
  51177. height: math.unit(1.5, "feet"),
  51178. name: "Paw",
  51179. image: {
  51180. source: "./media/characters/ventus-astro-fox/paw.svg"
  51181. }
  51182. },
  51183. },
  51184. [
  51185. {
  51186. name: "Normal",
  51187. height: math.unit(7, "feet"),
  51188. default: true
  51189. },
  51190. {
  51191. name: "Macro",
  51192. height: math.unit(200, "feet")
  51193. },
  51194. {
  51195. name: "Cosmic",
  51196. height: math.unit(3, "universes")
  51197. },
  51198. ]
  51199. ))
  51200. characterMakers.push(() => makeCharacter(
  51201. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51202. {
  51203. front: {
  51204. height: math.unit(3, "meters"),
  51205. weight: math.unit(7000, "lb"),
  51206. name: "Front",
  51207. image: {
  51208. source: "./media/characters/core-t/front.svg",
  51209. extra: 5729/4941,
  51210. bottom: 1129/6858
  51211. }
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Big",
  51217. height: math.unit(3, "meters"),
  51218. default: true
  51219. },
  51220. ]
  51221. ))
  51222. characterMakers.push(() => makeCharacter(
  51223. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51224. {
  51225. normal: {
  51226. height: math.unit(6 + 6/12, "feet"),
  51227. weight: math.unit(275, "lb"),
  51228. name: "Front",
  51229. image: {
  51230. source: "./media/characters/cadbunny/normal.svg",
  51231. extra: 1129/947,
  51232. bottom: 93/1222
  51233. },
  51234. default: true,
  51235. form: "normal"
  51236. },
  51237. gigantamax: {
  51238. height: math.unit(26, "feet"),
  51239. weight: math.unit(16000, "lb"),
  51240. name: "Front",
  51241. image: {
  51242. source: "./media/characters/cadbunny/gigantamax.svg",
  51243. extra: 1133/944,
  51244. bottom: 90/1223
  51245. },
  51246. default: true,
  51247. form: "gigantamax"
  51248. },
  51249. },
  51250. [
  51251. {
  51252. name: "Normal",
  51253. height: math.unit(6 + 6/12, "feet"),
  51254. default: true,
  51255. form: "normal"
  51256. },
  51257. {
  51258. name: "Small",
  51259. height: math.unit(26, "feet"),
  51260. default: true,
  51261. form: "gigantamax"
  51262. },
  51263. {
  51264. name: "Large",
  51265. height: math.unit(78, "feet"),
  51266. form: "gigantamax"
  51267. },
  51268. ],
  51269. {
  51270. "normal": {
  51271. name: "Normal",
  51272. default: true
  51273. },
  51274. "gigantamax": {
  51275. name: "Gigantamax"
  51276. }
  51277. }
  51278. ))
  51279. characterMakers.push(() => makeCharacter(
  51280. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51281. {
  51282. anthroFront: {
  51283. height: math.unit(8, "feet"),
  51284. weight: math.unit(300, "lb"),
  51285. name: "Front",
  51286. image: {
  51287. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51288. extra: 1272/1176,
  51289. bottom: 53/1325
  51290. },
  51291. form: "anthro",
  51292. default: true
  51293. },
  51294. feralSide: {
  51295. height: math.unit(4, "feet"),
  51296. weight: math.unit(250, "lb"),
  51297. name: "Side",
  51298. image: {
  51299. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51300. extra: 731/621,
  51301. bottom: 0/731
  51302. },
  51303. form: "feral",
  51304. default: true
  51305. },
  51306. },
  51307. [
  51308. {
  51309. name: "Regular",
  51310. height: math.unit(8, "feet"),
  51311. form: "anthro"
  51312. },
  51313. {
  51314. name: "Macro",
  51315. height: math.unit(250, "feet"),
  51316. form: "anthro",
  51317. default: true
  51318. },
  51319. {
  51320. name: "Regular",
  51321. height: math.unit(4, "feet"),
  51322. form: "feral"
  51323. },
  51324. {
  51325. name: "Macro",
  51326. height: math.unit(125, "feet"),
  51327. form: "feral",
  51328. default: true
  51329. },
  51330. ],
  51331. {
  51332. "anthro": {
  51333. name: "Anthro",
  51334. default: true
  51335. },
  51336. "feral": {
  51337. name: "Feral",
  51338. },
  51339. }
  51340. ))
  51341. characterMakers.push(() => makeCharacter(
  51342. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51343. {
  51344. front: {
  51345. height: math.unit(11 + 10/12, "feet"),
  51346. weight: math.unit(1587, "kg"),
  51347. name: "Front",
  51348. image: {
  51349. source: "./media/characters/maple-javira-dragon/front.svg",
  51350. extra: 1136/744,
  51351. bottom: 73/1209
  51352. }
  51353. },
  51354. side: {
  51355. height: math.unit(11 + 10/12, "feet"),
  51356. weight: math.unit(1587, "kg"),
  51357. name: "Side",
  51358. image: {
  51359. source: "./media/characters/maple-javira-dragon/side.svg",
  51360. extra: 712/505,
  51361. bottom: 17/729
  51362. }
  51363. },
  51364. head: {
  51365. height: math.unit(8.05, "feet"),
  51366. name: "Head",
  51367. image: {
  51368. source: "./media/characters/maple-javira-dragon/head.svg",
  51369. extra: 1420/1344,
  51370. bottom: 0/1420
  51371. }
  51372. },
  51373. },
  51374. [
  51375. {
  51376. name: "Normal",
  51377. height: math.unit(11 + 10/12, "feet"),
  51378. default: true
  51379. },
  51380. ]
  51381. ))
  51382. characterMakers.push(() => makeCharacter(
  51383. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51384. {
  51385. front: {
  51386. height: math.unit(117, "cm"),
  51387. weight: math.unit(50, "kg"),
  51388. name: "Front",
  51389. image: {
  51390. source: "./media/characters/sonia-wyverntail/front.svg",
  51391. extra: 708/592,
  51392. bottom: 25/733
  51393. }
  51394. },
  51395. },
  51396. [
  51397. {
  51398. name: "Normal",
  51399. height: math.unit(117, "cm"),
  51400. default: true
  51401. },
  51402. ]
  51403. ))
  51404. characterMakers.push(() => makeCharacter(
  51405. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51406. {
  51407. front: {
  51408. height: math.unit(6 + 5/12, "feet"),
  51409. name: "Front",
  51410. image: {
  51411. source: "./media/characters/micah/front.svg",
  51412. extra: 1758/1546,
  51413. bottom: 214/1972
  51414. }
  51415. },
  51416. },
  51417. [
  51418. {
  51419. name: "Normal",
  51420. height: math.unit(6 + 5/12, "feet"),
  51421. default: true
  51422. },
  51423. ]
  51424. ))
  51425. characterMakers.push(() => makeCharacter(
  51426. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51427. {
  51428. front: {
  51429. height: math.unit(1.75, "meters"),
  51430. weight: math.unit(100, "kg"),
  51431. name: "Front",
  51432. image: {
  51433. source: "./media/characters/zarya/front.svg",
  51434. extra: 741/735,
  51435. bottom: 44/785
  51436. },
  51437. extraAttributes: {
  51438. "tailLength": {
  51439. name: "Tail Length",
  51440. power: 1,
  51441. type: "length",
  51442. base: math.unit(180, "cm")
  51443. },
  51444. "pawLength": {
  51445. name: "Paw Length",
  51446. power: 1,
  51447. type: "length",
  51448. base: math.unit(31, "cm")
  51449. },
  51450. }
  51451. },
  51452. side: {
  51453. height: math.unit(1.75, "meters"),
  51454. weight: math.unit(100, "kg"),
  51455. name: "Side",
  51456. image: {
  51457. source: "./media/characters/zarya/side.svg",
  51458. extra: 776/770,
  51459. bottom: 17/793
  51460. },
  51461. extraAttributes: {
  51462. "tailLength": {
  51463. name: "Tail Length",
  51464. power: 1,
  51465. type: "length",
  51466. base: math.unit(180, "cm")
  51467. },
  51468. "pawLength": {
  51469. name: "Paw Length",
  51470. power: 1,
  51471. type: "length",
  51472. base: math.unit(31, "cm")
  51473. },
  51474. }
  51475. },
  51476. back: {
  51477. height: math.unit(1.75, "meters"),
  51478. weight: math.unit(100, "kg"),
  51479. name: "Back",
  51480. image: {
  51481. source: "./media/characters/zarya/back.svg",
  51482. extra: 741/735,
  51483. bottom: 44/785
  51484. },
  51485. extraAttributes: {
  51486. "tailLength": {
  51487. name: "Tail Length",
  51488. power: 1,
  51489. type: "length",
  51490. base: math.unit(180, "cm")
  51491. },
  51492. "pawLength": {
  51493. name: "Paw Length",
  51494. power: 1,
  51495. type: "length",
  51496. base: math.unit(31, "cm")
  51497. },
  51498. }
  51499. },
  51500. frontNoTail: {
  51501. height: math.unit(1.75, "meters"),
  51502. weight: math.unit(100, "kg"),
  51503. name: "Front (No Tail)",
  51504. image: {
  51505. source: "./media/characters/zarya/front-no-tail.svg",
  51506. extra: 741/735,
  51507. bottom: 44/785
  51508. },
  51509. extraAttributes: {
  51510. "tailLength": {
  51511. name: "Tail Length",
  51512. power: 1,
  51513. type: "length",
  51514. base: math.unit(180, "cm")
  51515. },
  51516. "pawLength": {
  51517. name: "Paw Length",
  51518. power: 1,
  51519. type: "length",
  51520. base: math.unit(31, "cm")
  51521. },
  51522. }
  51523. },
  51524. dressed: {
  51525. height: math.unit(1.75, "meters"),
  51526. weight: math.unit(100, "kg"),
  51527. name: "Dressed",
  51528. image: {
  51529. source: "./media/characters/zarya/dressed.svg",
  51530. extra: 683/672,
  51531. bottom: 79/762
  51532. },
  51533. extraAttributes: {
  51534. "tailLength": {
  51535. name: "Tail Length",
  51536. power: 1,
  51537. type: "length",
  51538. base: math.unit(180, "cm")
  51539. },
  51540. "pawLength": {
  51541. name: "Paw Length",
  51542. power: 1,
  51543. type: "length",
  51544. base: math.unit(31, "cm")
  51545. },
  51546. }
  51547. },
  51548. },
  51549. [
  51550. {
  51551. name: "Micro",
  51552. height: math.unit(5, "cm")
  51553. },
  51554. {
  51555. name: "Normal",
  51556. height: math.unit(1.75, "meters"),
  51557. default: true
  51558. },
  51559. {
  51560. name: "Macro",
  51561. height: math.unit(122, "meters")
  51562. },
  51563. ]
  51564. ))
  51565. characterMakers.push(() => makeCharacter(
  51566. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51567. {
  51568. front: {
  51569. height: math.unit(7.5, "feet"),
  51570. name: "Front",
  51571. image: {
  51572. source: "./media/characters/sven-hatisson/front.svg",
  51573. extra: 917/857,
  51574. bottom: 42/959
  51575. }
  51576. },
  51577. back: {
  51578. height: math.unit(7.5, "feet"),
  51579. name: "Back",
  51580. image: {
  51581. source: "./media/characters/sven-hatisson/back.svg",
  51582. extra: 903/856,
  51583. bottom: 15/918
  51584. }
  51585. },
  51586. },
  51587. [
  51588. {
  51589. name: "Base Height",
  51590. height: math.unit(7.5, "feet")
  51591. },
  51592. {
  51593. name: "Usual Height",
  51594. height: math.unit(13.5, "feet"),
  51595. default: true
  51596. },
  51597. {
  51598. name: "Smaller Macro",
  51599. height: math.unit(85, "feet")
  51600. },
  51601. {
  51602. name: "Moderate Macro",
  51603. height: math.unit(320, "feet")
  51604. },
  51605. {
  51606. name: "Large Macro",
  51607. height: math.unit(1000, "feet")
  51608. },
  51609. {
  51610. name: "Largest Size",
  51611. height: math.unit(2, "miles")
  51612. },
  51613. ]
  51614. ))
  51615. characterMakers.push(() => makeCharacter(
  51616. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51617. {
  51618. side: {
  51619. height: math.unit(1.8, "meters"),
  51620. weight: math.unit(275, "kg"),
  51621. name: "Side",
  51622. image: {
  51623. source: "./media/characters/terra/side.svg",
  51624. extra: 1273/1147,
  51625. bottom: 0/1273
  51626. }
  51627. },
  51628. },
  51629. [
  51630. {
  51631. name: "Normal",
  51632. height: math.unit(16.2, "meters"),
  51633. default: true
  51634. },
  51635. ]
  51636. ))
  51637. characterMakers.push(() => makeCharacter(
  51638. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51639. {
  51640. borzoiFront: {
  51641. height: math.unit(6 + 9/12, "feet"),
  51642. name: "Front",
  51643. image: {
  51644. source: "./media/characters/rae/borzoi-front.svg",
  51645. extra: 1161/1098,
  51646. bottom: 31/1192
  51647. },
  51648. form: "borzoi",
  51649. default: true
  51650. },
  51651. werewolfFront: {
  51652. height: math.unit(8 + 7/12, "feet"),
  51653. name: "Front",
  51654. image: {
  51655. source: "./media/characters/rae/werewolf-front.svg",
  51656. extra: 1411/1334,
  51657. bottom: 127/1538
  51658. },
  51659. form: "werewolf",
  51660. default: true
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Normal",
  51666. height: math.unit(6 + 9/12, "feet"),
  51667. default: true,
  51668. form: "borzoi"
  51669. },
  51670. {
  51671. name: "Normal",
  51672. height: math.unit(8 + 7/12, "feet"),
  51673. default: true,
  51674. form: "werewolf"
  51675. },
  51676. ],
  51677. {
  51678. "borzoi": {
  51679. name: "Borzoi",
  51680. default: true
  51681. },
  51682. "werewolf": {
  51683. name: "Werewolf",
  51684. },
  51685. }
  51686. ))
  51687. characterMakers.push(() => makeCharacter(
  51688. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51689. {
  51690. front: {
  51691. height: math.unit(8 + 7/12, "feet"),
  51692. weight: math.unit(482, "lb"),
  51693. name: "Front",
  51694. image: {
  51695. source: "./media/characters/kit/front.svg",
  51696. extra: 1247/1103,
  51697. bottom: 41/1288
  51698. }
  51699. },
  51700. back: {
  51701. height: math.unit(8 + 7/12, "feet"),
  51702. weight: math.unit(482, "lb"),
  51703. name: "Back",
  51704. image: {
  51705. source: "./media/characters/kit/back.svg",
  51706. extra: 1252/1123,
  51707. bottom: 21/1273
  51708. }
  51709. },
  51710. paw: {
  51711. height: math.unit(1.46, "feet"),
  51712. name: "Paw",
  51713. image: {
  51714. source: "./media/characters/kit/paw.svg"
  51715. }
  51716. },
  51717. },
  51718. [
  51719. {
  51720. name: "Normal",
  51721. height: math.unit(2.61, "meters"),
  51722. default: true
  51723. },
  51724. {
  51725. name: "\"Tall\"",
  51726. height: math.unit(8.21, "meters")
  51727. },
  51728. {
  51729. name: "Tall",
  51730. height: math.unit(19.6, "meters")
  51731. },
  51732. {
  51733. name: "Very Tall",
  51734. height: math.unit(57.91, "meters")
  51735. },
  51736. {
  51737. name: "Semi-Macro",
  51738. height: math.unit(138.64, "meters")
  51739. },
  51740. {
  51741. name: "Macro",
  51742. height: math.unit(831.99, "meters")
  51743. },
  51744. {
  51745. name: "EX-Macro",
  51746. height: math.unit(96451121, "meters")
  51747. },
  51748. {
  51749. name: "S1-Omnipotent",
  51750. height: math.unit(4.42074e+9, "meters")
  51751. },
  51752. {
  51753. name: "S2-Omnipotent",
  51754. height: math.unit(9.42074e+17, "meters")
  51755. },
  51756. {
  51757. name: "Omnipotent",
  51758. height: math.unit(4.23112e+24, "meters")
  51759. },
  51760. {
  51761. name: "Hypergod",
  51762. height: math.unit(5.05176e+27, "meters")
  51763. },
  51764. {
  51765. name: "Hypergod-EX",
  51766. height: math.unit(9.45532e+49, "meters")
  51767. },
  51768. {
  51769. name: "Hypergod-SP",
  51770. height: math.unit(9.45532e+195, "meters")
  51771. },
  51772. ]
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51776. {
  51777. side: {
  51778. height: math.unit(0.6, "meters"),
  51779. weight: math.unit(24, "kg"),
  51780. name: "Side",
  51781. image: {
  51782. source: "./media/characters/celeste/side.svg",
  51783. extra: 810/517,
  51784. bottom: 53/863
  51785. }
  51786. },
  51787. },
  51788. [
  51789. {
  51790. name: "Velociraptor",
  51791. height: math.unit(0.6, "meters"),
  51792. default: true
  51793. },
  51794. {
  51795. name: "Utahraptor",
  51796. height: math.unit(1.8, "meters")
  51797. },
  51798. {
  51799. name: "Gallimimus",
  51800. height: math.unit(4.0, "meters")
  51801. },
  51802. {
  51803. name: "Large",
  51804. height: math.unit(20, "meters")
  51805. },
  51806. {
  51807. name: "Planetary",
  51808. height: math.unit(50, "megameters")
  51809. },
  51810. {
  51811. name: "Stellar",
  51812. height: math.unit(1.5, "gigameters")
  51813. },
  51814. {
  51815. name: "Galactic",
  51816. height: math.unit(100, "exameters")
  51817. },
  51818. ]
  51819. ))
  51820. characterMakers.push(() => makeCharacter(
  51821. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51822. {
  51823. front: {
  51824. height: math.unit(6, "feet"),
  51825. weight: math.unit(210, "lb"),
  51826. name: "Front",
  51827. image: {
  51828. source: "./media/characters/glacia/front.svg",
  51829. extra: 958/901,
  51830. bottom: 45/1003
  51831. }
  51832. },
  51833. },
  51834. [
  51835. {
  51836. name: "Macro",
  51837. height: math.unit(1000, "meters"),
  51838. default: true
  51839. },
  51840. ]
  51841. ))
  51842. characterMakers.push(() => makeCharacter(
  51843. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51844. {
  51845. front: {
  51846. height: math.unit(4, "meters"),
  51847. name: "Front",
  51848. image: {
  51849. source: "./media/characters/giri/front.svg",
  51850. extra: 966/894,
  51851. bottom: 21/987
  51852. }
  51853. },
  51854. },
  51855. [
  51856. {
  51857. name: "Normal",
  51858. height: math.unit(4, "meters"),
  51859. default: true
  51860. },
  51861. ]
  51862. ))
  51863. characterMakers.push(() => makeCharacter(
  51864. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51865. {
  51866. back: {
  51867. height: math.unit(4, "feet"),
  51868. weight: math.unit(37, "lb"),
  51869. name: "Back",
  51870. image: {
  51871. source: "./media/characters/tin/back.svg",
  51872. extra: 845/780,
  51873. bottom: 28/873
  51874. }
  51875. },
  51876. },
  51877. [
  51878. {
  51879. name: "Normal",
  51880. height: math.unit(4, "feet"),
  51881. default: true
  51882. },
  51883. ]
  51884. ))
  51885. characterMakers.push(() => makeCharacter(
  51886. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51887. {
  51888. front: {
  51889. height: math.unit(25, "feet"),
  51890. name: "Front",
  51891. image: {
  51892. source: "./media/characters/cadenza-vivace/front.svg",
  51893. extra: 1842/1578,
  51894. bottom: 30/1872
  51895. }
  51896. },
  51897. },
  51898. [
  51899. {
  51900. name: "Macro",
  51901. height: math.unit(25, "feet"),
  51902. default: true
  51903. },
  51904. ]
  51905. ))
  51906. characterMakers.push(() => makeCharacter(
  51907. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51908. {
  51909. front: {
  51910. height: math.unit(10, "feet"),
  51911. weight: math.unit(625, "kg"),
  51912. name: "Front",
  51913. image: {
  51914. source: "./media/characters/zain/front.svg",
  51915. extra: 1682/1498,
  51916. bottom: 223/1905
  51917. }
  51918. },
  51919. back: {
  51920. height: math.unit(10, "feet"),
  51921. weight: math.unit(625, "kg"),
  51922. name: "Back",
  51923. image: {
  51924. source: "./media/characters/zain/back.svg",
  51925. extra: 1814/1657,
  51926. bottom: 152/1966
  51927. }
  51928. },
  51929. head: {
  51930. height: math.unit(10, "feet"),
  51931. weight: math.unit(625, "kg"),
  51932. name: "Head",
  51933. image: {
  51934. source: "./media/characters/zain/head.svg",
  51935. extra: 1059/762,
  51936. bottom: 0/1059
  51937. }
  51938. },
  51939. },
  51940. [
  51941. {
  51942. name: "Normal",
  51943. height: math.unit(10, "feet"),
  51944. default: true
  51945. },
  51946. ]
  51947. ))
  51948. characterMakers.push(() => makeCharacter(
  51949. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51950. {
  51951. front: {
  51952. height: math.unit(6 + 5/12, "feet"),
  51953. weight: math.unit(750, "lb"),
  51954. name: "Front",
  51955. image: {
  51956. source: "./media/characters/ruchex/front.svg",
  51957. extra: 877/820,
  51958. bottom: 17/894
  51959. },
  51960. extraAttributes: {
  51961. "width": {
  51962. name: "Width",
  51963. power: 1,
  51964. type: "length",
  51965. base: math.unit(4.757, "feet")
  51966. },
  51967. }
  51968. },
  51969. },
  51970. [
  51971. {
  51972. name: "Normal",
  51973. height: math.unit(6 + 5/12, "feet"),
  51974. default: true
  51975. },
  51976. ]
  51977. ))
  51978. characterMakers.push(() => makeCharacter(
  51979. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51980. {
  51981. dressedFront: {
  51982. height: math.unit(191, "cm"),
  51983. weight: math.unit(80, "kg"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/buster/dressed-front.svg",
  51987. extra: 1022/973,
  51988. bottom: 69/1091
  51989. }
  51990. },
  51991. dressedBack: {
  51992. height: math.unit(191, "cm"),
  51993. weight: math.unit(80, "kg"),
  51994. name: "Back",
  51995. image: {
  51996. source: "./media/characters/buster/dressed-back.svg",
  51997. extra: 1018/970,
  51998. bottom: 55/1073
  51999. }
  52000. },
  52001. nudeFront: {
  52002. height: math.unit(191, "cm"),
  52003. weight: math.unit(80, "kg"),
  52004. name: "Front (Nude)",
  52005. image: {
  52006. source: "./media/characters/buster/nude-front.svg",
  52007. extra: 1022/973,
  52008. bottom: 69/1091
  52009. }
  52010. },
  52011. nudeBack: {
  52012. height: math.unit(191, "cm"),
  52013. weight: math.unit(80, "kg"),
  52014. name: "Back (Nude)",
  52015. image: {
  52016. source: "./media/characters/buster/nude-back.svg",
  52017. extra: 1018/970,
  52018. bottom: 55/1073
  52019. }
  52020. },
  52021. dick: {
  52022. height: math.unit(2.59, "feet"),
  52023. name: "Dick",
  52024. image: {
  52025. source: "./media/characters/buster/dick.svg"
  52026. }
  52027. },
  52028. ass: {
  52029. height: math.unit(1.2, "feet"),
  52030. name: "Ass",
  52031. image: {
  52032. source: "./media/characters/buster/ass.svg"
  52033. }
  52034. },
  52035. },
  52036. [
  52037. {
  52038. name: "Normal",
  52039. height: math.unit(191, "cm"),
  52040. default: true
  52041. },
  52042. ]
  52043. ))
  52044. characterMakers.push(() => makeCharacter(
  52045. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52046. {
  52047. side: {
  52048. height: math.unit(8.1, "feet"),
  52049. weight: math.unit(3500, "lb"),
  52050. name: "Side",
  52051. image: {
  52052. source: "./media/characters/sonya/side.svg",
  52053. extra: 1730/1317,
  52054. bottom: 86/1816
  52055. }
  52056. },
  52057. },
  52058. [
  52059. {
  52060. name: "Normal",
  52061. height: math.unit(8.1, "feet"),
  52062. default: true
  52063. },
  52064. ]
  52065. ))
  52066. characterMakers.push(() => makeCharacter(
  52067. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52068. {
  52069. front: {
  52070. height: math.unit(6, "feet"),
  52071. weight: math.unit(150, "lb"),
  52072. name: "Front",
  52073. image: {
  52074. source: "./media/characters/cadence-andrysiak/front.svg",
  52075. extra: 1164/1121,
  52076. bottom: 60/1224
  52077. }
  52078. },
  52079. back: {
  52080. height: math.unit(6, "feet"),
  52081. weight: math.unit(150, "lb"),
  52082. name: "Back",
  52083. image: {
  52084. source: "./media/characters/cadence-andrysiak/back.svg",
  52085. extra: 1200/1165,
  52086. bottom: 9/1209
  52087. }
  52088. },
  52089. dressed: {
  52090. height: math.unit(6, "feet"),
  52091. weight: math.unit(150, "lb"),
  52092. name: "Dressed",
  52093. image: {
  52094. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52095. extra: 1164/1121,
  52096. bottom: 60/1224
  52097. }
  52098. },
  52099. },
  52100. [
  52101. {
  52102. name: "Micro",
  52103. height: math.unit(1, "mm")
  52104. },
  52105. {
  52106. name: "Normal",
  52107. height: math.unit(6, "feet"),
  52108. default: true
  52109. },
  52110. ]
  52111. ))
  52112. characterMakers.push(() => makeCharacter(
  52113. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52114. {
  52115. front: {
  52116. height: math.unit(60, "inches"),
  52117. weight: math.unit(16, "lb"),
  52118. preyCapacity: math.unit(80, "liters"),
  52119. name: "Front",
  52120. image: {
  52121. source: "./media/characters/penny-lynx/front.svg",
  52122. extra: 1959/1769,
  52123. bottom: 49/2008
  52124. }
  52125. },
  52126. },
  52127. [
  52128. {
  52129. name: "Nokia",
  52130. height: math.unit(2, "inches")
  52131. },
  52132. {
  52133. name: "Desktop",
  52134. height: math.unit(24, "inches")
  52135. },
  52136. {
  52137. name: "TV",
  52138. height: math.unit(60, "inches")
  52139. },
  52140. {
  52141. name: "Jumbotron",
  52142. height: math.unit(12, "feet")
  52143. },
  52144. {
  52145. name: "Billboard",
  52146. height: math.unit(48, "feet"),
  52147. default: true
  52148. },
  52149. {
  52150. name: "IMAX",
  52151. height: math.unit(96, "feet")
  52152. },
  52153. {
  52154. name: "SINGULARITY",
  52155. height: math.unit(864938, "miles")
  52156. },
  52157. ]
  52158. ))
  52159. characterMakers.push(() => makeCharacter(
  52160. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52161. {
  52162. front: {
  52163. height: math.unit(5 + 4/12, "feet"),
  52164. weight: math.unit(230, "lb"),
  52165. name: "Front",
  52166. image: {
  52167. source: "./media/characters/sukebe/front.svg",
  52168. extra: 2130/2038,
  52169. bottom: 90/2220
  52170. }
  52171. },
  52172. back: {
  52173. height: math.unit(3.48, "feet"),
  52174. weight: math.unit(230, "lb"),
  52175. name: "Back",
  52176. image: {
  52177. source: "./media/characters/sukebe/back.svg",
  52178. extra: 1670/1604,
  52179. bottom: 0/1670
  52180. }
  52181. },
  52182. },
  52183. [
  52184. {
  52185. name: "Normal",
  52186. height: math.unit(5 + 4/12, "feet"),
  52187. default: true
  52188. },
  52189. ]
  52190. ))
  52191. characterMakers.push(() => makeCharacter(
  52192. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52193. {
  52194. front: {
  52195. height: math.unit(6, "feet"),
  52196. name: "Front",
  52197. image: {
  52198. source: "./media/characters/nylla/front.svg",
  52199. extra: 1868/1699,
  52200. bottom: 97/1965
  52201. }
  52202. },
  52203. back: {
  52204. height: math.unit(6, "feet"),
  52205. name: "Back",
  52206. image: {
  52207. source: "./media/characters/nylla/back.svg",
  52208. extra: 1889/1712,
  52209. bottom: 93/1982
  52210. }
  52211. },
  52212. frontNsfw: {
  52213. height: math.unit(6, "feet"),
  52214. name: "Front (NSFW)",
  52215. image: {
  52216. source: "./media/characters/nylla/front-nsfw.svg",
  52217. extra: 1868/1699,
  52218. bottom: 97/1965
  52219. },
  52220. extraAttributes: {
  52221. "dickLength": {
  52222. name: "Dick Length",
  52223. power: 1,
  52224. type: "length",
  52225. base: math.unit(1.4, "feet")
  52226. },
  52227. "cumVolume": {
  52228. name: "Cum Volume",
  52229. power: 3,
  52230. type: "volume",
  52231. base: math.unit(100, "mL")
  52232. },
  52233. }
  52234. },
  52235. backNsfw: {
  52236. height: math.unit(6, "feet"),
  52237. name: "Back (NSFW)",
  52238. image: {
  52239. source: "./media/characters/nylla/back-nsfw.svg",
  52240. extra: 1889/1712,
  52241. bottom: 93/1982
  52242. }
  52243. },
  52244. maw: {
  52245. height: math.unit(2.10, "feet"),
  52246. name: "Maw",
  52247. image: {
  52248. source: "./media/characters/nylla/maw.svg"
  52249. }
  52250. },
  52251. paws: {
  52252. height: math.unit(2.06, "feet"),
  52253. name: "Paws",
  52254. image: {
  52255. source: "./media/characters/nylla/paws.svg"
  52256. }
  52257. },
  52258. muzzle: {
  52259. height: math.unit(0.61, "feet"),
  52260. name: "Muzzle",
  52261. image: {
  52262. source: "./media/characters/nylla/muzzle.svg"
  52263. }
  52264. },
  52265. sheath: {
  52266. height: math.unit(1.305, "feet"),
  52267. name: "Sheath",
  52268. image: {
  52269. source: "./media/characters/nylla/sheath.svg"
  52270. }
  52271. },
  52272. },
  52273. [
  52274. {
  52275. name: "Micro",
  52276. height: math.unit(7.5, "inches")
  52277. },
  52278. {
  52279. name: "Normal",
  52280. height: math.unit(7, "feet"),
  52281. default: true
  52282. },
  52283. {
  52284. name: "Macro",
  52285. height: math.unit(60, "feet")
  52286. },
  52287. {
  52288. name: "Mega",
  52289. height: math.unit(200, "feet")
  52290. },
  52291. ]
  52292. ))
  52293. characterMakers.push(() => makeCharacter(
  52294. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52295. {
  52296. front: {
  52297. height: math.unit(10, "feet"),
  52298. weight: math.unit(2300, "lb"),
  52299. name: "Front",
  52300. image: {
  52301. source: "./media/characters/hunt3r/front.svg",
  52302. extra: 1909/1742,
  52303. bottom: 46/1955
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Normal",
  52310. height: math.unit(10, "feet"),
  52311. default: true
  52312. },
  52313. ]
  52314. ))
  52315. characterMakers.push(() => makeCharacter(
  52316. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52317. {
  52318. dressed: {
  52319. height: math.unit(11, "feet"),
  52320. weight: math.unit(18500, "lb"),
  52321. preyCapacity: math.unit(9, "people"),
  52322. name: "Dressed",
  52323. image: {
  52324. source: "./media/characters/cylphis/dressed.svg",
  52325. extra: 1028/1003,
  52326. bottom: 75/1103
  52327. },
  52328. },
  52329. undressed: {
  52330. height: math.unit(11, "feet"),
  52331. weight: math.unit(18500, "lb"),
  52332. preyCapacity: math.unit(9, "people"),
  52333. name: "Undressed",
  52334. image: {
  52335. source: "./media/characters/cylphis/undressed.svg",
  52336. extra: 1028/1003,
  52337. bottom: 75/1103
  52338. }
  52339. },
  52340. full: {
  52341. height: math.unit(11, "feet"),
  52342. weight: math.unit(18500 + 150*9, "lb"),
  52343. preyCapacity: math.unit(9, "people"),
  52344. name: "Full",
  52345. image: {
  52346. source: "./media/characters/cylphis/full.svg",
  52347. extra: 1028/1003,
  52348. bottom: 75/1103
  52349. }
  52350. },
  52351. },
  52352. [
  52353. {
  52354. name: "Small",
  52355. height: math.unit(8, "feet")
  52356. },
  52357. {
  52358. name: "Normal",
  52359. height: math.unit(11, "feet"),
  52360. default: true
  52361. },
  52362. ]
  52363. ))
  52364. characterMakers.push(() => makeCharacter(
  52365. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52366. {
  52367. front: {
  52368. height: math.unit(2 + 7/12, "feet"),
  52369. name: "Front",
  52370. image: {
  52371. source: "./media/characters/orishan/front.svg",
  52372. extra: 1058/1023,
  52373. bottom: 23/1081
  52374. }
  52375. },
  52376. back: {
  52377. height: math.unit(2 + 7/12, "feet"),
  52378. name: "Back",
  52379. image: {
  52380. source: "./media/characters/orishan/back.svg",
  52381. extra: 1058/1023,
  52382. bottom: 23/1081
  52383. }
  52384. },
  52385. },
  52386. [
  52387. {
  52388. name: "Micro",
  52389. height: math.unit(2, "cm")
  52390. },
  52391. {
  52392. name: "Normal",
  52393. height: math.unit(2 + 7/12, "feet"),
  52394. default: true
  52395. },
  52396. ]
  52397. ))
  52398. characterMakers.push(() => makeCharacter(
  52399. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52400. {
  52401. front: {
  52402. height: math.unit(3, "meters"),
  52403. weight: math.unit(508, "kg"),
  52404. name: "Front",
  52405. image: {
  52406. source: "./media/characters/seranis/front.svg",
  52407. extra: 1478/1454,
  52408. bottom: 41/1519
  52409. }
  52410. },
  52411. },
  52412. [
  52413. {
  52414. name: "Normal",
  52415. height: math.unit(3, "meters"),
  52416. default: true
  52417. },
  52418. {
  52419. name: "Macro",
  52420. height: math.unit(108, "meters")
  52421. },
  52422. {
  52423. name: "Megamacro",
  52424. height: math.unit(1250, "meters")
  52425. },
  52426. ]
  52427. ))
  52428. characterMakers.push(() => makeCharacter(
  52429. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52430. {
  52431. undressed: {
  52432. height: math.unit(5 + 3/12, "feet"),
  52433. name: "Undressed",
  52434. image: {
  52435. source: "./media/characters/ankou/undressed.svg",
  52436. extra: 1301/1213,
  52437. bottom: 87/1388
  52438. }
  52439. },
  52440. dressed: {
  52441. height: math.unit(5 + 3/12, "feet"),
  52442. name: "Dressed",
  52443. image: {
  52444. source: "./media/characters/ankou/dressed.svg",
  52445. extra: 1301/1213,
  52446. bottom: 87/1388
  52447. }
  52448. },
  52449. head: {
  52450. height: math.unit(1.61, "feet"),
  52451. name: "Head",
  52452. image: {
  52453. source: "./media/characters/ankou/head.svg"
  52454. }
  52455. },
  52456. },
  52457. [
  52458. {
  52459. name: "Normal",
  52460. height: math.unit(5 + 3/12, "feet"),
  52461. default: true
  52462. },
  52463. ]
  52464. ))
  52465. characterMakers.push(() => makeCharacter(
  52466. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52467. {
  52468. side: {
  52469. height: math.unit(6 + 3/12, "feet"),
  52470. weight: math.unit(200, "kg"),
  52471. name: "Side",
  52472. image: {
  52473. source: "./media/characters/juniper-skunktaur/side.svg",
  52474. extra: 1574/1229,
  52475. bottom: 38/1612
  52476. }
  52477. },
  52478. front: {
  52479. height: math.unit(6 + 3/12, "feet"),
  52480. weight: math.unit(200, "kg"),
  52481. name: "Front",
  52482. image: {
  52483. source: "./media/characters/juniper-skunktaur/front.svg",
  52484. extra: 1337/1278,
  52485. bottom: 22/1359
  52486. }
  52487. },
  52488. back: {
  52489. height: math.unit(6 + 3/12, "feet"),
  52490. weight: math.unit(200, "kg"),
  52491. name: "Back",
  52492. image: {
  52493. source: "./media/characters/juniper-skunktaur/back.svg",
  52494. extra: 1618/1273,
  52495. bottom: 13/1631
  52496. }
  52497. },
  52498. top: {
  52499. height: math.unit(2.62, "feet"),
  52500. weight: math.unit(200, "kg"),
  52501. name: "Top",
  52502. image: {
  52503. source: "./media/characters/juniper-skunktaur/top.svg"
  52504. }
  52505. },
  52506. },
  52507. [
  52508. {
  52509. name: "Normal",
  52510. height: math.unit(6 + 3/12, "feet"),
  52511. default: true
  52512. },
  52513. ]
  52514. ))
  52515. characterMakers.push(() => makeCharacter(
  52516. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52517. {
  52518. front: {
  52519. height: math.unit(20.5, "feet"),
  52520. name: "Front",
  52521. image: {
  52522. source: "./media/characters/rei/front.svg",
  52523. extra: 1349/1195,
  52524. bottom: 31/1380
  52525. }
  52526. },
  52527. back: {
  52528. height: math.unit(20.5, "feet"),
  52529. name: "Back",
  52530. image: {
  52531. source: "./media/characters/rei/back.svg",
  52532. extra: 1358/1204,
  52533. bottom: 22/1380
  52534. }
  52535. },
  52536. pawsDigi: {
  52537. height: math.unit(3.45, "feet"),
  52538. name: "Paws (Digi)",
  52539. image: {
  52540. source: "./media/characters/rei/paws-digi.svg"
  52541. }
  52542. },
  52543. pawsPlanti: {
  52544. height: math.unit(3.45, "feet"),
  52545. name: "Paws (Planti)",
  52546. image: {
  52547. source: "./media/characters/rei/paws-planti.svg"
  52548. }
  52549. },
  52550. },
  52551. [
  52552. {
  52553. name: "Normal",
  52554. height: math.unit(20.5, "feet"),
  52555. default: true
  52556. },
  52557. ]
  52558. ))
  52559. characterMakers.push(() => makeCharacter(
  52560. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52561. {
  52562. front: {
  52563. height: math.unit(5 + 11/12, "feet"),
  52564. name: "Front",
  52565. image: {
  52566. source: "./media/characters/carina/front.svg",
  52567. extra: 1720/1449,
  52568. bottom: 14/1734
  52569. }
  52570. },
  52571. back: {
  52572. height: math.unit(5 + 11/12, "feet"),
  52573. name: "Back",
  52574. image: {
  52575. source: "./media/characters/carina/back.svg",
  52576. extra: 1493/1445,
  52577. bottom: 17/1510
  52578. }
  52579. },
  52580. paw: {
  52581. height: math.unit(0.92, "feet"),
  52582. name: "Paw",
  52583. image: {
  52584. source: "./media/characters/carina/paw.svg"
  52585. }
  52586. },
  52587. },
  52588. [
  52589. {
  52590. name: "Normal",
  52591. height: math.unit(5 + 11/12, "feet"),
  52592. default: true
  52593. },
  52594. ]
  52595. ))
  52596. characterMakers.push(() => makeCharacter(
  52597. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52598. {
  52599. normal_front: {
  52600. height: math.unit(4.88, "meters"),
  52601. name: "Front",
  52602. image: {
  52603. source: "./media/characters/maya/normal-front.svg",
  52604. extra: 1222/1145,
  52605. bottom: 57/1279
  52606. },
  52607. form: "normal",
  52608. default: true
  52609. },
  52610. monstrous_front: {
  52611. height: math.unit(10, "meters"),
  52612. name: "Front",
  52613. image: {
  52614. source: "./media/characters/maya/monstrous-front.svg",
  52615. extra: 1523/1109,
  52616. bottom: 113/1636
  52617. },
  52618. form: "monstrous",
  52619. extraAttributes: {
  52620. "swallowSize": {
  52621. name: "Tailmaw Bite Size",
  52622. power: 3,
  52623. type: "volume",
  52624. base: math.unit(43000, "liters")
  52625. },
  52626. }
  52627. },
  52628. taur_front: {
  52629. height: math.unit(10, "meters"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/maya/taur-front.svg",
  52633. extra: 743/506,
  52634. bottom: 101/844
  52635. },
  52636. form: "taur",
  52637. },
  52638. },
  52639. [
  52640. {
  52641. name: "Normal",
  52642. height: math.unit(4.88, "meters"),
  52643. default: true,
  52644. form: "normal"
  52645. },
  52646. {
  52647. name: "Macro",
  52648. height: math.unit(38.1, "meters"),
  52649. form: "normal"
  52650. },
  52651. {
  52652. name: "Macro+",
  52653. height: math.unit(152.4, "meters"),
  52654. form: "normal"
  52655. },
  52656. {
  52657. name: "Macro++",
  52658. height: math.unit(16.09, "km"),
  52659. form: "normal"
  52660. },
  52661. {
  52662. name: "Mega-macro",
  52663. height: math.unit(700, "megameters"),
  52664. form: "normal"
  52665. },
  52666. {
  52667. name: "Satiated",
  52668. height: math.unit(10, "meters"),
  52669. default: true,
  52670. form: "monstrous"
  52671. },
  52672. {
  52673. name: "Hungry",
  52674. height: math.unit(75, "meters"),
  52675. form: "monstrous"
  52676. },
  52677. {
  52678. name: "Ravenous",
  52679. height: math.unit(500, "meters"),
  52680. form: "monstrous"
  52681. },
  52682. {
  52683. name: "\"Normal\"",
  52684. height: math.unit(10, "meters"),
  52685. form: "taur"
  52686. },
  52687. {
  52688. name: "Macro",
  52689. height: math.unit(50, "meters"),
  52690. form: "taur"
  52691. },
  52692. ],
  52693. {
  52694. "normal": {
  52695. name: "Normal",
  52696. default: true
  52697. },
  52698. "monstrous": {
  52699. name: "Monstrous",
  52700. },
  52701. "taur": {
  52702. name: "Taur",
  52703. },
  52704. }
  52705. ))
  52706. characterMakers.push(() => makeCharacter(
  52707. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52708. {
  52709. front: {
  52710. height: math.unit(6 + 2/12, "feet"),
  52711. weight: math.unit(500, "lb"),
  52712. preyCapacity: math.unit(4, "people"),
  52713. name: "Front",
  52714. image: {
  52715. source: "./media/characters/yepir/front.svg"
  52716. }
  52717. },
  52718. side: {
  52719. height: math.unit(6 + 2/12, "feet"),
  52720. weight: math.unit(500, "lb"),
  52721. preyCapacity: math.unit(4, "people"),
  52722. name: "Side",
  52723. image: {
  52724. source: "./media/characters/yepir/side.svg"
  52725. }
  52726. },
  52727. paw: {
  52728. height: math.unit(1.05, "feet"),
  52729. name: "Paw",
  52730. image: {
  52731. source: "./media/characters/yepir/paw.svg"
  52732. }
  52733. },
  52734. },
  52735. [
  52736. {
  52737. name: "Normal",
  52738. height: math.unit(6 + 2/12, "feet"),
  52739. default: true
  52740. },
  52741. ]
  52742. ))
  52743. characterMakers.push(() => makeCharacter(
  52744. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52745. {
  52746. front: {
  52747. height: math.unit(5 + 4/12, "feet"),
  52748. name: "Front",
  52749. image: {
  52750. source: "./media/characters/russec/front.svg",
  52751. extra: 1926/1626,
  52752. bottom: 72/1998
  52753. }
  52754. },
  52755. back: {
  52756. height: math.unit(5 + 4/12, "feet"),
  52757. name: "Back",
  52758. image: {
  52759. source: "./media/characters/russec/back.svg",
  52760. extra: 1910/1591,
  52761. bottom: 48/1958
  52762. }
  52763. },
  52764. },
  52765. [
  52766. {
  52767. name: "Small",
  52768. height: math.unit(5 + 4/12, "feet")
  52769. },
  52770. {
  52771. name: "Normal",
  52772. height: math.unit(72, "feet"),
  52773. default: true
  52774. },
  52775. ]
  52776. ))
  52777. characterMakers.push(() => makeCharacter(
  52778. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52779. {
  52780. side: {
  52781. height: math.unit(12, "feet"),
  52782. name: "Side",
  52783. image: {
  52784. source: "./media/characters/cianus/side.svg",
  52785. extra: 808/526,
  52786. bottom: 61/869
  52787. }
  52788. },
  52789. },
  52790. [
  52791. {
  52792. name: "Normal",
  52793. height: math.unit(12, "feet"),
  52794. default: true
  52795. },
  52796. ]
  52797. ))
  52798. characterMakers.push(() => makeCharacter(
  52799. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52800. {
  52801. front: {
  52802. height: math.unit(9 + 6/12, "feet"),
  52803. weight: math.unit(300, "lb"),
  52804. name: "Front",
  52805. image: {
  52806. source: "./media/characters/ahab/front.svg",
  52807. extra: 1897/1868,
  52808. bottom: 121/2018
  52809. }
  52810. },
  52811. frontNsfw: {
  52812. height: math.unit(9 + 6/12, "feet"),
  52813. weight: math.unit(300, "lb"),
  52814. name: "Front-nsfw",
  52815. image: {
  52816. source: "./media/characters/ahab/front-nsfw.svg",
  52817. extra: 1897/1868,
  52818. bottom: 121/2018
  52819. }
  52820. },
  52821. },
  52822. [
  52823. {
  52824. name: "Normal",
  52825. height: math.unit(9 + 6/12, "feet")
  52826. },
  52827. {
  52828. name: "Macro",
  52829. height: math.unit(657, "feet"),
  52830. default: true
  52831. },
  52832. ]
  52833. ))
  52834. characterMakers.push(() => makeCharacter(
  52835. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52836. {
  52837. front: {
  52838. height: math.unit(2.69, "meters"),
  52839. weight: math.unit(132, "kg"),
  52840. name: "Front",
  52841. image: {
  52842. source: "./media/characters/aarkus/front.svg",
  52843. extra: 1400/1231,
  52844. bottom: 34/1434
  52845. }
  52846. },
  52847. back: {
  52848. height: math.unit(2.69, "meters"),
  52849. weight: math.unit(132, "kg"),
  52850. name: "Back",
  52851. image: {
  52852. source: "./media/characters/aarkus/back.svg",
  52853. extra: 1381/1218,
  52854. bottom: 30/1411
  52855. }
  52856. },
  52857. frontNsfw: {
  52858. height: math.unit(2.69, "meters"),
  52859. weight: math.unit(132, "kg"),
  52860. name: "Front (NSFW)",
  52861. image: {
  52862. source: "./media/characters/aarkus/front-nsfw.svg",
  52863. extra: 1400/1231,
  52864. bottom: 34/1434
  52865. }
  52866. },
  52867. foot: {
  52868. height: math.unit(1.45, "feet"),
  52869. name: "Foot",
  52870. image: {
  52871. source: "./media/characters/aarkus/foot.svg"
  52872. }
  52873. },
  52874. head: {
  52875. height: math.unit(2.85, "feet"),
  52876. name: "Head",
  52877. image: {
  52878. source: "./media/characters/aarkus/head.svg"
  52879. }
  52880. },
  52881. headAlt: {
  52882. height: math.unit(3.07, "feet"),
  52883. name: "Head (Alt)",
  52884. image: {
  52885. source: "./media/characters/aarkus/head-alt.svg"
  52886. }
  52887. },
  52888. mouth: {
  52889. height: math.unit(1.25, "feet"),
  52890. name: "Mouth",
  52891. image: {
  52892. source: "./media/characters/aarkus/mouth.svg"
  52893. }
  52894. },
  52895. dick: {
  52896. height: math.unit(1.77, "feet"),
  52897. name: "Dick",
  52898. image: {
  52899. source: "./media/characters/aarkus/dick.svg"
  52900. }
  52901. },
  52902. },
  52903. [
  52904. {
  52905. name: "Normal",
  52906. height: math.unit(2.69, "meters"),
  52907. default: true
  52908. },
  52909. {
  52910. name: "Macro",
  52911. height: math.unit(269, "meters")
  52912. },
  52913. {
  52914. name: "Macro+",
  52915. height: math.unit(672.5, "meters")
  52916. },
  52917. {
  52918. name: "Megamacro",
  52919. height: math.unit(2.017, "km")
  52920. },
  52921. ]
  52922. ))
  52923. characterMakers.push(() => makeCharacter(
  52924. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52925. {
  52926. front: {
  52927. height: math.unit(23.47, "cm"),
  52928. weight: math.unit(600, "grams"),
  52929. name: "Front",
  52930. image: {
  52931. source: "./media/characters/diode/front.svg",
  52932. extra: 1778/1396,
  52933. bottom: 95/1873
  52934. }
  52935. },
  52936. side: {
  52937. height: math.unit(23.47, "cm"),
  52938. weight: math.unit(600, "grams"),
  52939. name: "Side",
  52940. image: {
  52941. source: "./media/characters/diode/side.svg",
  52942. extra: 1831/1404,
  52943. bottom: 86/1917
  52944. }
  52945. },
  52946. wings: {
  52947. height: math.unit(0.683, "feet"),
  52948. name: "Wings",
  52949. image: {
  52950. source: "./media/characters/diode/wings.svg"
  52951. }
  52952. },
  52953. },
  52954. [
  52955. {
  52956. name: "Normal",
  52957. height: math.unit(23.47, "cm"),
  52958. default: true
  52959. },
  52960. ]
  52961. ))
  52962. characterMakers.push(() => makeCharacter(
  52963. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52964. {
  52965. front: {
  52966. height: math.unit(6 + 3/12, "feet"),
  52967. weight: math.unit(250, "lb"),
  52968. name: "Front",
  52969. image: {
  52970. source: "./media/characters/reika/front.svg",
  52971. extra: 1120/1078,
  52972. bottom: 86/1206
  52973. }
  52974. },
  52975. },
  52976. [
  52977. {
  52978. name: "Normal",
  52979. height: math.unit(6 + 3/12, "feet"),
  52980. default: true
  52981. },
  52982. ]
  52983. ))
  52984. characterMakers.push(() => makeCharacter(
  52985. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52986. {
  52987. front: {
  52988. height: math.unit(16 + 8/12, "feet"),
  52989. weight: math.unit(9000, "lb"),
  52990. name: "Front",
  52991. image: {
  52992. source: "./media/characters/lokuto-takama/front.svg",
  52993. extra: 1774/1632,
  52994. bottom: 147/1921
  52995. },
  52996. extraAttributes: {
  52997. "bustWidth": {
  52998. name: "Bust Width",
  52999. power: 1,
  53000. type: "length",
  53001. base: math.unit(2.4, "meters")
  53002. },
  53003. "breastWeight": {
  53004. name: "Breast Weight",
  53005. power: 3,
  53006. type: "mass",
  53007. base: math.unit(1000, "kg")
  53008. },
  53009. }
  53010. },
  53011. },
  53012. [
  53013. {
  53014. name: "Normal",
  53015. height: math.unit(16 + 8/12, "feet"),
  53016. default: true
  53017. },
  53018. ]
  53019. ))
  53020. characterMakers.push(() => makeCharacter(
  53021. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53022. {
  53023. front: {
  53024. height: math.unit(10, "cm"),
  53025. weight: math.unit(850, "grams"),
  53026. name: "Front",
  53027. image: {
  53028. source: "./media/characters/owak-bone/front.svg",
  53029. extra: 1965/1801,
  53030. bottom: 31/1996
  53031. }
  53032. },
  53033. },
  53034. [
  53035. {
  53036. name: "Normal",
  53037. height: math.unit(10, "cm"),
  53038. default: true
  53039. },
  53040. ]
  53041. ))
  53042. characterMakers.push(() => makeCharacter(
  53043. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53044. {
  53045. front: {
  53046. height: math.unit(2 + 6/12, "feet"),
  53047. weight: math.unit(9, "lb"),
  53048. name: "Front",
  53049. image: {
  53050. source: "./media/characters/muffin/front.svg",
  53051. extra: 1220/1195,
  53052. bottom: 84/1304
  53053. }
  53054. },
  53055. },
  53056. [
  53057. {
  53058. name: "Normal",
  53059. height: math.unit(2 + 6/12, "feet"),
  53060. default: true
  53061. },
  53062. ]
  53063. ))
  53064. characterMakers.push(() => makeCharacter(
  53065. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53066. {
  53067. front: {
  53068. height: math.unit(7, "feet"),
  53069. name: "Front",
  53070. image: {
  53071. source: "./media/characters/chimera/front.svg",
  53072. extra: 1752/1614,
  53073. bottom: 68/1820
  53074. }
  53075. },
  53076. },
  53077. [
  53078. {
  53079. name: "Normal",
  53080. height: math.unit(7, "feet")
  53081. },
  53082. {
  53083. name: "Gigamacro",
  53084. height: math.unit(2.9, "gigameters"),
  53085. default: true
  53086. },
  53087. {
  53088. name: "Universal",
  53089. height: math.unit(1.56e26, "yottameters")
  53090. },
  53091. ]
  53092. ))
  53093. characterMakers.push(() => makeCharacter(
  53094. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53095. {
  53096. front: {
  53097. height: math.unit(3, "feet"),
  53098. weight: math.unit(20, "lb"),
  53099. name: "Front",
  53100. image: {
  53101. source: "./media/characters/kit-fennec-fox/front.svg",
  53102. extra: 1027/932,
  53103. bottom: 16/1043
  53104. }
  53105. },
  53106. back: {
  53107. height: math.unit(3, "feet"),
  53108. weight: math.unit(20, "lb"),
  53109. name: "Back",
  53110. image: {
  53111. source: "./media/characters/kit-fennec-fox/back.svg",
  53112. extra: 1027/932,
  53113. bottom: 16/1043
  53114. }
  53115. },
  53116. },
  53117. [
  53118. {
  53119. name: "Normal",
  53120. height: math.unit(3, "feet"),
  53121. default: true
  53122. },
  53123. ]
  53124. ))
  53125. characterMakers.push(() => makeCharacter(
  53126. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53127. {
  53128. front: {
  53129. height: math.unit(167, "cm"),
  53130. name: "Front",
  53131. image: {
  53132. source: "./media/characters/blue-otter/front.svg",
  53133. extra: 1951/1920,
  53134. bottom: 31/1982
  53135. }
  53136. },
  53137. },
  53138. [
  53139. {
  53140. name: "Otter-Sized",
  53141. height: math.unit(100, "cm")
  53142. },
  53143. {
  53144. name: "Normal",
  53145. height: math.unit(167, "cm"),
  53146. default: true
  53147. },
  53148. ]
  53149. ))
  53150. characterMakers.push(() => makeCharacter(
  53151. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53152. {
  53153. front: {
  53154. height: math.unit(4 + 4/12, "feet"),
  53155. name: "Front",
  53156. image: {
  53157. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53158. extra: 1072/1067,
  53159. bottom: 117/1189
  53160. }
  53161. },
  53162. back: {
  53163. height: math.unit(4 + 4/12, "feet"),
  53164. name: "Back",
  53165. image: {
  53166. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53167. extra: 1135/1129,
  53168. bottom: 57/1192
  53169. }
  53170. },
  53171. head: {
  53172. height: math.unit(1.77, "feet"),
  53173. name: "Head",
  53174. image: {
  53175. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53176. }
  53177. },
  53178. },
  53179. [
  53180. {
  53181. name: "Normal",
  53182. height: math.unit(4 + 4/12, "feet"),
  53183. default: true
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(2, "inches"),
  53192. name: "Front",
  53193. image: {
  53194. source: "./media/characters/carley-hartford/front.svg",
  53195. extra: 1035/988,
  53196. bottom: 23/1058
  53197. }
  53198. },
  53199. back: {
  53200. height: math.unit(2, "inches"),
  53201. name: "Back",
  53202. image: {
  53203. source: "./media/characters/carley-hartford/back.svg",
  53204. extra: 1035/988,
  53205. bottom: 23/1058
  53206. }
  53207. },
  53208. dressed: {
  53209. height: math.unit(2, "inches"),
  53210. name: "Dressed",
  53211. image: {
  53212. source: "./media/characters/carley-hartford/dressed.svg",
  53213. extra: 651/620,
  53214. bottom: 0/651
  53215. }
  53216. },
  53217. },
  53218. [
  53219. {
  53220. name: "Micro",
  53221. height: math.unit(2, "inches"),
  53222. default: true
  53223. },
  53224. {
  53225. name: "Macro",
  53226. height: math.unit(6 + 3/12, "feet")
  53227. },
  53228. ]
  53229. ))
  53230. characterMakers.push(() => makeCharacter(
  53231. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53232. {
  53233. front: {
  53234. height: math.unit(2 + 3/12, "feet"),
  53235. weight: math.unit(15 + 7/16, "lb"),
  53236. name: "Front",
  53237. image: {
  53238. source: "./media/characters/duke/front.svg",
  53239. extra: 910/815,
  53240. bottom: 30/940
  53241. }
  53242. },
  53243. },
  53244. [
  53245. {
  53246. name: "Normal",
  53247. height: math.unit(2 + 3/12, "feet"),
  53248. default: true
  53249. },
  53250. ]
  53251. ))
  53252. characterMakers.push(() => makeCharacter(
  53253. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53254. {
  53255. front: {
  53256. height: math.unit(5 + 4/12, "feet"),
  53257. weight: math.unit(156, "lb"),
  53258. name: "Front",
  53259. image: {
  53260. source: "./media/characters/dein/front.svg",
  53261. extra: 855/815,
  53262. bottom: 48/903
  53263. }
  53264. },
  53265. side: {
  53266. height: math.unit(5 + 4/12, "feet"),
  53267. weight: math.unit(156, "lb"),
  53268. name: "side",
  53269. image: {
  53270. source: "./media/characters/dein/side.svg",
  53271. extra: 846/803,
  53272. bottom: 25/871
  53273. }
  53274. },
  53275. maw: {
  53276. height: math.unit(1.45, "feet"),
  53277. name: "Maw",
  53278. image: {
  53279. source: "./media/characters/dein/maw.svg"
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Ferret Sized",
  53286. height: math.unit(2 + 5/12, "feet")
  53287. },
  53288. {
  53289. name: "Normal",
  53290. height: math.unit(5 + 4/12, "feet"),
  53291. default: true
  53292. },
  53293. ]
  53294. ))
  53295. characterMakers.push(() => makeCharacter(
  53296. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53297. {
  53298. front: {
  53299. height: math.unit(84 + 8/12, "feet"),
  53300. weight: math.unit(942180, "lb"),
  53301. name: "Front",
  53302. image: {
  53303. source: "./media/characters/daurine-arima/front.svg",
  53304. extra: 1989/1782,
  53305. bottom: 37/2026
  53306. }
  53307. },
  53308. side: {
  53309. height: math.unit(84 + 8/12, "feet"),
  53310. weight: math.unit(942180, "lb"),
  53311. name: "Side",
  53312. image: {
  53313. source: "./media/characters/daurine-arima/side.svg",
  53314. extra: 1997/1790,
  53315. bottom: 21/2018
  53316. }
  53317. },
  53318. back: {
  53319. height: math.unit(84 + 8/12, "feet"),
  53320. weight: math.unit(942180, "lb"),
  53321. name: "Back",
  53322. image: {
  53323. source: "./media/characters/daurine-arima/back.svg",
  53324. extra: 1992/1800,
  53325. bottom: 12/2004
  53326. }
  53327. },
  53328. head: {
  53329. height: math.unit(15.5, "feet"),
  53330. name: "Head",
  53331. image: {
  53332. source: "./media/characters/daurine-arima/head.svg"
  53333. }
  53334. },
  53335. headAlt: {
  53336. height: math.unit(19.19, "feet"),
  53337. name: "Head (Alt)",
  53338. image: {
  53339. source: "./media/characters/daurine-arima/head-alt.svg"
  53340. }
  53341. },
  53342. },
  53343. [
  53344. {
  53345. name: "Minimum height",
  53346. height: math.unit(8 + 10/12, "feet")
  53347. },
  53348. {
  53349. name: "Comfort height",
  53350. height: math.unit(19 + 6 /12, "feet")
  53351. },
  53352. {
  53353. name: "\"Normal\" height",
  53354. height: math.unit(28 + 10/12, "feet")
  53355. },
  53356. {
  53357. name: "Base height",
  53358. height: math.unit(84 + 8/12, "feet"),
  53359. default: true
  53360. },
  53361. {
  53362. name: "Mini-macro",
  53363. height: math.unit(2360, "feet")
  53364. },
  53365. {
  53366. name: "Macro",
  53367. height: math.unit(10, "miles")
  53368. },
  53369. {
  53370. name: "Goddess",
  53371. height: math.unit(9.99e40, "yottameters")
  53372. },
  53373. ]
  53374. ))
  53375. characterMakers.push(() => makeCharacter(
  53376. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53377. {
  53378. front: {
  53379. height: math.unit(2.3, "meters"),
  53380. name: "Front",
  53381. image: {
  53382. source: "./media/characters/cilenomon/front.svg",
  53383. extra: 1963/1778,
  53384. bottom: 54/2017
  53385. }
  53386. },
  53387. },
  53388. [
  53389. {
  53390. name: "Normal",
  53391. height: math.unit(2.3, "meters"),
  53392. default: true
  53393. },
  53394. {
  53395. name: "Big",
  53396. height: math.unit(5, "meters")
  53397. },
  53398. {
  53399. name: "Macro",
  53400. height: math.unit(30, "meters")
  53401. },
  53402. {
  53403. name: "True",
  53404. height: math.unit(1, "universe")
  53405. },
  53406. ]
  53407. ))
  53408. characterMakers.push(() => makeCharacter(
  53409. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53410. {
  53411. front: {
  53412. height: math.unit(5, "feet"),
  53413. name: "Front",
  53414. image: {
  53415. source: "./media/characters/sen-mink/front.svg",
  53416. extra: 1727/1675,
  53417. bottom: 35/1762
  53418. }
  53419. },
  53420. },
  53421. [
  53422. {
  53423. name: "Normal",
  53424. height: math.unit(5, "feet"),
  53425. default: true
  53426. },
  53427. ]
  53428. ))
  53429. characterMakers.push(() => makeCharacter(
  53430. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53431. {
  53432. front: {
  53433. height: math.unit(5.42999, "feet"),
  53434. weight: math.unit(100, "lb"),
  53435. name: "Front",
  53436. image: {
  53437. source: "./media/characters/ophois/front.svg",
  53438. extra: 1429/1286,
  53439. bottom: 60/1489
  53440. }
  53441. },
  53442. },
  53443. [
  53444. {
  53445. name: "Normal",
  53446. height: math.unit(5.42999, "feet"),
  53447. default: true
  53448. },
  53449. ]
  53450. ))
  53451. characterMakers.push(() => makeCharacter(
  53452. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53453. {
  53454. front: {
  53455. height: math.unit(2, "meters"),
  53456. name: "Front",
  53457. image: {
  53458. source: "./media/characters/riley/front.svg",
  53459. extra: 1779/1754,
  53460. bottom: 139/1918
  53461. }
  53462. },
  53463. },
  53464. [
  53465. {
  53466. name: "Normal",
  53467. height: math.unit(2, "meters"),
  53468. default: true
  53469. },
  53470. ]
  53471. ))
  53472. characterMakers.push(() => makeCharacter(
  53473. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53474. {
  53475. front: {
  53476. height: math.unit(6 + 2/12, "feet"),
  53477. weight: math.unit(195, "lb"),
  53478. preyCapacity: math.unit(6, "people"),
  53479. name: "Front",
  53480. image: {
  53481. source: "./media/characters/shuken-flash/front.svg",
  53482. extra: 1905/1739,
  53483. bottom: 65/1970
  53484. }
  53485. },
  53486. back: {
  53487. height: math.unit(6 + 2/12, "feet"),
  53488. weight: math.unit(195, "lb"),
  53489. preyCapacity: math.unit(6, "people"),
  53490. name: "Back",
  53491. image: {
  53492. source: "./media/characters/shuken-flash/back.svg",
  53493. extra: 1912/1751,
  53494. bottom: 13/1925
  53495. }
  53496. },
  53497. },
  53498. [
  53499. {
  53500. name: "Normal",
  53501. height: math.unit(6 + 2/12, "feet"),
  53502. default: true
  53503. },
  53504. ]
  53505. ))
  53506. characterMakers.push(() => makeCharacter(
  53507. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53508. {
  53509. front: {
  53510. height: math.unit(5 + 9/12, "feet"),
  53511. weight: math.unit(150, "lb"),
  53512. name: "Front",
  53513. image: {
  53514. source: "./media/characters/plat/front.svg",
  53515. extra: 1816/1703,
  53516. bottom: 43/1859
  53517. }
  53518. },
  53519. side: {
  53520. height: math.unit(5 + 9/12, "feet"),
  53521. weight: math.unit(300, "lb"),
  53522. name: "Side",
  53523. image: {
  53524. source: "./media/characters/plat/side.svg",
  53525. extra: 1824/1699,
  53526. bottom: 18/1842
  53527. }
  53528. },
  53529. },
  53530. [
  53531. {
  53532. name: "Normal",
  53533. height: math.unit(5 + 9/12, "feet"),
  53534. default: true
  53535. },
  53536. ]
  53537. ))
  53538. characterMakers.push(() => makeCharacter(
  53539. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53540. {
  53541. front: {
  53542. height: math.unit(9, "feet"),
  53543. weight: math.unit(1800, "lb"),
  53544. name: "Front",
  53545. image: {
  53546. source: "./media/characters/elaine/front.svg",
  53547. extra: 1833/1354,
  53548. bottom: 25/1858
  53549. }
  53550. },
  53551. back: {
  53552. height: math.unit(8.8, "feet"),
  53553. weight: math.unit(1800, "lb"),
  53554. name: "Back",
  53555. image: {
  53556. source: "./media/characters/elaine/back.svg",
  53557. extra: 1641/1233,
  53558. bottom: 53/1694
  53559. }
  53560. },
  53561. },
  53562. [
  53563. {
  53564. name: "Normal",
  53565. height: math.unit(9, "feet"),
  53566. default: true
  53567. },
  53568. ]
  53569. ))
  53570. characterMakers.push(() => makeCharacter(
  53571. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53572. {
  53573. front: {
  53574. height: math.unit(17 + 9/12, "feet"),
  53575. weight: math.unit(8000, "lb"),
  53576. name: "Front",
  53577. image: {
  53578. source: "./media/characters/vera-raven/front.svg",
  53579. extra: 1457/1412,
  53580. bottom: 121/1578
  53581. }
  53582. },
  53583. side: {
  53584. height: math.unit(17 + 9/12, "feet"),
  53585. weight: math.unit(8000, "lb"),
  53586. name: "Side",
  53587. image: {
  53588. source: "./media/characters/vera-raven/side.svg",
  53589. extra: 1510/1464,
  53590. bottom: 54/1564
  53591. }
  53592. },
  53593. },
  53594. [
  53595. {
  53596. name: "Normal",
  53597. height: math.unit(17 + 9/12, "feet"),
  53598. default: true
  53599. },
  53600. ]
  53601. ))
  53602. characterMakers.push(() => makeCharacter(
  53603. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53604. {
  53605. dressed: {
  53606. height: math.unit(6 + 9/12, "feet"),
  53607. name: "Dressed",
  53608. image: {
  53609. source: "./media/characters/nakisha/dressed.svg",
  53610. extra: 1909/1757,
  53611. bottom: 48/1957
  53612. }
  53613. },
  53614. nude: {
  53615. height: math.unit(6 + 9/12, "feet"),
  53616. name: "Nude",
  53617. image: {
  53618. source: "./media/characters/nakisha/nude.svg",
  53619. extra: 1917/1765,
  53620. bottom: 34/1951
  53621. }
  53622. },
  53623. },
  53624. [
  53625. {
  53626. name: "Normal",
  53627. height: math.unit(6 + 9/12, "feet"),
  53628. default: true
  53629. },
  53630. ]
  53631. ))
  53632. characterMakers.push(() => makeCharacter(
  53633. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53634. {
  53635. front: {
  53636. height: math.unit(87, "meters"),
  53637. name: "Front",
  53638. image: {
  53639. source: "./media/characters/serafin/front.svg",
  53640. extra: 1919/1776,
  53641. bottom: 65/1984
  53642. }
  53643. },
  53644. },
  53645. [
  53646. {
  53647. name: "Normal",
  53648. height: math.unit(87, "meters"),
  53649. default: true
  53650. },
  53651. ]
  53652. ))
  53653. characterMakers.push(() => makeCharacter(
  53654. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53655. {
  53656. front: {
  53657. height: math.unit(6, "feet"),
  53658. weight: math.unit(200, "lb"),
  53659. name: "Front",
  53660. image: {
  53661. source: "./media/characters/poptart/front.svg",
  53662. extra: 615/583,
  53663. bottom: 23/638
  53664. }
  53665. },
  53666. back: {
  53667. height: math.unit(6, "feet"),
  53668. weight: math.unit(200, "lb"),
  53669. name: "Back",
  53670. image: {
  53671. source: "./media/characters/poptart/back.svg",
  53672. extra: 617/584,
  53673. bottom: 22/639
  53674. }
  53675. },
  53676. frontNsfw: {
  53677. height: math.unit(6, "feet"),
  53678. weight: math.unit(200, "lb"),
  53679. name: "Front (NSFW)",
  53680. image: {
  53681. source: "./media/characters/poptart/front-nsfw.svg",
  53682. extra: 615/583,
  53683. bottom: 23/638
  53684. }
  53685. },
  53686. backNsfw: {
  53687. height: math.unit(6, "feet"),
  53688. weight: math.unit(200, "lb"),
  53689. name: "Back (NSFW)",
  53690. image: {
  53691. source: "./media/characters/poptart/back-nsfw.svg",
  53692. extra: 617/584,
  53693. bottom: 22/639
  53694. }
  53695. },
  53696. hand: {
  53697. height: math.unit(1.14, "feet"),
  53698. name: "Hand",
  53699. image: {
  53700. source: "./media/characters/poptart/hand.svg"
  53701. }
  53702. },
  53703. foot: {
  53704. height: math.unit(1.5, "feet"),
  53705. name: "Foot",
  53706. image: {
  53707. source: "./media/characters/poptart/foot.svg"
  53708. }
  53709. },
  53710. },
  53711. [
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(6, "feet"),
  53715. default: true
  53716. },
  53717. {
  53718. name: "Grande",
  53719. height: math.unit(350, "feet")
  53720. },
  53721. {
  53722. name: "Massif",
  53723. height: math.unit(967, "feet")
  53724. },
  53725. ]
  53726. ))
  53727. characterMakers.push(() => makeCharacter(
  53728. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53729. {
  53730. hyenaSide: {
  53731. height: math.unit(120, "cm"),
  53732. weight: math.unit(120, "lb"),
  53733. name: "Side",
  53734. image: {
  53735. source: "./media/characters/trance/hyena-side.svg",
  53736. extra: 998/904,
  53737. bottom: 76/1074
  53738. }
  53739. },
  53740. },
  53741. [
  53742. {
  53743. name: "Normal",
  53744. height: math.unit(120, "cm"),
  53745. default: true
  53746. },
  53747. {
  53748. name: "Dire",
  53749. height: math.unit(230, "cm")
  53750. },
  53751. {
  53752. name: "Macro",
  53753. height: math.unit(37, "feet")
  53754. },
  53755. ]
  53756. ))
  53757. characterMakers.push(() => makeCharacter(
  53758. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53759. {
  53760. front: {
  53761. height: math.unit(6 + 3/12, "feet"),
  53762. name: "Front",
  53763. image: {
  53764. source: "./media/characters/michael-berretta/front.svg",
  53765. extra: 515/494,
  53766. bottom: 20/535
  53767. }
  53768. },
  53769. back: {
  53770. height: math.unit(6 + 3/12, "feet"),
  53771. name: "Back",
  53772. image: {
  53773. source: "./media/characters/michael-berretta/back.svg",
  53774. extra: 520/497,
  53775. bottom: 21/541
  53776. }
  53777. },
  53778. frontNsfw: {
  53779. height: math.unit(6 + 3/12, "feet"),
  53780. name: "Front (NSFW)",
  53781. image: {
  53782. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53783. extra: 515/494,
  53784. bottom: 20/535
  53785. }
  53786. },
  53787. dick: {
  53788. height: math.unit(1, "feet"),
  53789. name: "Dick",
  53790. image: {
  53791. source: "./media/characters/michael-berretta/dick.svg"
  53792. }
  53793. },
  53794. },
  53795. [
  53796. {
  53797. name: "Normal",
  53798. height: math.unit(6 + 3/12, "feet"),
  53799. default: true
  53800. },
  53801. {
  53802. name: "Big",
  53803. height: math.unit(12, "feet")
  53804. },
  53805. {
  53806. name: "Macro",
  53807. height: math.unit(187.5, "feet")
  53808. },
  53809. ]
  53810. ))
  53811. characterMakers.push(() => makeCharacter(
  53812. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53813. {
  53814. front: {
  53815. height: math.unit(9 + 9/12, "feet"),
  53816. weight: math.unit(1244, "lb"),
  53817. name: "Front",
  53818. image: {
  53819. source: "./media/characters/stella-edgecomb/front.svg",
  53820. extra: 1835/1706,
  53821. bottom: 49/1884
  53822. }
  53823. },
  53824. pen: {
  53825. height: math.unit(0.95, "feet"),
  53826. name: "Pen",
  53827. image: {
  53828. source: "./media/characters/stella-edgecomb/pen.svg"
  53829. }
  53830. },
  53831. },
  53832. [
  53833. {
  53834. name: "Cozy Bear",
  53835. height: math.unit(0.5, "inches")
  53836. },
  53837. {
  53838. name: "Normal",
  53839. height: math.unit(9 + 9/12, "feet"),
  53840. default: true
  53841. },
  53842. {
  53843. name: "Giga Bear",
  53844. height: math.unit(1, "mile")
  53845. },
  53846. {
  53847. name: "Great Bear",
  53848. height: math.unit(53, "miles")
  53849. },
  53850. {
  53851. name: "Goddess Bear",
  53852. height: math.unit(40000, "miles")
  53853. },
  53854. {
  53855. name: "Sun Bear",
  53856. height: math.unit(900000, "miles")
  53857. },
  53858. ]
  53859. ))
  53860. characterMakers.push(() => makeCharacter(
  53861. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53862. {
  53863. anthroFront: {
  53864. height: math.unit(556, "cm"),
  53865. weight: math.unit(2650, "kg"),
  53866. preyCapacity: math.unit(3, "people"),
  53867. name: "Front",
  53868. image: {
  53869. source: "./media/characters/ash´iika/front.svg",
  53870. extra: 710/673,
  53871. bottom: 15/725
  53872. },
  53873. form: "anthro",
  53874. default: true
  53875. },
  53876. anthroSide: {
  53877. height: math.unit(556, "cm"),
  53878. weight: math.unit(2650, "kg"),
  53879. preyCapacity: math.unit(3, "people"),
  53880. name: "Side",
  53881. image: {
  53882. source: "./media/characters/ash´iika/side.svg",
  53883. extra: 696/676,
  53884. bottom: 13/709
  53885. },
  53886. form: "anthro"
  53887. },
  53888. anthroDressed: {
  53889. height: math.unit(556, "cm"),
  53890. weight: math.unit(2650, "kg"),
  53891. preyCapacity: math.unit(3, "people"),
  53892. name: "Dressed",
  53893. image: {
  53894. source: "./media/characters/ash´iika/dressed.svg",
  53895. extra: 710/673,
  53896. bottom: 15/725
  53897. },
  53898. form: "anthro"
  53899. },
  53900. anthroHead: {
  53901. height: math.unit(3.5, "feet"),
  53902. name: "Head",
  53903. image: {
  53904. source: "./media/characters/ash´iika/head.svg",
  53905. extra: 348/291,
  53906. bottom: 45/393
  53907. },
  53908. form: "anthro"
  53909. },
  53910. feralSide: {
  53911. height: math.unit(870, "cm"),
  53912. weight: math.unit(17500, "kg"),
  53913. preyCapacity: math.unit(15, "people"),
  53914. name: "Side",
  53915. image: {
  53916. source: "./media/characters/ash´iika/feral.svg",
  53917. extra: 595/199,
  53918. bottom: 7/602
  53919. },
  53920. form: "feral",
  53921. default: true,
  53922. },
  53923. },
  53924. [
  53925. {
  53926. name: "Normal",
  53927. height: math.unit(556, "cm"),
  53928. default: true,
  53929. form: "anthro"
  53930. },
  53931. {
  53932. name: "Macro",
  53933. height: math.unit(88, "meters"),
  53934. form: "anthro"
  53935. },
  53936. {
  53937. name: "Normal",
  53938. height: math.unit(870, "cm"),
  53939. default: true,
  53940. form: "feral"
  53941. },
  53942. {
  53943. name: "Large",
  53944. height: math.unit(25, "meters"),
  53945. form: "feral"
  53946. },
  53947. ],
  53948. {
  53949. "anthro": {
  53950. name: "Anthro",
  53951. default: true
  53952. },
  53953. "feral": {
  53954. name: "Feral",
  53955. },
  53956. }
  53957. ))
  53958. characterMakers.push(() => makeCharacter(
  53959. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53960. {
  53961. front: {
  53962. height: math.unit(10, "feet"),
  53963. weight: math.unit(800, "lb"),
  53964. name: "Front",
  53965. image: {
  53966. source: "./media/characters/yen/front.svg",
  53967. extra: 443/411,
  53968. bottom: 6/449
  53969. }
  53970. },
  53971. sleeping: {
  53972. height: math.unit(10, "feet"),
  53973. weight: math.unit(800, "lb"),
  53974. name: "Sleeping",
  53975. image: {
  53976. source: "./media/characters/yen/sleeping.svg",
  53977. extra: 470/422,
  53978. bottom: 0/470
  53979. }
  53980. },
  53981. head: {
  53982. height: math.unit(2.2, "feet"),
  53983. name: "Head",
  53984. image: {
  53985. source: "./media/characters/yen/head.svg"
  53986. }
  53987. },
  53988. headAlt: {
  53989. height: math.unit(2.1, "feet"),
  53990. name: "Head (Alt)",
  53991. image: {
  53992. source: "./media/characters/yen/head-alt.svg"
  53993. }
  53994. },
  53995. },
  53996. [
  53997. {
  53998. name: "Normal",
  53999. height: math.unit(10, "feet"),
  54000. default: true
  54001. },
  54002. ]
  54003. ))
  54004. characterMakers.push(() => makeCharacter(
  54005. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54006. {
  54007. front: {
  54008. height: math.unit(12, "feet"),
  54009. name: "Front",
  54010. image: {
  54011. source: "./media/characters/citra/front.svg",
  54012. extra: 1950/1710,
  54013. bottom: 47/1997
  54014. }
  54015. },
  54016. },
  54017. [
  54018. {
  54019. name: "Normal",
  54020. height: math.unit(12, "feet"),
  54021. default: true
  54022. },
  54023. ]
  54024. ))
  54025. characterMakers.push(() => makeCharacter(
  54026. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54027. {
  54028. side: {
  54029. height: math.unit(7 + 10/12, "feet"),
  54030. name: "Side",
  54031. image: {
  54032. source: "./media/characters/sholstim/side.svg",
  54033. extra: 786/682,
  54034. bottom: 40/826
  54035. }
  54036. },
  54037. },
  54038. [
  54039. {
  54040. name: "Normal",
  54041. height: math.unit(7 + 10/12, "feet"),
  54042. default: true
  54043. },
  54044. ]
  54045. ))
  54046. characterMakers.push(() => makeCharacter(
  54047. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54048. {
  54049. front: {
  54050. height: math.unit(3.10, "meters"),
  54051. name: "Front",
  54052. image: {
  54053. source: "./media/characters/aggyn/front.svg",
  54054. extra: 1188/963,
  54055. bottom: 24/1212
  54056. }
  54057. },
  54058. },
  54059. [
  54060. {
  54061. name: "Normal",
  54062. height: math.unit(3.10, "meters"),
  54063. default: true
  54064. },
  54065. ]
  54066. ))
  54067. characterMakers.push(() => makeCharacter(
  54068. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54069. {
  54070. front: {
  54071. height: math.unit(7 + 5/12, "feet"),
  54072. weight: math.unit(687, "lb"),
  54073. name: "Front",
  54074. image: {
  54075. source: "./media/characters/alsandair-hergenroether/front.svg",
  54076. extra: 1251/1186,
  54077. bottom: 75/1326
  54078. }
  54079. },
  54080. back: {
  54081. height: math.unit(7 + 5/12, "feet"),
  54082. weight: math.unit(687, "lb"),
  54083. name: "Back",
  54084. image: {
  54085. source: "./media/characters/alsandair-hergenroether/back.svg",
  54086. extra: 1290/1229,
  54087. bottom: 17/1307
  54088. }
  54089. },
  54090. },
  54091. [
  54092. {
  54093. name: "Max Compression",
  54094. height: math.unit(7 + 5/12, "feet"),
  54095. default: true
  54096. },
  54097. {
  54098. name: "\"Normal\"",
  54099. height: math.unit(2, "universes")
  54100. },
  54101. ]
  54102. ))
  54103. characterMakers.push(() => makeCharacter(
  54104. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54105. {
  54106. front: {
  54107. height: math.unit(4 + 1/12, "feet"),
  54108. weight: math.unit(92, "lb"),
  54109. name: "Front",
  54110. image: {
  54111. source: "./media/characters/ie/front.svg",
  54112. extra: 1585/1352,
  54113. bottom: 91/1676
  54114. }
  54115. },
  54116. },
  54117. [
  54118. {
  54119. name: "Normal",
  54120. height: math.unit(4 + 1/12, "feet"),
  54121. default: true
  54122. },
  54123. ]
  54124. ))
  54125. characterMakers.push(() => makeCharacter(
  54126. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54127. {
  54128. anthro: {
  54129. height: math.unit(6, "feet"),
  54130. weight: math.unit(150, "lb"),
  54131. name: "Front",
  54132. image: {
  54133. source: "./media/characters/willow/anthro.svg",
  54134. extra: 1073/986,
  54135. bottom: 34/1107
  54136. },
  54137. form: "anthro",
  54138. default: true
  54139. },
  54140. taur: {
  54141. height: math.unit(6, "feet"),
  54142. weight: math.unit(150, "lb"),
  54143. name: "Side",
  54144. image: {
  54145. source: "./media/characters/willow/taur.svg",
  54146. extra: 647/512,
  54147. bottom: 136/783
  54148. },
  54149. form: "taur",
  54150. default: true
  54151. },
  54152. },
  54153. [
  54154. {
  54155. name: "Humanoid",
  54156. height: math.unit(2.7, "meters"),
  54157. form: "anthro"
  54158. },
  54159. {
  54160. name: "Normal",
  54161. height: math.unit(9, "meters"),
  54162. form: "anthro",
  54163. default: true
  54164. },
  54165. {
  54166. name: "Humanoid",
  54167. height: math.unit(2.1, "meters"),
  54168. form: "taur"
  54169. },
  54170. {
  54171. name: "Normal",
  54172. height: math.unit(7, "meters"),
  54173. form: "taur",
  54174. default: true
  54175. },
  54176. ],
  54177. {
  54178. "anthro": {
  54179. name: "Anthro",
  54180. default: true
  54181. },
  54182. "taur": {
  54183. name: "Taur",
  54184. },
  54185. }
  54186. ))
  54187. characterMakers.push(() => makeCharacter(
  54188. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54189. {
  54190. front: {
  54191. height: math.unit(2 + 5/12, "feet"),
  54192. name: "Front",
  54193. image: {
  54194. source: "./media/characters/kyan/front.svg",
  54195. extra: 460/334,
  54196. bottom: 23/483
  54197. },
  54198. extraAttributes: {
  54199. "toeLength": {
  54200. name: "Toe Length",
  54201. power: 1,
  54202. type: "length",
  54203. base: math.unit(7, "cm")
  54204. },
  54205. "toeclawLength": {
  54206. name: "Toeclaw Length",
  54207. power: 1,
  54208. type: "length",
  54209. base: math.unit(4.7, "cm")
  54210. },
  54211. "earHeight": {
  54212. name: "Ear Height",
  54213. power: 1,
  54214. type: "length",
  54215. base: math.unit(14.1, "cm")
  54216. },
  54217. }
  54218. },
  54219. paws: {
  54220. height: math.unit(0.45, "feet"),
  54221. name: "Paws",
  54222. image: {
  54223. source: "./media/characters/kyan/paws.svg",
  54224. extra: 581/581,
  54225. bottom: 114/695
  54226. }
  54227. },
  54228. },
  54229. [
  54230. {
  54231. name: "Normal",
  54232. height: math.unit(2 + 5/12, "feet"),
  54233. default: true
  54234. },
  54235. ]
  54236. ))
  54237. characterMakers.push(() => makeCharacter(
  54238. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54239. {
  54240. front: {
  54241. height: math.unit(2 + 2/3, "feet"),
  54242. name: "Front",
  54243. image: {
  54244. source: "./media/characters/xazzon/front.svg",
  54245. extra: 1109/984,
  54246. bottom: 42/1151
  54247. }
  54248. },
  54249. back: {
  54250. height: math.unit(2 + 2/3, "feet"),
  54251. name: "Back",
  54252. image: {
  54253. source: "./media/characters/xazzon/back.svg",
  54254. extra: 1095/971,
  54255. bottom: 23/1118
  54256. }
  54257. },
  54258. },
  54259. [
  54260. {
  54261. name: "Normal",
  54262. height: math.unit(2 + 2/3, "feet"),
  54263. default: true
  54264. },
  54265. ]
  54266. ))
  54267. characterMakers.push(() => makeCharacter(
  54268. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54269. {
  54270. dressed: {
  54271. height: math.unit(5 + 7/12, "feet"),
  54272. weight: math.unit(173, "lb"),
  54273. name: "Dressed",
  54274. image: {
  54275. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54276. extra: 3262/2862,
  54277. bottom: 188/3450
  54278. }
  54279. },
  54280. undressed: {
  54281. height: math.unit(5 + 7/12, "feet"),
  54282. weight: math.unit(173, "lb"),
  54283. name: "Undressed",
  54284. image: {
  54285. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54286. extra: 3262/2862,
  54287. bottom: 188/3450
  54288. }
  54289. },
  54290. },
  54291. [
  54292. {
  54293. name: "The void",
  54294. height: math.unit(7.29193e-34, "angstroms")
  54295. },
  54296. {
  54297. name: "Uh-Oh.",
  54298. height: math.unit(5.734e-7, "angstroms")
  54299. },
  54300. {
  54301. name: "Pico",
  54302. height: math.unit(0.876, "angstroms")
  54303. },
  54304. {
  54305. name: "Nano",
  54306. height: math.unit(0.000134200, "mm")
  54307. },
  54308. {
  54309. name: "Micro",
  54310. height: math.unit(0.0673020, "mm")
  54311. },
  54312. {
  54313. name: "Tiny",
  54314. height: math.unit(2.4, "mm")
  54315. },
  54316. {
  54317. name: "Actual Normal",
  54318. height: math.unit(3, "inches"),
  54319. default: true
  54320. },
  54321. {
  54322. name: "Normal",
  54323. height: math.unit(5 + 8/12, "feet")
  54324. },
  54325. {
  54326. name: "Giant",
  54327. height: math.unit(12, "feet")
  54328. },
  54329. {
  54330. name: "City Ruler",
  54331. height: math.unit(270, "meters")
  54332. },
  54333. {
  54334. name: "Giga",
  54335. height: math.unit(1117.6, "km")
  54336. },
  54337. {
  54338. name: "All-Powerful Queen",
  54339. height: math.unit(70.8, "gigameters")
  54340. },
  54341. {
  54342. name: "'Goddess'",
  54343. height: math.unit(600, "yottameters")
  54344. },
  54345. {
  54346. name: "Biggest!",
  54347. height: math.unit(4.23e5, "yottameters")
  54348. },
  54349. ]
  54350. ))
  54351. characterMakers.push(() => makeCharacter(
  54352. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54353. {
  54354. front: {
  54355. height: math.unit(8, "feet"),
  54356. weight: math.unit(300, "lb"),
  54357. name: "Front",
  54358. image: {
  54359. source: "./media/characters/khyla-shadowsong/front.svg",
  54360. extra: 861/798,
  54361. bottom: 32/893
  54362. }
  54363. },
  54364. side: {
  54365. height: math.unit(8, "feet"),
  54366. weight: math.unit(300, "lb"),
  54367. name: "Side",
  54368. image: {
  54369. source: "./media/characters/khyla-shadowsong/side.svg",
  54370. extra: 790/750,
  54371. bottom: 87/877
  54372. }
  54373. },
  54374. back: {
  54375. height: math.unit(8, "feet"),
  54376. weight: math.unit(300, "lb"),
  54377. name: "Back",
  54378. image: {
  54379. source: "./media/characters/khyla-shadowsong/back.svg",
  54380. extra: 855/808,
  54381. bottom: 14/869
  54382. }
  54383. },
  54384. head: {
  54385. height: math.unit(2.7, "feet"),
  54386. name: "Head",
  54387. image: {
  54388. source: "./media/characters/khyla-shadowsong/head.svg"
  54389. }
  54390. },
  54391. },
  54392. [
  54393. {
  54394. name: "Micro",
  54395. height: math.unit(6, "inches")
  54396. },
  54397. {
  54398. name: "Normal",
  54399. height: math.unit(8, "feet"),
  54400. default: true
  54401. },
  54402. ]
  54403. ))
  54404. characterMakers.push(() => makeCharacter(
  54405. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54406. {
  54407. hyperFront: {
  54408. height: math.unit(9 + 4/12, "feet"),
  54409. weight: math.unit(2000, "lb"),
  54410. name: "Front",
  54411. image: {
  54412. source: "./media/characters/tiden/hyper-front.svg",
  54413. extra: 400/382,
  54414. bottom: 6/406
  54415. },
  54416. form: "hyper",
  54417. },
  54418. regularFront: {
  54419. height: math.unit(7 + 10/12, "feet"),
  54420. weight: math.unit(470, "lb"),
  54421. name: "Front",
  54422. image: {
  54423. source: "./media/characters/tiden/regular-front.svg",
  54424. extra: 468/442,
  54425. bottom: 6/474
  54426. },
  54427. form: "regular",
  54428. },
  54429. },
  54430. [
  54431. {
  54432. name: "Normal",
  54433. height: math.unit(9 + 4/12, "feet"),
  54434. default: true,
  54435. form: "hyper"
  54436. },
  54437. {
  54438. name: "Normal",
  54439. height: math.unit(7 + 10/12, "feet"),
  54440. default: true,
  54441. form: "regular"
  54442. },
  54443. ],
  54444. {
  54445. "hyper": {
  54446. name: "Hyper",
  54447. default: true
  54448. },
  54449. "regular": {
  54450. name: "Regular",
  54451. },
  54452. }
  54453. ))
  54454. characterMakers.push(() => makeCharacter(
  54455. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54456. {
  54457. side: {
  54458. height: math.unit(6, "feet"),
  54459. weight: math.unit(150, "lb"),
  54460. name: "Side",
  54461. image: {
  54462. source: "./media/characters/jason-crowe/side.svg",
  54463. extra: 1771/766,
  54464. bottom: 219/1990
  54465. }
  54466. },
  54467. },
  54468. [
  54469. {
  54470. name: "Pocket Gryphon",
  54471. height: math.unit(6, "cm")
  54472. },
  54473. {
  54474. name: "Raven",
  54475. height: math.unit(60, "cm")
  54476. },
  54477. {
  54478. name: "Normal",
  54479. height: math.unit(1, "meter"),
  54480. default: true
  54481. },
  54482. ]
  54483. ))
  54484. characterMakers.push(() => makeCharacter(
  54485. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54486. {
  54487. front: {
  54488. height: math.unit(9 + 6/12, "feet"),
  54489. weight: math.unit(1100, "lb"),
  54490. name: "Front",
  54491. image: {
  54492. source: "./media/characters/django/front.svg",
  54493. extra: 1231/1136,
  54494. bottom: 34/1265
  54495. }
  54496. },
  54497. side: {
  54498. height: math.unit(9 + 6/12, "feet"),
  54499. weight: math.unit(1100, "lb"),
  54500. name: "Side",
  54501. image: {
  54502. source: "./media/characters/django/side.svg",
  54503. extra: 1267/1174,
  54504. bottom: 9/1276
  54505. }
  54506. },
  54507. },
  54508. [
  54509. {
  54510. name: "Normal",
  54511. height: math.unit(9 + 6/12, "feet"),
  54512. default: true
  54513. },
  54514. {
  54515. name: "Macro 1",
  54516. height: math.unit(50, "feet")
  54517. },
  54518. {
  54519. name: "Macro 2",
  54520. height: math.unit(500, "feet")
  54521. },
  54522. {
  54523. name: "Mega Macro",
  54524. height: math.unit(5300, "feet")
  54525. },
  54526. ]
  54527. ))
  54528. characterMakers.push(() => makeCharacter(
  54529. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54530. {
  54531. frontSfw: {
  54532. height: math.unit(120, "cm"),
  54533. weight: math.unit(15, "kg"),
  54534. name: "Front (SFW)",
  54535. image: {
  54536. source: "./media/characters/eri/front-sfw.svg",
  54537. extra: 1014/939,
  54538. bottom: 37/1051
  54539. },
  54540. form: "moth",
  54541. },
  54542. frontNsfw: {
  54543. height: math.unit(120, "cm"),
  54544. weight: math.unit(15, "kg"),
  54545. name: "Front (NSFW)",
  54546. image: {
  54547. source: "./media/characters/eri/front-nsfw.svg",
  54548. extra: 1014/939,
  54549. bottom: 37/1051
  54550. },
  54551. form: "moth",
  54552. default: true
  54553. },
  54554. egg: {
  54555. height: math.unit(10, "cm"),
  54556. name: "Egg",
  54557. image: {
  54558. source: "./media/characters/eri/egg.svg"
  54559. },
  54560. form: "egg",
  54561. default: true
  54562. },
  54563. },
  54564. [
  54565. {
  54566. name: "Normal",
  54567. height: math.unit(120, "cm"),
  54568. default: true,
  54569. form: "moth"
  54570. },
  54571. {
  54572. name: "Normal",
  54573. height: math.unit(10, "cm"),
  54574. default: true,
  54575. form: "egg"
  54576. },
  54577. ],
  54578. {
  54579. "moth": {
  54580. name: "Moth",
  54581. default: true
  54582. },
  54583. "egg": {
  54584. name: "Egg",
  54585. },
  54586. }
  54587. ))
  54588. characterMakers.push(() => makeCharacter(
  54589. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54590. {
  54591. front: {
  54592. height: math.unit(200, "feet"),
  54593. name: "Front",
  54594. image: {
  54595. source: "./media/characters/bishop-dowser/front.svg",
  54596. extra: 933/868,
  54597. bottom: 106/1039
  54598. }
  54599. },
  54600. },
  54601. [
  54602. {
  54603. name: "Giant",
  54604. height: math.unit(200, "feet"),
  54605. default: true
  54606. },
  54607. ]
  54608. ))
  54609. characterMakers.push(() => makeCharacter(
  54610. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54611. {
  54612. front: {
  54613. height: math.unit(2, "meters"),
  54614. preyCapacity: math.unit(3, "people"),
  54615. name: "Front",
  54616. image: {
  54617. source: "./media/characters/fryra/front.svg",
  54618. extra: 1025/948,
  54619. bottom: 30/1055
  54620. },
  54621. extraAttributes: {
  54622. "breastVolume": {
  54623. name: "Breast Volume",
  54624. power: 3,
  54625. type: "volume",
  54626. base: math.unit(8, "liters")
  54627. },
  54628. }
  54629. },
  54630. back: {
  54631. height: math.unit(2, "meters"),
  54632. preyCapacity: math.unit(3, "people"),
  54633. name: "Back",
  54634. image: {
  54635. source: "./media/characters/fryra/back.svg",
  54636. extra: 993/938,
  54637. bottom: 38/1031
  54638. },
  54639. extraAttributes: {
  54640. "breastVolume": {
  54641. name: "Breast Volume",
  54642. power: 3,
  54643. type: "volume",
  54644. base: math.unit(8, "liters")
  54645. },
  54646. }
  54647. },
  54648. head: {
  54649. height: math.unit(1.33, "feet"),
  54650. name: "Head",
  54651. image: {
  54652. source: "./media/characters/fryra/head.svg"
  54653. }
  54654. },
  54655. maw: {
  54656. height: math.unit(0.56, "feet"),
  54657. name: "Maw",
  54658. image: {
  54659. source: "./media/characters/fryra/maw.svg"
  54660. }
  54661. },
  54662. },
  54663. [
  54664. {
  54665. name: "Micro",
  54666. height: math.unit(5, "cm")
  54667. },
  54668. {
  54669. name: "Normal",
  54670. height: math.unit(2, "meters"),
  54671. default: true
  54672. },
  54673. {
  54674. name: "Small Macro",
  54675. height: math.unit(8, "meters")
  54676. },
  54677. {
  54678. name: "Macro",
  54679. height: math.unit(50, "meters")
  54680. },
  54681. {
  54682. name: "Megamacro",
  54683. height: math.unit(1, "km")
  54684. },
  54685. {
  54686. name: "Planetary",
  54687. height: math.unit(300000, "km")
  54688. },
  54689. {
  54690. name: "Universal",
  54691. height: math.unit(250, "lightyears")
  54692. },
  54693. {
  54694. name: "Fabric of Reality",
  54695. height: math.unit(1000, "multiverses")
  54696. },
  54697. ]
  54698. ))
  54699. characterMakers.push(() => makeCharacter(
  54700. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54701. {
  54702. frontDressed: {
  54703. height: math.unit(6 + 2/12, "feet"),
  54704. name: "Front (Dressed)",
  54705. image: {
  54706. source: "./media/characters/fiera/front-dressed.svg",
  54707. extra: 1883/1793,
  54708. bottom: 70/1953
  54709. }
  54710. },
  54711. backDressed: {
  54712. height: math.unit(6 + 2/12, "feet"),
  54713. name: "Back (Dressed)",
  54714. image: {
  54715. source: "./media/characters/fiera/back-dressed.svg",
  54716. extra: 1847/1780,
  54717. bottom: 70/1917
  54718. }
  54719. },
  54720. frontNude: {
  54721. height: math.unit(6 + 2/12, "feet"),
  54722. name: "Front (Nude)",
  54723. image: {
  54724. source: "./media/characters/fiera/front-nude.svg",
  54725. extra: 1875/1785,
  54726. bottom: 66/1941
  54727. }
  54728. },
  54729. backNude: {
  54730. height: math.unit(6 + 2/12, "feet"),
  54731. name: "Back (Nude)",
  54732. image: {
  54733. source: "./media/characters/fiera/back-nude.svg",
  54734. extra: 1855/1788,
  54735. bottom: 44/1899
  54736. }
  54737. },
  54738. maw: {
  54739. height: math.unit(1.3, "feet"),
  54740. name: "Maw",
  54741. image: {
  54742. source: "./media/characters/fiera/maw.svg"
  54743. }
  54744. },
  54745. paw: {
  54746. height: math.unit(1, "feet"),
  54747. name: "Paw",
  54748. image: {
  54749. source: "./media/characters/fiera/paw.svg"
  54750. }
  54751. },
  54752. shoe: {
  54753. height: math.unit(1.05, "feet"),
  54754. name: "Shoe",
  54755. image: {
  54756. source: "./media/characters/fiera/shoe.svg"
  54757. }
  54758. },
  54759. },
  54760. [
  54761. {
  54762. name: "Normal",
  54763. height: math.unit(6 + 2/12, "feet"),
  54764. default: true
  54765. },
  54766. {
  54767. name: "Size Difference",
  54768. height: math.unit(13, "feet")
  54769. },
  54770. {
  54771. name: "Macro",
  54772. height: math.unit(60, "feet")
  54773. },
  54774. {
  54775. name: "Mega Macro",
  54776. height: math.unit(200, "feet")
  54777. },
  54778. ]
  54779. ))
  54780. characterMakers.push(() => makeCharacter(
  54781. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54782. {
  54783. back: {
  54784. height: math.unit(6, "feet"),
  54785. name: "Back",
  54786. image: {
  54787. source: "./media/characters/flare/back.svg",
  54788. extra: 1883/1765,
  54789. bottom: 32/1915
  54790. }
  54791. },
  54792. },
  54793. [
  54794. {
  54795. name: "Normal",
  54796. height: math.unit(6 + 2/12, "feet"),
  54797. default: true
  54798. },
  54799. {
  54800. name: "Size Difference",
  54801. height: math.unit(13, "feet")
  54802. },
  54803. {
  54804. name: "Macro",
  54805. height: math.unit(60, "feet")
  54806. },
  54807. {
  54808. name: "Macro 2",
  54809. height: math.unit(100, "feet")
  54810. },
  54811. {
  54812. name: "Mega Macro",
  54813. height: math.unit(200, "feet")
  54814. },
  54815. ]
  54816. ))
  54817. characterMakers.push(() => makeCharacter(
  54818. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54819. {
  54820. front: {
  54821. height: math.unit(2.2, "m"),
  54822. weight: math.unit(300, "kg"),
  54823. name: "Front",
  54824. image: {
  54825. source: "./media/characters/hanna/front.svg",
  54826. extra: 1696/1502,
  54827. bottom: 206/1902
  54828. }
  54829. },
  54830. },
  54831. [
  54832. {
  54833. name: "Humanoid",
  54834. height: math.unit(2.2, "meters")
  54835. },
  54836. {
  54837. name: "Normal",
  54838. height: math.unit(4.8, "meters"),
  54839. default: true
  54840. },
  54841. ]
  54842. ))
  54843. characterMakers.push(() => makeCharacter(
  54844. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54845. {
  54846. front: {
  54847. height: math.unit(2.8, "meters"),
  54848. name: "Front",
  54849. image: {
  54850. source: "./media/characters/argo/front.svg",
  54851. extra: 731/518,
  54852. bottom: 84/815
  54853. }
  54854. },
  54855. },
  54856. [
  54857. {
  54858. name: "Normal",
  54859. height: math.unit(3, "meters"),
  54860. default: true
  54861. },
  54862. ]
  54863. ))
  54864. characterMakers.push(() => makeCharacter(
  54865. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54866. {
  54867. side: {
  54868. height: math.unit(3.8, "meters"),
  54869. name: "Side",
  54870. image: {
  54871. source: "./media/characters/sybil/side.svg",
  54872. extra: 382/361,
  54873. bottom: 25/407
  54874. }
  54875. },
  54876. },
  54877. [
  54878. {
  54879. name: "Normal",
  54880. height: math.unit(3.8, "meters"),
  54881. default: true
  54882. },
  54883. ]
  54884. ))
  54885. characterMakers.push(() => makeCharacter(
  54886. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54887. {
  54888. side: {
  54889. height: math.unit(6, "meters"),
  54890. name: "Side",
  54891. image: {
  54892. source: "./media/characters/plum/side.svg",
  54893. extra: 858/755,
  54894. bottom: 45/903
  54895. },
  54896. form: "taur",
  54897. default: true
  54898. },
  54899. back: {
  54900. height: math.unit(6.3, "meters"),
  54901. name: "Back",
  54902. image: {
  54903. source: "./media/characters/plum/back.svg",
  54904. extra: 887/813,
  54905. bottom: 32/919
  54906. },
  54907. form: "taur",
  54908. },
  54909. feral: {
  54910. height: math.unit(5.5, "meter"),
  54911. name: "Front",
  54912. image: {
  54913. source: "./media/characters/plum/feral.svg",
  54914. extra: 568/403,
  54915. bottom: 51/619
  54916. },
  54917. form: "feral",
  54918. default: true
  54919. },
  54920. head: {
  54921. height: math.unit(1.46, "meter"),
  54922. name: "Head",
  54923. image: {
  54924. source: "./media/characters/plum/head.svg"
  54925. },
  54926. form: "taur"
  54927. },
  54928. tailTop: {
  54929. height: math.unit(5.6, "meter"),
  54930. name: "Tail (Top)",
  54931. image: {
  54932. source: "./media/characters/plum/tail-top.svg"
  54933. },
  54934. form: "taur",
  54935. },
  54936. tailBottom: {
  54937. height: math.unit(5.6, "meter"),
  54938. name: "Tail (Bottom)",
  54939. image: {
  54940. source: "./media/characters/plum/tail-bottom.svg"
  54941. },
  54942. form: "taur",
  54943. },
  54944. feralHead: {
  54945. height: math.unit(2.56549521, "meter"),
  54946. name: "Head",
  54947. image: {
  54948. source: "./media/characters/plum/head.svg"
  54949. },
  54950. form: "feral"
  54951. },
  54952. feralTailTop: {
  54953. height: math.unit(5.44728435, "meter"),
  54954. name: "Tail (Top)",
  54955. image: {
  54956. source: "./media/characters/plum/tail-top.svg"
  54957. },
  54958. form: "feral",
  54959. },
  54960. feralTailBottom: {
  54961. height: math.unit(5.44728435, "meter"),
  54962. name: "Tail (Bottom)",
  54963. image: {
  54964. source: "./media/characters/plum/tail-bottom.svg"
  54965. },
  54966. form: "feral",
  54967. },
  54968. },
  54969. [
  54970. {
  54971. name: "Normal",
  54972. height: math.unit(6, "meters"),
  54973. default: true,
  54974. form: "taur"
  54975. },
  54976. {
  54977. name: "Normal",
  54978. height: math.unit(5.5, "meters"),
  54979. default: true,
  54980. form: "feral"
  54981. },
  54982. ],
  54983. {
  54984. "taur": {
  54985. name: "Taur",
  54986. default: true
  54987. },
  54988. "feral": {
  54989. name: "Feral",
  54990. },
  54991. }
  54992. ))
  54993. characterMakers.push(() => makeCharacter(
  54994. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54995. {
  54996. front: {
  54997. height: math.unit(6, "feet"),
  54998. weight: math.unit(115, "lb"),
  54999. name: "Front",
  55000. image: {
  55001. source: "./media/characters/celeste-kitsune/front.svg",
  55002. extra: 393/366,
  55003. bottom: 7/400
  55004. }
  55005. },
  55006. side: {
  55007. height: math.unit(6, "feet"),
  55008. weight: math.unit(115, "lb"),
  55009. name: "Side",
  55010. image: {
  55011. source: "./media/characters/celeste-kitsune/side.svg",
  55012. extra: 818/765,
  55013. bottom: 40/858
  55014. }
  55015. },
  55016. },
  55017. [
  55018. {
  55019. name: "Megamacro",
  55020. height: math.unit(1500, "miles"),
  55021. default: true
  55022. },
  55023. ]
  55024. ))
  55025. characterMakers.push(() => makeCharacter(
  55026. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55027. {
  55028. front: {
  55029. height: math.unit(8, "meters"),
  55030. name: "Front",
  55031. image: {
  55032. source: "./media/characters/io/front.svg",
  55033. extra: 865/722,
  55034. bottom: 58/923
  55035. }
  55036. },
  55037. back: {
  55038. height: math.unit(8, "meters"),
  55039. name: "Back",
  55040. image: {
  55041. source: "./media/characters/io/back.svg",
  55042. extra: 920/776,
  55043. bottom: 42/962
  55044. }
  55045. },
  55046. head: {
  55047. height: math.unit(5.09, "meters"),
  55048. name: "Head",
  55049. image: {
  55050. source: "./media/characters/io/head.svg"
  55051. }
  55052. },
  55053. hand: {
  55054. height: math.unit(1.6, "meters"),
  55055. name: "Hand",
  55056. image: {
  55057. source: "./media/characters/io/hand.svg"
  55058. }
  55059. },
  55060. foot: {
  55061. height: math.unit(2.4, "meters"),
  55062. name: "Foot",
  55063. image: {
  55064. source: "./media/characters/io/foot.svg"
  55065. }
  55066. },
  55067. },
  55068. [
  55069. {
  55070. name: "Normal",
  55071. height: math.unit(8, "meters"),
  55072. default: true
  55073. },
  55074. ]
  55075. ))
  55076. characterMakers.push(() => makeCharacter(
  55077. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55078. {
  55079. side: {
  55080. height: math.unit(6 + 3/12, "feet"),
  55081. weight: math.unit(225, "lb"),
  55082. name: "Side",
  55083. image: {
  55084. source: "./media/characters/silas/side.svg",
  55085. extra: 703/653,
  55086. bottom: 23/726
  55087. },
  55088. extraAttributes: {
  55089. "pawLength": {
  55090. name: "Paw Length",
  55091. power: 1,
  55092. type: "length",
  55093. base: math.unit(12, "inches")
  55094. },
  55095. "pawWidth": {
  55096. name: "Paw Width",
  55097. power: 1,
  55098. type: "length",
  55099. base: math.unit(4.5, "inches")
  55100. },
  55101. "pawArea": {
  55102. name: "Paw Area",
  55103. power: 2,
  55104. type: "area",
  55105. base: math.unit(12 * 4.5, "inches^2")
  55106. },
  55107. }
  55108. },
  55109. },
  55110. [
  55111. {
  55112. name: "Normal",
  55113. height: math.unit(6 + 3/12, "feet"),
  55114. default: true
  55115. },
  55116. ]
  55117. ))
  55118. characterMakers.push(() => makeCharacter(
  55119. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55120. {
  55121. back: {
  55122. height: math.unit(1.6, "meters"),
  55123. weight: math.unit(150, "lb"),
  55124. name: "Back",
  55125. image: {
  55126. source: "./media/characters/zari/back.svg",
  55127. extra: 424/411,
  55128. bottom: 32/456
  55129. },
  55130. extraAttributes: {
  55131. "bladderCapacity": {
  55132. name: "Bladder Size",
  55133. power: 3,
  55134. type: "volume",
  55135. base: math.unit(500, "mL")
  55136. },
  55137. "bladderFlow": {
  55138. name: "Flow Rate",
  55139. power: 3,
  55140. type: "volume",
  55141. base: math.unit(25, "mL")
  55142. },
  55143. }
  55144. },
  55145. },
  55146. [
  55147. {
  55148. name: "Normal",
  55149. height: math.unit(1.6, "meters"),
  55150. default: true
  55151. },
  55152. ]
  55153. ))
  55154. characterMakers.push(() => makeCharacter(
  55155. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55156. {
  55157. front: {
  55158. height: math.unit(25, "feet"),
  55159. weight: math.unit(5, "tons"),
  55160. name: "Front",
  55161. image: {
  55162. source: "./media/characters/charlie-human/front.svg",
  55163. extra: 1870/1740,
  55164. bottom: 102/1972
  55165. },
  55166. extraAttributes: {
  55167. "dickLength": {
  55168. name: "Dick Length",
  55169. power: 1,
  55170. type: "length",
  55171. base: math.unit(9, "feet")
  55172. },
  55173. }
  55174. },
  55175. back: {
  55176. height: math.unit(25, "feet"),
  55177. weight: math.unit(5, "tons"),
  55178. name: "Back",
  55179. image: {
  55180. source: "./media/characters/charlie-human/back.svg",
  55181. extra: 1858/1733,
  55182. bottom: 105/1963
  55183. },
  55184. extraAttributes: {
  55185. "dickLength": {
  55186. name: "Dick Length",
  55187. power: 1,
  55188. type: "length",
  55189. base: math.unit(9, "feet")
  55190. },
  55191. }
  55192. },
  55193. },
  55194. [
  55195. {
  55196. name: "\"Normal\"",
  55197. height: math.unit(6 + 4/12, "feet")
  55198. },
  55199. {
  55200. name: "Big",
  55201. height: math.unit(25, "feet"),
  55202. default: true
  55203. },
  55204. ]
  55205. ))
  55206. characterMakers.push(() => makeCharacter(
  55207. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55208. {
  55209. front: {
  55210. height: math.unit(6 + 4/12, "feet"),
  55211. weight: math.unit(320, "lb"),
  55212. name: "Front",
  55213. image: {
  55214. source: "./media/characters/ookitsu/front.svg",
  55215. extra: 1160/976,
  55216. bottom: 38/1198
  55217. }
  55218. },
  55219. frontNsfw: {
  55220. height: math.unit(6 + 4/12, "feet"),
  55221. weight: math.unit(320, "lb"),
  55222. name: "Front (NSFW)",
  55223. image: {
  55224. source: "./media/characters/ookitsu/front-nsfw.svg",
  55225. extra: 1160/976,
  55226. bottom: 38/1198
  55227. }
  55228. },
  55229. back: {
  55230. height: math.unit(6 + 4/12, "feet"),
  55231. weight: math.unit(320, "lb"),
  55232. name: "Back",
  55233. image: {
  55234. source: "./media/characters/ookitsu/back.svg",
  55235. extra: 1030/975,
  55236. bottom: 70/1100
  55237. }
  55238. },
  55239. head: {
  55240. height: math.unit(1.79, "feet"),
  55241. name: "Head",
  55242. image: {
  55243. source: "./media/characters/ookitsu/head.svg"
  55244. }
  55245. },
  55246. hand: {
  55247. height: math.unit(0.92, "feet"),
  55248. name: "Hand",
  55249. image: {
  55250. source: "./media/characters/ookitsu/hand.svg"
  55251. }
  55252. },
  55253. tails: {
  55254. height: math.unit(3.3, "feet"),
  55255. name: "Tails",
  55256. image: {
  55257. source: "./media/characters/ookitsu/tails.svg"
  55258. }
  55259. },
  55260. dick: {
  55261. height: math.unit(1.10833, "feet"),
  55262. name: "Dick",
  55263. image: {
  55264. source: "./media/characters/ookitsu/dick.svg"
  55265. }
  55266. },
  55267. },
  55268. [
  55269. {
  55270. name: "Normal",
  55271. height: math.unit(6 + 4/12, "feet"),
  55272. default: true
  55273. },
  55274. {
  55275. name: "Macro",
  55276. height: math.unit(30, "feet")
  55277. },
  55278. ]
  55279. ))
  55280. characterMakers.push(() => makeCharacter(
  55281. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55282. {
  55283. anthroFront: {
  55284. height: math.unit(6, "feet"),
  55285. weight: math.unit(250, "lb"),
  55286. name: "Front",
  55287. image: {
  55288. source: "./media/characters/jhusky/anthro-front.svg",
  55289. extra: 474/439,
  55290. bottom: 7/481
  55291. },
  55292. form: "anthro",
  55293. default: true
  55294. },
  55295. taurSideSfw: {
  55296. height: math.unit(6 + 4/12, "feet"),
  55297. weight: math.unit(500, "lb"),
  55298. name: "Side (SFW)",
  55299. image: {
  55300. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55301. extra: 1741/1629,
  55302. bottom: 196/1937
  55303. },
  55304. form: "taur",
  55305. default: true
  55306. },
  55307. taurSideNsfw: {
  55308. height: math.unit(6 + 4/12, "feet"),
  55309. weight: math.unit(500, "lb"),
  55310. name: "Taur (NSFW)",
  55311. image: {
  55312. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55313. extra: 1741/1629,
  55314. bottom: 196/1937
  55315. },
  55316. form: "taur",
  55317. },
  55318. },
  55319. [
  55320. {
  55321. name: "Huge",
  55322. height: math.unit(500, "feet"),
  55323. form: "anthro"
  55324. },
  55325. {
  55326. name: "Macro",
  55327. height: math.unit(1000, "feet"),
  55328. default: true,
  55329. form: "anthro"
  55330. },
  55331. {
  55332. name: "Megamacro",
  55333. height: math.unit(10000, "feet"),
  55334. form: "anthro"
  55335. },
  55336. {
  55337. name: "Huge",
  55338. height: math.unit(528, "feet"),
  55339. form: "taur"
  55340. },
  55341. {
  55342. name: "Macro",
  55343. height: math.unit(1056, "feet"),
  55344. default: true,
  55345. form: "taur"
  55346. },
  55347. {
  55348. name: "Megamacro",
  55349. height: math.unit(10556, "feet"),
  55350. form: "taur"
  55351. },
  55352. ],
  55353. {
  55354. "anthro": {
  55355. name: "Anthro",
  55356. default: true
  55357. },
  55358. "taur": {
  55359. name: "Taur",
  55360. },
  55361. }
  55362. ))
  55363. characterMakers.push(() => makeCharacter(
  55364. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55365. {
  55366. front: {
  55367. height: math.unit(8, "feet"),
  55368. weight: math.unit(500, "lb"),
  55369. name: "Front",
  55370. image: {
  55371. source: "./media/characters/armail/front.svg",
  55372. extra: 1753/1669,
  55373. bottom: 155/1908
  55374. }
  55375. },
  55376. back: {
  55377. height: math.unit(8, "feet"),
  55378. weight: math.unit(500, "lb"),
  55379. name: "Back",
  55380. image: {
  55381. source: "./media/characters/armail/back.svg",
  55382. extra: 1872/1803,
  55383. bottom: 63/1935
  55384. }
  55385. },
  55386. },
  55387. [
  55388. {
  55389. name: "Micro",
  55390. height: math.unit(0.25, "feet")
  55391. },
  55392. {
  55393. name: "Normal",
  55394. height: math.unit(8, "feet"),
  55395. default: true
  55396. },
  55397. {
  55398. name: "Mini-macro",
  55399. height: math.unit(30, "feet")
  55400. },
  55401. {
  55402. name: "Macro",
  55403. height: math.unit(400, "feet")
  55404. },
  55405. {
  55406. name: "Mega-macro",
  55407. height: math.unit(6000, "feet")
  55408. },
  55409. ]
  55410. ))
  55411. characterMakers.push(() => makeCharacter(
  55412. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55413. {
  55414. front: {
  55415. height: math.unit(6 + 7/12, "feet"),
  55416. weight: math.unit(210, "lb"),
  55417. name: "Front",
  55418. image: {
  55419. source: "./media/characters/wilfred-t-buxton/front.svg",
  55420. extra: 1068/882,
  55421. bottom: 28/1096
  55422. }
  55423. },
  55424. },
  55425. [
  55426. {
  55427. name: "Normal",
  55428. height: math.unit(6 + 7/12, "feet"),
  55429. default: true
  55430. },
  55431. ]
  55432. ))
  55433. characterMakers.push(() => makeCharacter(
  55434. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55435. {
  55436. front: {
  55437. height: math.unit(5 + 2/12, "feet"),
  55438. weight: math.unit(120, "lb"),
  55439. name: "Front",
  55440. image: {
  55441. source: "./media/characters/leighton-marrow/front.svg",
  55442. extra: 441/409,
  55443. bottom: 37/478
  55444. }
  55445. },
  55446. },
  55447. [
  55448. {
  55449. name: "Normal",
  55450. height: math.unit(5 + 2/12, "feet"),
  55451. default: true
  55452. },
  55453. ]
  55454. ))
  55455. characterMakers.push(() => makeCharacter(
  55456. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55457. {
  55458. front: {
  55459. height: math.unit(4, "meters"),
  55460. weight: math.unit(1200, "kg"),
  55461. name: "Front",
  55462. image: {
  55463. source: "./media/characters/licos/front.svg",
  55464. extra: 1727/1604,
  55465. bottom: 101/1828
  55466. },
  55467. form: "anthro",
  55468. default: true
  55469. },
  55470. taur_side: {
  55471. height: math.unit(20, "meters"),
  55472. weight: math.unit(1100000, "kg"),
  55473. name: "Side",
  55474. image: {
  55475. source: "./media/characters/licos/taur.svg",
  55476. extra: 1158/1091,
  55477. bottom: 80/1238
  55478. },
  55479. form: "taur",
  55480. default: true
  55481. },
  55482. },
  55483. [
  55484. {
  55485. name: "Normal",
  55486. height: math.unit(4, "meters"),
  55487. default: true,
  55488. form: "anthro"
  55489. },
  55490. {
  55491. name: "Normal",
  55492. height: math.unit(20, "meters"),
  55493. default: true,
  55494. form: "taur"
  55495. },
  55496. ],
  55497. {
  55498. "anthro": {
  55499. name: "Anthro",
  55500. default: true
  55501. },
  55502. "taur": {
  55503. name: "Taur",
  55504. },
  55505. }
  55506. ))
  55507. characterMakers.push(() => makeCharacter(
  55508. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55509. {
  55510. front: {
  55511. height: math.unit(10 + 3/12, "feet"),
  55512. name: "Front",
  55513. image: {
  55514. source: "./media/characters/theo-monkey/front.svg",
  55515. extra: 1735/1658,
  55516. bottom: 73/1808
  55517. }
  55518. },
  55519. back: {
  55520. height: math.unit(10 + 3/12, "feet"),
  55521. name: "Back",
  55522. image: {
  55523. source: "./media/characters/theo-monkey/back.svg",
  55524. extra: 1742/1664,
  55525. bottom: 33/1775
  55526. }
  55527. },
  55528. head: {
  55529. height: math.unit(2.29, "feet"),
  55530. name: "Head",
  55531. image: {
  55532. source: "./media/characters/theo-monkey/head.svg"
  55533. }
  55534. },
  55535. handPalm: {
  55536. height: math.unit(1.73, "feet"),
  55537. name: "Hand (Palm)",
  55538. image: {
  55539. source: "./media/characters/theo-monkey/hand-palm.svg"
  55540. }
  55541. },
  55542. handBack: {
  55543. height: math.unit(1.63, "feet"),
  55544. name: "Hand (Back)",
  55545. image: {
  55546. source: "./media/characters/theo-monkey/hand-back.svg"
  55547. }
  55548. },
  55549. footSole: {
  55550. height: math.unit(2.15, "feet"),
  55551. name: "Foot (Sole)",
  55552. image: {
  55553. source: "./media/characters/theo-monkey/foot-sole.svg"
  55554. }
  55555. },
  55556. footSide: {
  55557. height: math.unit(1.6, "feet"),
  55558. name: "Foot (Side)",
  55559. image: {
  55560. source: "./media/characters/theo-monkey/foot-side.svg"
  55561. }
  55562. },
  55563. },
  55564. [
  55565. {
  55566. name: "Normal",
  55567. height: math.unit(10 + 3/12, "feet"),
  55568. default: true
  55569. },
  55570. ]
  55571. ))
  55572. characterMakers.push(() => makeCharacter(
  55573. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55574. {
  55575. front: {
  55576. height: math.unit(11, "feet"),
  55577. weight: math.unit(3000, "lb"),
  55578. preyCapacity: math.unit(10, "people"),
  55579. name: "Front",
  55580. image: {
  55581. source: "./media/characters/brook/front.svg",
  55582. extra: 909/835,
  55583. bottom: 108/1017
  55584. }
  55585. },
  55586. back: {
  55587. height: math.unit(11, "feet"),
  55588. weight: math.unit(3000, "lb"),
  55589. preyCapacity: math.unit(10, "people"),
  55590. name: "Back",
  55591. image: {
  55592. source: "./media/characters/brook/back.svg",
  55593. extra: 976/916,
  55594. bottom: 34/1010
  55595. }
  55596. },
  55597. backAlt: {
  55598. height: math.unit(11, "feet"),
  55599. weight: math.unit(3000, "lb"),
  55600. preyCapacity: math.unit(10, "people"),
  55601. name: "Back (Alt)",
  55602. image: {
  55603. source: "./media/characters/brook/back-alt.svg",
  55604. extra: 1283/1213,
  55605. bottom: 35/1318
  55606. }
  55607. },
  55608. bust: {
  55609. height: math.unit(9.0859030837, "feet"),
  55610. weight: math.unit(3000, "lb"),
  55611. preyCapacity: math.unit(10, "people"),
  55612. name: "Bust",
  55613. image: {
  55614. source: "./media/characters/brook/bust.svg",
  55615. extra: 2043/1923,
  55616. bottom: 0/2043
  55617. }
  55618. },
  55619. },
  55620. [
  55621. {
  55622. name: "Small",
  55623. height: math.unit(11, "feet"),
  55624. default: true
  55625. },
  55626. {
  55627. name: "Towering",
  55628. height: math.unit(5, "km")
  55629. },
  55630. {
  55631. name: "Enormous",
  55632. height: math.unit(25, "earths")
  55633. },
  55634. ]
  55635. ))
  55636. characterMakers.push(() => makeCharacter(
  55637. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55638. {
  55639. front: {
  55640. height: math.unit(4, "feet"),
  55641. weight: math.unit(150, "lb"),
  55642. name: "Front",
  55643. image: {
  55644. source: "./media/characters/squishi/front.svg",
  55645. extra: 1428/1271,
  55646. bottom: 30/1458
  55647. },
  55648. extraAttributes: {
  55649. "pawSize": {
  55650. name: "Paw Size",
  55651. power: 1,
  55652. type: "length",
  55653. base: math.unit(14, "ShoeSizeMensUS"),
  55654. defaultUnit: "ShoeSizeMensUS"
  55655. },
  55656. }
  55657. },
  55658. side: {
  55659. height: math.unit(4, "feet"),
  55660. weight: math.unit(150, "lb"),
  55661. name: "Side",
  55662. image: {
  55663. source: "./media/characters/squishi/side.svg",
  55664. extra: 1428/1271,
  55665. bottom: 30/1458
  55666. },
  55667. extraAttributes: {
  55668. "pawSize": {
  55669. name: "Paw Size",
  55670. power: 1,
  55671. type: "length",
  55672. base: math.unit(14, "ShoeSizeMensUS"),
  55673. defaultUnit: "ShoeSizeMensUS"
  55674. },
  55675. }
  55676. },
  55677. back: {
  55678. height: math.unit(4, "feet"),
  55679. weight: math.unit(150, "lb"),
  55680. name: "Back",
  55681. image: {
  55682. source: "./media/characters/squishi/back.svg",
  55683. extra: 1428/1271,
  55684. bottom: 30/1458
  55685. },
  55686. extraAttributes: {
  55687. "pawSize": {
  55688. name: "Paw Size",
  55689. power: 1,
  55690. type: "length",
  55691. base: math.unit(14, "ShoeSizeMensUS"),
  55692. defaultUnit: "ShoeSizeMensUS"
  55693. },
  55694. }
  55695. },
  55696. },
  55697. [
  55698. {
  55699. name: "Normal",
  55700. height: math.unit(4, "feet"),
  55701. default: true
  55702. },
  55703. ]
  55704. ))
  55705. characterMakers.push(() => makeCharacter(
  55706. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55707. {
  55708. front: {
  55709. height: math.unit(7 + 8/12, "feet"),
  55710. weight: math.unit(333, "lb"),
  55711. name: "Front",
  55712. image: {
  55713. source: "./media/characters/vincent-vasroc/front.svg",
  55714. extra: 1962/1860,
  55715. bottom: 41/2003
  55716. }
  55717. },
  55718. back: {
  55719. height: math.unit(7 + 8/12, "feet"),
  55720. weight: math.unit(333, "lb"),
  55721. name: "Back",
  55722. image: {
  55723. source: "./media/characters/vincent-vasroc/back.svg",
  55724. extra: 1952/1815,
  55725. bottom: 33/1985
  55726. }
  55727. },
  55728. paw: {
  55729. height: math.unit(1.24, "feet"),
  55730. name: "Paw",
  55731. image: {
  55732. source: "./media/characters/vincent-vasroc/paw.svg"
  55733. }
  55734. },
  55735. ear: {
  55736. height: math.unit(0.75, "feet"),
  55737. name: "Ear",
  55738. image: {
  55739. source: "./media/characters/vincent-vasroc/ear.svg"
  55740. }
  55741. },
  55742. },
  55743. [
  55744. {
  55745. name: "Nano",
  55746. height: math.unit(92, "micrometers")
  55747. },
  55748. {
  55749. name: "Normal",
  55750. height: math.unit(7 + 8/12, "feet"),
  55751. default: true
  55752. },
  55753. ]
  55754. ))
  55755. characterMakers.push(() => makeCharacter(
  55756. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55757. {
  55758. frontNsfw: {
  55759. height: math.unit(40, "feet"),
  55760. weight: math.unit(58, "tons"),
  55761. name: "Front (NSFW)",
  55762. image: {
  55763. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55764. extra: 1265/965,
  55765. bottom: 155/1420
  55766. }
  55767. },
  55768. frontSfw: {
  55769. height: math.unit(40, "feet"),
  55770. weight: math.unit(58, "tons"),
  55771. name: "Front (SFW)",
  55772. image: {
  55773. source: "./media/characters/ru-kahn/front-sfw.svg",
  55774. extra: 1265/965,
  55775. bottom: 80/1345
  55776. }
  55777. },
  55778. },
  55779. [
  55780. {
  55781. name: "Small",
  55782. height: math.unit(4, "feet")
  55783. },
  55784. {
  55785. name: "Normal",
  55786. height: math.unit(40, "feet"),
  55787. default: true
  55788. },
  55789. {
  55790. name: "Macro",
  55791. height: math.unit(400, "feet")
  55792. },
  55793. ]
  55794. ))
  55795. characterMakers.push(() => makeCharacter(
  55796. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55797. {
  55798. frontNude: {
  55799. height: math.unit(6 + 5/12, "feet"),
  55800. name: "Front (Nude)",
  55801. image: {
  55802. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55803. extra: 1369/1366,
  55804. bottom: 68/1437
  55805. }
  55806. },
  55807. frontDressed: {
  55808. height: math.unit(6 + 5/12, "feet"),
  55809. name: "Front (Dressed)",
  55810. image: {
  55811. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55812. extra: 1369/1366,
  55813. bottom: 68/1437
  55814. }
  55815. },
  55816. },
  55817. [
  55818. {
  55819. name: "Normal",
  55820. height: math.unit(6 + 5/12, "feet"),
  55821. default: true
  55822. },
  55823. {
  55824. name: "Maximum",
  55825. height: math.unit(1930, "feet")
  55826. },
  55827. ]
  55828. ))
  55829. characterMakers.push(() => makeCharacter(
  55830. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55831. {
  55832. front: {
  55833. height: math.unit(5 + 6/12, "feet"),
  55834. name: "Front",
  55835. image: {
  55836. source: "./media/characters/kaja/front.svg",
  55837. extra: 1874/1514,
  55838. bottom: 117/1991
  55839. }
  55840. },
  55841. },
  55842. [
  55843. {
  55844. name: "Normal",
  55845. height: math.unit(5 + 6/12, "feet"),
  55846. default: true
  55847. },
  55848. ]
  55849. ))
  55850. characterMakers.push(() => makeCharacter(
  55851. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55852. {
  55853. front: {
  55854. height: math.unit(5 + 9/12, "feet"),
  55855. weight: math.unit(200, "lb"),
  55856. name: "Front",
  55857. image: {
  55858. source: "./media/characters/mark-smith/front.svg",
  55859. extra: 1004/943,
  55860. bottom: 58/1062
  55861. }
  55862. },
  55863. back: {
  55864. height: math.unit(5 + 9/12, "feet"),
  55865. weight: math.unit(200, "lb"),
  55866. name: "Back",
  55867. image: {
  55868. source: "./media/characters/mark-smith/back.svg",
  55869. extra: 1023/953,
  55870. bottom: 24/1047
  55871. }
  55872. },
  55873. head: {
  55874. height: math.unit(1.82, "feet"),
  55875. name: "Head",
  55876. image: {
  55877. source: "./media/characters/mark-smith/head.svg"
  55878. }
  55879. },
  55880. hand: {
  55881. height: math.unit(1.4, "feet"),
  55882. name: "Hand",
  55883. image: {
  55884. source: "./media/characters/mark-smith/hand.svg"
  55885. }
  55886. },
  55887. paw: {
  55888. height: math.unit(1.69, "feet"),
  55889. name: "Paw",
  55890. image: {
  55891. source: "./media/characters/mark-smith/paw.svg"
  55892. }
  55893. },
  55894. },
  55895. [
  55896. {
  55897. name: "Micro",
  55898. height: math.unit(0.25, "inches")
  55899. },
  55900. {
  55901. name: "Normal",
  55902. height: math.unit(5 + 9/12, "feet"),
  55903. default: true
  55904. },
  55905. {
  55906. name: "Macro",
  55907. height: math.unit(500, "feet")
  55908. },
  55909. ]
  55910. ))
  55911. characterMakers.push(() => makeCharacter(
  55912. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55913. {
  55914. frontNude: {
  55915. height: math.unit(6, "feet"),
  55916. name: "Front (Nude)",
  55917. image: {
  55918. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55919. extra: 1384/1321,
  55920. bottom: 57/1441
  55921. }
  55922. },
  55923. frontDressed: {
  55924. height: math.unit(6, "feet"),
  55925. name: "Front (Dressed)",
  55926. image: {
  55927. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55928. extra: 1384/1321,
  55929. bottom: 57/1441
  55930. }
  55931. },
  55932. },
  55933. [
  55934. {
  55935. name: "Normal",
  55936. height: math.unit(6, "feet"),
  55937. default: true
  55938. },
  55939. {
  55940. name: "Maximum",
  55941. height: math.unit(1776, "feet")
  55942. },
  55943. ]
  55944. ))
  55945. characterMakers.push(() => makeCharacter(
  55946. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55947. {
  55948. front: {
  55949. height: math.unit(2 + 4/12, "feet"),
  55950. weight: math.unit(350, "lb"),
  55951. name: "Front",
  55952. image: {
  55953. source: "./media/characters/devos/front.svg",
  55954. extra: 958/852,
  55955. bottom: 143/1101
  55956. }
  55957. },
  55958. },
  55959. [
  55960. {
  55961. name: "Base",
  55962. height: math.unit(2 + 4/12, "feet"),
  55963. default: true
  55964. },
  55965. ]
  55966. ))
  55967. characterMakers.push(() => makeCharacter(
  55968. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55969. {
  55970. front: {
  55971. height: math.unit(9 + 2/12, "feet"),
  55972. name: "Front",
  55973. image: {
  55974. source: "./media/characters/hiveheart/front.svg",
  55975. extra: 394/364,
  55976. bottom: 65/459
  55977. }
  55978. },
  55979. back: {
  55980. height: math.unit(9 + 2/12, "feet"),
  55981. name: "Back",
  55982. image: {
  55983. source: "./media/characters/hiveheart/back.svg",
  55984. extra: 374/357,
  55985. bottom: 63/437
  55986. }
  55987. },
  55988. },
  55989. [
  55990. {
  55991. name: "Base",
  55992. height: math.unit(9 + 2/12, "feet"),
  55993. default: true
  55994. },
  55995. ]
  55996. ))
  55997. characterMakers.push(() => makeCharacter(
  55998. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55999. {
  56000. front: {
  56001. height: math.unit(2.5, "inches"),
  56002. weight: math.unit(0.6, "oz"),
  56003. name: "Front",
  56004. image: {
  56005. source: "./media/characters/bryn/front.svg",
  56006. extra: 1480/1205,
  56007. bottom: 27/1507
  56008. }
  56009. },
  56010. back: {
  56011. height: math.unit(2.5, "inches"),
  56012. weight: math.unit(0.6, "oz"),
  56013. name: "Back",
  56014. image: {
  56015. source: "./media/characters/bryn/back.svg",
  56016. extra: 1475/1201,
  56017. bottom: 39/1514
  56018. }
  56019. },
  56020. foot: {
  56021. height: math.unit(0.4, "inches"),
  56022. name: "Foot",
  56023. image: {
  56024. source: "./media/characters/bryn/foot.svg"
  56025. }
  56026. },
  56027. },
  56028. [
  56029. {
  56030. name: "Normal",
  56031. height: math.unit(2.5, "inches"),
  56032. default: true
  56033. },
  56034. ]
  56035. ))
  56036. characterMakers.push(() => makeCharacter(
  56037. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56038. {
  56039. side: {
  56040. height: math.unit(7, "feet"),
  56041. weight: math.unit(657, "kg"),
  56042. name: "Side",
  56043. image: {
  56044. source: "./media/characters/delta/side.svg",
  56045. extra: 781/212,
  56046. bottom: 7/788
  56047. },
  56048. extraAttributes: {
  56049. "wingspan": {
  56050. name: "Wingspan",
  56051. power: 1,
  56052. type: "length",
  56053. base: math.unit(48, "feet")
  56054. },
  56055. "length": {
  56056. name: "Length",
  56057. power: 1,
  56058. type: "length",
  56059. base: math.unit(21, "feet")
  56060. },
  56061. "pawSize": {
  56062. name: "Paw Size",
  56063. power: 2,
  56064. type: "area",
  56065. base: math.unit(1.5*1.4, "feet^2")
  56066. },
  56067. }
  56068. },
  56069. },
  56070. [
  56071. {
  56072. name: "Normal",
  56073. height: math.unit(6, "feet"),
  56074. default: true
  56075. },
  56076. ]
  56077. ))
  56078. characterMakers.push(() => makeCharacter(
  56079. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56080. {
  56081. front: {
  56082. height: math.unit(6, "feet"),
  56083. name: "Front",
  56084. image: {
  56085. source: "./media/characters/pyrow/front.svg",
  56086. extra: 513/486,
  56087. bottom: 14/527
  56088. }
  56089. },
  56090. frontWing: {
  56091. height: math.unit(6, "feet"),
  56092. name: "Front (Wing)",
  56093. image: {
  56094. source: "./media/characters/pyrow/front-wing.svg",
  56095. extra: 539/383,
  56096. bottom: 20/559
  56097. }
  56098. },
  56099. back: {
  56100. height: math.unit(6, "feet"),
  56101. name: "Back",
  56102. image: {
  56103. source: "./media/characters/pyrow/back.svg",
  56104. extra: 500/473,
  56105. bottom: 9/509
  56106. }
  56107. },
  56108. },
  56109. [
  56110. {
  56111. name: "Normal",
  56112. height: math.unit(6, "feet"),
  56113. default: true
  56114. },
  56115. ]
  56116. ))
  56117. characterMakers.push(() => makeCharacter(
  56118. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56119. {
  56120. front: {
  56121. height: math.unit(5, "meters"),
  56122. weight: math.unit(3, "tonnes"),
  56123. name: "Front",
  56124. image: {
  56125. source: "./media/characters/velikan/front.svg",
  56126. extra: 867/744,
  56127. bottom: 71/938
  56128. },
  56129. extraAttributes: {
  56130. "shoeSize": {
  56131. name: "Shoe Size",
  56132. power: 1,
  56133. type: "length",
  56134. base: math.unit(135, "ShoeSizeUK"),
  56135. defaultUnit: "ShoeSizeUK"
  56136. },
  56137. }
  56138. },
  56139. },
  56140. [
  56141. {
  56142. name: "Normal",
  56143. height: math.unit(5, "meters"),
  56144. default: true
  56145. },
  56146. {
  56147. name: "Macro",
  56148. height: math.unit(1, "km")
  56149. },
  56150. {
  56151. name: "Mega Macro",
  56152. height: math.unit(100, "km")
  56153. },
  56154. {
  56155. name: "Giga Macro",
  56156. height: math.unit(2, "megameters")
  56157. },
  56158. {
  56159. name: "Planetary",
  56160. height: math.unit(22, "megameters")
  56161. },
  56162. {
  56163. name: "Solar",
  56164. height: math.unit(8, "gigameters")
  56165. },
  56166. {
  56167. name: "Cosmic",
  56168. height: math.unit(10, "zettameters")
  56169. },
  56170. {
  56171. name: "Omni",
  56172. height: math.unit(9e260, "multiverses")
  56173. },
  56174. ]
  56175. ))
  56176. characterMakers.push(() => makeCharacter(
  56177. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56178. {
  56179. front: {
  56180. height: math.unit(4 + 3/12, "feet"),
  56181. weight: math.unit(90, "lb"),
  56182. name: "Front",
  56183. image: {
  56184. source: "./media/characters/sabiki/front.svg",
  56185. extra: 1662/1423,
  56186. bottom: 65/1727
  56187. }
  56188. },
  56189. },
  56190. [
  56191. {
  56192. name: "Normal",
  56193. height: math.unit(4 + 3/12, "feet"),
  56194. default: true
  56195. },
  56196. ]
  56197. ))
  56198. characterMakers.push(() => makeCharacter(
  56199. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56200. {
  56201. frontSfw: {
  56202. height: math.unit(2, "mm"),
  56203. name: "Front (SFW)",
  56204. image: {
  56205. source: "./media/characters/carmel/front-sfw.svg",
  56206. extra: 1131/1006,
  56207. bottom: 66/1197
  56208. }
  56209. },
  56210. frontNsfw: {
  56211. height: math.unit(2, "mm"),
  56212. name: "Front (NSFW)",
  56213. image: {
  56214. source: "./media/characters/carmel/front-nsfw.svg",
  56215. extra: 1131/1006,
  56216. bottom: 66/1197
  56217. }
  56218. },
  56219. foot: {
  56220. height: math.unit(0.3, "mm"),
  56221. name: "Foot",
  56222. image: {
  56223. source: "./media/characters/carmel/foot.svg"
  56224. }
  56225. },
  56226. tongue: {
  56227. height: math.unit(0.71, "mm"),
  56228. name: "Tongue",
  56229. image: {
  56230. source: "./media/characters/carmel/tongue.svg"
  56231. }
  56232. },
  56233. dick: {
  56234. height: math.unit(0.085, "mm"),
  56235. name: "Dick",
  56236. image: {
  56237. source: "./media/characters/carmel/dick.svg"
  56238. }
  56239. },
  56240. },
  56241. [
  56242. {
  56243. name: "Micro",
  56244. height: math.unit(2, "mm"),
  56245. default: true
  56246. },
  56247. {
  56248. name: "Normal",
  56249. height: math.unit(4 + 8/12, "feet")
  56250. },
  56251. {
  56252. name: "Mega Macro",
  56253. height: math.unit(250, "feet")
  56254. },
  56255. {
  56256. name: "BIGGER",
  56257. height: math.unit(1000, "feet")
  56258. },
  56259. {
  56260. name: "BIGGEST",
  56261. height: math.unit(2, "miles")
  56262. },
  56263. ]
  56264. ))
  56265. characterMakers.push(() => makeCharacter(
  56266. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56267. {
  56268. front: {
  56269. height: math.unit(6.5, "feet"),
  56270. weight: math.unit(198, "lb"),
  56271. name: "Front",
  56272. image: {
  56273. source: "./media/characters/tamani/anthro.svg",
  56274. extra: 930/890,
  56275. bottom: 34/964
  56276. },
  56277. form: "anthro",
  56278. default: true
  56279. },
  56280. side: {
  56281. height: math.unit(6, "feet"),
  56282. weight: math.unit(198*2, "lb"),
  56283. name: "Side",
  56284. image: {
  56285. source: "./media/characters/tamani/feral.svg",
  56286. extra: 559/519,
  56287. bottom: 43/602
  56288. },
  56289. form: "feral"
  56290. },
  56291. },
  56292. [
  56293. {
  56294. name: "Normal",
  56295. height: math.unit(6.5, "feet"),
  56296. default: true,
  56297. form: "anthro"
  56298. },
  56299. {
  56300. name: "Normal",
  56301. height: math.unit(6, "feet"),
  56302. default: true,
  56303. form: "feral"
  56304. },
  56305. ],
  56306. {
  56307. "anthro": {
  56308. name: "Anthro",
  56309. default: true
  56310. },
  56311. "feral": {
  56312. name: "Feral",
  56313. },
  56314. }
  56315. ))
  56316. characterMakers.push(() => makeCharacter(
  56317. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56318. {
  56319. front: {
  56320. height: math.unit(4 + 1/12, "feet"),
  56321. weight: math.unit(114, "lb"),
  56322. name: "Front",
  56323. image: {
  56324. source: "./media/characters/dex/front.svg",
  56325. extra: 787/680,
  56326. bottom: 18/805
  56327. }
  56328. },
  56329. side: {
  56330. height: math.unit(4 + 1/12, "feet"),
  56331. weight: math.unit(114, "lb"),
  56332. name: "Side",
  56333. image: {
  56334. source: "./media/characters/dex/side.svg",
  56335. extra: 785/680,
  56336. bottom: 12/797
  56337. }
  56338. },
  56339. back: {
  56340. height: math.unit(4 + 1/12, "feet"),
  56341. weight: math.unit(114, "lb"),
  56342. name: "Back",
  56343. image: {
  56344. source: "./media/characters/dex/back.svg",
  56345. extra: 785/681,
  56346. bottom: 17/802
  56347. }
  56348. },
  56349. loungewear: {
  56350. height: math.unit(4 + 1/12, "feet"),
  56351. weight: math.unit(114, "lb"),
  56352. name: "Loungewear",
  56353. image: {
  56354. source: "./media/characters/dex/loungewear.svg",
  56355. extra: 787/680,
  56356. bottom: 18/805
  56357. }
  56358. },
  56359. workout: {
  56360. height: math.unit(4 + 1/12, "feet"),
  56361. weight: math.unit(114, "lb"),
  56362. name: "Workout",
  56363. image: {
  56364. source: "./media/characters/dex/workout.svg",
  56365. extra: 787/680,
  56366. bottom: 18/805
  56367. }
  56368. },
  56369. schoolUniform: {
  56370. height: math.unit(4 + 1/12, "feet"),
  56371. weight: math.unit(114, "lb"),
  56372. name: "School-uniform",
  56373. image: {
  56374. source: "./media/characters/dex/school-uniform.svg",
  56375. extra: 787/680,
  56376. bottom: 18/805
  56377. }
  56378. },
  56379. maw: {
  56380. height: math.unit(0.55, "feet"),
  56381. name: "Maw",
  56382. image: {
  56383. source: "./media/characters/dex/maw.svg"
  56384. }
  56385. },
  56386. paw: {
  56387. height: math.unit(0.87, "feet"),
  56388. name: "Paw",
  56389. image: {
  56390. source: "./media/characters/dex/paw.svg"
  56391. }
  56392. },
  56393. bust: {
  56394. height: math.unit(1.67, "feet"),
  56395. name: "Bust",
  56396. image: {
  56397. source: "./media/characters/dex/bust.svg"
  56398. }
  56399. },
  56400. },
  56401. [
  56402. {
  56403. name: "Normal",
  56404. height: math.unit(4 + 1/12, "feet"),
  56405. default: true
  56406. },
  56407. ]
  56408. ))
  56409. characterMakers.push(() => makeCharacter(
  56410. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56411. {
  56412. front: {
  56413. height: math.unit(4 + 3/12, "feet"),
  56414. weight: math.unit(60, "lb"),
  56415. name: "Front",
  56416. image: {
  56417. source: "./media/characters/silke/front.svg",
  56418. extra: 1334/1122,
  56419. bottom: 21/1355
  56420. }
  56421. },
  56422. back: {
  56423. height: math.unit(4 + 3/12, "feet"),
  56424. weight: math.unit(60, "lb"),
  56425. name: "Back",
  56426. image: {
  56427. source: "./media/characters/silke/back.svg",
  56428. extra: 1328/1092,
  56429. bottom: 16/1344
  56430. }
  56431. },
  56432. dressed: {
  56433. height: math.unit(4 + 3/12, "feet"),
  56434. weight: math.unit(60, "lb"),
  56435. name: "Dressed",
  56436. image: {
  56437. source: "./media/characters/silke/dressed.svg",
  56438. extra: 1334/1122,
  56439. bottom: 43/1377
  56440. }
  56441. },
  56442. },
  56443. [
  56444. {
  56445. name: "Normal",
  56446. height: math.unit(4 + 3/12, "feet"),
  56447. default: true
  56448. },
  56449. ]
  56450. ))
  56451. characterMakers.push(() => makeCharacter(
  56452. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56453. {
  56454. front: {
  56455. height: math.unit(1.58, "meters"),
  56456. weight: math.unit(47, "kg"),
  56457. name: "Front",
  56458. image: {
  56459. source: "./media/characters/wireshark/front.svg",
  56460. extra: 883/838,
  56461. bottom: 66/949
  56462. }
  56463. },
  56464. },
  56465. [
  56466. {
  56467. name: "Normal",
  56468. height: math.unit(1.58, "meters"),
  56469. default: true
  56470. },
  56471. ]
  56472. ))
  56473. characterMakers.push(() => makeCharacter(
  56474. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56475. {
  56476. front: {
  56477. height: math.unit(6, "meters"),
  56478. weight: math.unit(15000, "kg"),
  56479. name: "Front",
  56480. image: {
  56481. source: "./media/characters/gallagher/front.svg",
  56482. extra: 532/493,
  56483. bottom: 0/532
  56484. }
  56485. },
  56486. },
  56487. [
  56488. {
  56489. name: "Normal",
  56490. height: math.unit(6, "meters"),
  56491. default: true
  56492. },
  56493. ]
  56494. ))
  56495. characterMakers.push(() => makeCharacter(
  56496. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56497. {
  56498. front: {
  56499. height: math.unit(2.4, "meters"),
  56500. weight: math.unit(270, "kg"),
  56501. name: "Front",
  56502. image: {
  56503. source: "./media/characters/alice/front.svg",
  56504. extra: 950/900,
  56505. bottom: 36/986
  56506. }
  56507. },
  56508. side: {
  56509. height: math.unit(2.4, "meters"),
  56510. weight: math.unit(270, "kg"),
  56511. name: "Side",
  56512. image: {
  56513. source: "./media/characters/alice/side.svg",
  56514. extra: 921/876,
  56515. bottom: 19/940
  56516. }
  56517. },
  56518. dressed: {
  56519. height: math.unit(2.4, "meters"),
  56520. weight: math.unit(270, "kg"),
  56521. name: "Dressed",
  56522. image: {
  56523. source: "./media/characters/alice/dressed.svg",
  56524. extra: 905/850,
  56525. bottom: 81/986
  56526. }
  56527. },
  56528. fishnet: {
  56529. height: math.unit(2.4, "meters"),
  56530. weight: math.unit(270, "kg"),
  56531. name: "Fishnet",
  56532. image: {
  56533. source: "./media/characters/alice/fishnet.svg",
  56534. extra: 905/850,
  56535. bottom: 81/986
  56536. }
  56537. },
  56538. },
  56539. [
  56540. {
  56541. name: "Normal",
  56542. height: math.unit(2.4, "meters"),
  56543. default: true
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56549. {
  56550. front: {
  56551. height: math.unit(175.25, "feet"),
  56552. name: "Front",
  56553. image: {
  56554. source: "./media/characters/fio/front.svg",
  56555. extra: 1883/1591,
  56556. bottom: 34/1917
  56557. }
  56558. },
  56559. },
  56560. [
  56561. {
  56562. name: "Normal",
  56563. height: math.unit(175.25, "cm"),
  56564. default: true
  56565. },
  56566. ]
  56567. ))
  56568. characterMakers.push(() => makeCharacter(
  56569. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56570. {
  56571. side: {
  56572. height: math.unit(6, "meters"),
  56573. weight: math.unit(3400, "kg"),
  56574. preyCapacity: math.unit(1700, "liters"),
  56575. name: "Side",
  56576. image: {
  56577. source: "./media/characters/hass/side.svg",
  56578. extra: 1058/997,
  56579. bottom: 177/1235
  56580. }
  56581. },
  56582. feeding: {
  56583. height: math.unit(6*0.63, "meters"),
  56584. weight: math.unit(3400, "kg"),
  56585. preyCapacity: math.unit(1700, "liters"),
  56586. name: "Feeding",
  56587. image: {
  56588. source: "./media/characters/hass/feeding.svg",
  56589. extra: 689/579,
  56590. bottom: 146/835
  56591. }
  56592. },
  56593. guts: {
  56594. height: math.unit(6, "meters"),
  56595. weight: math.unit(3400, "kg"),
  56596. name: "Guts",
  56597. image: {
  56598. source: "./media/characters/hass/guts.svg",
  56599. extra: 1223/1198,
  56600. bottom: 182/1405
  56601. }
  56602. },
  56603. dickFront: {
  56604. height: math.unit(1.4, "meters"),
  56605. name: "Dick (Front)",
  56606. image: {
  56607. source: "./media/characters/hass/dick-front.svg"
  56608. }
  56609. },
  56610. dickSide: {
  56611. height: math.unit(1.3, "meters"),
  56612. name: "Dick (Side)",
  56613. image: {
  56614. source: "./media/characters/hass/dick-side.svg"
  56615. }
  56616. },
  56617. dickBack: {
  56618. height: math.unit(1.4, "meters"),
  56619. name: "Dick (Back)",
  56620. image: {
  56621. source: "./media/characters/hass/dick-back.svg"
  56622. }
  56623. },
  56624. },
  56625. [
  56626. {
  56627. name: "Normal",
  56628. height: math.unit(6, "meters"),
  56629. default: true
  56630. },
  56631. ]
  56632. ))
  56633. characterMakers.push(() => makeCharacter(
  56634. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56635. {
  56636. front: {
  56637. height: math.unit(4, "feet"),
  56638. weight: math.unit(60, "lb"),
  56639. name: "Front",
  56640. image: {
  56641. source: "./media/characters/hickory-finnegan/front.svg",
  56642. extra: 444/411,
  56643. bottom: 10/454
  56644. }
  56645. },
  56646. side: {
  56647. height: math.unit(4, "feet"),
  56648. weight: math.unit(60, "lb"),
  56649. name: "Side",
  56650. image: {
  56651. source: "./media/characters/hickory-finnegan/side.svg",
  56652. extra: 444/411,
  56653. bottom: 10/454
  56654. }
  56655. },
  56656. back: {
  56657. height: math.unit(4, "feet"),
  56658. weight: math.unit(60, "lb"),
  56659. name: "Back",
  56660. image: {
  56661. source: "./media/characters/hickory-finnegan/back.svg",
  56662. extra: 444/411,
  56663. bottom: 10/454
  56664. }
  56665. },
  56666. },
  56667. [
  56668. {
  56669. name: "Normal",
  56670. height: math.unit(4, "feet"),
  56671. default: true
  56672. },
  56673. ]
  56674. ))
  56675. characterMakers.push(() => makeCharacter(
  56676. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56677. {
  56678. snivy_front: {
  56679. height: math.unit(2, "feet"),
  56680. weight: math.unit(17.9, "lb"),
  56681. name: "Front",
  56682. image: {
  56683. source: "./media/characters/robin-phox/snivy-front.svg",
  56684. extra: 569/504,
  56685. bottom: 33/602
  56686. },
  56687. form: "snivy",
  56688. default: true
  56689. },
  56690. snivy_frontNsfw: {
  56691. height: math.unit(2, "feet"),
  56692. weight: math.unit(17.9, "lb"),
  56693. name: "Front (NSFW)",
  56694. image: {
  56695. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56696. extra: 569/504,
  56697. bottom: 33/602
  56698. },
  56699. form: "snivy",
  56700. },
  56701. snivy_back: {
  56702. height: math.unit(2, "feet"),
  56703. weight: math.unit(17.9, "lb"),
  56704. name: "Back",
  56705. image: {
  56706. source: "./media/characters/robin-phox/snivy-back.svg",
  56707. extra: 577/508,
  56708. bottom: 21/598
  56709. },
  56710. form: "snivy",
  56711. },
  56712. snivy_foot: {
  56713. height: math.unit(0.68, "feet"),
  56714. name: "Foot",
  56715. image: {
  56716. source: "./media/characters/robin-phox/snivy-foot.svg"
  56717. },
  56718. form: "snivy",
  56719. },
  56720. snivy_sole: {
  56721. height: math.unit(0.68, "feet"),
  56722. name: "Sole",
  56723. image: {
  56724. source: "./media/characters/robin-phox/snivy-sole.svg"
  56725. },
  56726. form: "snivy",
  56727. },
  56728. yoshi_front: {
  56729. height: math.unit(6, "feet"),
  56730. weight: math.unit(150, "lb"),
  56731. name: "Front",
  56732. image: {
  56733. source: "./media/characters/robin-phox/yoshi-front.svg",
  56734. extra: 890/792,
  56735. bottom: 29/919
  56736. },
  56737. form: "yoshi",
  56738. default: true
  56739. },
  56740. yoshi_frontNsfw: {
  56741. height: math.unit(6, "feet"),
  56742. weight: math.unit(150, "lb"),
  56743. name: "Front (NSFW)",
  56744. image: {
  56745. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56746. extra: 890/792,
  56747. bottom: 29/919
  56748. },
  56749. form: "yoshi",
  56750. },
  56751. yoshi_back: {
  56752. height: math.unit(6, "feet"),
  56753. weight: math.unit(150, "lb"),
  56754. name: "Back",
  56755. image: {
  56756. source: "./media/characters/robin-phox/yoshi-back.svg",
  56757. extra: 890/792,
  56758. bottom: 29/919
  56759. },
  56760. form: "yoshi",
  56761. },
  56762. yoshi_foot: {
  56763. height: math.unit(1.5, "feet"),
  56764. name: "Foot",
  56765. image: {
  56766. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56767. },
  56768. form: "yoshi",
  56769. },
  56770. delphox_front: {
  56771. height: math.unit(4 + 11/12, "feet"),
  56772. weight: math.unit(86, "lb"),
  56773. name: "Front",
  56774. image: {
  56775. source: "./media/characters/robin-phox/delphox-front.svg",
  56776. extra: 1266/1069,
  56777. bottom: 32/1298
  56778. },
  56779. form: "delphox",
  56780. default: true
  56781. },
  56782. delphox_frontNsfw: {
  56783. height: math.unit(4 + 11/12, "feet"),
  56784. weight: math.unit(86, "lb"),
  56785. name: "Front (NSFW)",
  56786. image: {
  56787. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56788. extra: 1266/1069,
  56789. bottom: 32/1298
  56790. },
  56791. form: "delphox",
  56792. },
  56793. delphox_back: {
  56794. height: math.unit(4 + 11/12, "feet"),
  56795. weight: math.unit(86, "lb"),
  56796. name: "Back",
  56797. image: {
  56798. source: "./media/characters/robin-phox/delphox-back.svg",
  56799. extra: 1269/1083,
  56800. bottom: 15/1284
  56801. },
  56802. form: "delphox",
  56803. },
  56804. mienshao_front: {
  56805. height: math.unit(4 + 7/12, "feet"),
  56806. weight: math.unit(78.3, "lb"),
  56807. name: "Front",
  56808. image: {
  56809. source: "./media/characters/robin-phox/mienshao-front.svg",
  56810. extra: 1052/970,
  56811. bottom: 108/1160
  56812. },
  56813. form: "mienshao",
  56814. default: true
  56815. },
  56816. mienshao_frontNsfw: {
  56817. height: math.unit(4 + 7/12, "feet"),
  56818. weight: math.unit(78.3, "lb"),
  56819. name: "Front (NSFW)",
  56820. image: {
  56821. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56822. extra: 1052/970,
  56823. bottom: 108/1160
  56824. },
  56825. form: "mienshao",
  56826. },
  56827. mienshao_back: {
  56828. height: math.unit(4 + 7/12, "feet"),
  56829. weight: math.unit(78.3, "lb"),
  56830. name: "Back",
  56831. image: {
  56832. source: "./media/characters/robin-phox/mienshao-back.svg",
  56833. extra: 1102/982,
  56834. bottom: 32/1134
  56835. },
  56836. form: "mienshao",
  56837. },
  56838. inteleon_front: {
  56839. height: math.unit(6 + 3/12, "feet"),
  56840. weight: math.unit(99.6, "lb"),
  56841. name: "Front",
  56842. image: {
  56843. source: "./media/characters/robin-phox/inteleon-front.svg",
  56844. extra: 910/799,
  56845. bottom: 76/986
  56846. },
  56847. form: "inteleon",
  56848. default: true
  56849. },
  56850. inteleon_frontNsfw: {
  56851. height: math.unit(6 + 3/12, "feet"),
  56852. weight: math.unit(99.6, "lb"),
  56853. name: "Front (NSFW)",
  56854. image: {
  56855. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56856. extra: 910/799,
  56857. bottom: 76/986
  56858. },
  56859. form: "inteleon",
  56860. },
  56861. inteleon_back: {
  56862. height: math.unit(6 + 3/12, "feet"),
  56863. weight: math.unit(99.6, "lb"),
  56864. name: "Back",
  56865. image: {
  56866. source: "./media/characters/robin-phox/inteleon-back.svg",
  56867. extra: 907/796,
  56868. bottom: 25/932
  56869. },
  56870. form: "inteleon",
  56871. },
  56872. reshiram_front: {
  56873. height: math.unit(10 + 6/12, "feet"),
  56874. weight: math.unit(727.5, "lb"),
  56875. name: "Front",
  56876. image: {
  56877. source: "./media/characters/robin-phox/reshiram-front.svg",
  56878. extra: 1198/940,
  56879. bottom: 123/1321
  56880. },
  56881. form: "reshiram",
  56882. },
  56883. reshiram_frontNsfw: {
  56884. height: math.unit(10 + 6/12, "feet"),
  56885. weight: math.unit(727.5, "lb"),
  56886. name: "Front-nsfw",
  56887. image: {
  56888. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56889. extra: 1198/940,
  56890. bottom: 123/1321
  56891. },
  56892. form: "reshiram",
  56893. },
  56894. reshiram_back: {
  56895. height: math.unit(10 + 6/12, "feet"),
  56896. weight: math.unit(727.5, "lb"),
  56897. name: "Back",
  56898. image: {
  56899. source: "./media/characters/robin-phox/reshiram-back.svg",
  56900. extra: 1024/904,
  56901. bottom: 85/1109
  56902. },
  56903. form: "reshiram",
  56904. },
  56905. samurott_front: {
  56906. height: math.unit(8, "feet"),
  56907. weight: math.unit(208.6, "lb"),
  56908. name: "Front",
  56909. image: {
  56910. source: "./media/characters/robin-phox/samurott-front.svg",
  56911. extra: 1048/984,
  56912. bottom: 100/1148
  56913. },
  56914. form: "samurott",
  56915. },
  56916. samurott_frontNsfw: {
  56917. height: math.unit(8, "feet"),
  56918. weight: math.unit(208.6, "lb"),
  56919. name: "Front-nsfw",
  56920. image: {
  56921. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56922. extra: 1048/984,
  56923. bottom: 100/1148
  56924. },
  56925. form: "samurott",
  56926. },
  56927. samurott_back: {
  56928. height: math.unit(8, "feet"),
  56929. weight: math.unit(208.6, "lb"),
  56930. name: "Back",
  56931. image: {
  56932. source: "./media/characters/robin-phox/samurott-back.svg",
  56933. extra: 1110/1042,
  56934. bottom: 12/1122
  56935. },
  56936. form: "samurott",
  56937. },
  56938. samurott_feral: {
  56939. height: math.unit(4 + 11/12, "feet"),
  56940. weight: math.unit(208.6, "lb"),
  56941. name: "Feral",
  56942. image: {
  56943. source: "./media/characters/robin-phox/samurott-feral.svg",
  56944. extra: 766/681,
  56945. bottom: 108/874
  56946. },
  56947. form: "samurott",
  56948. },
  56949. },
  56950. [
  56951. {
  56952. name: "Normal",
  56953. height: math.unit(2, "feet"),
  56954. default: true,
  56955. form: "snivy"
  56956. },
  56957. {
  56958. name: "Normal",
  56959. height: math.unit(6, "feet"),
  56960. default: true,
  56961. form: "yoshi"
  56962. },
  56963. {
  56964. name: "Normal",
  56965. height: math.unit(4 + 11/12, "feet"),
  56966. default: true,
  56967. form: "delphox"
  56968. },
  56969. {
  56970. name: "Normal",
  56971. height: math.unit(4 + 7/12, "feet"),
  56972. default: true,
  56973. form: "mienshao"
  56974. },
  56975. {
  56976. name: "Normal",
  56977. height: math.unit(6 + 3/12, "feet"),
  56978. default: true,
  56979. form: "inteleon"
  56980. },
  56981. {
  56982. name: "Normal",
  56983. height: math.unit(10 + 6/12, "feet"),
  56984. default: true,
  56985. form: "reshiram"
  56986. },
  56987. {
  56988. name: "Normal",
  56989. height: math.unit(8, "feet"),
  56990. default: true,
  56991. form: "samurott"
  56992. },
  56993. {
  56994. name: "Macro",
  56995. height: math.unit(500, "feet"),
  56996. allForms: true
  56997. },
  56998. {
  56999. name: "Mega Macro",
  57000. height: math.unit(10, "earths"),
  57001. allForms: true
  57002. },
  57003. {
  57004. name: "Giga Macro",
  57005. height: math.unit(1, "galaxy"),
  57006. allForms: true
  57007. },
  57008. {
  57009. name: "Godly Macro",
  57010. height: math.unit(1e10, "multiverses"),
  57011. allForms: true
  57012. },
  57013. ],
  57014. {
  57015. "snivy": {
  57016. name: "Snivy",
  57017. default: true
  57018. },
  57019. "yoshi": {
  57020. name: "Yoshi",
  57021. },
  57022. "delphox": {
  57023. name: "Delphox",
  57024. },
  57025. "mienshao": {
  57026. name: "Mienshao",
  57027. },
  57028. "inteleon": {
  57029. name: "Inteleon",
  57030. },
  57031. "reshiram": {
  57032. name: "Reshiram",
  57033. },
  57034. "samurott": {
  57035. name: "Samurott",
  57036. },
  57037. }
  57038. ))
  57039. characterMakers.push(() => makeCharacter(
  57040. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57041. {
  57042. front: {
  57043. height: math.unit(4, "feet"),
  57044. name: "Front",
  57045. image: {
  57046. source: "./media/characters/ash-leung/front.svg",
  57047. extra: 1916/1792,
  57048. bottom: 50/1966
  57049. }
  57050. },
  57051. },
  57052. [
  57053. {
  57054. name: "Atomic",
  57055. height: math.unit(1, "angstrom")
  57056. },
  57057. {
  57058. name: "Microscopic",
  57059. height: math.unit(4000, "angstroms")
  57060. },
  57061. {
  57062. name: "Speck",
  57063. height: math.unit(1, "mm")
  57064. },
  57065. {
  57066. name: "Small",
  57067. height: math.unit(1, "inch")
  57068. },
  57069. {
  57070. name: "Normal",
  57071. height: math.unit(4, "feet"),
  57072. default: true
  57073. },
  57074. ]
  57075. ))
  57076. characterMakers.push(() => makeCharacter(
  57077. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57078. {
  57079. frontDressed: {
  57080. height: math.unit(2.08, "meters"),
  57081. weight: math.unit(175, "lb"),
  57082. name: "Front (Dressed)",
  57083. image: {
  57084. source: "./media/characters/carie/front-dressed.svg",
  57085. extra: 456/417,
  57086. bottom: 7/463
  57087. }
  57088. },
  57089. backDressed: {
  57090. height: math.unit(2.08, "meters"),
  57091. weight: math.unit(175, "lb"),
  57092. name: "Back (Dressed)",
  57093. image: {
  57094. source: "./media/characters/carie/back-dressed.svg",
  57095. extra: 455/414,
  57096. bottom: 11/466
  57097. }
  57098. },
  57099. front: {
  57100. height: math.unit(2, "meters"),
  57101. weight: math.unit(175, "lb"),
  57102. name: "Front",
  57103. image: {
  57104. source: "./media/characters/carie/front.svg",
  57105. extra: 438/399,
  57106. bottom: 12/450
  57107. }
  57108. },
  57109. back: {
  57110. height: math.unit(2, "meters"),
  57111. weight: math.unit(175, "lb"),
  57112. name: "Back",
  57113. image: {
  57114. source: "./media/characters/carie/back.svg",
  57115. extra: 438/397,
  57116. bottom: 7/445
  57117. }
  57118. },
  57119. },
  57120. [
  57121. {
  57122. name: "Normal",
  57123. height: math.unit(2.08, "meters"),
  57124. default: true
  57125. },
  57126. {
  57127. name: "Macro",
  57128. height: math.unit(2.08e3, "meters")
  57129. },
  57130. {
  57131. name: "Mega Macro",
  57132. height: math.unit(2.08e6, "meters")
  57133. },
  57134. {
  57135. name: "Giga Macro",
  57136. height: math.unit(2.08e9, "meters")
  57137. },
  57138. {
  57139. name: "Tera Macro",
  57140. height: math.unit(2.08e12, "meters")
  57141. },
  57142. {
  57143. name: "Peta Macro",
  57144. height: math.unit(2.08e15, "meters")
  57145. },
  57146. {
  57147. name: "Exa Macro",
  57148. height: math.unit(2.08e18, "meters")
  57149. },
  57150. {
  57151. name: "Zetta Macro",
  57152. height: math.unit(2.08e21, "meters")
  57153. },
  57154. {
  57155. name: "Yotta Macro",
  57156. height: math.unit(2.08e24, "meters")
  57157. },
  57158. ]
  57159. ))
  57160. characterMakers.push(() => makeCharacter(
  57161. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57162. {
  57163. front: {
  57164. height: math.unit(5 + 2/12, "feet"),
  57165. weight: math.unit(120, "lb"),
  57166. name: "Front",
  57167. image: {
  57168. source: "./media/characters/sai-bree/front.svg",
  57169. extra: 1843/1702,
  57170. bottom: 91/1934
  57171. }
  57172. },
  57173. back: {
  57174. height: math.unit(5 + 2/12, "feet"),
  57175. weight: math.unit(120, "lb"),
  57176. name: "Back",
  57177. image: {
  57178. source: "./media/characters/sai-bree/back.svg",
  57179. extra: 1809/1637,
  57180. bottom: 56/1865
  57181. }
  57182. },
  57183. },
  57184. [
  57185. {
  57186. name: "Normal",
  57187. height: math.unit(5 + 2/12, "feet"),
  57188. default: true
  57189. },
  57190. {
  57191. name: "Macro",
  57192. height: math.unit(500, "feet")
  57193. },
  57194. ]
  57195. ))
  57196. characterMakers.push(() => makeCharacter(
  57197. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57198. {
  57199. side: {
  57200. height: math.unit(0.77, "meters"),
  57201. weight: math.unit(120, "lb"),
  57202. name: "Side",
  57203. image: {
  57204. source: "./media/characters/davwyn/side.svg",
  57205. extra: 1557/1225,
  57206. bottom: 131/1688
  57207. }
  57208. },
  57209. front: {
  57210. height: math.unit(0.835410, "meters"),
  57211. weight: math.unit(120, "lb"),
  57212. name: "Front",
  57213. image: {
  57214. source: "./media/characters/davwyn/front.svg",
  57215. extra: 870/843,
  57216. bottom: 175/1045
  57217. }
  57218. },
  57219. },
  57220. [
  57221. {
  57222. name: "Minidrake",
  57223. height: math.unit(0.77/4, "meters")
  57224. },
  57225. {
  57226. name: "Normal",
  57227. height: math.unit(0.77, "meters"),
  57228. default: true
  57229. },
  57230. ]
  57231. ))
  57232. characterMakers.push(() => makeCharacter(
  57233. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57234. {
  57235. front: {
  57236. height: math.unit(10 + 3/12, "feet"),
  57237. weight: math.unit(2857, "lb"),
  57238. name: "Front",
  57239. image: {
  57240. source: "./media/characters/balans/front.svg",
  57241. extra: 427/402,
  57242. bottom: 26/453
  57243. }
  57244. },
  57245. side: {
  57246. height: math.unit(10 + 3/12, "feet"),
  57247. weight: math.unit(2857, "lb"),
  57248. name: "Side",
  57249. image: {
  57250. source: "./media/characters/balans/side.svg",
  57251. extra: 397/371,
  57252. bottom: 17/414
  57253. }
  57254. },
  57255. back: {
  57256. height: math.unit(10 + 3/12, "feet"),
  57257. weight: math.unit(2857, "lb"),
  57258. name: "Back",
  57259. image: {
  57260. source: "./media/characters/balans/back.svg",
  57261. extra: 408/381,
  57262. bottom: 14/422
  57263. }
  57264. },
  57265. hand: {
  57266. height: math.unit(1.15, "feet"),
  57267. name: "Hand",
  57268. image: {
  57269. source: "./media/characters/balans/hand.svg"
  57270. }
  57271. },
  57272. footRest: {
  57273. height: math.unit(3.1, "feet"),
  57274. name: "Foot (Rest)",
  57275. image: {
  57276. source: "./media/characters/balans/foot-rest.svg"
  57277. }
  57278. },
  57279. footActive: {
  57280. height: math.unit(3.5, "feet"),
  57281. name: "Foot (Active)",
  57282. image: {
  57283. source: "./media/characters/balans/foot-active.svg"
  57284. }
  57285. },
  57286. },
  57287. [
  57288. {
  57289. name: "Normal",
  57290. height: math.unit(10 + 3/12, "feet"),
  57291. default: true
  57292. },
  57293. ]
  57294. ))
  57295. characterMakers.push(() => makeCharacter(
  57296. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57297. {
  57298. side: {
  57299. height: math.unit(9, "meters"),
  57300. weight: math.unit(114, "tonnes"),
  57301. name: "Side",
  57302. image: {
  57303. source: "./media/characters/eldkveikir/side.svg",
  57304. extra: 1927/338,
  57305. bottom: 42/1969
  57306. }
  57307. },
  57308. sitting: {
  57309. height: math.unit(13.4, "meters"),
  57310. weight: math.unit(114, "tonnes"),
  57311. name: "Sitting",
  57312. image: {
  57313. source: "./media/characters/eldkveikir/sitting.svg",
  57314. extra: 1108/963,
  57315. bottom: 610/1718
  57316. }
  57317. },
  57318. maw: {
  57319. height: math.unit(8.36, "meters"),
  57320. name: "Maw",
  57321. image: {
  57322. source: "./media/characters/eldkveikir/maw.svg"
  57323. }
  57324. },
  57325. hand: {
  57326. height: math.unit(4.84, "meters"),
  57327. name: "Hand",
  57328. image: {
  57329. source: "./media/characters/eldkveikir/hand.svg"
  57330. }
  57331. },
  57332. foot: {
  57333. height: math.unit(6.9, "meters"),
  57334. name: "Foot",
  57335. image: {
  57336. source: "./media/characters/eldkveikir/foot.svg"
  57337. }
  57338. },
  57339. genitals: {
  57340. height: math.unit(9.6, "meters"),
  57341. name: "Genitals",
  57342. image: {
  57343. source: "./media/characters/eldkveikir/genitals.svg"
  57344. }
  57345. },
  57346. },
  57347. [
  57348. {
  57349. name: "Normal",
  57350. height: math.unit(9, "meters"),
  57351. default: true
  57352. },
  57353. ]
  57354. ))
  57355. characterMakers.push(() => makeCharacter(
  57356. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57357. {
  57358. front: {
  57359. height: math.unit(14, "feet"),
  57360. weight: math.unit(4100, "lb"),
  57361. name: "Front",
  57362. image: {
  57363. source: "./media/characters/arrow/front.svg",
  57364. extra: 330/318,
  57365. bottom: 56/386
  57366. }
  57367. },
  57368. },
  57369. [
  57370. {
  57371. name: "Normal",
  57372. height: math.unit(14, "feet"),
  57373. default: true
  57374. },
  57375. {
  57376. name: "Minimacro",
  57377. height: math.unit(63, "feet")
  57378. },
  57379. {
  57380. name: "Macro",
  57381. height: math.unit(630, "feet")
  57382. },
  57383. {
  57384. name: "Megamacro",
  57385. height: math.unit(12600, "feet")
  57386. },
  57387. {
  57388. name: "Gigamacro",
  57389. height: math.unit(18000, "miles")
  57390. },
  57391. ]
  57392. ))
  57393. characterMakers.push(() => makeCharacter(
  57394. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57395. {
  57396. front: {
  57397. height: math.unit(10, "feet"),
  57398. weight: math.unit(2.4, "tons"),
  57399. name: "Front",
  57400. image: {
  57401. source: "./media/characters/3yk-k0-unit/front.svg",
  57402. extra: 573/561,
  57403. bottom: 33/606
  57404. }
  57405. },
  57406. back: {
  57407. height: math.unit(10, "feet"),
  57408. weight: math.unit(2.4, "tons"),
  57409. name: "Back",
  57410. image: {
  57411. source: "./media/characters/3yk-k0-unit/back.svg",
  57412. extra: 614/573,
  57413. bottom: 32/646
  57414. }
  57415. },
  57416. maw: {
  57417. height: math.unit(2.15, "feet"),
  57418. name: "Maw",
  57419. image: {
  57420. source: "./media/characters/3yk-k0-unit/maw.svg"
  57421. }
  57422. },
  57423. },
  57424. [
  57425. {
  57426. name: "Normal",
  57427. height: math.unit(10, "feet"),
  57428. default: true
  57429. },
  57430. ]
  57431. ))
  57432. characterMakers.push(() => makeCharacter(
  57433. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57434. {
  57435. front: {
  57436. height: math.unit(8 + 8/12, "feet"),
  57437. name: "Front",
  57438. image: {
  57439. source: "./media/characters/nemo/front.svg",
  57440. extra: 1308/1217,
  57441. bottom: 57/1365
  57442. }
  57443. },
  57444. },
  57445. [
  57446. {
  57447. name: "Normal",
  57448. height: math.unit(8 + 8/12, "feet"),
  57449. default: true
  57450. },
  57451. ]
  57452. ))
  57453. characterMakers.push(() => makeCharacter(
  57454. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57455. {
  57456. front: {
  57457. height: math.unit(8, "feet"),
  57458. weight: math.unit(760, "lb"),
  57459. name: "Front",
  57460. image: {
  57461. source: "./media/characters/rexx/front.svg",
  57462. extra: 786/750,
  57463. bottom: 17/803
  57464. },
  57465. extraAttributes: {
  57466. "pawLength": {
  57467. name: "Paw Length",
  57468. power: 1,
  57469. type: "length",
  57470. base: math.unit(27, "inches")
  57471. },
  57472. }
  57473. },
  57474. },
  57475. [
  57476. {
  57477. name: "Micro",
  57478. height: math.unit(2, "inches")
  57479. },
  57480. {
  57481. name: "Normal",
  57482. height: math.unit(8, "feet"),
  57483. default: true
  57484. },
  57485. {
  57486. name: "Macro",
  57487. height: math.unit(150, "feet")
  57488. },
  57489. ]
  57490. ))
  57491. characterMakers.push(() => makeCharacter(
  57492. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57493. {
  57494. front: {
  57495. height: math.unit(18, "feet"),
  57496. weight: math.unit(1975, "lb"),
  57497. name: "Front",
  57498. image: {
  57499. source: "./media/characters/draco/front.svg",
  57500. extra: 1325/1241,
  57501. bottom: 83/1408
  57502. }
  57503. },
  57504. back: {
  57505. height: math.unit(18, "feet"),
  57506. weight: math.unit(1975, "lb"),
  57507. name: "Back",
  57508. image: {
  57509. source: "./media/characters/draco/back.svg",
  57510. extra: 1332/1250,
  57511. bottom: 43/1375
  57512. }
  57513. },
  57514. dick: {
  57515. height: math.unit(7.5, "feet"),
  57516. name: "Dick",
  57517. image: {
  57518. source: "./media/characters/draco/dick.svg"
  57519. }
  57520. },
  57521. },
  57522. [
  57523. {
  57524. name: "Normal",
  57525. height: math.unit(18, "feet"),
  57526. default: true
  57527. },
  57528. ]
  57529. ))
  57530. characterMakers.push(() => makeCharacter(
  57531. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57532. {
  57533. front: {
  57534. height: math.unit(3.2, "meters"),
  57535. name: "Front",
  57536. image: {
  57537. source: "./media/characters/harriett/front.svg",
  57538. extra: 1966/1915,
  57539. bottom: 9/1975
  57540. }
  57541. },
  57542. },
  57543. [
  57544. {
  57545. name: "Normal",
  57546. height: math.unit(3.2, "meters"),
  57547. default: true
  57548. },
  57549. ]
  57550. ))
  57551. characterMakers.push(() => makeCharacter(
  57552. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57553. {
  57554. sitting: {
  57555. height: math.unit(0.8, "meter"),
  57556. name: "Sitting",
  57557. image: {
  57558. source: "./media/characters/serpentus/sitting.svg",
  57559. extra: 293/290,
  57560. bottom: 140/433
  57561. }
  57562. },
  57563. },
  57564. [
  57565. {
  57566. name: "Normal",
  57567. height: math.unit(0.8, "meter"),
  57568. default: true
  57569. },
  57570. ]
  57571. ))
  57572. characterMakers.push(() => makeCharacter(
  57573. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57574. {
  57575. front: {
  57576. height: math.unit(5.7174385736, "feet"),
  57577. name: "Front",
  57578. image: {
  57579. source: "./media/characters/nova-polecat/front.svg",
  57580. extra: 1317/1216,
  57581. bottom: 92/1409
  57582. }
  57583. },
  57584. },
  57585. [
  57586. {
  57587. name: "Normal",
  57588. height: math.unit(5.7174385736, "feet"),
  57589. default: true
  57590. },
  57591. ]
  57592. ))
  57593. characterMakers.push(() => makeCharacter(
  57594. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57595. {
  57596. front: {
  57597. height: math.unit(5 + 4/12, "feet"),
  57598. weight: math.unit(250, "lb"),
  57599. name: "Front",
  57600. image: {
  57601. source: "./media/characters/mook/front.svg",
  57602. extra: 1088/1037,
  57603. bottom: 132/1220
  57604. }
  57605. },
  57606. back: {
  57607. height: math.unit(5 + 1/12, "feet"),
  57608. weight: math.unit(250, "lb"),
  57609. name: "Back",
  57610. image: {
  57611. source: "./media/characters/mook/back.svg",
  57612. extra: 1184/905,
  57613. bottom: 96/1280
  57614. }
  57615. },
  57616. head: {
  57617. height: math.unit(1.85, "feet"),
  57618. name: "Head",
  57619. image: {
  57620. source: "./media/characters/mook/head.svg"
  57621. }
  57622. },
  57623. hand: {
  57624. height: math.unit(1.9, "feet"),
  57625. name: "Hand",
  57626. image: {
  57627. source: "./media/characters/mook/hand.svg"
  57628. }
  57629. },
  57630. palm: {
  57631. height: math.unit(1.84, "feet"),
  57632. name: "Palm",
  57633. image: {
  57634. source: "./media/characters/mook/palm.svg"
  57635. }
  57636. },
  57637. foot: {
  57638. height: math.unit(1.44, "feet"),
  57639. name: "Foot",
  57640. image: {
  57641. source: "./media/characters/mook/foot.svg"
  57642. }
  57643. },
  57644. sole: {
  57645. height: math.unit(1.44, "feet"),
  57646. name: "Sole",
  57647. image: {
  57648. source: "./media/characters/mook/sole.svg"
  57649. }
  57650. },
  57651. },
  57652. [
  57653. {
  57654. name: "Normal",
  57655. height: math.unit(5 + 4/12, "feet"),
  57656. default: true
  57657. },
  57658. {
  57659. name: "Big",
  57660. height: math.unit(12, "feet")
  57661. },
  57662. ]
  57663. ))
  57664. characterMakers.push(() => makeCharacter(
  57665. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57666. {
  57667. front: {
  57668. height: math.unit(6 + 10/12, "feet"),
  57669. weight: math.unit(233, "lb"),
  57670. name: "Front",
  57671. image: {
  57672. source: "./media/characters/kayla/front.svg",
  57673. extra: 1850/1775,
  57674. bottom: 65/1915
  57675. }
  57676. },
  57677. },
  57678. [
  57679. {
  57680. name: "Normal",
  57681. height: math.unit(6 + 10/12, "feet"),
  57682. default: true
  57683. },
  57684. {
  57685. name: "Amazonian",
  57686. height: math.unit(12 + 5/12, "feet")
  57687. },
  57688. {
  57689. name: "Mini Giantess",
  57690. height: math.unit(26, "feet")
  57691. },
  57692. {
  57693. name: "Giantess",
  57694. height: math.unit(200, "feet")
  57695. },
  57696. {
  57697. name: "Mega Giantess",
  57698. height: math.unit(2500, "feet")
  57699. },
  57700. {
  57701. name: "City Sized",
  57702. height: math.unit(50, "miles")
  57703. },
  57704. {
  57705. name: "Country Sized",
  57706. height: math.unit(500, "miles")
  57707. },
  57708. {
  57709. name: "Continent Sized",
  57710. height: math.unit(2500, "miles")
  57711. },
  57712. {
  57713. name: "Planet Sized",
  57714. height: math.unit(10000, "miles")
  57715. },
  57716. {
  57717. name: "Star Sized",
  57718. height: math.unit(5e6, "miles")
  57719. },
  57720. {
  57721. name: "Solar System Sized",
  57722. height: math.unit(125, "AU")
  57723. },
  57724. {
  57725. name: "Galaxy Sized",
  57726. height: math.unit(300e3, "lightyears")
  57727. },
  57728. {
  57729. name: "Universe Sized",
  57730. height: math.unit(200e9, "lightyears")
  57731. },
  57732. {
  57733. name: "Multiverse Sized",
  57734. height: math.unit(20, "exauniverses")
  57735. },
  57736. {
  57737. name: "Mother of Existence",
  57738. height: math.unit(1e6, "yottauniverses")
  57739. },
  57740. ]
  57741. ))
  57742. characterMakers.push(() => makeCharacter(
  57743. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57744. {
  57745. side: {
  57746. height: math.unit(9.5, "meters"),
  57747. name: "Side",
  57748. image: {
  57749. source: "./media/characters/kulve-ragnarok/side.svg",
  57750. extra: 364/326,
  57751. bottom: 50/414
  57752. }
  57753. },
  57754. },
  57755. [
  57756. {
  57757. name: "Normal",
  57758. height: math.unit(9.5, "meters"),
  57759. default: true
  57760. },
  57761. ]
  57762. ))
  57763. characterMakers.push(() => makeCharacter(
  57764. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57765. {
  57766. front: {
  57767. height: math.unit(8 + 9/12, "feet"),
  57768. name: "Front",
  57769. image: {
  57770. source: "./media/characters/atlas-goat/front.svg",
  57771. extra: 1462/1323,
  57772. bottom: 12/1474
  57773. }
  57774. },
  57775. },
  57776. [
  57777. {
  57778. name: "Normal",
  57779. height: math.unit(8 + 9/12, "feet"),
  57780. default: true
  57781. },
  57782. {
  57783. name: "Skyline",
  57784. height: math.unit(845, "feet")
  57785. },
  57786. {
  57787. name: "Orbital",
  57788. height: math.unit(93000, "miles")
  57789. },
  57790. {
  57791. name: "Constellation",
  57792. height: math.unit(27000, "lightyears")
  57793. },
  57794. ]
  57795. ))
  57796. characterMakers.push(() => makeCharacter(
  57797. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57798. {
  57799. side: {
  57800. height: math.unit(1.8, "meters"),
  57801. weight: math.unit(120, "kg"),
  57802. name: "Side",
  57803. image: {
  57804. source: "./media/characters/xie-ling/side.svg",
  57805. extra: 646/574,
  57806. bottom: 44/690
  57807. }
  57808. },
  57809. },
  57810. [
  57811. {
  57812. name: "Tiny",
  57813. height: math.unit(1.80, "meters")
  57814. },
  57815. {
  57816. name: "Small",
  57817. height: math.unit(6, "meters")
  57818. },
  57819. {
  57820. name: "Medium",
  57821. height: math.unit(15, "meters")
  57822. },
  57823. {
  57824. name: "Normal",
  57825. height: math.unit(30, "meters"),
  57826. default: true
  57827. },
  57828. {
  57829. name: "Above Normal",
  57830. height: math.unit(60, "meters")
  57831. },
  57832. {
  57833. name: "Big",
  57834. height: math.unit(220, "meters")
  57835. },
  57836. {
  57837. name: "Giant",
  57838. height: math.unit(2.2, "km")
  57839. },
  57840. {
  57841. name: "Macro",
  57842. height: math.unit(25, "km")
  57843. },
  57844. {
  57845. name: "Mega Macro",
  57846. height: math.unit(350, "km")
  57847. },
  57848. {
  57849. name: "Mega Macro+",
  57850. height: math.unit(5000, "km")
  57851. },
  57852. {
  57853. name: "Goddess",
  57854. height: math.unit(3, "multiverses")
  57855. },
  57856. ]
  57857. ))
  57858. characterMakers.push(() => makeCharacter(
  57859. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57860. {
  57861. frontSfw: {
  57862. height: math.unit(5 + 11/12, "feet"),
  57863. weight: math.unit(210, "lb"),
  57864. name: "Front",
  57865. image: {
  57866. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57867. extra: 1928/1821,
  57868. bottom: 45/1973
  57869. }
  57870. },
  57871. backSfw: {
  57872. height: math.unit(5 + 11/12, "feet"),
  57873. weight: math.unit(210, "lb"),
  57874. name: "Back",
  57875. image: {
  57876. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57877. extra: 1920/1813,
  57878. bottom: 34/1954
  57879. }
  57880. },
  57881. frontNsfw: {
  57882. height: math.unit(5 + 11/12, "feet"),
  57883. weight: math.unit(210, "lb"),
  57884. name: "Front (NSFW)",
  57885. image: {
  57886. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57887. extra: 1928/1821,
  57888. bottom: 45/1973
  57889. }
  57890. },
  57891. backNsfw: {
  57892. height: math.unit(5 + 11/12, "feet"),
  57893. weight: math.unit(210, "lb"),
  57894. name: "Back (NSFW)",
  57895. image: {
  57896. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57897. extra: 1920/1813,
  57898. bottom: 34/1954
  57899. }
  57900. },
  57901. },
  57902. [
  57903. {
  57904. name: "Normal",
  57905. height: math.unit(5 + 11/12, "feet"),
  57906. default: true
  57907. },
  57908. {
  57909. name: "Goddess",
  57910. height: math.unit(20 + 3/12, "feet")
  57911. },
  57912. {
  57913. name: "Breaker of Man",
  57914. height: math.unit(329 + 9/12, "feet")
  57915. },
  57916. {
  57917. name: "Solar Justice",
  57918. height: math.unit(0.6, "solarradii")
  57919. },
  57920. {
  57921. name: "She Who Judges",
  57922. height: math.unit(1, "universe")
  57923. },
  57924. ]
  57925. ))
  57926. characterMakers.push(() => makeCharacter(
  57927. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57928. {
  57929. casual_front: {
  57930. height: math.unit(6 + 1/12, "feet"),
  57931. weight: math.unit(190, "lb"),
  57932. preyCapacity: math.unit(1, "people"),
  57933. name: "Front",
  57934. image: {
  57935. source: "./media/characters/managarmr/casual-front.svg",
  57936. extra: 411/381,
  57937. bottom: 15/426
  57938. },
  57939. extraAttributes: {
  57940. "pawSize": {
  57941. name: "Paw Size",
  57942. power: 1,
  57943. type: "length",
  57944. base: math.unit(0.2, "meters")
  57945. },
  57946. },
  57947. form: "casual",
  57948. },
  57949. casual_back: {
  57950. height: math.unit(6 + 1/12, "feet"),
  57951. weight: math.unit(190, "lb"),
  57952. preyCapacity: math.unit(1, "people"),
  57953. name: "Back",
  57954. image: {
  57955. source: "./media/characters/managarmr/casual-back.svg",
  57956. extra: 413/383,
  57957. bottom: 13/426
  57958. },
  57959. extraAttributes: {
  57960. "pawSize": {
  57961. name: "Paw Size",
  57962. power: 1,
  57963. type: "length",
  57964. base: math.unit(0.2, "meters")
  57965. },
  57966. },
  57967. form: "casual",
  57968. },
  57969. base_front: {
  57970. height: math.unit(7, "feet"),
  57971. weight: math.unit(210, "lb"),
  57972. preyCapacity: math.unit(2, "people"),
  57973. name: "Front",
  57974. image: {
  57975. source: "./media/characters/managarmr/base-front.svg",
  57976. extra: 580/485,
  57977. bottom: 32/612
  57978. },
  57979. extraAttributes: {
  57980. "wingspan": {
  57981. name: "Wingspan",
  57982. power: 1,
  57983. type: "length",
  57984. base: math.unit(4, "meters")
  57985. },
  57986. "pawSize": {
  57987. name: "Paw Size",
  57988. power: 1,
  57989. type: "length",
  57990. base: math.unit(0.2, "meters")
  57991. },
  57992. },
  57993. form: "base",
  57994. },
  57995. "true-divine_front": {
  57996. height: math.unit(40, "feet"),
  57997. weight: math.unit(39000, "lb"),
  57998. preyCapacity: math.unit(375, "people"),
  57999. name: "Front",
  58000. image: {
  58001. source: "./media/characters/managarmr/true-divine-front.svg",
  58002. extra: 725/573,
  58003. bottom: 120/845
  58004. },
  58005. extraAttributes: {
  58006. "wingspan": {
  58007. name: "Wingspan",
  58008. power: 1,
  58009. type: "length",
  58010. base: math.unit(20, "meters")
  58011. },
  58012. "pawSize": {
  58013. name: "Paw Size",
  58014. power: 1,
  58015. type: "length",
  58016. base: math.unit(1.5, "meters")
  58017. },
  58018. },
  58019. form: "true-divine",
  58020. },
  58021. },
  58022. [
  58023. {
  58024. name: "Normal",
  58025. height: math.unit(6 + 1/12, "feet"),
  58026. form: "casual",
  58027. default: true
  58028. },
  58029. {
  58030. name: "Normal",
  58031. height: math.unit(7, "feet"),
  58032. form: "base",
  58033. default: true
  58034. },
  58035. ],
  58036. {
  58037. "casual": {
  58038. name: "Casual",
  58039. default: true
  58040. },
  58041. "base": {
  58042. name: "Base",
  58043. },
  58044. "true-divine": {
  58045. name: "True Divine",
  58046. },
  58047. }
  58048. ))
  58049. characterMakers.push(() => makeCharacter(
  58050. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58051. {
  58052. front: {
  58053. height: math.unit(1.8, "meters"),
  58054. weight: math.unit(110, "kg"),
  58055. name: "Front",
  58056. image: {
  58057. source: "./media/characters/mystra/front.svg",
  58058. extra: 529/442,
  58059. bottom: 31/560
  58060. }
  58061. },
  58062. frontLewd: {
  58063. height: math.unit(1.8, "meters"),
  58064. weight: math.unit(110, "kg"),
  58065. name: "Front (Lewd)",
  58066. image: {
  58067. source: "./media/characters/mystra/front-lewd.svg",
  58068. extra: 529/442,
  58069. bottom: 31/560
  58070. }
  58071. },
  58072. head: {
  58073. height: math.unit(1.63, "feet"),
  58074. name: "Head",
  58075. image: {
  58076. source: "./media/characters/mystra/head.svg"
  58077. }
  58078. },
  58079. paw: {
  58080. height: math.unit(1.9, "feet"),
  58081. name: "Paw",
  58082. image: {
  58083. source: "./media/characters/mystra/paw.svg"
  58084. }
  58085. },
  58086. },
  58087. [
  58088. {
  58089. name: "Incognito",
  58090. height: math.unit(2.3, "meters")
  58091. },
  58092. {
  58093. name: "Small Macro",
  58094. height: math.unit(300, "meters")
  58095. },
  58096. {
  58097. name: "Small Mega",
  58098. height: math.unit(2, "km")
  58099. },
  58100. {
  58101. name: "Mega",
  58102. height: math.unit(30, "km")
  58103. },
  58104. {
  58105. name: "Small Giga",
  58106. height: math.unit(100, "km")
  58107. },
  58108. {
  58109. name: "Giga",
  58110. height: math.unit(1000, "km"),
  58111. default: true
  58112. },
  58113. {
  58114. name: "Continental",
  58115. height: math.unit(5000, "km")
  58116. },
  58117. {
  58118. name: "Terra",
  58119. height: math.unit(20000, "km")
  58120. },
  58121. {
  58122. name: "Solar",
  58123. height: math.unit(2e6, "km")
  58124. },
  58125. {
  58126. name: "Galactic",
  58127. height: math.unit(528502, "lightyears")
  58128. },
  58129. {
  58130. name: "Universal",
  58131. height: math.unit(20, "universes")
  58132. },
  58133. ]
  58134. ))
  58135. characterMakers.push(() => makeCharacter(
  58136. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58137. {
  58138. front: {
  58139. height: math.unit(2, "meters"),
  58140. weight: math.unit(140, "kg"),
  58141. name: "Front",
  58142. image: {
  58143. source: "./media/characters/caleb/front.svg",
  58144. extra: 873/817,
  58145. bottom: 47/920
  58146. }
  58147. },
  58148. back: {
  58149. height: math.unit(2, "meters"),
  58150. weight: math.unit(140, "kg"),
  58151. name: "Back",
  58152. image: {
  58153. source: "./media/characters/caleb/back.svg",
  58154. extra: 877/828,
  58155. bottom: 24/901
  58156. }
  58157. },
  58158. snakeTail: {
  58159. height: math.unit(1.44, "feet"),
  58160. name: "Snake Tail",
  58161. image: {
  58162. source: "./media/characters/caleb/snake-tail.svg"
  58163. }
  58164. },
  58165. dick: {
  58166. height: math.unit(2.6, "feet"),
  58167. name: "Dick",
  58168. image: {
  58169. source: "./media/characters/caleb/dick.svg"
  58170. }
  58171. },
  58172. },
  58173. [
  58174. {
  58175. name: "Incognito",
  58176. height: math.unit(3, "meters")
  58177. },
  58178. {
  58179. name: "Home Size",
  58180. height: math.unit(200, "meters"),
  58181. default: true
  58182. },
  58183. {
  58184. name: "Macro",
  58185. height: math.unit(500, "meters")
  58186. },
  58187. {
  58188. name: "Big Macro",
  58189. height: math.unit(5, "km")
  58190. },
  58191. {
  58192. name: "Giga",
  58193. height: math.unit(250, "km")
  58194. },
  58195. {
  58196. name: "Giga+",
  58197. height: math.unit(5000, "km")
  58198. },
  58199. {
  58200. name: "Small Terra",
  58201. height: math.unit(35e3, "km")
  58202. },
  58203. {
  58204. name: "Terra",
  58205. height: math.unit(2e6, "km")
  58206. },
  58207. {
  58208. name: "Terra+",
  58209. height: math.unit(1.5e6, "km")
  58210. },
  58211. ]
  58212. ))
  58213. characterMakers.push(() => makeCharacter(
  58214. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58215. {
  58216. front: {
  58217. height: math.unit(2, "meters"),
  58218. weight: math.unit(120, "kg"),
  58219. name: "Front",
  58220. image: {
  58221. source: "./media/characters/gilirian/front.svg",
  58222. extra: 805/737,
  58223. bottom: 13/818
  58224. }
  58225. },
  58226. side: {
  58227. height: math.unit(2, "meters"),
  58228. weight: math.unit(120, "kg"),
  58229. name: "Side",
  58230. image: {
  58231. source: "./media/characters/gilirian/side.svg",
  58232. extra: 810/746,
  58233. bottom: 6/816
  58234. }
  58235. },
  58236. back: {
  58237. height: math.unit(2, "meters"),
  58238. weight: math.unit(120, "kg"),
  58239. name: "Back",
  58240. image: {
  58241. source: "./media/characters/gilirian/back.svg",
  58242. extra: 815/745,
  58243. bottom: 15/830
  58244. }
  58245. },
  58246. frontNsfw: {
  58247. height: math.unit(2, "meters"),
  58248. weight: math.unit(120, "kg"),
  58249. name: "Front (NSFW)",
  58250. image: {
  58251. source: "./media/characters/gilirian/front-nsfw.svg",
  58252. extra: 805/737,
  58253. bottom: 13/818
  58254. }
  58255. },
  58256. sideNsfw: {
  58257. height: math.unit(2, "meters"),
  58258. weight: math.unit(120, "kg"),
  58259. name: "Side (NSFW)",
  58260. image: {
  58261. source: "./media/characters/gilirian/side-nsfw.svg",
  58262. extra: 810/746,
  58263. bottom: 6/816
  58264. }
  58265. },
  58266. },
  58267. [
  58268. {
  58269. name: "Incognito",
  58270. height: math.unit(2, "meters"),
  58271. default: true
  58272. },
  58273. {
  58274. name: "Macro",
  58275. height: math.unit(250, "meters")
  58276. },
  58277. {
  58278. name: "Big Macro",
  58279. height: math.unit(1500, "meters")
  58280. },
  58281. {
  58282. name: "Mega",
  58283. height: math.unit(40, "km")
  58284. },
  58285. {
  58286. name: "Giga",
  58287. height: math.unit(300, "km")
  58288. },
  58289. {
  58290. name: "Extra Giga",
  58291. height: math.unit(5000, "km")
  58292. },
  58293. {
  58294. name: "Small Terra",
  58295. height: math.unit(10e3, "km")
  58296. },
  58297. {
  58298. name: "Terra",
  58299. height: math.unit(3e5, "km")
  58300. },
  58301. {
  58302. name: "Galactic",
  58303. height: math.unit(369950, "lightyears")
  58304. },
  58305. ]
  58306. ))
  58307. characterMakers.push(() => makeCharacter(
  58308. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58309. {
  58310. front: {
  58311. height: math.unit(2.5, "meters"),
  58312. weight: math.unit(230, "lb"),
  58313. name: "Front",
  58314. image: {
  58315. source: "./media/characters/tarken/front.svg",
  58316. extra: 764/720,
  58317. bottom: 49/813
  58318. }
  58319. },
  58320. back: {
  58321. height: math.unit(2.5, "meters"),
  58322. weight: math.unit(230, "lb"),
  58323. name: "Back",
  58324. image: {
  58325. source: "./media/characters/tarken/back.svg",
  58326. extra: 756/720,
  58327. bottom: 35/791
  58328. }
  58329. },
  58330. frontNsfw: {
  58331. height: math.unit(2.5, "meters"),
  58332. weight: math.unit(230, "lb"),
  58333. name: "Front (NSFW)",
  58334. image: {
  58335. source: "./media/characters/tarken/front-nsfw.svg",
  58336. extra: 764/720,
  58337. bottom: 49/813
  58338. }
  58339. },
  58340. backNsfw: {
  58341. height: math.unit(2.5, "meters"),
  58342. weight: math.unit(230, "lb"),
  58343. name: "Back (NSFW)",
  58344. image: {
  58345. source: "./media/characters/tarken/back-nsfw.svg",
  58346. extra: 756/720,
  58347. bottom: 35/791
  58348. }
  58349. },
  58350. head: {
  58351. height: math.unit(2.22, "feet"),
  58352. name: "Head",
  58353. image: {
  58354. source: "./media/characters/tarken/head.svg"
  58355. }
  58356. },
  58357. tail: {
  58358. height: math.unit(5.25, "feet"),
  58359. name: "Tail",
  58360. image: {
  58361. source: "./media/characters/tarken/tail.svg"
  58362. }
  58363. },
  58364. dick: {
  58365. height: math.unit(1.95, "feet"),
  58366. name: "Dick",
  58367. image: {
  58368. source: "./media/characters/tarken/dick.svg"
  58369. }
  58370. },
  58371. hand: {
  58372. height: math.unit(1.78, "feet"),
  58373. name: "Hand",
  58374. image: {
  58375. source: "./media/characters/tarken/hand.svg"
  58376. }
  58377. },
  58378. beam: {
  58379. height: math.unit(1.5, "feet"),
  58380. name: "Beam",
  58381. image: {
  58382. source: "./media/characters/tarken/beam.svg"
  58383. }
  58384. },
  58385. },
  58386. [
  58387. {
  58388. name: "Original Size",
  58389. height: math.unit(2.5, "meters")
  58390. },
  58391. {
  58392. name: "Macro",
  58393. height: math.unit(150, "meters"),
  58394. default: true
  58395. },
  58396. {
  58397. name: "Macro+",
  58398. height: math.unit(300, "meters")
  58399. },
  58400. {
  58401. name: "Mega",
  58402. height: math.unit(2, "km")
  58403. },
  58404. {
  58405. name: "Mega+",
  58406. height: math.unit(35, "km")
  58407. },
  58408.  {
  58409. name: "Mega++",
  58410. height: math.unit(60, "km")
  58411. },
  58412. {
  58413. name: "Giga",
  58414. height: math.unit(200, "km")
  58415. },
  58416. {
  58417. name: "Giga+",
  58418. height: math.unit(2500, "km")
  58419. },
  58420. {
  58421. name: "Giga++",
  58422. height: math.unit(6600, "km")
  58423. },
  58424. {
  58425. name: "Terra",
  58426. height: math.unit(20000, "km")
  58427. },
  58428. {
  58429. name: "Terra+",
  58430. height: math.unit(300000, "km")
  58431. },
  58432. ]
  58433. ))
  58434. characterMakers.push(() => makeCharacter(
  58435. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58436. {
  58437. magpie_dressed: {
  58438. height: math.unit(1.7, "meters"),
  58439. weight: math.unit(70, "kg"),
  58440. name: "Dressed",
  58441. image: {
  58442. source: "./media/characters/otreus/magpie-dressed.svg",
  58443. extra: 691/672,
  58444. bottom: 116/807
  58445. },
  58446. form: "magpie",
  58447. default: true
  58448. },
  58449. magpie_nude: {
  58450. height: math.unit(1.7, "meters"),
  58451. weight: math.unit(70, "kg"),
  58452. name: "Nude",
  58453. image: {
  58454. source: "./media/characters/otreus/magpie-nude.svg",
  58455. extra: 691/672,
  58456. bottom: 116/807
  58457. },
  58458. form: "magpie",
  58459. },
  58460. magpie_dressedLewd: {
  58461. height: math.unit(1.7, "meters"),
  58462. weight: math.unit(70, "kg"),
  58463. name: "Dressed (Lewd)",
  58464. image: {
  58465. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58466. extra: 691/672,
  58467. bottom: 116/807
  58468. },
  58469. form: "magpie",
  58470. },
  58471. magpie_nudeLewd: {
  58472. height: math.unit(1.7, "meters"),
  58473. weight: math.unit(70, "kg"),
  58474. name: "Nude (Lewd)",
  58475. image: {
  58476. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58477. extra: 691/672,
  58478. bottom: 116/807
  58479. },
  58480. form: "magpie",
  58481. },
  58482. magpie_leftFoot: {
  58483. height: math.unit(1.58, "feet"),
  58484. name: "Left Foot",
  58485. image: {
  58486. source: "./media/characters/otreus/magpie-left-foot.svg"
  58487. },
  58488. form: "magpie",
  58489. },
  58490. magpie_rightFoot: {
  58491. height: math.unit(1.58, "feet"),
  58492. name: "Right Foot",
  58493. image: {
  58494. source: "./media/characters/otreus/magpie-right-foot.svg"
  58495. },
  58496. form: "magpie",
  58497. },
  58498. magpie_wingspan: {
  58499. height: math.unit(2, "meters"),
  58500. weight: math.unit(70, "kg"),
  58501. name: "Wingspan",
  58502. image: {
  58503. source: "./media/characters/otreus/magpie-wingspan.svg"
  58504. },
  58505. extraAttributes: {
  58506. "wingspan": {
  58507. name: "Wingspan",
  58508. power: 1,
  58509. type: "length",
  58510. base: math.unit(3.35, "meters")
  58511. },
  58512. },
  58513. form: "magpie",
  58514. },
  58515. hippogriff_dressed: {
  58516. height: math.unit(1.7, "meters"),
  58517. weight: math.unit(70, "kg"),
  58518. name: "Dressed",
  58519. image: {
  58520. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58521. extra: 710/689,
  58522. bottom: 67/777
  58523. },
  58524. form: "hippogriff",
  58525. default: true
  58526. },
  58527. hippogriff_nude: {
  58528. height: math.unit(1.7, "meters"),
  58529. weight: math.unit(70, "kg"),
  58530. name: "Nude",
  58531. image: {
  58532. source: "./media/characters/otreus/hippogriff-nude.svg",
  58533. extra: 710/689,
  58534. bottom: 67/777
  58535. },
  58536. form: "hippogriff",
  58537. },
  58538. hippogriff_dressedLewd: {
  58539. height: math.unit(1.7, "meters"),
  58540. weight: math.unit(70, "kg"),
  58541. name: "Dressed (Lewd)",
  58542. image: {
  58543. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58544. extra: 710/689,
  58545. bottom: 67/777
  58546. },
  58547. form: "hippogriff",
  58548. },
  58549. hippogriff_nudeLewd: {
  58550. height: math.unit(1.7, "meters"),
  58551. weight: math.unit(70, "kg"),
  58552. name: "Nude (Lewd)",
  58553. image: {
  58554. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58555. extra: 710/689,
  58556. bottom: 67/777
  58557. },
  58558. form: "hippogriff",
  58559. },
  58560. },
  58561. [
  58562. {
  58563. name: "Original Size",
  58564. height: math.unit(1.7, "meters"),
  58565. allForms: true
  58566. },
  58567. {
  58568. name: "Incognito Size",
  58569. height: math.unit(2, "meters"),
  58570. allForms: true
  58571. },
  58572. {
  58573. name: "Mega",
  58574. height: math.unit(2, "km"),
  58575. allForms: true
  58576. },
  58577. {
  58578. name: "Mega+",
  58579. height: math.unit(40, "km"),
  58580. allForms: true
  58581. },
  58582. {
  58583. name: "Giga",
  58584. height: math.unit(250, "km"),
  58585. allForms: true
  58586. },
  58587. {
  58588. name: "Giga+",
  58589. height: math.unit(3000, "km"),
  58590. allForms: true
  58591. },
  58592. {
  58593. name: "Terra",
  58594. height: math.unit(20000, "km"),
  58595. allForms: true
  58596. },
  58597. {
  58598. name: "Solar (Home Size)",
  58599. height: math.unit(3e6, "km"),
  58600. allForms: true,
  58601. default: true
  58602. },
  58603. ],
  58604. {
  58605. "magpie": {
  58606. name: "Magpie",
  58607. default: true
  58608. },
  58609. "hippogriff": {
  58610. name: "Hippogriff",
  58611. },
  58612. }
  58613. ))
  58614. characterMakers.push(() => makeCharacter(
  58615. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58616. {
  58617. frontDressed: {
  58618. height: math.unit(1.8, "meters"),
  58619. weight: math.unit(90, "kg"),
  58620. name: "Front (Dressed)",
  58621. image: {
  58622. source: "./media/characters/thalia/front-dressed.svg",
  58623. extra: 478/402,
  58624. bottom: 55/533
  58625. }
  58626. },
  58627. backDressed: {
  58628. height: math.unit(1.8, "meters"),
  58629. weight: math.unit(90, "kg"),
  58630. name: "Back (Dressed)",
  58631. image: {
  58632. source: "./media/characters/thalia/back-dressed.svg",
  58633. extra: 500/424,
  58634. bottom: 15/515
  58635. }
  58636. },
  58637. frontNude: {
  58638. height: math.unit(1.8, "meters"),
  58639. weight: math.unit(90, "kg"),
  58640. name: "Front (Nude)",
  58641. image: {
  58642. source: "./media/characters/thalia/front-nude.svg",
  58643. extra: 478/402,
  58644. bottom: 55/533
  58645. }
  58646. },
  58647. backNude: {
  58648. height: math.unit(1.8, "meters"),
  58649. weight: math.unit(90, "kg"),
  58650. name: "Back (Nude)",
  58651. image: {
  58652. source: "./media/characters/thalia/back-nude.svg",
  58653. extra: 500/424,
  58654. bottom: 15/515
  58655. }
  58656. },
  58657. },
  58658. [
  58659. {
  58660. name: "Incognito",
  58661. height: math.unit(3, "meters")
  58662. },
  58663. {
  58664. name: "Macro",
  58665. height: math.unit(500, "meters")
  58666. },
  58667. {
  58668. name: "Mega",
  58669. height: math.unit(5, "km")
  58670. },
  58671. {
  58672. name: "Mega+",
  58673. height: math.unit(30, "km")
  58674. },
  58675. {
  58676. name: "Giga",
  58677. height: math.unit(350, "km")
  58678. },
  58679. {
  58680. name: "Giga+",
  58681. height: math.unit(4000, "km")
  58682. },
  58683. {
  58684. name: "Terra",
  58685. height: math.unit(35000, "km")
  58686. },
  58687. {
  58688. name: "Original Size",
  58689. height: math.unit(130000, "km")
  58690. },
  58691. {
  58692. name: "Solar (Home Size)",
  58693. height: math.unit(4e6, "km"),
  58694. default: true
  58695. },
  58696. ]
  58697. ))
  58698. characterMakers.push(() => makeCharacter(
  58699. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58700. {
  58701. front: {
  58702. height: math.unit(1.8, "meters"),
  58703. weight: math.unit(95, "kg"),
  58704. name: "Front",
  58705. image: {
  58706. source: "./media/characters/shango/front.svg",
  58707. extra: 1925/1774,
  58708. bottom: 67/1992
  58709. }
  58710. },
  58711. back: {
  58712. height: math.unit(1.8, "meters"),
  58713. weight: math.unit(95, "kg"),
  58714. name: "Back",
  58715. image: {
  58716. source: "./media/characters/shango/back.svg",
  58717. extra: 1915/1766,
  58718. bottom: 52/1967
  58719. }
  58720. },
  58721. frontLewd: {
  58722. height: math.unit(1.8, "meters"),
  58723. weight: math.unit(95, "kg"),
  58724. name: "Front (Lewd)",
  58725. image: {
  58726. source: "./media/characters/shango/front-lewd.svg",
  58727. extra: 1925/1774,
  58728. bottom: 67/1992
  58729. }
  58730. },
  58731. backLewd: {
  58732. height: math.unit(1.8, "meters"),
  58733. weight: math.unit(95, "kg"),
  58734. name: "Back (Lewd)",
  58735. image: {
  58736. source: "./media/characters/shango/back-lewd.svg",
  58737. extra: 1915/1766,
  58738. bottom: 52/1967
  58739. }
  58740. },
  58741. maw: {
  58742. height: math.unit(1.64, "feet"),
  58743. name: "Maw",
  58744. image: {
  58745. source: "./media/characters/shango/maw.svg"
  58746. }
  58747. },
  58748. dick: {
  58749. height: math.unit(2.14, "feet"),
  58750. name: "Dick",
  58751. image: {
  58752. source: "./media/characters/shango/dick.svg"
  58753. }
  58754. },
  58755. },
  58756. [
  58757. {
  58758. name: "Incognito",
  58759. height: math.unit(1.8, "meters")
  58760. },
  58761. {
  58762. name: "Home Size",
  58763. height: math.unit(60, "meters"),
  58764. default: true
  58765. },
  58766. {
  58767. name: "Macro",
  58768. height: math.unit(450, "meters")
  58769. },
  58770. {
  58771. name: "Mega",
  58772. height: math.unit(6, "km")
  58773. },
  58774. {
  58775. name: "Mega+",
  58776. height: math.unit(35, "km")
  58777. },
  58778. {
  58779. name: "Giga",
  58780. height: math.unit(500, "km")
  58781. },
  58782. {
  58783. name: "Giga+",
  58784. height: math.unit(5000, "km")
  58785. },
  58786. {
  58787. name: "Terra",
  58788. height: math.unit(60000, "km")
  58789. },
  58790. {
  58791. name: "Terra+",
  58792. height: math.unit(400000, "km")
  58793. },
  58794. ]
  58795. ))
  58796. characterMakers.push(() => makeCharacter(
  58797. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58798. {
  58799. front: {
  58800. height: math.unit(2, "meters"),
  58801. weight: math.unit(95, "kg"),
  58802. name: "Front",
  58803. image: {
  58804. source: "./media/characters/osiris-gryphon/front.svg",
  58805. extra: 1508/1313,
  58806. bottom: 87/1595
  58807. }
  58808. },
  58809. back: {
  58810. height: math.unit(2, "meters"),
  58811. weight: math.unit(95, "kg"),
  58812. name: "Back",
  58813. image: {
  58814. source: "./media/characters/osiris-gryphon/back.svg",
  58815. extra: 1436/1309,
  58816. bottom: 64/1500
  58817. }
  58818. },
  58819. frontLewd: {
  58820. height: math.unit(2, "meters"),
  58821. weight: math.unit(95, "kg"),
  58822. name: "Front-lewd",
  58823. image: {
  58824. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58825. extra: 1508/1313,
  58826. bottom: 87/1595
  58827. }
  58828. },
  58829. wing: {
  58830. height: math.unit(6.3333, "feet"),
  58831. name: "Wing",
  58832. image: {
  58833. source: "./media/characters/osiris-gryphon/wing.svg"
  58834. }
  58835. },
  58836. },
  58837. [
  58838. {
  58839. name: "Incognito",
  58840. height: math.unit(2, "meters")
  58841. },
  58842. {
  58843. name: "Home Size",
  58844. height: math.unit(30, "meters"),
  58845. default: true
  58846. },
  58847. {
  58848. name: "Macro",
  58849. height: math.unit(100, "meters")
  58850. },
  58851. {
  58852. name: "Macro+",
  58853. height: math.unit(350, "meters")
  58854. },
  58855. {
  58856. name: "Mega",
  58857. height: math.unit(40, "km")
  58858. },
  58859. {
  58860. name: "Giga",
  58861. height: math.unit(300, "km")
  58862. },
  58863. {
  58864. name: "Giga+",
  58865. height: math.unit(2000, "km")
  58866. },
  58867. {
  58868. name: "Terra",
  58869. height: math.unit(30000, "km")
  58870. },
  58871. ]
  58872. ))
  58873. characterMakers.push(() => makeCharacter(
  58874. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58875. {
  58876. front: {
  58877. height: math.unit(2.5, "meters"),
  58878. weight: math.unit(200, "kg"),
  58879. name: "Front",
  58880. image: {
  58881. source: "./media/characters/atlas-dragon/front.svg",
  58882. extra: 745/462,
  58883. bottom: 36/781
  58884. }
  58885. },
  58886. back: {
  58887. height: math.unit(2.5, "meters"),
  58888. weight: math.unit(200, "kg"),
  58889. name: "Back",
  58890. image: {
  58891. source: "./media/characters/atlas-dragon/back.svg",
  58892. extra: 848/822,
  58893. bottom: 57/905
  58894. }
  58895. },
  58896. frontLewd: {
  58897. height: math.unit(2.5, "meters"),
  58898. weight: math.unit(200, "kg"),
  58899. name: "Front (Lewd)",
  58900. image: {
  58901. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58902. extra: 745/462,
  58903. bottom: 36/781
  58904. }
  58905. },
  58906. backLewd: {
  58907. height: math.unit(2.5, "meters"),
  58908. weight: math.unit(200, "kg"),
  58909. name: "Back (Lewd)",
  58910. image: {
  58911. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58912. extra: 848/822,
  58913. bottom: 57/905
  58914. }
  58915. },
  58916. },
  58917. [
  58918. {
  58919. name: "Incognito",
  58920. height: math.unit(2.5, "meters")
  58921. },
  58922. {
  58923. name: "Small Macro",
  58924. height: math.unit(50, "meters")
  58925. },
  58926. {
  58927. name: "Macro",
  58928. height: math.unit(350, "meters")
  58929. },
  58930. {
  58931. name: "Mega",
  58932. height: math.unit(5.5, "kilometers")
  58933. },
  58934. {
  58935. name: "Mega+",
  58936. height: math.unit(50, "km")
  58937. },
  58938. {
  58939. name: "Giga",
  58940. height: math.unit(350, "km")
  58941. },
  58942. {
  58943. name: "Giga+",
  58944. height: math.unit(2000, "km")
  58945. },
  58946. {
  58947. name: "Giga++",
  58948. height: math.unit(6500, "km")
  58949. },
  58950. {
  58951. name: "Terra",
  58952. height: math.unit(30000, "km")
  58953. },
  58954. {
  58955. name: "Terra+",
  58956. height: math.unit(250000, "km")
  58957. },
  58958. {
  58959. name: "True Size",
  58960. height: math.unit(100, "multiverses"),
  58961. default: true
  58962. },
  58963. ]
  58964. ))
  58965. characterMakers.push(() => makeCharacter(
  58966. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58967. {
  58968. front: {
  58969. height: math.unit(1.8, "m"),
  58970. weight: math.unit(120, "kg"),
  58971. name: "Front",
  58972. image: {
  58973. source: "./media/characters/chey/front.svg",
  58974. extra: 1359/1270,
  58975. bottom: 18/1377
  58976. }
  58977. },
  58978. arm: {
  58979. height: math.unit(2.05, "feet"),
  58980. name: "Arm",
  58981. image: {
  58982. source: "./media/characters/chey/arm.svg"
  58983. }
  58984. },
  58985. head: {
  58986. height: math.unit(1.89, "feet"),
  58987. name: "Head",
  58988. image: {
  58989. source: "./media/characters/chey/head.svg"
  58990. }
  58991. },
  58992. },
  58993. [
  58994. {
  58995. name: "Original Size",
  58996. height: math.unit(5, "cm")
  58997. },
  58998. {
  58999. name: "Incognito Size",
  59000. height: math.unit(2.4, "m")
  59001. },
  59002. {
  59003. name: "Home Size",
  59004. height: math.unit(200, "meters"),
  59005. default: true
  59006. },
  59007. {
  59008. name: "Mega",
  59009. height: math.unit(2, "km")
  59010. },
  59011. {
  59012. name: "Giga (Preferred Size)",
  59013. height: math.unit(2000, "km")
  59014. },
  59015. {
  59016. name: "Giga+",
  59017. height: math.unit(6000, "km")
  59018. },
  59019. {
  59020. name: "Terra",
  59021. height: math.unit(17000, "km")
  59022. },
  59023. {
  59024. name: "Terra+",
  59025. height: math.unit(75000, "km")
  59026. },
  59027. {
  59028. name: "Terra++",
  59029. height: math.unit(225000, "km")
  59030. },
  59031. ]
  59032. ))
  59033. characterMakers.push(() => makeCharacter(
  59034. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59035. {
  59036. side: {
  59037. height: math.unit(7.8, "meters"),
  59038. name: "Side",
  59039. image: {
  59040. source: "./media/characters/ragnarok/side.svg",
  59041. extra: 725/621,
  59042. bottom: 72/797
  59043. }
  59044. },
  59045. },
  59046. [
  59047. {
  59048. name: "Normal",
  59049. height: math.unit(7.8, "meters"),
  59050. default: true
  59051. },
  59052. ]
  59053. ))
  59054. characterMakers.push(() => makeCharacter(
  59055. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59056. {
  59057. hyena_front: {
  59058. height: math.unit(2.1, "meters"),
  59059. weight: math.unit(110, "kg"),
  59060. name: "Front",
  59061. image: {
  59062. source: "./media/characters/nima/hyena-front.svg",
  59063. extra: 1904/1796,
  59064. bottom: 67/1971
  59065. },
  59066. form: "hyena",
  59067. },
  59068. hyena_back: {
  59069. height: math.unit(2.1, "meters"),
  59070. weight: math.unit(110, "kg"),
  59071. name: "Back",
  59072. image: {
  59073. source: "./media/characters/nima/hyena-back.svg",
  59074. extra: 1964/1884,
  59075. bottom: 35/1999
  59076. },
  59077. form: "hyena",
  59078. },
  59079. shark_front: {
  59080. height: math.unit(1.95, "meters"),
  59081. weight: math.unit(110, "kg"),
  59082. name: "Front",
  59083. image: {
  59084. source: "./media/characters/nima/shark-front.svg",
  59085. extra: 2238/2013,
  59086. bottom: 0/223
  59087. },
  59088. form: "shark",
  59089. },
  59090. paw: {
  59091. height: math.unit(1, "feet"),
  59092. name: "Paw",
  59093. image: {
  59094. source: "./media/characters/nima/paw.svg"
  59095. }
  59096. },
  59097. circlet: {
  59098. height: math.unit(0.3, "feet"),
  59099. name: "Circlet",
  59100. image: {
  59101. source: "./media/characters/nima/circlet.svg"
  59102. }
  59103. },
  59104. necklace: {
  59105. height: math.unit(1.2, "feet"),
  59106. name: "Necklace",
  59107. image: {
  59108. source: "./media/characters/nima/necklace.svg"
  59109. }
  59110. },
  59111. bracelet: {
  59112. height: math.unit(0.51, "feet"),
  59113. name: "Bracelet",
  59114. image: {
  59115. source: "./media/characters/nima/bracelet.svg"
  59116. }
  59117. },
  59118. armband: {
  59119. height: math.unit(1.3, "feet"),
  59120. name: "Armband",
  59121. image: {
  59122. source: "./media/characters/nima/armband.svg"
  59123. }
  59124. },
  59125. },
  59126. [
  59127. {
  59128. name: "Incognito",
  59129. height: math.unit(2.1, "meters"),
  59130. allForms: true
  59131. },
  59132. {
  59133. name: "Small Macro",
  59134. height: math.unit(50, "meters"),
  59135. allForms: true
  59136. },
  59137. {
  59138. name: "Macro",
  59139. height: math.unit(200, "meters"),
  59140. allForms: true
  59141. },
  59142. {
  59143. name: "Mega",
  59144. height: math.unit(2.5, "km"),
  59145. allForms: true
  59146. },
  59147. {
  59148. name: "Mega+",
  59149. height: math.unit(30, "km"),
  59150. allForms: true
  59151. },
  59152. {
  59153. name: "Giga (Home Size)",
  59154. height: math.unit(400, "km"),
  59155. allForms: true,
  59156. default: true
  59157. },
  59158. {
  59159. name: "Giga+",
  59160. height: math.unit(2500, "km"),
  59161. allForms: true
  59162. },
  59163. {
  59164. name: "Giga++",
  59165. height: math.unit(8000, "km"),
  59166. allForms: true
  59167. },
  59168. {
  59169. name: "Terra",
  59170. height: math.unit(20000, "km"),
  59171. allForms: true
  59172. },
  59173. {
  59174. name: "Terra+",
  59175. height: math.unit(70000, "km"),
  59176. allForms: true
  59177. },
  59178. {
  59179. name: "Terra++",
  59180. height: math.unit(600000, "km"),
  59181. allForms: true
  59182. },
  59183. {
  59184. name: "Galactic",
  59185. height: math.unit(40, "galaxies"),
  59186. allForms: true
  59187. },
  59188. {
  59189. name: "Universal",
  59190. height: math.unit(40, "universes"),
  59191. allForms: true
  59192. },
  59193. ],
  59194. {
  59195. "hyena": {
  59196. name: "Hyena",
  59197. default: true
  59198. },
  59199. "shark": {
  59200. name: "Shark",
  59201. },
  59202. }
  59203. ))
  59204. characterMakers.push(() => makeCharacter(
  59205. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59206. {
  59207. anthro_front: {
  59208. height: math.unit(1.5, "meters"),
  59209. name: "Front",
  59210. image: {
  59211. source: "./media/characters/adelaide/anthro-front.svg",
  59212. extra: 860/783,
  59213. bottom: 60/920
  59214. },
  59215. form: "anthro",
  59216. default: true
  59217. },
  59218. hand: {
  59219. height: math.unit(0.65, "feet"),
  59220. name: "Hand",
  59221. image: {
  59222. source: "./media/characters/adelaide/hand.svg"
  59223. },
  59224. form: "anthro"
  59225. },
  59226. foot: {
  59227. height: math.unit(1.38 * 259 / 314, "feet"),
  59228. name: "Foot",
  59229. image: {
  59230. source: "./media/characters/adelaide/foot.svg",
  59231. extra: 259/259,
  59232. bottom: 55/314
  59233. },
  59234. form: "anthro"
  59235. },
  59236. feather: {
  59237. height: math.unit(0.85, "feet"),
  59238. name: "Feather",
  59239. image: {
  59240. source: "./media/characters/adelaide/feather.svg"
  59241. },
  59242. form: "anthro"
  59243. },
  59244. feral_side: {
  59245. height: math.unit(1, "meters"),
  59246. name: "Side",
  59247. image: {
  59248. source: "./media/characters/adelaide/feral-side.svg",
  59249. extra: 550/467,
  59250. bottom: 37/587
  59251. },
  59252. form: "feral",
  59253. default: true
  59254. },
  59255. feral_hand: {
  59256. height: math.unit(0.58, "feet"),
  59257. name: "Hand",
  59258. image: {
  59259. source: "./media/characters/adelaide/hand.svg"
  59260. },
  59261. form: "feral"
  59262. },
  59263. feral_foot: {
  59264. height: math.unit(1.2 * 259 / 314, "feet"),
  59265. name: "Foot",
  59266. image: {
  59267. source: "./media/characters/adelaide/foot.svg",
  59268. extra: 259/259,
  59269. bottom: 55/314
  59270. },
  59271. form: "feral"
  59272. },
  59273. feral_feather: {
  59274. height: math.unit(0.63, "feet"),
  59275. name: "Feather",
  59276. image: {
  59277. source: "./media/characters/adelaide/feather.svg"
  59278. },
  59279. form: "feral"
  59280. },
  59281. },
  59282. [
  59283. {
  59284. name: "Normal",
  59285. height: math.unit(1.5, "meters"),
  59286. form: "anthro",
  59287. default: true
  59288. },
  59289. {
  59290. name: "Normal",
  59291. height: math.unit(1, "meters"),
  59292. form: "feral",
  59293. default: true
  59294. },
  59295. ],
  59296. {
  59297. "anthro": {
  59298. name: "Anthro",
  59299. default: true
  59300. },
  59301. "feral": {
  59302. name: "Feral",
  59303. },
  59304. }
  59305. ))
  59306. characterMakers.push(() => makeCharacter(
  59307. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59308. {
  59309. front: {
  59310. height: math.unit(2.5, "meters"),
  59311. name: "Front",
  59312. image: {
  59313. source: "./media/characters/goa/front.svg",
  59314. extra: 1109/1013,
  59315. bottom: 150/1259
  59316. }
  59317. },
  59318. },
  59319. [
  59320. {
  59321. name: "Normal",
  59322. height: math.unit(2.5, "meters"),
  59323. default: true
  59324. },
  59325. ]
  59326. ))
  59327. characterMakers.push(() => makeCharacter(
  59328. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59329. {
  59330. front: {
  59331. height: math.unit(2, "meters"),
  59332. weight: math.unit(100, "kg"),
  59333. name: "Front",
  59334. image: {
  59335. source: "./media/characters/kiki-weavile/front.svg",
  59336. extra: 357/332,
  59337. bottom: 60/417
  59338. }
  59339. },
  59340. },
  59341. [
  59342. {
  59343. name: "Normal",
  59344. height: math.unit(2, "meters"),
  59345. default: true
  59346. },
  59347. ]
  59348. ))
  59349. characterMakers.push(() => makeCharacter(
  59350. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59351. {
  59352. side: {
  59353. height: math.unit(1.6, "meters"),
  59354. name: "Side",
  59355. image: {
  59356. source: "./media/characters/liza/side.svg",
  59357. extra: 943/915,
  59358. bottom: 72/1015
  59359. }
  59360. },
  59361. },
  59362. [
  59363. {
  59364. name: "Normal",
  59365. height: math.unit(1.6, "meters"),
  59366. default: true
  59367. },
  59368. ]
  59369. ))
  59370. characterMakers.push(() => makeCharacter(
  59371. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59372. {
  59373. side: {
  59374. height: math.unit(2.5, "meters"),
  59375. name: "Side",
  59376. image: {
  59377. source: "./media/characters/persephone-sweetbreath/side.svg",
  59378. extra: 796/700,
  59379. bottom: 44/840
  59380. }
  59381. },
  59382. },
  59383. [
  59384. {
  59385. name: "Normal",
  59386. height: math.unit(2.5, "meters"),
  59387. default: true
  59388. },
  59389. ]
  59390. ))
  59391. characterMakers.push(() => makeCharacter(
  59392. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59393. {
  59394. front: {
  59395. height: math.unit(32, "meters"),
  59396. name: "Front",
  59397. image: {
  59398. source: "./media/characters/pierce/front.svg",
  59399. extra: 1695/1475,
  59400. bottom: 185/1880
  59401. }
  59402. },
  59403. side: {
  59404. height: math.unit(32, "meters"),
  59405. name: "Side",
  59406. image: {
  59407. source: "./media/characters/pierce/side.svg",
  59408. extra: 974/859,
  59409. bottom: 43/1017
  59410. }
  59411. },
  59412. frontWingless: {
  59413. height: math.unit(32, "meters"),
  59414. name: "Front (Wingless)",
  59415. image: {
  59416. source: "./media/characters/pierce/front-wingless.svg",
  59417. extra: 1695/1475,
  59418. bottom: 185/1880
  59419. }
  59420. },
  59421. sideWingless: {
  59422. height: math.unit(32, "meters"),
  59423. name: "Side (Wingless)",
  59424. image: {
  59425. source: "./media/characters/pierce/side-wingless.svg",
  59426. extra: 974/859,
  59427. bottom: 43/1017
  59428. }
  59429. },
  59430. maw: {
  59431. height: math.unit(19.3, "meters"),
  59432. name: "Maw",
  59433. image: {
  59434. source: "./media/characters/pierce/maw.svg"
  59435. }
  59436. },
  59437. },
  59438. [
  59439. {
  59440. name: "Small",
  59441. height: math.unit(8.5, "meters")
  59442. },
  59443. {
  59444. name: "Normal",
  59445. height: math.unit(32, "meters"),
  59446. default: true
  59447. },
  59448. ]
  59449. ))
  59450. characterMakers.push(() => makeCharacter(
  59451. { name: "Shira", species: ["cobra", "deity"], tags: ["anthro"] },
  59452. {
  59453. front: {
  59454. height: math.unit(2.3, "meters"),
  59455. weight: math.unit(165, "kg"),
  59456. name: "Front",
  59457. image: {
  59458. source: "./media/characters/shira/front.svg",
  59459. extra: 924/919,
  59460. bottom: 17/941
  59461. }
  59462. },
  59463. back: {
  59464. height: math.unit(2.3, "meters"),
  59465. weight: math.unit(165, "kg"),
  59466. name: "Back",
  59467. image: {
  59468. source: "./media/characters/shira/back.svg",
  59469. extra: 928/922,
  59470. bottom: 18/946
  59471. }
  59472. },
  59473. frontLewd: {
  59474. height: math.unit(2.3, "meters"),
  59475. weight: math.unit(165, "kg"),
  59476. name: "Front (Lewd)",
  59477. image: {
  59478. source: "./media/characters/shira/front-lewd.svg",
  59479. extra: 924/919,
  59480. bottom: 17/941
  59481. }
  59482. },
  59483. backLewd: {
  59484. height: math.unit(2.3, "meters"),
  59485. weight: math.unit(165, "kg"),
  59486. name: "Back (Lewd)",
  59487. image: {
  59488. source: "./media/characters/shira/back-lewd.svg",
  59489. extra: 928/922,
  59490. bottom: 18/946
  59491. }
  59492. },
  59493. maw: {
  59494. height: math.unit(1.14, "feet"),
  59495. name: "Maw",
  59496. image: {
  59497. source: "./media/characters/shira/maw.svg"
  59498. }
  59499. },
  59500. },
  59501. [
  59502. {
  59503. name: "Incognito",
  59504. height: math.unit(2.3, "meters")
  59505. },
  59506. {
  59507. name: "Home Size",
  59508. height: math.unit(150, "meters"),
  59509. default: true
  59510. },
  59511. {
  59512. name: "Macro",
  59513. height: math.unit(2, "km")
  59514. },
  59515. {
  59516. name: "Mega",
  59517. height: math.unit(30, "km")
  59518. },
  59519. {
  59520. name: "Giga",
  59521. height: math.unit(450, "km")
  59522. },
  59523. {
  59524. name: "Giga+",
  59525. height: math.unit(3000, "km")
  59526. },
  59527. {
  59528. name: "Giga++",
  59529. height: math.unit(6000, "km")
  59530. },
  59531. {
  59532. name: "Terra",
  59533. height: math.unit(80000, "km")
  59534. },
  59535. {
  59536. name: "Terra+",
  59537. height: math.unit(350000, "km")
  59538. },
  59539. {
  59540. name: "Solar",
  59541. height: math.unit(1e6, "km")
  59542. },
  59543. ]
  59544. ))
  59545. characterMakers.push(() => makeCharacter(
  59546. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59547. {
  59548. front: {
  59549. height: math.unit(2, "meters"),
  59550. weight: math.unit(160, "kg"),
  59551. name: "Front",
  59552. image: {
  59553. source: "./media/characters/daxerios/front.svg",
  59554. extra: 1334/1277,
  59555. bottom: 45/1379
  59556. }
  59557. },
  59558. frontLewd: {
  59559. height: math.unit(2, "meters"),
  59560. weight: math.unit(160, "kg"),
  59561. name: "Front (Lewd)",
  59562. image: {
  59563. source: "./media/characters/daxerios/front-lewd.svg",
  59564. extra: 1334/1277,
  59565. bottom: 45/1379
  59566. }
  59567. },
  59568. dick: {
  59569. height: math.unit(2.35, "feet"),
  59570. name: "Dick",
  59571. image: {
  59572. source: "./media/characters/daxerios/dick.svg"
  59573. }
  59574. },
  59575. },
  59576. [
  59577. {
  59578. name: "\"Small\"",
  59579. height: math.unit(5, "meters")
  59580. },
  59581. {
  59582. name: "Original Size",
  59583. height: math.unit(500, "meters"),
  59584. default: true
  59585. },
  59586. {
  59587. name: "Mega",
  59588. height: math.unit(2, "km")
  59589. },
  59590. {
  59591. name: "Mega+",
  59592. height: math.unit(35, "km")
  59593. },
  59594. {
  59595. name: "Giga",
  59596. height: math.unit(250, "km")
  59597. },
  59598. {
  59599. name: "Giga+",
  59600. height: math.unit(3000, "km")
  59601. },
  59602. {
  59603. name: "Terra",
  59604. height: math.unit(25000, "km")
  59605. },
  59606. {
  59607. name: "Terra+",
  59608. height: math.unit(300000, "km")
  59609. },
  59610. {
  59611. name: "Solar",
  59612. height: math.unit(1e6, "km")
  59613. },
  59614. ]
  59615. ))
  59616. characterMakers.push(() => makeCharacter(
  59617. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59618. {
  59619. front: {
  59620. height: math.unit(8 + 4/12, "feet"),
  59621. weight: math.unit(464, "lb"),
  59622. name: "Front",
  59623. image: {
  59624. source: "./media/characters/caveat/front.svg",
  59625. extra: 1861/1678,
  59626. bottom: 40/1901
  59627. }
  59628. },
  59629. },
  59630. [
  59631. {
  59632. name: "Normal",
  59633. height: math.unit(8 + 4/12, "feet"),
  59634. default: true
  59635. },
  59636. ]
  59637. ))
  59638. characterMakers.push(() => makeCharacter(
  59639. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59640. {
  59641. front: {
  59642. height: math.unit(12, "feet"),
  59643. weight: math.unit(1800, "lb"),
  59644. name: "Front",
  59645. image: {
  59646. source: "./media/characters/centbair/front.svg",
  59647. extra: 781/663,
  59648. bottom: 25/806
  59649. }
  59650. },
  59651. frontNsfw: {
  59652. height: math.unit(12, "feet"),
  59653. weight: math.unit(1800, "lb"),
  59654. name: "Front (NSFW)",
  59655. image: {
  59656. source: "./media/characters/centbair/front-nsfw.svg",
  59657. extra: 781/663,
  59658. bottom: 25/806
  59659. }
  59660. },
  59661. back: {
  59662. height: math.unit(12, "feet"),
  59663. weight: math.unit(1800, "lb"),
  59664. name: "Back",
  59665. image: {
  59666. source: "./media/characters/centbair/back.svg",
  59667. extra: 808/761,
  59668. bottom: 19/827
  59669. }
  59670. },
  59671. dick: {
  59672. height: math.unit(6.5, "feet"),
  59673. name: "Dick",
  59674. image: {
  59675. source: "./media/characters/centbair/dick.svg"
  59676. }
  59677. },
  59678. slit: {
  59679. height: math.unit(3.25, "feet"),
  59680. name: "Slit",
  59681. image: {
  59682. source: "./media/characters/centbair/slit.svg"
  59683. }
  59684. },
  59685. },
  59686. [
  59687. {
  59688. name: "Normal",
  59689. height: math.unit(12, "feet"),
  59690. default: true
  59691. },
  59692. ]
  59693. ))
  59694. characterMakers.push(() => makeCharacter(
  59695. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59696. {
  59697. front: {
  59698. height: math.unit(5 + 7/12, "feet"),
  59699. name: "Front",
  59700. image: {
  59701. source: "./media/characters/andy/front.svg",
  59702. extra: 634/588,
  59703. bottom: 36/670
  59704. },
  59705. extraAttributes: {
  59706. "pawLength": {
  59707. name: "Paw Length",
  59708. power: 1,
  59709. type: "length",
  59710. base: math.unit(1, "feet")
  59711. },
  59712. }
  59713. },
  59714. side: {
  59715. height: math.unit(5 + 7/12, "feet"),
  59716. name: "Side",
  59717. image: {
  59718. source: "./media/characters/andy/side.svg",
  59719. extra: 641/596,
  59720. bottom: 34/675
  59721. },
  59722. extraAttributes: {
  59723. "pawLength": {
  59724. name: "Paw Length",
  59725. power: 1,
  59726. type: "length",
  59727. base: math.unit(1, "feet")
  59728. },
  59729. }
  59730. },
  59731. back: {
  59732. height: math.unit(5 + 7/12, "feet"),
  59733. name: "Back",
  59734. image: {
  59735. source: "./media/characters/andy/back.svg",
  59736. extra: 618/583,
  59737. bottom: 39/657
  59738. },
  59739. extraAttributes: {
  59740. "pawLength": {
  59741. name: "Paw Length",
  59742. power: 1,
  59743. type: "length",
  59744. base: math.unit(1, "feet")
  59745. },
  59746. }
  59747. },
  59748. paw: {
  59749. height: math.unit(1.13, "feet"),
  59750. name: "Paw",
  59751. image: {
  59752. source: "./media/characters/andy/paw.svg"
  59753. }
  59754. },
  59755. },
  59756. [
  59757. {
  59758. name: "Micro",
  59759. height: math.unit(4, "inches")
  59760. },
  59761. {
  59762. name: "Normal",
  59763. height: math.unit(5 + 7/12, "feet"),
  59764. default: true
  59765. },
  59766. {
  59767. name: "Macro",
  59768. height: math.unit(390.42, "feet")
  59769. },
  59770. ]
  59771. ))
  59772. characterMakers.push(() => makeCharacter(
  59773. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59774. {
  59775. front: {
  59776. height: math.unit(7, "feet"),
  59777. weight: math.unit(250, "lb"),
  59778. name: "Front",
  59779. image: {
  59780. source: "./media/characters/vix-titan/front.svg",
  59781. extra: 460/428,
  59782. bottom: 15/475
  59783. },
  59784. extraAttributes: {
  59785. "pawWidth": {
  59786. name: "Paw Width",
  59787. power: 1,
  59788. type: "length",
  59789. base: math.unit(0.75, "feet")
  59790. },
  59791. }
  59792. },
  59793. },
  59794. [
  59795. {
  59796. name: "Normal",
  59797. height: math.unit(7, "feet"),
  59798. default: true
  59799. },
  59800. {
  59801. name: "Giant",
  59802. height: math.unit(1500, "feet")
  59803. },
  59804. {
  59805. name: "Mega",
  59806. height: math.unit(10, "miles")
  59807. },
  59808. {
  59809. name: "Giga",
  59810. height: math.unit(150, "miles")
  59811. },
  59812. {
  59813. name: "Tera",
  59814. height: math.unit(144000, "miles")
  59815. },
  59816. ]
  59817. ))
  59818. characterMakers.push(() => makeCharacter(
  59819. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59820. {
  59821. front: {
  59822. height: math.unit(6 + 2/12, "feet"),
  59823. name: "Front",
  59824. image: {
  59825. source: "./media/characters/reiku/front.svg",
  59826. extra: 1910/1757,
  59827. bottom: 103/2013
  59828. },
  59829. extraAttributes: {
  59830. "thighThickness": {
  59831. name: "Thigh Thickness",
  59832. power: 1,
  59833. type: "length",
  59834. base: math.unit(1.12, "feet")
  59835. },
  59836. "assThickness": {
  59837. name: "Ass Thickness",
  59838. power: 1,
  59839. type: "length",
  59840. base: math.unit(1.12*2, "feet")
  59841. },
  59842. }
  59843. },
  59844. side: {
  59845. height: math.unit(6 + 2/12, "feet"),
  59846. name: "Side",
  59847. image: {
  59848. source: "./media/characters/reiku/side.svg",
  59849. extra: 1846/1748,
  59850. bottom: 99/1945
  59851. },
  59852. extraAttributes: {
  59853. "thighThickness": {
  59854. name: "Thigh Thickness",
  59855. power: 1,
  59856. type: "length",
  59857. base: math.unit(1.12, "feet")
  59858. },
  59859. "assThickness": {
  59860. name: "Ass Thickness",
  59861. power: 1,
  59862. type: "length",
  59863. base: math.unit(1.12*2, "feet")
  59864. },
  59865. }
  59866. },
  59867. back: {
  59868. height: math.unit(6 + 2/12, "feet"),
  59869. name: "Back",
  59870. image: {
  59871. source: "./media/characters/reiku/back.svg",
  59872. extra: 1941/1786,
  59873. bottom: 34/1975
  59874. },
  59875. extraAttributes: {
  59876. "thighThickness": {
  59877. name: "Thigh Thickness",
  59878. power: 1,
  59879. type: "length",
  59880. base: math.unit(1.12, "feet")
  59881. },
  59882. "assThickness": {
  59883. name: "Ass Thickness",
  59884. power: 1,
  59885. type: "length",
  59886. base: math.unit(1.12*2, "feet")
  59887. },
  59888. }
  59889. },
  59890. head: {
  59891. height: math.unit(1.8, "feet"),
  59892. name: "Head",
  59893. image: {
  59894. source: "./media/characters/reiku/head.svg"
  59895. }
  59896. },
  59897. tailTop: {
  59898. height: math.unit(8.4, "feet"),
  59899. name: "Tail (Top)",
  59900. image: {
  59901. source: "./media/characters/reiku/tail-top.svg"
  59902. }
  59903. },
  59904. tailBottom: {
  59905. height: math.unit(8.4, "feet"),
  59906. name: "Tail (Bottom)",
  59907. image: {
  59908. source: "./media/characters/reiku/tail-bottom.svg"
  59909. }
  59910. },
  59911. foot: {
  59912. height: math.unit(2.6, "feet"),
  59913. name: "Foot",
  59914. image: {
  59915. source: "./media/characters/reiku/foot.svg"
  59916. }
  59917. },
  59918. footCurled: {
  59919. height: math.unit(2.3, "feet"),
  59920. name: "Foot (Curled)",
  59921. image: {
  59922. source: "./media/characters/reiku/foot-curled.svg"
  59923. }
  59924. },
  59925. footSide: {
  59926. height: math.unit(1.26, "feet"),
  59927. name: "Foot (Side)",
  59928. image: {
  59929. source: "./media/characters/reiku/foot-side.svg"
  59930. }
  59931. },
  59932. },
  59933. [
  59934. {
  59935. name: "Normal",
  59936. height: math.unit(6 + 2/12, "feet"),
  59937. default: true
  59938. },
  59939. ]
  59940. ))
  59941. characterMakers.push(() => makeCharacter(
  59942. { name: "Cialda", species: ["zorgoia", "food"], tags: ["anthro"] },
  59943. {
  59944. front: {
  59945. height: math.unit(7, "feet"),
  59946. weight: math.unit(500, "kg"),
  59947. name: "Front",
  59948. image: {
  59949. source: "./media/characters/cialda/front.svg",
  59950. extra: 912/745,
  59951. bottom: 55/967
  59952. }
  59953. },
  59954. },
  59955. [
  59956. {
  59957. name: "Normal",
  59958. height: math.unit(7, "feet"),
  59959. default: true
  59960. },
  59961. ]
  59962. ))
  59963. characterMakers.push(() => makeCharacter(
  59964. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  59965. {
  59966. side: {
  59967. height: math.unit(6, "feet"),
  59968. weight: math.unit(600, "lb"),
  59969. preyCapacity: math.unit(25, "liters"),
  59970. name: "Side",
  59971. image: {
  59972. source: "./media/characters/darkkin/side.svg",
  59973. extra: 1597/1447,
  59974. bottom: 101/1698
  59975. }
  59976. },
  59977. },
  59978. [
  59979. {
  59980. name: "Canon Height",
  59981. height: math.unit(568, "feet"),
  59982. default: true
  59983. },
  59984. ]
  59985. ))
  59986. characterMakers.push(() => makeCharacter(
  59987. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  59988. {
  59989. front: {
  59990. height: math.unit(6, "feet"),
  59991. weight: math.unit(1500, "lb"),
  59992. preyCapacity: math.unit(3, "people"),
  59993. name: "Front",
  59994. image: {
  59995. source: "./media/characters/livnia/front.svg",
  59996. extra: 934/932,
  59997. bottom: 83/1017
  59998. }
  59999. },
  60000. back: {
  60001. height: math.unit(6, "feet"),
  60002. weight: math.unit(1500, "lb"),
  60003. preyCapacity: math.unit(3, "people"),
  60004. name: "Back",
  60005. image: {
  60006. source: "./media/characters/livnia/back.svg",
  60007. extra: 916/915,
  60008. bottom: 58/974
  60009. }
  60010. },
  60011. head: {
  60012. height: math.unit(1.53, "feet"),
  60013. name: "Head",
  60014. image: {
  60015. source: "./media/characters/livnia/head.svg"
  60016. }
  60017. },
  60018. maw: {
  60019. height: math.unit(0.78, "feet"),
  60020. name: "Maw",
  60021. image: {
  60022. source: "./media/characters/livnia/maw.svg"
  60023. }
  60024. },
  60025. genitals: {
  60026. height: math.unit(0.35, "feet"),
  60027. name: "Genitals",
  60028. image: {
  60029. source: "./media/characters/livnia/genitals.svg"
  60030. }
  60031. },
  60032. },
  60033. [
  60034. {
  60035. name: "Normal",
  60036. height: math.unit(1000, "feet"),
  60037. default: true
  60038. },
  60039. ]
  60040. ))
  60041. characterMakers.push(() => makeCharacter(
  60042. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60043. {
  60044. front: {
  60045. height: math.unit(4, "feet"),
  60046. weight: math.unit(73, "lb"),
  60047. name: "Front",
  60048. image: {
  60049. source: "./media/characters/hayaku/front.svg",
  60050. extra: 1011/888,
  60051. bottom: 33/1044
  60052. }
  60053. },
  60054. back: {
  60055. height: math.unit(4, "feet"),
  60056. weight: math.unit(73, "lb"),
  60057. name: "Back",
  60058. image: {
  60059. source: "./media/characters/hayaku/back.svg",
  60060. extra: 1040/930,
  60061. bottom: 20/1060
  60062. }
  60063. },
  60064. },
  60065. [
  60066. {
  60067. name: "Normal",
  60068. height: math.unit(4, "feet"),
  60069. default: true
  60070. },
  60071. ]
  60072. ))
  60073. characterMakers.push(() => makeCharacter(
  60074. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60075. {
  60076. front: {
  60077. height: math.unit(6 + 7/12, "feet"),
  60078. weight: math.unit(300, "lb"),
  60079. name: "Front",
  60080. image: {
  60081. source: "./media/characters/athena-bryzant/front.svg",
  60082. extra: 870/835,
  60083. bottom: 33/903
  60084. }
  60085. },
  60086. back: {
  60087. height: math.unit(6 + 7/12, "feet"),
  60088. weight: math.unit(300, "lb"),
  60089. name: "Back",
  60090. image: {
  60091. source: "./media/characters/athena-bryzant/back.svg",
  60092. extra: 858/823,
  60093. bottom: 30/888
  60094. }
  60095. },
  60096. head: {
  60097. height: math.unit(2.38, "feet"),
  60098. name: "Head",
  60099. image: {
  60100. source: "./media/characters/athena-bryzant/head.svg"
  60101. }
  60102. },
  60103. wings: {
  60104. height: math.unit(2.85, "feet"),
  60105. name: "Wings",
  60106. image: {
  60107. source: "./media/characters/athena-bryzant/wings.svg"
  60108. }
  60109. },
  60110. },
  60111. [
  60112. {
  60113. name: "Normal",
  60114. height: math.unit(6 + 7/12, "feet"),
  60115. default: true
  60116. },
  60117. {
  60118. name: "Big",
  60119. height: math.unit(8, "feet")
  60120. },
  60121. {
  60122. name: "Very Big",
  60123. height: math.unit(11, "feet")
  60124. },
  60125. ]
  60126. ))
  60127. characterMakers.push(() => makeCharacter(
  60128. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60129. {
  60130. side: {
  60131. height: math.unit(3, "meters"),
  60132. weight: math.unit(7500, "kg"),
  60133. preyCapacity: math.unit(1e12, "people"),
  60134. name: "Side",
  60135. image: {
  60136. source: "./media/characters/zel-kesh/side.svg",
  60137. extra: 910/407,
  60138. bottom: 147/1057
  60139. }
  60140. },
  60141. },
  60142. [
  60143. {
  60144. name: "Normal",
  60145. height: math.unit(3, "meters"),
  60146. default: true
  60147. },
  60148. ]
  60149. ))
  60150. //characters
  60151. function makeCharacters() {
  60152. const results = [];
  60153. characterMakers.forEach(character => {
  60154. results.push(character());
  60155. });
  60156. return results;
  60157. }