less copy protection, more size visualization
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

63913 рядки
1.6 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. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf"]
  2337. },
  2338. }
  2339. //species
  2340. function getSpeciesInfo(speciesList) {
  2341. let result = new Set();
  2342. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2343. result.add(entry)
  2344. });
  2345. return Array.from(result);
  2346. };
  2347. function getSpeciesInfoHelper(species) {
  2348. if (!speciesData[species]) {
  2349. console.warn(species + " doesn't exist");
  2350. return [];
  2351. }
  2352. if (speciesData[species].parents) {
  2353. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2354. } else {
  2355. return [species];
  2356. }
  2357. }
  2358. characterMakers.push(() => makeCharacter(
  2359. {
  2360. name: "Fen",
  2361. species: ["crux"],
  2362. description: {
  2363. title: "Bio",
  2364. text: "Very furry. Sheds on everything."
  2365. },
  2366. tags: [
  2367. "anthro",
  2368. "goo"
  2369. ]
  2370. },
  2371. {
  2372. front: {
  2373. height: math.unit(12, "feet"),
  2374. weight: math.unit(2400, "lb"),
  2375. preyCapacity: math.unit(1, "people"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/fen/front.svg",
  2379. extra: 1804/1562,
  2380. bottom: 205/2009
  2381. },
  2382. extraAttributes: {
  2383. pawSize: {
  2384. name: "Paw Size",
  2385. power: 2,
  2386. type: "area",
  2387. base: math.unit(0.35, "m^2")
  2388. }
  2389. }
  2390. },
  2391. diving: {
  2392. height: math.unit(4.9, "meters"),
  2393. weight: math.unit(2400, "lb"),
  2394. name: "Diving",
  2395. image: {
  2396. source: "./media/characters/fen/diving.svg"
  2397. }
  2398. },
  2399. sleeby: {
  2400. height: math.unit(3.45, "meters"),
  2401. weight: math.unit(2400, "lb"),
  2402. name: "Sleeby",
  2403. image: {
  2404. source: "./media/characters/fen/sleeby.svg"
  2405. }
  2406. },
  2407. goo: {
  2408. height: math.unit(12, "feet"),
  2409. weight: math.unit(3600, "lb"),
  2410. volume: math.unit(1000, "liters"),
  2411. preyCapacity: math.unit(6, "people"),
  2412. name: "Goo",
  2413. image: {
  2414. source: "./media/characters/fen/goo.svg",
  2415. extra: 1307/1071,
  2416. bottom: 134/1441
  2417. }
  2418. },
  2419. horror: {
  2420. height: math.unit(13.6, "feet"),
  2421. weight: math.unit(2400, "lb"),
  2422. preyCapacity: math.unit(1, "people"),
  2423. name: "Horror",
  2424. image: {
  2425. source: "./media/characters/fen/horror.svg",
  2426. extra: 893/797,
  2427. bottom: 0/893
  2428. }
  2429. },
  2430. gooNsfw: {
  2431. height: math.unit(12, "feet"),
  2432. weight: math.unit(3750, "lb"),
  2433. volume: math.unit(1000, "liters"),
  2434. preyCapacity: math.unit(6, "people"),
  2435. name: "Goo (NSFW)",
  2436. image: {
  2437. source: "./media/characters/fen/goo-nsfw.svg",
  2438. extra: 1875/1734,
  2439. bottom: 122/1997
  2440. }
  2441. },
  2442. maw: {
  2443. height: math.unit(5.03, "feet"),
  2444. name: "Maw",
  2445. image: {
  2446. source: "./media/characters/fen/maw.svg"
  2447. }
  2448. },
  2449. gooCeiling: {
  2450. height: math.unit(6.6, "feet"),
  2451. weight: math.unit(3000, "lb"),
  2452. volume: math.unit(1000, "liters"),
  2453. preyCapacity: math.unit(6, "people"),
  2454. name: "Maw (Goo)",
  2455. image: {
  2456. source: "./media/characters/fen/goo-maw.svg"
  2457. }
  2458. },
  2459. paw: {
  2460. height: math.unit(3.77, "feet"),
  2461. name: "Paw",
  2462. image: {
  2463. source: "./media/characters/fen/paw.svg"
  2464. },
  2465. extraAttributes: {
  2466. "toeSize": {
  2467. name: "Toe Size",
  2468. power: 2,
  2469. type: "area",
  2470. base: math.unit(0.02875, "m^2")
  2471. },
  2472. "pawSize": {
  2473. name: "Paw Size",
  2474. power: 2,
  2475. type: "area",
  2476. base: math.unit(0.378, "m^2")
  2477. },
  2478. }
  2479. },
  2480. tail: {
  2481. height: math.unit(12.1, "feet"),
  2482. name: "Tail",
  2483. image: {
  2484. source: "./media/characters/fen/tail.svg"
  2485. }
  2486. },
  2487. tailFull: {
  2488. height: math.unit(12.1, "feet"),
  2489. name: "Full Tail",
  2490. image: {
  2491. source: "./media/characters/fen/tail-full.svg"
  2492. }
  2493. },
  2494. back: {
  2495. height: math.unit(12, "feet"),
  2496. weight: math.unit(2400, "lb"),
  2497. name: "Back",
  2498. image: {
  2499. source: "./media/characters/fen/back.svg",
  2500. },
  2501. info: {
  2502. description: {
  2503. mode: "append",
  2504. text: "\n\nHe is not currently looking at you."
  2505. }
  2506. }
  2507. },
  2508. full: {
  2509. height: math.unit(1.85, "meter"),
  2510. weight: math.unit(3200, "lb"),
  2511. preyCapacity: math.unit(3, "people"),
  2512. name: "Full",
  2513. image: {
  2514. source: "./media/characters/fen/full.svg",
  2515. extra: 1133/859,
  2516. bottom: 145/1278
  2517. },
  2518. info: {
  2519. description: {
  2520. mode: "append",
  2521. text: "\n\nMunch."
  2522. }
  2523. }
  2524. },
  2525. gooLounging: {
  2526. height: math.unit(4.53, "feet"),
  2527. weight: math.unit(3000, "lb"),
  2528. preyCapacity: math.unit(6, "people"),
  2529. name: "Goo (Lounging)",
  2530. image: {
  2531. source: "./media/characters/fen/goo-lounging.svg",
  2532. bottom: 116 / 613
  2533. }
  2534. },
  2535. lounging: {
  2536. height: math.unit(10.52, "feet"),
  2537. weight: math.unit(2400, "lb"),
  2538. name: "Lounging",
  2539. image: {
  2540. source: "./media/characters/fen/lounging.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Small",
  2547. height: math.unit(2.2428, "meter")
  2548. },
  2549. {
  2550. name: "Normal",
  2551. height: math.unit(12, "feet"),
  2552. default: true,
  2553. },
  2554. {
  2555. name: "Big",
  2556. height: math.unit(20, "feet")
  2557. },
  2558. {
  2559. name: "Minimacro",
  2560. height: math.unit(40, "feet"),
  2561. info: {
  2562. description: {
  2563. mode: "append",
  2564. text: "\n\nTOO DAMN BIG"
  2565. }
  2566. }
  2567. },
  2568. {
  2569. name: "Macro",
  2570. height: math.unit(100, "feet"),
  2571. info: {
  2572. description: {
  2573. mode: "append",
  2574. text: "\n\nTOO DAMN BIG"
  2575. }
  2576. }
  2577. },
  2578. {
  2579. name: "Megamacro",
  2580. height: math.unit(2, "miles")
  2581. },
  2582. {
  2583. name: "Gigamacro",
  2584. height: math.unit(10, "earths")
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(183, "cm"),
  2593. weight: math.unit(80, "kg"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/sofia-fluttertail/front.svg",
  2597. bottom: 0.01,
  2598. extra: 2154 / 2081
  2599. }
  2600. },
  2601. frontAlt: {
  2602. height: math.unit(183, "cm"),
  2603. weight: math.unit(80, "kg"),
  2604. name: "Front (alt)",
  2605. image: {
  2606. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(183, "cm"),
  2611. weight: math.unit(80, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/sofia-fluttertail/back.svg"
  2615. }
  2616. },
  2617. kneeling: {
  2618. height: math.unit(125, "cm"),
  2619. weight: math.unit(80, "kg"),
  2620. name: "Kneeling",
  2621. image: {
  2622. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2623. extra: 1033 / 977,
  2624. bottom: 23.7 / 1057
  2625. }
  2626. },
  2627. maw: {
  2628. height: math.unit(183 / 5, "cm"),
  2629. name: "Maw",
  2630. image: {
  2631. source: "./media/characters/sofia-fluttertail/maw.svg"
  2632. }
  2633. },
  2634. mawcloseup: {
  2635. height: math.unit(183 / 5 * 0.41, "cm"),
  2636. name: "Maw (Closeup)",
  2637. image: {
  2638. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2639. }
  2640. },
  2641. paws: {
  2642. height: math.unit(1.17, "feet"),
  2643. name: "Paws",
  2644. image: {
  2645. source: "./media/characters/sofia-fluttertail/paws.svg",
  2646. extra: 851 / 851,
  2647. bottom: 17 / 868
  2648. }
  2649. },
  2650. },
  2651. [
  2652. {
  2653. name: "Normal",
  2654. height: math.unit(1.83, "meter")
  2655. },
  2656. {
  2657. name: "Size Thief",
  2658. height: math.unit(18, "feet")
  2659. },
  2660. {
  2661. name: "50 Foot Collie",
  2662. height: math.unit(50, "feet")
  2663. },
  2664. {
  2665. name: "Macro",
  2666. height: math.unit(96, "feet"),
  2667. default: true
  2668. },
  2669. {
  2670. name: "Megamerger",
  2671. height: math.unit(650, "feet")
  2672. },
  2673. ]
  2674. ))
  2675. characterMakers.push(() => makeCharacter(
  2676. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2677. {
  2678. front: {
  2679. height: math.unit(7, "feet"),
  2680. weight: math.unit(100, "kg"),
  2681. name: "Front",
  2682. image: {
  2683. source: "./media/characters/march/front.svg",
  2684. extra: 1992/1851,
  2685. bottom: 39/2031
  2686. }
  2687. },
  2688. foot: {
  2689. height: math.unit(0.9, "feet"),
  2690. name: "Foot",
  2691. image: {
  2692. source: "./media/characters/march/foot.svg"
  2693. }
  2694. },
  2695. },
  2696. [
  2697. {
  2698. name: "Normal",
  2699. height: math.unit(7.9, "feet")
  2700. },
  2701. {
  2702. name: "Macro",
  2703. height: math.unit(220, "meters")
  2704. },
  2705. {
  2706. name: "Megamacro",
  2707. height: math.unit(2.98, "km"),
  2708. default: true
  2709. },
  2710. {
  2711. name: "Gigamacro",
  2712. height: math.unit(15963, "km")
  2713. },
  2714. {
  2715. name: "Teramacro",
  2716. height: math.unit(2980000000, "km")
  2717. },
  2718. {
  2719. name: "Examacro",
  2720. height: math.unit(250, "parsecs")
  2721. },
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2726. {
  2727. front: {
  2728. height: math.unit(6, "feet"),
  2729. weight: math.unit(60, "kg"),
  2730. name: "Front",
  2731. image: {
  2732. source: "./media/characters/noir/front.svg",
  2733. extra: 1,
  2734. bottom: 0.032
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(6.6, "feet")
  2742. },
  2743. {
  2744. name: "Macro",
  2745. height: math.unit(500, "feet")
  2746. },
  2747. {
  2748. name: "Megamacro",
  2749. height: math.unit(2.5, "km"),
  2750. default: true
  2751. },
  2752. {
  2753. name: "Gigamacro",
  2754. height: math.unit(22500, "km")
  2755. },
  2756. {
  2757. name: "Teramacro",
  2758. height: math.unit(2500000000, "km")
  2759. },
  2760. {
  2761. name: "Examacro",
  2762. height: math.unit(200, "parsecs")
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2768. {
  2769. front: {
  2770. height: math.unit(7, "feet"),
  2771. weight: math.unit(100, "kg"),
  2772. name: "Front",
  2773. image: {
  2774. source: "./media/characters/okuri/front.svg",
  2775. extra: 739/665,
  2776. bottom: 39/778
  2777. }
  2778. },
  2779. back: {
  2780. height: math.unit(7, "feet"),
  2781. weight: math.unit(100, "kg"),
  2782. name: "Back",
  2783. image: {
  2784. source: "./media/characters/okuri/back.svg",
  2785. extra: 734/653,
  2786. bottom: 13/747
  2787. }
  2788. },
  2789. sitting: {
  2790. height: math.unit(2.95, "feet"),
  2791. weight: math.unit(100, "kg"),
  2792. name: "Sitting",
  2793. image: {
  2794. source: "./media/characters/okuri/sitting.svg",
  2795. extra: 370/318,
  2796. bottom: 99/469
  2797. }
  2798. },
  2799. },
  2800. [
  2801. {
  2802. name: "Smallest",
  2803. height: math.unit(5 + 2/12, "feet")
  2804. },
  2805. {
  2806. name: "Smaller",
  2807. height: math.unit(300, "feet")
  2808. },
  2809. {
  2810. name: "Small",
  2811. height: math.unit(1000, "feet")
  2812. },
  2813. {
  2814. name: "Macro",
  2815. height: math.unit(1, "mile")
  2816. },
  2817. {
  2818. name: "Mega Macro (Small)",
  2819. height: math.unit(20, "km")
  2820. },
  2821. {
  2822. name: "Mega Macro (Large)",
  2823. height: math.unit(600, "km")
  2824. },
  2825. {
  2826. name: "Giga Macro",
  2827. height: math.unit(10000, "km")
  2828. },
  2829. {
  2830. name: "Normal",
  2831. height: math.unit(577560, "km"),
  2832. default: true
  2833. },
  2834. {
  2835. name: "Large",
  2836. height: math.unit(4, "galaxies")
  2837. },
  2838. {
  2839. name: "Largest",
  2840. height: math.unit(15, "multiverses")
  2841. },
  2842. ]
  2843. ))
  2844. characterMakers.push(() => makeCharacter(
  2845. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2846. {
  2847. front: {
  2848. height: math.unit(7, "feet"),
  2849. weight: math.unit(100, "kg"),
  2850. name: "Front",
  2851. image: {
  2852. source: "./media/characters/manny/front.svg",
  2853. extra: 1,
  2854. bottom: 0.06
  2855. }
  2856. },
  2857. back: {
  2858. height: math.unit(7, "feet"),
  2859. weight: math.unit(100, "kg"),
  2860. name: "Back",
  2861. image: {
  2862. source: "./media/characters/manny/back.svg",
  2863. extra: 1,
  2864. bottom: 0.014
  2865. }
  2866. },
  2867. },
  2868. [
  2869. {
  2870. name: "Normal",
  2871. height: math.unit(7, "feet"),
  2872. },
  2873. {
  2874. name: "Macro",
  2875. height: math.unit(78, "feet"),
  2876. default: true
  2877. },
  2878. {
  2879. name: "Macro+",
  2880. height: math.unit(300, "meters")
  2881. },
  2882. {
  2883. name: "Macro++",
  2884. height: math.unit(2400, "meters")
  2885. },
  2886. {
  2887. name: "Megamacro",
  2888. height: math.unit(5167, "meters")
  2889. },
  2890. {
  2891. name: "Gigamacro",
  2892. height: math.unit(41769, "miles")
  2893. },
  2894. ]
  2895. ))
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2898. {
  2899. front: {
  2900. height: math.unit(7, "feet"),
  2901. weight: math.unit(100, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/adake/front-1.svg"
  2905. }
  2906. },
  2907. frontAlt: {
  2908. height: math.unit(7, "feet"),
  2909. weight: math.unit(100, "kg"),
  2910. name: "Front (Alt)",
  2911. image: {
  2912. source: "./media/characters/adake/front-2.svg",
  2913. extra: 1,
  2914. bottom: 0.01
  2915. }
  2916. },
  2917. back: {
  2918. height: math.unit(7, "feet"),
  2919. weight: math.unit(100, "kg"),
  2920. name: "Back",
  2921. image: {
  2922. source: "./media/characters/adake/back.svg",
  2923. }
  2924. },
  2925. kneel: {
  2926. height: math.unit(5.385, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Kneeling",
  2929. image: {
  2930. source: "./media/characters/adake/kneel.svg",
  2931. bottom: 0.052
  2932. }
  2933. },
  2934. },
  2935. [
  2936. {
  2937. name: "Normal",
  2938. height: math.unit(7, "feet"),
  2939. },
  2940. {
  2941. name: "Macro",
  2942. height: math.unit(78, "feet"),
  2943. default: true
  2944. },
  2945. {
  2946. name: "Macro+",
  2947. height: math.unit(300, "meters")
  2948. },
  2949. {
  2950. name: "Macro++",
  2951. height: math.unit(2400, "meters")
  2952. },
  2953. {
  2954. name: "Megamacro",
  2955. height: math.unit(5167, "meters")
  2956. },
  2957. {
  2958. name: "Gigamacro",
  2959. height: math.unit(41769, "miles")
  2960. },
  2961. ]
  2962. ))
  2963. characterMakers.push(() => makeCharacter(
  2964. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2965. {
  2966. front: {
  2967. height: math.unit(1.65, "meters"),
  2968. weight: math.unit(50, "kg"),
  2969. name: "Front",
  2970. image: {
  2971. source: "./media/characters/elijah/front.svg",
  2972. extra: 858 / 830,
  2973. bottom: 95.5 / 953.8559
  2974. }
  2975. },
  2976. back: {
  2977. height: math.unit(1.65, "meters"),
  2978. weight: math.unit(50, "kg"),
  2979. name: "Back",
  2980. image: {
  2981. source: "./media/characters/elijah/back.svg",
  2982. extra: 895 / 850,
  2983. bottom: 5.3 / 897.956
  2984. }
  2985. },
  2986. frontNsfw: {
  2987. height: math.unit(1.65, "meters"),
  2988. weight: math.unit(50, "kg"),
  2989. name: "Front (NSFW)",
  2990. image: {
  2991. source: "./media/characters/elijah/front-nsfw.svg",
  2992. extra: 858 / 830,
  2993. bottom: 95.5 / 953.8559
  2994. }
  2995. },
  2996. backNsfw: {
  2997. height: math.unit(1.65, "meters"),
  2998. weight: math.unit(50, "kg"),
  2999. name: "Back (NSFW)",
  3000. image: {
  3001. source: "./media/characters/elijah/back-nsfw.svg",
  3002. extra: 895 / 850,
  3003. bottom: 5.3 / 897.956
  3004. }
  3005. },
  3006. dick: {
  3007. height: math.unit(1, "feet"),
  3008. name: "Dick",
  3009. image: {
  3010. source: "./media/characters/elijah/dick.svg"
  3011. }
  3012. },
  3013. beakOpen: {
  3014. height: math.unit(1.25, "feet"),
  3015. name: "Beak (Open)",
  3016. image: {
  3017. source: "./media/characters/elijah/beak-open.svg"
  3018. }
  3019. },
  3020. beakShut: {
  3021. height: math.unit(1.25, "feet"),
  3022. name: "Beak (Shut)",
  3023. image: {
  3024. source: "./media/characters/elijah/beak-shut.svg"
  3025. }
  3026. },
  3027. footFlexing: {
  3028. height: math.unit(1.61, "feet"),
  3029. name: "Foot (Flexing)",
  3030. image: {
  3031. source: "./media/characters/elijah/foot-flexing.svg"
  3032. }
  3033. },
  3034. footStepping: {
  3035. height: math.unit(1.44, "feet"),
  3036. name: "Foot (Stepping)",
  3037. image: {
  3038. source: "./media/characters/elijah/foot-stepping.svg"
  3039. }
  3040. },
  3041. plantigradeLeg: {
  3042. height: math.unit(2.34, "feet"),
  3043. name: "Plantigrade Leg",
  3044. image: {
  3045. source: "./media/characters/elijah/plantigrade-leg.svg"
  3046. }
  3047. },
  3048. plantigradeFootLeft: {
  3049. height: math.unit(0.9, "feet"),
  3050. name: "Plantigrade Foot (Left)",
  3051. image: {
  3052. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3053. }
  3054. },
  3055. plantigradeFootRight: {
  3056. height: math.unit(0.9, "feet"),
  3057. name: "Plantigrade Foot (Right)",
  3058. image: {
  3059. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3060. }
  3061. },
  3062. },
  3063. [
  3064. {
  3065. name: "Normal",
  3066. height: math.unit(1.65, "meters")
  3067. },
  3068. {
  3069. name: "Macro",
  3070. height: math.unit(55, "meters"),
  3071. default: true
  3072. },
  3073. {
  3074. name: "Macro+",
  3075. height: math.unit(105, "meters")
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3081. {
  3082. front: {
  3083. height: math.unit(7 + 2/12, "feet"),
  3084. weight: math.unit(320, "kg"),
  3085. preyCapacity: math.unit(0.276549935, "people"),
  3086. name: "Front",
  3087. image: {
  3088. source: "./media/characters/rai/front.svg",
  3089. extra: 1802/1696,
  3090. bottom: 68/1870
  3091. },
  3092. form: "anthro",
  3093. default: true
  3094. },
  3095. frontDressed: {
  3096. height: math.unit(7 + 2/12, "feet"),
  3097. weight: math.unit(320, "kg"),
  3098. preyCapacity: math.unit(0.276549935, "people"),
  3099. name: "Front (Dressed)",
  3100. image: {
  3101. source: "./media/characters/rai/front-dressed.svg",
  3102. extra: 1802/1696,
  3103. bottom: 68/1870
  3104. },
  3105. form: "anthro"
  3106. },
  3107. side: {
  3108. height: math.unit(7 + 2/12, "feet"),
  3109. weight: math.unit(320, "kg"),
  3110. preyCapacity: math.unit(0.276549935, "people"),
  3111. name: "Side",
  3112. image: {
  3113. source: "./media/characters/rai/side.svg",
  3114. extra: 1789/1710,
  3115. bottom: 115/1904
  3116. },
  3117. form: "anthro"
  3118. },
  3119. back: {
  3120. height: math.unit(7 + 2/12, "feet"),
  3121. weight: math.unit(320, "kg"),
  3122. preyCapacity: math.unit(0.276549935, "people"),
  3123. name: "Back",
  3124. image: {
  3125. source: "./media/characters/rai/back.svg",
  3126. extra: 1770/1707,
  3127. bottom: 28/1798
  3128. },
  3129. form: "anthro"
  3130. },
  3131. feral: {
  3132. height: math.unit(9.5, "feet"),
  3133. weight: math.unit(640, "kg"),
  3134. preyCapacity: math.unit(4, "people"),
  3135. name: "Feral",
  3136. image: {
  3137. source: "./media/characters/rai/feral.svg",
  3138. extra: 945/553,
  3139. bottom: 176/1121
  3140. },
  3141. form: "feral",
  3142. default: true
  3143. },
  3144. dragon: {
  3145. height: math.unit(23, "feet"),
  3146. weight: math.unit(50000, "lb"),
  3147. name: "Dragon",
  3148. image: {
  3149. source: "./media/characters/rai/dragon.svg",
  3150. extra: 2498 / 2030,
  3151. bottom: 85.2 / 2584
  3152. },
  3153. form: "dragon",
  3154. default: true
  3155. },
  3156. maw: {
  3157. height: math.unit(1.69, "feet"),
  3158. name: "Maw",
  3159. image: {
  3160. source: "./media/characters/rai/maw.svg"
  3161. },
  3162. form: "anthro"
  3163. },
  3164. },
  3165. [
  3166. {
  3167. name: "Normal",
  3168. height: math.unit(7 + 2/12, "feet"),
  3169. form: "anthro"
  3170. },
  3171. {
  3172. name: "Big",
  3173. height: math.unit(11, "feet"),
  3174. form: "anthro"
  3175. },
  3176. {
  3177. name: "Minimacro",
  3178. height: math.unit(77, "feet"),
  3179. form: "anthro"
  3180. },
  3181. {
  3182. name: "Macro",
  3183. height: math.unit(302, "feet"),
  3184. default: true,
  3185. form: "anthro"
  3186. },
  3187. {
  3188. name: "Normal",
  3189. height: math.unit(9.5, "feet"),
  3190. form: "feral",
  3191. default: true
  3192. },
  3193. {
  3194. name: "Normal",
  3195. height: math.unit(23, "feet"),
  3196. form: "dragon",
  3197. default: true
  3198. }
  3199. ],
  3200. {
  3201. "anthro": {
  3202. name: "Anthro",
  3203. default: true
  3204. },
  3205. "feral": {
  3206. name: "Feral",
  3207. },
  3208. "dragon": {
  3209. name: "Dragon",
  3210. },
  3211. }
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3215. {
  3216. frontDressed: {
  3217. height: math.unit(216, "feet"),
  3218. weight: math.unit(7000000, "lb"),
  3219. preyCapacity: math.unit(1321, "people"),
  3220. name: "Front (Dressed)",
  3221. image: {
  3222. source: "./media/characters/jazzy/front-dressed.svg",
  3223. extra: 2738 / 2651,
  3224. bottom: 41.8 / 2786
  3225. }
  3226. },
  3227. backDressed: {
  3228. height: math.unit(216, "feet"),
  3229. weight: math.unit(7000000, "lb"),
  3230. preyCapacity: math.unit(1321, "people"),
  3231. name: "Back (Dressed)",
  3232. image: {
  3233. source: "./media/characters/jazzy/back-dressed.svg",
  3234. extra: 2775 / 2673,
  3235. bottom: 36.8 / 2817
  3236. }
  3237. },
  3238. front: {
  3239. height: math.unit(216, "feet"),
  3240. weight: math.unit(7000000, "lb"),
  3241. preyCapacity: math.unit(1321, "people"),
  3242. name: "Front",
  3243. image: {
  3244. source: "./media/characters/jazzy/front.svg",
  3245. extra: 2738 / 2651,
  3246. bottom: 41.8 / 2786
  3247. }
  3248. },
  3249. back: {
  3250. height: math.unit(216, "feet"),
  3251. weight: math.unit(7000000, "lb"),
  3252. preyCapacity: math.unit(1321, "people"),
  3253. name: "Back",
  3254. image: {
  3255. source: "./media/characters/jazzy/back.svg",
  3256. extra: 2775 / 2673,
  3257. bottom: 36.8 / 2817
  3258. }
  3259. },
  3260. maw: {
  3261. height: math.unit(20, "feet"),
  3262. name: "Maw",
  3263. image: {
  3264. source: "./media/characters/jazzy/maw.svg"
  3265. }
  3266. },
  3267. paws: {
  3268. height: math.unit(27.5, "feet"),
  3269. name: "Paws",
  3270. image: {
  3271. source: "./media/characters/jazzy/paws.svg"
  3272. }
  3273. },
  3274. eye: {
  3275. height: math.unit(4.4, "feet"),
  3276. name: "Eye",
  3277. image: {
  3278. source: "./media/characters/jazzy/eye.svg"
  3279. }
  3280. },
  3281. droneOffense: {
  3282. height: math.unit(9.5, "inches"),
  3283. name: "Drone (Offense)",
  3284. image: {
  3285. source: "./media/characters/jazzy/drone-offense.svg"
  3286. }
  3287. },
  3288. droneRecon: {
  3289. height: math.unit(9.5, "inches"),
  3290. name: "Drone (Recon)",
  3291. image: {
  3292. source: "./media/characters/jazzy/drone-recon.svg"
  3293. }
  3294. },
  3295. droneDefense: {
  3296. height: math.unit(9.5, "inches"),
  3297. name: "Drone (Defense)",
  3298. image: {
  3299. source: "./media/characters/jazzy/drone-defense.svg"
  3300. }
  3301. },
  3302. },
  3303. [
  3304. {
  3305. name: "Macro",
  3306. height: math.unit(216, "feet"),
  3307. default: true
  3308. },
  3309. ]
  3310. ))
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3313. {
  3314. front: {
  3315. height: math.unit(9 + 6/12, "feet"),
  3316. weight: math.unit(700, "lb"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/flamm/front.svg",
  3320. extra: 1736/1596,
  3321. bottom: 93/1829
  3322. }
  3323. },
  3324. buff: {
  3325. height: math.unit(9 + 6/12, "feet"),
  3326. weight: math.unit(950, "lb"),
  3327. name: "Buff",
  3328. image: {
  3329. source: "./media/characters/flamm/buff.svg",
  3330. extra: 3018/2874,
  3331. bottom: 221/3239
  3332. }
  3333. },
  3334. },
  3335. [
  3336. {
  3337. name: "Normal",
  3338. height: math.unit(9.5, "feet")
  3339. },
  3340. {
  3341. name: "Macro",
  3342. height: math.unit(200, "feet"),
  3343. default: true
  3344. },
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(5 + 3/12, "feet"),
  3352. weight: math.unit(60, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/zephiro/front.svg",
  3356. extra: 1873/1761,
  3357. bottom: 147/2020
  3358. }
  3359. },
  3360. side: {
  3361. height: math.unit(5 + 3/12, "feet"),
  3362. weight: math.unit(60, "kg"),
  3363. name: "Side",
  3364. image: {
  3365. source: "./media/characters/zephiro/side.svg",
  3366. extra: 1929/1827,
  3367. bottom: 65/1994
  3368. }
  3369. },
  3370. back: {
  3371. height: math.unit(5 + 3/12, "feet"),
  3372. weight: math.unit(60, "kg"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/zephiro/back.svg",
  3376. extra: 1926/1816,
  3377. bottom: 41/1967
  3378. }
  3379. },
  3380. hand: {
  3381. height: math.unit(0.68, "feet"),
  3382. name: "Hand",
  3383. image: {
  3384. source: "./media/characters/zephiro/hand.svg"
  3385. }
  3386. },
  3387. paw: {
  3388. height: math.unit(1, "feet"),
  3389. name: "Paw",
  3390. image: {
  3391. source: "./media/characters/zephiro/paw.svg"
  3392. }
  3393. },
  3394. beans: {
  3395. height: math.unit(0.93, "feet"),
  3396. name: "Beans",
  3397. image: {
  3398. source: "./media/characters/zephiro/beans.svg"
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Micro",
  3405. height: math.unit(3, "inches")
  3406. },
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(5 + 3 / 12, "feet"),
  3410. default: true
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(118, "feet")
  3415. },
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(5, "feet"),
  3423. weight: math.unit(90, "kg"),
  3424. preyCapacity: math.unit(14, "people"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/fory/front.svg",
  3428. extra: 2862 / 2674,
  3429. bottom: 180 / 3043.8
  3430. },
  3431. form: "weaselbun",
  3432. default: true,
  3433. extraAttributes: {
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.1596, "m^2")
  3439. },
  3440. "pawLength": {
  3441. name: "Paw Length",
  3442. power: 1,
  3443. type: "length",
  3444. base: math.unit(0.7, "m")
  3445. }
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(5, "feet"),
  3450. weight: math.unit(90, "kg"),
  3451. preyCapacity: math.unit(14, "people"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/fory/back.svg",
  3455. extra: 1790/1672,
  3456. bottom: 84/1874
  3457. },
  3458. form: "weaselbun",
  3459. extraAttributes: {
  3460. "pawSize": {
  3461. name: "Paw Size",
  3462. power: 2,
  3463. type: "area",
  3464. base: math.unit(0.1596, "m^2")
  3465. },
  3466. "pawLength": {
  3467. name: "Paw Length",
  3468. power: 1,
  3469. type: "length",
  3470. base: math.unit(0.7, "m")
  3471. }
  3472. }
  3473. },
  3474. paw: {
  3475. height: math.unit(2.14, "feet"),
  3476. name: "Paw",
  3477. image: {
  3478. source: "./media/characters/fory/paw.svg"
  3479. },
  3480. form: "weaselbun",
  3481. extraAttributes: {
  3482. "pawSize": {
  3483. name: "Paw Size",
  3484. power: 2,
  3485. type: "area",
  3486. base: math.unit(0.1596, "m^2")
  3487. },
  3488. "pawLength": {
  3489. name: "Paw Length",
  3490. power: 1,
  3491. type: "length",
  3492. base: math.unit(0.48, "m")
  3493. }
  3494. }
  3495. },
  3496. bunBack: {
  3497. height: math.unit(3, "feet"),
  3498. weight: math.unit(20, "kg"),
  3499. preyCapacity: math.unit(3, "people"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/fory/bun-back.svg",
  3503. extra: 1749/1564,
  3504. bottom: 246/1995
  3505. },
  3506. form: "bun",
  3507. default: true,
  3508. extraAttributes: {
  3509. "pawSize": {
  3510. name: "Paw Size",
  3511. power: 2,
  3512. type: "area",
  3513. base: math.unit(0.072, "m^2")
  3514. },
  3515. "pawLength": {
  3516. name: "Paw Length",
  3517. power: 1,
  3518. type: "length",
  3519. base: math.unit(0.45, "m")
  3520. }
  3521. }
  3522. },
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(5, "feet"),
  3528. form: "weaselbun"
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(50, "feet"),
  3533. default: true,
  3534. form: "weaselbun"
  3535. },
  3536. {
  3537. name: "Megamacro",
  3538. height: math.unit(10, "miles"),
  3539. form: "weaselbun"
  3540. },
  3541. {
  3542. name: "Gigamacro",
  3543. height: math.unit(5, "earths"),
  3544. form: "weaselbun"
  3545. },
  3546. {
  3547. name: "Normal",
  3548. height: math.unit(3, "feet"),
  3549. default: true,
  3550. form: "bun"
  3551. },
  3552. {
  3553. name: "Fun-Size",
  3554. height: math.unit(12, "feet"),
  3555. form: "bun"
  3556. },
  3557. {
  3558. name: "Macro",
  3559. height: math.unit(100, "feet"),
  3560. form: "bun"
  3561. },
  3562. {
  3563. name: "Planetary",
  3564. height: math.unit(3, "earths"),
  3565. form: "bun"
  3566. },
  3567. ],
  3568. {
  3569. "weaselbun": {
  3570. name: "Weaselbun",
  3571. default: true
  3572. },
  3573. "bun": {
  3574. name: "Bun",
  3575. },
  3576. }
  3577. ))
  3578. characterMakers.push(() => makeCharacter(
  3579. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3580. {
  3581. front: {
  3582. height: math.unit(7, "feet"),
  3583. weight: math.unit(90, "kg"),
  3584. name: "Front",
  3585. image: {
  3586. source: "./media/characters/kurrikage/front.svg",
  3587. extra: 1845/1733,
  3588. bottom: 119/1964
  3589. }
  3590. },
  3591. back: {
  3592. height: math.unit(7, "feet"),
  3593. weight: math.unit(90, "kg"),
  3594. name: "Back",
  3595. image: {
  3596. source: "./media/characters/kurrikage/back.svg",
  3597. extra: 1790/1677,
  3598. bottom: 61/1851
  3599. }
  3600. },
  3601. dressed: {
  3602. height: math.unit(7, "feet"),
  3603. weight: math.unit(90, "kg"),
  3604. name: "Dressed",
  3605. image: {
  3606. source: "./media/characters/kurrikage/dressed.svg",
  3607. extra: 1845/1733,
  3608. bottom: 119/1964
  3609. }
  3610. },
  3611. foot: {
  3612. height: math.unit(1.5, "feet"),
  3613. name: "Foot",
  3614. image: {
  3615. source: "./media/characters/kurrikage/foot.svg"
  3616. }
  3617. },
  3618. staff: {
  3619. height: math.unit(6.7, "feet"),
  3620. name: "Staff",
  3621. image: {
  3622. source: "./media/characters/kurrikage/staff.svg"
  3623. }
  3624. },
  3625. peek: {
  3626. height: math.unit(1.05, "feet"),
  3627. name: "Peeking",
  3628. image: {
  3629. source: "./media/characters/kurrikage/peek.svg",
  3630. bottom: 0.08
  3631. }
  3632. },
  3633. },
  3634. [
  3635. {
  3636. name: "Normal",
  3637. height: math.unit(12, "feet"),
  3638. default: true
  3639. },
  3640. {
  3641. name: "Big",
  3642. height: math.unit(20, "feet")
  3643. },
  3644. {
  3645. name: "Macro",
  3646. height: math.unit(500, "feet")
  3647. },
  3648. {
  3649. name: "Megamacro",
  3650. height: math.unit(20, "miles")
  3651. },
  3652. ]
  3653. ))
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(6, "feet"),
  3659. weight: math.unit(75, "kg"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/shingo/front.svg",
  3663. extra: 1900/1825,
  3664. bottom: 82/1982
  3665. }
  3666. },
  3667. side: {
  3668. height: math.unit(6, "feet"),
  3669. weight: math.unit(75, "kg"),
  3670. name: "Side",
  3671. image: {
  3672. source: "./media/characters/shingo/side.svg",
  3673. extra: 1930/1865,
  3674. bottom: 16/1946
  3675. }
  3676. },
  3677. back: {
  3678. height: math.unit(6, "feet"),
  3679. weight: math.unit(75, "kg"),
  3680. name: "Back",
  3681. image: {
  3682. source: "./media/characters/shingo/back.svg",
  3683. extra: 1922/1852,
  3684. bottom: 16/1938
  3685. }
  3686. },
  3687. frontDressed: {
  3688. height: math.unit(6, "feet"),
  3689. weight: math.unit(150, "lb"),
  3690. name: "Front-dressed",
  3691. image: {
  3692. source: "./media/characters/shingo/front-dressed.svg",
  3693. extra: 1900/1825,
  3694. bottom: 82/1982
  3695. }
  3696. },
  3697. paw: {
  3698. height: math.unit(1.29, "feet"),
  3699. name: "Paw",
  3700. image: {
  3701. source: "./media/characters/shingo/paw.svg"
  3702. }
  3703. },
  3704. hand: {
  3705. height: math.unit(1.07, "feet"),
  3706. name: "Hand",
  3707. image: {
  3708. source: "./media/characters/shingo/hand.svg"
  3709. }
  3710. },
  3711. frontAlt: {
  3712. height: math.unit(6, "feet"),
  3713. weight: math.unit(75, "kg"),
  3714. name: "Front (Alt)",
  3715. image: {
  3716. source: "./media/characters/shingo/front-alt.svg",
  3717. extra: 3511 / 3338,
  3718. bottom: 0.005
  3719. }
  3720. },
  3721. frontAlt2: {
  3722. height: math.unit(6, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Front (Alt 2)",
  3725. image: {
  3726. source: "./media/characters/shingo/front-alt-2.svg",
  3727. extra: 706/681,
  3728. bottom: 11/717
  3729. }
  3730. },
  3731. pawAlt: {
  3732. height: math.unit(1, "feet"),
  3733. name: "Paw (Alt)",
  3734. image: {
  3735. source: "./media/characters/shingo/paw-alt.svg"
  3736. }
  3737. },
  3738. },
  3739. [
  3740. {
  3741. name: "Micro",
  3742. height: math.unit(4, "inches")
  3743. },
  3744. {
  3745. name: "Normal",
  3746. height: math.unit(6, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Macro",
  3751. height: math.unit(108, "feet")
  3752. },
  3753. {
  3754. name: "Macro+",
  3755. height: math.unit(1500, "feet")
  3756. },
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3761. {
  3762. side: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(75, "kg"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/aigey/side.svg"
  3768. }
  3769. },
  3770. },
  3771. [
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(200, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Megamacro",
  3779. height: math.unit(100, "miles")
  3780. },
  3781. ]
  3782. )
  3783. )
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3786. {
  3787. front: {
  3788. height: math.unit(5 + 5 / 12, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Front",
  3791. image: {
  3792. source: "./media/characters/natasha/front.svg",
  3793. extra: 859 / 824,
  3794. bottom: 23 / 879.6
  3795. }
  3796. },
  3797. frontNsfw: {
  3798. height: math.unit(5 + 5 / 12, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Front (NSFW)",
  3801. image: {
  3802. source: "./media/characters/natasha/front-nsfw.svg",
  3803. extra: 859 / 824,
  3804. bottom: 23 / 879.6
  3805. }
  3806. },
  3807. frontErect: {
  3808. height: math.unit(5 + 5 / 12, "feet"),
  3809. weight: math.unit(75, "kg"),
  3810. name: "Front (Erect)",
  3811. image: {
  3812. source: "./media/characters/natasha/front-erect.svg",
  3813. extra: 859 / 824,
  3814. bottom: 23 / 879.6
  3815. }
  3816. },
  3817. back: {
  3818. height: math.unit(5 + 5 / 12, "feet"),
  3819. weight: math.unit(75, "kg"),
  3820. name: "Back",
  3821. image: {
  3822. source: "./media/characters/natasha/back.svg",
  3823. extra: 887.9 / 852.6,
  3824. bottom: 9.7 / 896.4
  3825. }
  3826. },
  3827. backAlt: {
  3828. height: math.unit(5 + 5 / 12, "feet"),
  3829. weight: math.unit(75, "kg"),
  3830. name: "Back (Alt)",
  3831. image: {
  3832. source: "./media/characters/natasha/back-alt.svg",
  3833. extra: 1236.7 / 1192,
  3834. bottom: 22.3 / 1258.2
  3835. }
  3836. },
  3837. dick: {
  3838. height: math.unit(1.772, "feet"),
  3839. name: "Dick",
  3840. image: {
  3841. source: "./media/characters/natasha/dick.svg"
  3842. }
  3843. },
  3844. paw: {
  3845. height: math.unit(0.250, "meters"),
  3846. name: "Paw",
  3847. image: {
  3848. source: "./media/characters/natasha/paw.svg"
  3849. },
  3850. extraAttributes: {
  3851. "toeSize": {
  3852. name: "Toe Size",
  3853. power: 2,
  3854. type: "area",
  3855. base: math.unit(0.0024, "m^2")
  3856. },
  3857. "padSize": {
  3858. name: "Pad Size",
  3859. power: 2,
  3860. type: "area",
  3861. base: math.unit(0.00889, "m^2")
  3862. },
  3863. "pawSize": {
  3864. name: "Paw Size",
  3865. power: 2,
  3866. type: "area",
  3867. base: math.unit(0.023667, "m^2")
  3868. },
  3869. }
  3870. },
  3871. },
  3872. [
  3873. {
  3874. name: "Shortstack",
  3875. height: math.unit(3, "feet"),
  3876. default: true
  3877. },
  3878. {
  3879. name: "Normal",
  3880. height: math.unit(5 + 5 / 12, "feet")
  3881. },
  3882. {
  3883. name: "Large",
  3884. height: math.unit(12, "feet")
  3885. },
  3886. {
  3887. name: "Macro",
  3888. height: math.unit(100, "feet")
  3889. },
  3890. {
  3891. name: "Macro+",
  3892. height: math.unit(260, "feet")
  3893. },
  3894. {
  3895. name: "Macro++",
  3896. height: math.unit(1, "mile")
  3897. },
  3898. ]
  3899. ))
  3900. characterMakers.push(() => makeCharacter(
  3901. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3902. {
  3903. front: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(75, "kg"),
  3906. name: "Front",
  3907. image: {
  3908. source: "./media/characters/malik/front.svg",
  3909. extra: 1750/1561,
  3910. bottom: 80/1830
  3911. },
  3912. extraAttributes: {
  3913. "toeSize": {
  3914. name: "Toe Size",
  3915. power: 2,
  3916. type: "area",
  3917. base: math.unit(0.0159, "m^2")
  3918. },
  3919. "pawSize": {
  3920. name: "Paw Size",
  3921. power: 2,
  3922. type: "area",
  3923. base: math.unit(0.09834, "m^2")
  3924. },
  3925. }
  3926. },
  3927. side: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(75, "kg"),
  3930. name: "Side",
  3931. image: {
  3932. source: "./media/characters/malik/side.svg",
  3933. extra: 1802/1685,
  3934. bottom: 42/1844
  3935. },
  3936. extraAttributes: {
  3937. "toeSize": {
  3938. name: "Toe Size",
  3939. power: 2,
  3940. type: "area",
  3941. base: math.unit(0.0159, "m^2")
  3942. },
  3943. "pawSize": {
  3944. name: "Paw Size",
  3945. power: 2,
  3946. type: "area",
  3947. base: math.unit(0.09834, "m^2")
  3948. },
  3949. }
  3950. },
  3951. back: {
  3952. height: math.unit(6, "feet"),
  3953. weight: math.unit(75, "kg"),
  3954. name: "Back",
  3955. image: {
  3956. source: "./media/characters/malik/back.svg",
  3957. extra: 1803/1607,
  3958. bottom: 33/1836
  3959. },
  3960. extraAttributes: {
  3961. "toeSize": {
  3962. name: "Toe Size",
  3963. power: 2,
  3964. type: "area",
  3965. base: math.unit(0.0159, "m^2")
  3966. },
  3967. "pawSize": {
  3968. name: "Paw Size",
  3969. power: 2,
  3970. type: "area",
  3971. base: math.unit(0.09834, "m^2")
  3972. },
  3973. }
  3974. },
  3975. },
  3976. [
  3977. {
  3978. name: "Macro",
  3979. height: math.unit(156, "feet"),
  3980. default: true
  3981. },
  3982. {
  3983. name: "Macro+",
  3984. height: math.unit(1188, "feet")
  3985. },
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(75, "kg"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/sefer/front.svg",
  3997. extra: 848 / 659,
  3998. bottom: 28.3 / 876.442
  3999. }
  4000. },
  4001. back: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(75, "kg"),
  4004. name: "Back",
  4005. image: {
  4006. source: "./media/characters/sefer/back.svg",
  4007. extra: 864 / 695,
  4008. bottom: 10 / 871
  4009. }
  4010. },
  4011. frontDressed: {
  4012. height: math.unit(6, "feet"),
  4013. weight: math.unit(75, "kg"),
  4014. name: "Dressed",
  4015. image: {
  4016. source: "./media/characters/sefer/dressed.svg",
  4017. extra: 839 / 653,
  4018. bottom: 37.6 / 878
  4019. }
  4020. },
  4021. },
  4022. [
  4023. {
  4024. name: "Normal",
  4025. height: math.unit(6, "feet"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Big",
  4030. height: math.unit(8, "meters")
  4031. },
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4036. {
  4037. body: {
  4038. height: math.unit(2.2428, "meter"),
  4039. weight: math.unit(124.738, "kg"),
  4040. name: "Body",
  4041. image: {
  4042. extra: 1225 / 1050,
  4043. source: "./media/characters/north/front.svg"
  4044. }
  4045. }
  4046. },
  4047. [
  4048. {
  4049. name: "Micro",
  4050. height: math.unit(4, "inches")
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(63, "meters")
  4055. },
  4056. {
  4057. name: "Megamacro",
  4058. height: math.unit(101, "miles"),
  4059. default: true
  4060. }
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4065. {
  4066. angled: {
  4067. height: math.unit(4, "meter"),
  4068. weight: math.unit(150, "kg"),
  4069. name: "Angled",
  4070. image: {
  4071. source: "./media/characters/talan/angled-sfw.svg",
  4072. bottom: 29 / 3734
  4073. }
  4074. },
  4075. angledNsfw: {
  4076. height: math.unit(4, "meter"),
  4077. weight: math.unit(150, "kg"),
  4078. name: "Angled (NSFW)",
  4079. image: {
  4080. source: "./media/characters/talan/angled-nsfw.svg",
  4081. bottom: 29 / 3734
  4082. }
  4083. },
  4084. frontNsfw: {
  4085. height: math.unit(4, "meter"),
  4086. weight: math.unit(150, "kg"),
  4087. name: "Front (NSFW)",
  4088. image: {
  4089. source: "./media/characters/talan/front-nsfw.svg",
  4090. bottom: 29 / 3734
  4091. }
  4092. },
  4093. sideNsfw: {
  4094. height: math.unit(4, "meter"),
  4095. weight: math.unit(150, "kg"),
  4096. name: "Side (NSFW)",
  4097. image: {
  4098. source: "./media/characters/talan/side-nsfw.svg",
  4099. bottom: 29 / 3734
  4100. }
  4101. },
  4102. back: {
  4103. height: math.unit(4, "meter"),
  4104. weight: math.unit(150, "kg"),
  4105. name: "Back",
  4106. image: {
  4107. source: "./media/characters/talan/back.svg"
  4108. }
  4109. },
  4110. dickBottom: {
  4111. height: math.unit(0.621, "meter"),
  4112. name: "Dick (Bottom)",
  4113. image: {
  4114. source: "./media/characters/talan/dick-bottom.svg"
  4115. }
  4116. },
  4117. dickTop: {
  4118. height: math.unit(0.621, "meter"),
  4119. name: "Dick (Top)",
  4120. image: {
  4121. source: "./media/characters/talan/dick-top.svg"
  4122. }
  4123. },
  4124. dickSide: {
  4125. height: math.unit(0.305, "meter"),
  4126. name: "Dick (Side)",
  4127. image: {
  4128. source: "./media/characters/talan/dick-side.svg"
  4129. }
  4130. },
  4131. dickFront: {
  4132. height: math.unit(0.305, "meter"),
  4133. name: "Dick (Front)",
  4134. image: {
  4135. source: "./media/characters/talan/dick-front.svg"
  4136. }
  4137. },
  4138. },
  4139. [
  4140. {
  4141. name: "Normal",
  4142. height: math.unit(4, "meters")
  4143. },
  4144. {
  4145. name: "Macro",
  4146. height: math.unit(100, "meters")
  4147. },
  4148. {
  4149. name: "Megamacro",
  4150. height: math.unit(2, "miles"),
  4151. default: true
  4152. },
  4153. {
  4154. name: "Gigamacro",
  4155. height: math.unit(5000, "miles")
  4156. },
  4157. {
  4158. name: "Teramacro",
  4159. height: math.unit(100, "parsecs")
  4160. }
  4161. ]
  4162. ))
  4163. characterMakers.push(() => makeCharacter(
  4164. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4165. {
  4166. front: {
  4167. height: math.unit(2, "meter"),
  4168. weight: math.unit(90, "kg"),
  4169. name: "Front",
  4170. image: {
  4171. source: "./media/characters/gael'rathus/front.svg"
  4172. }
  4173. },
  4174. frontAlt: {
  4175. height: math.unit(2, "meter"),
  4176. weight: math.unit(90, "kg"),
  4177. name: "Front (alt)",
  4178. image: {
  4179. source: "./media/characters/gael'rathus/front-alt.svg"
  4180. }
  4181. },
  4182. frontAlt2: {
  4183. height: math.unit(2, "meter"),
  4184. weight: math.unit(90, "kg"),
  4185. name: "Front (alt 2)",
  4186. image: {
  4187. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4188. }
  4189. }
  4190. },
  4191. [
  4192. {
  4193. name: "Normal",
  4194. height: math.unit(9, "feet"),
  4195. default: true
  4196. },
  4197. {
  4198. name: "Large",
  4199. height: math.unit(25, "feet")
  4200. },
  4201. {
  4202. name: "Macro",
  4203. height: math.unit(0.25, "miles")
  4204. },
  4205. {
  4206. name: "Megamacro",
  4207. height: math.unit(10, "miles")
  4208. }
  4209. ]
  4210. ))
  4211. characterMakers.push(() => makeCharacter(
  4212. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4213. {
  4214. side: {
  4215. height: math.unit(2, "meter"),
  4216. weight: math.unit(140, "kg"),
  4217. name: "Side",
  4218. image: {
  4219. source: "./media/characters/sosha/side.svg",
  4220. extra: 1170/1006,
  4221. bottom: 94/1264
  4222. }
  4223. },
  4224. maw: {
  4225. height: math.unit(2.87, "feet"),
  4226. name: "Maw",
  4227. image: {
  4228. source: "./media/characters/sosha/maw.svg",
  4229. extra: 966/865,
  4230. bottom: 0/966
  4231. }
  4232. },
  4233. cooch: {
  4234. height: math.unit(5.6, "feet"),
  4235. name: "Cooch",
  4236. image: {
  4237. source: "./media/characters/sosha/cooch.svg"
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(12, "feet"),
  4245. default: true
  4246. }
  4247. ]
  4248. ))
  4249. characterMakers.push(() => makeCharacter(
  4250. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4251. {
  4252. side: {
  4253. height: math.unit(5 + 5 / 12, "feet"),
  4254. weight: math.unit(170, "kg"),
  4255. name: "Side",
  4256. image: {
  4257. source: "./media/characters/runnola/side.svg",
  4258. extra: 741 / 448,
  4259. bottom: 0.05
  4260. }
  4261. },
  4262. },
  4263. [
  4264. {
  4265. name: "Small",
  4266. height: math.unit(3, "feet")
  4267. },
  4268. {
  4269. name: "Normal",
  4270. height: math.unit(5 + 5 / 12, "feet"),
  4271. default: true
  4272. },
  4273. {
  4274. name: "Big",
  4275. height: math.unit(10, "feet")
  4276. },
  4277. ]
  4278. ))
  4279. characterMakers.push(() => makeCharacter(
  4280. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4281. {
  4282. front: {
  4283. height: math.unit(2, "meter"),
  4284. weight: math.unit(50, "kg"),
  4285. name: "Front",
  4286. image: {
  4287. source: "./media/characters/kurribird/front.svg",
  4288. bottom: 0.015
  4289. }
  4290. },
  4291. frontAlt: {
  4292. height: math.unit(1.5, "meter"),
  4293. weight: math.unit(50, "kg"),
  4294. name: "Front (Alt)",
  4295. image: {
  4296. source: "./media/characters/kurribird/front-alt.svg",
  4297. extra: 1.45
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(7, "feet")
  4305. },
  4306. {
  4307. name: "Big",
  4308. height: math.unit(12, "feet"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro",
  4313. height: math.unit(1500, "feet")
  4314. },
  4315. {
  4316. name: "Megamacro",
  4317. height: math.unit(2, "miles")
  4318. }
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4323. {
  4324. front: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(80, "kg"),
  4327. name: "Front",
  4328. image: {
  4329. source: "./media/characters/elbial/front.svg",
  4330. extra: 1643 / 1556,
  4331. bottom: 60.2 / 1696
  4332. }
  4333. },
  4334. side: {
  4335. height: math.unit(2, "meter"),
  4336. weight: math.unit(80, "kg"),
  4337. name: "Side",
  4338. image: {
  4339. source: "./media/characters/elbial/side.svg",
  4340. extra: 1601/1528,
  4341. bottom: 97/1698
  4342. }
  4343. },
  4344. back: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(80, "kg"),
  4347. name: "Back",
  4348. image: {
  4349. source: "./media/characters/elbial/back.svg",
  4350. extra: 1653/1569,
  4351. bottom: 20/1673
  4352. }
  4353. },
  4354. frontDressed: {
  4355. height: math.unit(2, "meter"),
  4356. weight: math.unit(80, "kg"),
  4357. name: "Front (Dressed)",
  4358. image: {
  4359. source: "./media/characters/elbial/front-dressed.svg",
  4360. extra: 1638/1569,
  4361. bottom: 70/1708
  4362. }
  4363. },
  4364. genitals: {
  4365. height: math.unit(2 / 3.367, "meter"),
  4366. name: "Genitals",
  4367. image: {
  4368. source: "./media/characters/elbial/genitals.svg"
  4369. }
  4370. },
  4371. },
  4372. [
  4373. {
  4374. name: "Large",
  4375. height: math.unit(100, "feet")
  4376. },
  4377. {
  4378. name: "Macro",
  4379. height: math.unit(500, "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Megamacro",
  4384. height: math.unit(10, "miles")
  4385. },
  4386. {
  4387. name: "Gigamacro",
  4388. height: math.unit(25000, "miles")
  4389. },
  4390. {
  4391. name: "Full-Size",
  4392. height: math.unit(8000000, "gigaparsecs")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(2, "meter"),
  4401. weight: math.unit(60, "kg"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/noah/front.svg",
  4405. extra: 1383/1313,
  4406. bottom: 104/1487
  4407. }
  4408. },
  4409. hand: {
  4410. height: math.unit(0.6, "feet"),
  4411. name: "Hand",
  4412. image: {
  4413. source: "./media/characters/noah/hand.svg"
  4414. }
  4415. },
  4416. talons: {
  4417. height: math.unit(1.385, "feet"),
  4418. name: "Talons",
  4419. image: {
  4420. source: "./media/characters/noah/talons.svg"
  4421. }
  4422. },
  4423. beak: {
  4424. height: math.unit(0.43, "feet"),
  4425. name: "Beak",
  4426. image: {
  4427. source: "./media/characters/noah/beak.svg"
  4428. }
  4429. },
  4430. collar: {
  4431. height: math.unit(0.88, "feet"),
  4432. name: "Collar",
  4433. image: {
  4434. source: "./media/characters/noah/collar.svg"
  4435. }
  4436. },
  4437. eyeNarrow: {
  4438. height: math.unit(0.18, "feet"),
  4439. name: "Eye (Narrow)",
  4440. image: {
  4441. source: "./media/characters/noah/eye-narrow.svg"
  4442. }
  4443. },
  4444. eyeNormal: {
  4445. height: math.unit(0.18, "feet"),
  4446. name: "Eye (Normal)",
  4447. image: {
  4448. source: "./media/characters/noah/eye-normal.svg"
  4449. }
  4450. },
  4451. eyeWide: {
  4452. height: math.unit(0.18, "feet"),
  4453. name: "Eye (Wide)",
  4454. image: {
  4455. source: "./media/characters/noah/eye-wide.svg"
  4456. }
  4457. },
  4458. ear: {
  4459. height: math.unit(0.64, "feet"),
  4460. name: "Ear",
  4461. image: {
  4462. source: "./media/characters/noah/ear.svg"
  4463. }
  4464. },
  4465. },
  4466. [
  4467. {
  4468. name: "Large",
  4469. height: math.unit(50, "feet")
  4470. },
  4471. {
  4472. name: "Macro",
  4473. height: math.unit(750, "feet"),
  4474. default: true
  4475. },
  4476. {
  4477. name: "Megamacro",
  4478. height: math.unit(50, "miles")
  4479. },
  4480. {
  4481. name: "Gigamacro",
  4482. height: math.unit(100000, "miles")
  4483. },
  4484. {
  4485. name: "Full-Size",
  4486. height: math.unit(3000000000, "miles")
  4487. }
  4488. ]
  4489. ))
  4490. characterMakers.push(() => makeCharacter(
  4491. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4492. {
  4493. front: {
  4494. height: math.unit(2, "meter"),
  4495. weight: math.unit(80, "kg"),
  4496. name: "Front",
  4497. image: {
  4498. source: "./media/characters/natalya/front.svg"
  4499. }
  4500. },
  4501. back: {
  4502. height: math.unit(2, "meter"),
  4503. weight: math.unit(80, "kg"),
  4504. name: "Back",
  4505. image: {
  4506. source: "./media/characters/natalya/back.svg"
  4507. }
  4508. }
  4509. },
  4510. [
  4511. {
  4512. name: "Normal",
  4513. height: math.unit(150, "feet"),
  4514. default: true
  4515. },
  4516. {
  4517. name: "Megamacro",
  4518. height: math.unit(5, "miles")
  4519. },
  4520. {
  4521. name: "Full-Size",
  4522. height: math.unit(600, "kiloparsecs")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(50, "kg"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/erestrebah/front.svg",
  4535. extra: 1262/1162,
  4536. bottom: 96/1358
  4537. }
  4538. },
  4539. back: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(50, "kg"),
  4542. name: "Back",
  4543. image: {
  4544. source: "./media/characters/erestrebah/back.svg",
  4545. extra: 1257/1139,
  4546. bottom: 13/1270
  4547. }
  4548. },
  4549. wing: {
  4550. height: math.unit(2, "meter"),
  4551. weight: math.unit(50, "kg"),
  4552. name: "Wing",
  4553. image: {
  4554. source: "./media/characters/erestrebah/wing.svg",
  4555. extra: 1262/1162,
  4556. bottom: 96/1358
  4557. }
  4558. },
  4559. mouth: {
  4560. height: math.unit(0.39, "feet"),
  4561. name: "Mouth",
  4562. image: {
  4563. source: "./media/characters/erestrebah/mouth.svg"
  4564. }
  4565. }
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(10, "feet")
  4571. },
  4572. {
  4573. name: "Large",
  4574. height: math.unit(50, "feet"),
  4575. default: true
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(300, "feet")
  4580. },
  4581. {
  4582. name: "Macro+",
  4583. height: math.unit(750, "feet")
  4584. },
  4585. {
  4586. name: "Megamacro",
  4587. height: math.unit(3, "miles")
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4593. {
  4594. front: {
  4595. height: math.unit(2, "meter"),
  4596. weight: math.unit(80, "kg"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/jennifer/front.svg",
  4600. bottom: 0.11,
  4601. extra: 1.16
  4602. }
  4603. },
  4604. frontAlt: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(80, "kg"),
  4607. name: "Front (Alt)",
  4608. image: {
  4609. source: "./media/characters/jennifer/front-alt.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Canon Height",
  4616. height: math.unit(120, "feet"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Macro+",
  4621. height: math.unit(300, "feet")
  4622. },
  4623. {
  4624. name: "Megamacro",
  4625. height: math.unit(20000, "feet")
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(50, "kg"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/kalista/front.svg",
  4638. extra: 1314/1145,
  4639. bottom: 101/1415
  4640. }
  4641. },
  4642. back: {
  4643. height: math.unit(2, "meter"),
  4644. weight: math.unit(50, "kg"),
  4645. name: "Back",
  4646. image: {
  4647. source: "./media/characters/kalista/back.svg",
  4648. extra: 1366 / 1156,
  4649. bottom: 33.9 / 1362.78
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Uncomfortably Small",
  4656. height: math.unit(10, "feet")
  4657. },
  4658. {
  4659. name: "Small",
  4660. height: math.unit(30, "feet")
  4661. },
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(100, "feet"),
  4665. default: true
  4666. },
  4667. {
  4668. name: "Macro+",
  4669. height: math.unit(2000, "feet")
  4670. },
  4671. {
  4672. name: "True Form",
  4673. height: math.unit(8924, "miles")
  4674. }
  4675. ]
  4676. ))
  4677. characterMakers.push(() => makeCharacter(
  4678. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4679. {
  4680. front: {
  4681. height: math.unit(2, "meter"),
  4682. weight: math.unit(120, "kg"),
  4683. name: "Front",
  4684. image: {
  4685. source: "./media/characters/ggv/front.svg"
  4686. }
  4687. },
  4688. side: {
  4689. height: math.unit(2, "meter"),
  4690. weight: math.unit(120, "kg"),
  4691. name: "Side",
  4692. image: {
  4693. source: "./media/characters/ggv/side.svg"
  4694. }
  4695. }
  4696. },
  4697. [
  4698. {
  4699. name: "Extremely Puny",
  4700. height: math.unit(9 + 5 / 12, "feet")
  4701. },
  4702. {
  4703. name: "Horribly Small",
  4704. height: math.unit(47.7, "miles"),
  4705. default: true
  4706. },
  4707. {
  4708. name: "Reasonably Sized",
  4709. height: math.unit(25000, "parsecs")
  4710. },
  4711. {
  4712. name: "Slightly Uncompressed",
  4713. height: math.unit(7.77e31, "parsecs")
  4714. },
  4715. {
  4716. name: "Omniversal",
  4717. height: math.unit(1e300, "meters")
  4718. },
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(2, "meter"),
  4726. weight: math.unit(75, "lb"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/napalm/front.svg"
  4730. }
  4731. },
  4732. back: {
  4733. height: math.unit(2, "meter"),
  4734. weight: math.unit(75, "lb"),
  4735. name: "Back",
  4736. image: {
  4737. source: "./media/characters/napalm/back.svg"
  4738. }
  4739. }
  4740. },
  4741. [
  4742. {
  4743. name: "Standard",
  4744. height: math.unit(55, "feet"),
  4745. default: true
  4746. }
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4751. {
  4752. front: {
  4753. height: math.unit(7 + 5 / 6, "feet"),
  4754. weight: math.unit(325, "lb"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/asana/front.svg",
  4758. extra: 1133 / 1060,
  4759. bottom: 15.2 / 1148.6
  4760. }
  4761. },
  4762. back: {
  4763. height: math.unit(7 + 5 / 6, "feet"),
  4764. weight: math.unit(325, "lb"),
  4765. name: "Back",
  4766. image: {
  4767. source: "./media/characters/asana/back.svg",
  4768. extra: 1114 / 1043,
  4769. bottom: 5 / 1120
  4770. }
  4771. },
  4772. dressedDark: {
  4773. height: math.unit(7 + 5 / 6, "feet"),
  4774. weight: math.unit(325, "lb"),
  4775. name: "Dressed (Dark)",
  4776. image: {
  4777. source: "./media/characters/asana/dressed-dark.svg",
  4778. extra: 1133 / 1060,
  4779. bottom: 15.2 / 1148.6
  4780. }
  4781. },
  4782. dressedLight: {
  4783. height: math.unit(7 + 5 / 6, "feet"),
  4784. weight: math.unit(325, "lb"),
  4785. name: "Dressed (Light)",
  4786. image: {
  4787. source: "./media/characters/asana/dressed-light.svg",
  4788. extra: 1133 / 1060,
  4789. bottom: 15.2 / 1148.6
  4790. }
  4791. },
  4792. },
  4793. [
  4794. {
  4795. name: "Standard",
  4796. height: math.unit(7 + 5 / 6, "feet"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Large",
  4801. height: math.unit(10, "meters")
  4802. },
  4803. {
  4804. name: "Macro",
  4805. height: math.unit(2500, "meters")
  4806. },
  4807. {
  4808. name: "Megamacro",
  4809. height: math.unit(5e6, "meters")
  4810. },
  4811. {
  4812. name: "Examacro",
  4813. height: math.unit(5e12, "lightyears")
  4814. },
  4815. {
  4816. name: "Max Size",
  4817. height: math.unit(1e31, "lightyears")
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4823. {
  4824. front: {
  4825. height: math.unit(2, "meter"),
  4826. weight: math.unit(60, "kg"),
  4827. name: "Front",
  4828. image: {
  4829. source: "./media/characters/ebony/front.svg",
  4830. bottom: 0.03,
  4831. extra: 1045 / 810 + 0.03
  4832. }
  4833. },
  4834. side: {
  4835. height: math.unit(2, "meter"),
  4836. weight: math.unit(60, "kg"),
  4837. name: "Side",
  4838. image: {
  4839. source: "./media/characters/ebony/side.svg",
  4840. bottom: 0.03,
  4841. extra: 1045 / 810 + 0.03
  4842. }
  4843. },
  4844. back: {
  4845. height: math.unit(2, "meter"),
  4846. weight: math.unit(60, "kg"),
  4847. name: "Back",
  4848. image: {
  4849. source: "./media/characters/ebony/back.svg",
  4850. bottom: 0.01,
  4851. extra: 1045 / 810 + 0.01
  4852. }
  4853. },
  4854. },
  4855. [
  4856. // TODO check why I did this lol
  4857. {
  4858. name: "Standard",
  4859. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(200, "feet")
  4865. },
  4866. {
  4867. name: "Gigamacro",
  4868. height: math.unit(13000, "km")
  4869. }
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4874. {
  4875. front: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(175, "lb"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/mountain/front.svg",
  4881. extra: 972 / 955,
  4882. bottom: 64 / 1036.6
  4883. }
  4884. },
  4885. back: {
  4886. height: math.unit(6, "feet"),
  4887. weight: math.unit(175, "lb"),
  4888. name: "Back",
  4889. image: {
  4890. source: "./media/characters/mountain/back.svg",
  4891. extra: 970 / 950,
  4892. bottom: 28.25 / 999
  4893. }
  4894. },
  4895. },
  4896. [
  4897. {
  4898. name: "Large",
  4899. height: math.unit(20, "meters")
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(300, "meters")
  4904. },
  4905. {
  4906. name: "Gigamacro",
  4907. height: math.unit(10000, "km"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Examacro",
  4912. height: math.unit(10e9, "lightyears")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(8, "feet"),
  4921. weight: math.unit(500, "lb"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/rick/front.svg"
  4925. }
  4926. }
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(8, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(5, "km")
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4942. {
  4943. front: {
  4944. height: math.unit(8, "feet"),
  4945. weight: math.unit(120, "lb"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/ona/front.svg"
  4949. }
  4950. },
  4951. frontAlt: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(120, "lb"),
  4954. name: "Front (Alt)",
  4955. image: {
  4956. source: "./media/characters/ona/front-alt.svg"
  4957. }
  4958. },
  4959. back: {
  4960. height: math.unit(8, "feet"),
  4961. weight: math.unit(120, "lb"),
  4962. name: "Back",
  4963. image: {
  4964. source: "./media/characters/ona/back.svg"
  4965. }
  4966. },
  4967. foot: {
  4968. height: math.unit(1.1, "feet"),
  4969. name: "Foot",
  4970. image: {
  4971. source: "./media/characters/ona/foot.svg"
  4972. }
  4973. }
  4974. },
  4975. [
  4976. {
  4977. name: "Megamacro",
  4978. height: math.unit(70, "km"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Gigamacro",
  4983. height: math.unit(681818, "miles")
  4984. },
  4985. {
  4986. name: "Examacro",
  4987. height: math.unit(3800000, "lightyears")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(12, "feet"),
  4996. weight: math.unit(3000, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/mech/front.svg",
  5000. extra: 2900 / 2770,
  5001. bottom: 110 / 3010
  5002. }
  5003. },
  5004. back: {
  5005. height: math.unit(12, "feet"),
  5006. weight: math.unit(3000, "lb"),
  5007. name: "Back",
  5008. image: {
  5009. source: "./media/characters/mech/back.svg",
  5010. extra: 3011 / 2890,
  5011. bottom: 94 / 3105
  5012. }
  5013. },
  5014. maw: {
  5015. height: math.unit(3.07, "feet"),
  5016. name: "Maw",
  5017. image: {
  5018. source: "./media/characters/mech/maw.svg"
  5019. }
  5020. },
  5021. head: {
  5022. height: math.unit(3.07, "feet"),
  5023. name: "Head",
  5024. image: {
  5025. source: "./media/characters/mech/head.svg"
  5026. }
  5027. },
  5028. dick: {
  5029. height: math.unit(1.43, "feet"),
  5030. name: "Dick",
  5031. image: {
  5032. source: "./media/characters/mech/dick.svg"
  5033. }
  5034. },
  5035. },
  5036. [
  5037. {
  5038. name: "Normal",
  5039. height: math.unit(12, "feet")
  5040. },
  5041. {
  5042. name: "Macro",
  5043. height: math.unit(300, "feet"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Macro+",
  5048. height: math.unit(1500, "feet")
  5049. },
  5050. ]
  5051. ))
  5052. characterMakers.push(() => makeCharacter(
  5053. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5054. {
  5055. front: {
  5056. height: math.unit(1.3, "meter"),
  5057. weight: math.unit(30, "kg"),
  5058. name: "Front",
  5059. image: {
  5060. source: "./media/characters/gregory/front.svg",
  5061. }
  5062. }
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(1.3, "meter"),
  5068. default: true
  5069. },
  5070. {
  5071. name: "Macro",
  5072. height: math.unit(20, "meter")
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(2.8, "meter"),
  5081. weight: math.unit(200, "kg"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/elory/front.svg",
  5085. }
  5086. }
  5087. },
  5088. [
  5089. {
  5090. name: "Normal",
  5091. height: math.unit(2.8, "meter"),
  5092. default: true
  5093. },
  5094. {
  5095. name: "Macro",
  5096. height: math.unit(38, "meter")
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5102. {
  5103. front: {
  5104. height: math.unit(470, "feet"),
  5105. weight: math.unit(924, "tons"),
  5106. name: "Front",
  5107. image: {
  5108. source: "./media/characters/angelpatamon/front.svg",
  5109. }
  5110. }
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(470, "feet"),
  5116. default: true
  5117. },
  5118. {
  5119. name: "Deity Size I",
  5120. height: math.unit(28651.2, "km")
  5121. },
  5122. {
  5123. name: "Deity Size II",
  5124. height: math.unit(171907.2, "km")
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5130. {
  5131. side: {
  5132. height: math.unit(7.2, "meter"),
  5133. weight: math.unit(8.2, "tons"),
  5134. name: "Side",
  5135. image: {
  5136. source: "./media/characters/cryae/side.svg",
  5137. extra: 3500 / 1500
  5138. }
  5139. }
  5140. },
  5141. [
  5142. {
  5143. name: "Normal",
  5144. height: math.unit(7.2, "meter"),
  5145. default: true
  5146. }
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5151. {
  5152. front: {
  5153. height: math.unit(6, "feet"),
  5154. weight: math.unit(175, "lb"),
  5155. name: "Front",
  5156. image: {
  5157. source: "./media/characters/xera/front.svg",
  5158. extra: 2377 / 1972,
  5159. bottom: 75.5 / 2452
  5160. }
  5161. },
  5162. side: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(175, "lb"),
  5165. name: "Side",
  5166. image: {
  5167. source: "./media/characters/xera/side.svg",
  5168. extra: 2345 / 2019,
  5169. bottom: 39.7 / 2384
  5170. }
  5171. },
  5172. back: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(175, "lb"),
  5175. name: "Back",
  5176. image: {
  5177. source: "./media/characters/xera/back.svg",
  5178. extra: 2095 / 1984,
  5179. bottom: 67 / 2166
  5180. }
  5181. },
  5182. },
  5183. [
  5184. {
  5185. name: "Small",
  5186. height: math.unit(10, "feet")
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(500, "meters"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Macro+",
  5195. height: math.unit(10, "km")
  5196. },
  5197. {
  5198. name: "Gigamacro",
  5199. height: math.unit(25000, "km")
  5200. },
  5201. {
  5202. name: "Teramacro",
  5203. height: math.unit(3e6, "km")
  5204. }
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5209. {
  5210. front: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(175, "lb"),
  5213. name: "Front",
  5214. image: {
  5215. source: "./media/characters/nebula/front.svg",
  5216. extra: 2566 / 2362,
  5217. bottom: 81 / 2644
  5218. }
  5219. }
  5220. },
  5221. [
  5222. {
  5223. name: "Small",
  5224. height: math.unit(4.5, "meters")
  5225. },
  5226. {
  5227. name: "Macro",
  5228. height: math.unit(1500, "meters"),
  5229. default: true
  5230. },
  5231. {
  5232. name: "Megamacro",
  5233. height: math.unit(150, "km")
  5234. },
  5235. {
  5236. name: "Gigamacro",
  5237. height: math.unit(27000, "km")
  5238. }
  5239. ]
  5240. ))
  5241. characterMakers.push(() => makeCharacter(
  5242. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5243. {
  5244. front: {
  5245. height: math.unit(6, "feet"),
  5246. weight: math.unit(225, "lb"),
  5247. name: "Front",
  5248. image: {
  5249. source: "./media/characters/abysgar/front.svg",
  5250. extra: 1739/1614,
  5251. bottom: 71/1810
  5252. }
  5253. },
  5254. frontNsfw: {
  5255. height: math.unit(6, "feet"),
  5256. weight: math.unit(225, "lb"),
  5257. name: "Front (NSFW)",
  5258. image: {
  5259. source: "./media/characters/abysgar/front-nsfw.svg",
  5260. extra: 1739/1614,
  5261. bottom: 71/1810
  5262. }
  5263. },
  5264. back: {
  5265. height: math.unit(4.6, "feet"),
  5266. weight: math.unit(225, "lb"),
  5267. name: "Back",
  5268. image: {
  5269. source: "./media/characters/abysgar/back.svg",
  5270. extra: 1384/1327,
  5271. bottom: 0/1384
  5272. }
  5273. },
  5274. head: {
  5275. height: math.unit(1.25, "feet"),
  5276. name: "Head",
  5277. image: {
  5278. source: "./media/characters/abysgar/head.svg",
  5279. extra: 669/569,
  5280. bottom: 0/669
  5281. }
  5282. },
  5283. },
  5284. [
  5285. {
  5286. name: "Small",
  5287. height: math.unit(4.5, "meters")
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(1250, "meters"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Megamacro",
  5296. height: math.unit(125, "km")
  5297. },
  5298. {
  5299. name: "Gigamacro",
  5300. height: math.unit(26000, "km")
  5301. }
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(180, "lb"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/yakuz/front.svg"
  5313. }
  5314. }
  5315. },
  5316. [
  5317. {
  5318. name: "Small",
  5319. height: math.unit(5, "meters")
  5320. },
  5321. {
  5322. name: "Macro",
  5323. height: math.unit(1500, "meters"),
  5324. default: true
  5325. },
  5326. {
  5327. name: "Megamacro",
  5328. height: math.unit(200, "km")
  5329. },
  5330. {
  5331. name: "Gigamacro",
  5332. height: math.unit(100000, "km")
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(175, "lb"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/mirova/front.svg",
  5345. extra: 3334 / 3071,
  5346. bottom: 42 / 3375.6
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Small",
  5353. height: math.unit(5, "meters")
  5354. },
  5355. {
  5356. name: "Macro",
  5357. height: math.unit(900, "meters"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Megamacro",
  5362. height: math.unit(135, "km")
  5363. },
  5364. {
  5365. name: "Gigamacro",
  5366. height: math.unit(20000, "km")
  5367. }
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5372. {
  5373. side: {
  5374. height: math.unit(28.35, "feet"),
  5375. weight: math.unit(99.75, "tons"),
  5376. name: "Side",
  5377. image: {
  5378. source: "./media/characters/asana-mech/side.svg",
  5379. extra: 923 / 699,
  5380. bottom: 50 / 975
  5381. }
  5382. },
  5383. chaingun: {
  5384. height: math.unit(7, "feet"),
  5385. weight: math.unit(2400, "lb"),
  5386. name: "Chaingun",
  5387. image: {
  5388. source: "./media/characters/asana-mech/chaingun.svg"
  5389. }
  5390. },
  5391. laser: {
  5392. height: math.unit(7.12, "feet"),
  5393. weight: math.unit(2000, "lb"),
  5394. name: "Laser",
  5395. image: {
  5396. source: "./media/characters/asana-mech/laser.svg"
  5397. }
  5398. },
  5399. },
  5400. [
  5401. {
  5402. name: "Normal",
  5403. height: math.unit(28.35, "feet"),
  5404. default: true
  5405. },
  5406. {
  5407. name: "Macro",
  5408. height: math.unit(2500, "feet")
  5409. },
  5410. {
  5411. name: "Megamacro",
  5412. height: math.unit(25, "miles")
  5413. },
  5414. {
  5415. name: "Examacro",
  5416. height: math.unit(6e8, "lightyears")
  5417. },
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5422. {
  5423. front: {
  5424. height: math.unit(5, "meters"),
  5425. weight: math.unit(1000, "kg"),
  5426. name: "Front",
  5427. image: {
  5428. source: "./media/characters/asche/front.svg",
  5429. extra: 1258 / 1190,
  5430. bottom: 47 / 1305
  5431. }
  5432. },
  5433. frontUnderwear: {
  5434. height: math.unit(5, "meters"),
  5435. weight: math.unit(1000, "kg"),
  5436. name: "Front (Underwear)",
  5437. image: {
  5438. source: "./media/characters/asche/front-underwear.svg",
  5439. extra: 1258 / 1190,
  5440. bottom: 47 / 1305
  5441. }
  5442. },
  5443. frontDressed: {
  5444. height: math.unit(5, "meters"),
  5445. weight: math.unit(1000, "kg"),
  5446. name: "Front (Dressed)",
  5447. image: {
  5448. source: "./media/characters/asche/front-dressed.svg",
  5449. extra: 1258 / 1190,
  5450. bottom: 47 / 1305
  5451. }
  5452. },
  5453. frontArmor: {
  5454. height: math.unit(5, "meters"),
  5455. weight: math.unit(1000, "kg"),
  5456. name: "Front (Armored)",
  5457. image: {
  5458. source: "./media/characters/asche/front-armored.svg",
  5459. extra: 1374 / 1308,
  5460. bottom: 23 / 1397
  5461. }
  5462. },
  5463. mp724: {
  5464. height: math.unit(0.96, "meters"),
  5465. weight: math.unit(38, "kg"),
  5466. name: "H&K MP724",
  5467. image: {
  5468. source: "./media/characters/asche/h&k-mp724.svg"
  5469. }
  5470. },
  5471. side: {
  5472. height: math.unit(5, "meters"),
  5473. weight: math.unit(1000, "kg"),
  5474. name: "Side",
  5475. image: {
  5476. source: "./media/characters/asche/side.svg",
  5477. extra: 1717 / 1609,
  5478. bottom: 0.005
  5479. }
  5480. },
  5481. back: {
  5482. height: math.unit(5, "meters"),
  5483. weight: math.unit(1000, "kg"),
  5484. name: "Back",
  5485. image: {
  5486. source: "./media/characters/asche/back.svg",
  5487. extra: 1570 / 1501
  5488. }
  5489. },
  5490. },
  5491. [
  5492. {
  5493. name: "DEFCON 5",
  5494. height: math.unit(5, "meters")
  5495. },
  5496. {
  5497. name: "DEFCON 4",
  5498. height: math.unit(500, "meters"),
  5499. default: true
  5500. },
  5501. {
  5502. name: "DEFCON 3",
  5503. height: math.unit(5, "km")
  5504. },
  5505. {
  5506. name: "DEFCON 2",
  5507. height: math.unit(500, "km")
  5508. },
  5509. {
  5510. name: "DEFCON 1",
  5511. height: math.unit(500000, "km")
  5512. },
  5513. {
  5514. name: "DEFCON 0",
  5515. height: math.unit(3, "gigaparsecs")
  5516. },
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5521. {
  5522. front: {
  5523. height: math.unit(7, "feet"),
  5524. weight: math.unit(92.7, "kg"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/gale/front.svg",
  5528. extra: 977/919,
  5529. bottom: 105/1082
  5530. }
  5531. },
  5532. side: {
  5533. height: math.unit(6.7, "feet"),
  5534. weight: math.unit(92.7, "kg"),
  5535. name: "Side",
  5536. image: {
  5537. source: "./media/characters/gale/side.svg",
  5538. extra: 978/922,
  5539. bottom: 140/1118
  5540. }
  5541. },
  5542. back: {
  5543. height: math.unit(7, "feet"),
  5544. weight: math.unit(92.7, "kg"),
  5545. name: "Back",
  5546. image: {
  5547. source: "./media/characters/gale/back.svg",
  5548. extra: 966/920,
  5549. bottom: 61/1027
  5550. }
  5551. },
  5552. maw: {
  5553. height: math.unit(2.23, "feet"),
  5554. name: "Maw",
  5555. image: {
  5556. source: "./media/characters/gale/maw.svg"
  5557. }
  5558. },
  5559. foot: {
  5560. height: math.unit(2.1, "feet"),
  5561. name: "Foot",
  5562. image: {
  5563. source: "./media/characters/gale/foot.svg"
  5564. }
  5565. },
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(7, "feet")
  5571. },
  5572. {
  5573. name: "Macro",
  5574. height: math.unit(150, "feet"),
  5575. default: true
  5576. },
  5577. {
  5578. name: "Macro+",
  5579. height: math.unit(300, "feet")
  5580. },
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5585. {
  5586. front: {
  5587. height: math.unit(5 + 10/12, "feet"),
  5588. weight: math.unit(67, "kg"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/draylen/front.svg",
  5592. extra: 832/777,
  5593. bottom: 85/917
  5594. }
  5595. }
  5596. },
  5597. [
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(5 + 10/12, "feet")
  5601. },
  5602. {
  5603. name: "Macro",
  5604. height: math.unit(150, "feet"),
  5605. default: true
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(7 + 9 / 12, "feet"),
  5614. weight: math.unit(379, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/chez/front.svg"
  5618. }
  5619. },
  5620. side: {
  5621. height: math.unit(7 + 9 / 12, "feet"),
  5622. weight: math.unit(379, "lbs"),
  5623. name: "Side",
  5624. image: {
  5625. source: "./media/characters/chez/side.svg"
  5626. }
  5627. }
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(7 + 9 / 12, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "God King",
  5637. height: math.unit(9750000, "meters")
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(275, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/kaylum/front.svg",
  5650. bottom: 0.01,
  5651. extra: 1166 / 1031
  5652. }
  5653. },
  5654. frontWingless: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(275, "lbs"),
  5657. name: "Front (Wingless)",
  5658. image: {
  5659. source: "./media/characters/kaylum/front-wingless.svg",
  5660. bottom: 0.01,
  5661. extra: 1117 / 1031
  5662. }
  5663. }
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(3.05, "meters")
  5669. },
  5670. {
  5671. name: "Master",
  5672. height: math.unit(5.5, "meters")
  5673. },
  5674. {
  5675. name: "Rampage",
  5676. height: math.unit(19, "meters")
  5677. },
  5678. {
  5679. name: "Macro Lite",
  5680. height: math.unit(37, "meters")
  5681. },
  5682. {
  5683. name: "Hyper Predator",
  5684. height: math.unit(61, "meters")
  5685. },
  5686. {
  5687. name: "Macro",
  5688. height: math.unit(138, "meters"),
  5689. default: true
  5690. }
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5695. {
  5696. front: {
  5697. height: math.unit(5 + 5 / 12, "feet"),
  5698. weight: math.unit(120, "lbs"),
  5699. name: "Front",
  5700. image: {
  5701. source: "./media/characters/geta/front.svg",
  5702. extra: 1003/933,
  5703. bottom: 21/1024
  5704. }
  5705. },
  5706. paw: {
  5707. height: math.unit(0.35, "feet"),
  5708. name: "Paw",
  5709. image: {
  5710. source: "./media/characters/geta/paw.svg"
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Micro",
  5717. height: math.unit(3, "inches"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "Normal",
  5722. height: math.unit(5 + 5 / 12, "feet")
  5723. }
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(300, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/tyrnn/front.svg"
  5735. }
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Main Height",
  5741. height: math.unit(355, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Fave. Height",
  5746. height: math.unit(2400, "feet")
  5747. }
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(300, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/appledectomy/front.svg"
  5759. }
  5760. }
  5761. },
  5762. [
  5763. {
  5764. name: "Macro",
  5765. height: math.unit(2500, "feet")
  5766. },
  5767. {
  5768. name: "Megamacro",
  5769. height: math.unit(50, "miles"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Gigamacro",
  5774. height: math.unit(5000, "miles")
  5775. },
  5776. {
  5777. name: "Teramacro",
  5778. height: math.unit(250000, "miles")
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(200, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/vulpes/front.svg",
  5791. extra: 573 / 543,
  5792. bottom: 0.033
  5793. }
  5794. },
  5795. side: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(200, "lbs"),
  5798. name: "Side",
  5799. image: {
  5800. source: "./media/characters/vulpes/side.svg",
  5801. extra: 577 / 549,
  5802. bottom: 11 / 588
  5803. }
  5804. },
  5805. back: {
  5806. height: math.unit(6, "feet"),
  5807. weight: math.unit(200, "lbs"),
  5808. name: "Back",
  5809. image: {
  5810. source: "./media/characters/vulpes/back.svg",
  5811. extra: 573 / 549,
  5812. bottom: 20 / 593
  5813. }
  5814. },
  5815. feet: {
  5816. height: math.unit(1.276, "feet"),
  5817. name: "Feet",
  5818. image: {
  5819. source: "./media/characters/vulpes/feet.svg"
  5820. }
  5821. },
  5822. maw: {
  5823. height: math.unit(1.18, "feet"),
  5824. name: "Maw",
  5825. image: {
  5826. source: "./media/characters/vulpes/maw.svg"
  5827. }
  5828. },
  5829. },
  5830. [
  5831. {
  5832. name: "Micro",
  5833. height: math.unit(2, "inches")
  5834. },
  5835. {
  5836. name: "Normal",
  5837. height: math.unit(6.3, "feet")
  5838. },
  5839. {
  5840. name: "Macro",
  5841. height: math.unit(850, "feet")
  5842. },
  5843. {
  5844. name: "Megamacro",
  5845. height: math.unit(7500, "feet"),
  5846. default: true
  5847. },
  5848. {
  5849. name: "Gigamacro",
  5850. height: math.unit(570000, "miles")
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5856. {
  5857. front: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(210, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/rain-fallen/front.svg"
  5863. }
  5864. },
  5865. side: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(210, "lbs"),
  5868. name: "Side",
  5869. image: {
  5870. source: "./media/characters/rain-fallen/side.svg"
  5871. }
  5872. },
  5873. back: {
  5874. height: math.unit(6, "feet"),
  5875. weight: math.unit(210, "lbs"),
  5876. name: "Back",
  5877. image: {
  5878. source: "./media/characters/rain-fallen/back.svg"
  5879. }
  5880. },
  5881. feral: {
  5882. height: math.unit(9, "feet"),
  5883. weight: math.unit(700, "lbs"),
  5884. name: "Feral",
  5885. image: {
  5886. source: "./media/characters/rain-fallen/feral.svg"
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Meddling with Mortals",
  5893. height: math.unit(8 + 8/12, "feet")
  5894. },
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(5, "meter")
  5898. },
  5899. {
  5900. name: "Macro",
  5901. height: math.unit(150, "meter"),
  5902. default: true
  5903. },
  5904. {
  5905. name: "Megamacro",
  5906. height: math.unit(278e6, "meter")
  5907. },
  5908. {
  5909. name: "Gigamacro",
  5910. height: math.unit(2e9, "meter")
  5911. },
  5912. {
  5913. name: "Teramacro",
  5914. height: math.unit(8e12, "meter")
  5915. },
  5916. {
  5917. name: "Devourer",
  5918. height: math.unit(14, "zettameters")
  5919. },
  5920. {
  5921. name: "Scarlet King",
  5922. height: math.unit(18, "yottameters")
  5923. },
  5924. {
  5925. name: "Void",
  5926. height: math.unit(1e88, "yottameters")
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5932. {
  5933. standing: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(180, "lbs"),
  5936. name: "Standing",
  5937. image: {
  5938. source: "./media/characters/zaakira/standing.svg",
  5939. extra: 1599/1504,
  5940. bottom: 39/1638
  5941. }
  5942. },
  5943. laying: {
  5944. height: math.unit(3.3, "feet"),
  5945. weight: math.unit(180, "lbs"),
  5946. name: "Laying",
  5947. image: {
  5948. source: "./media/characters/zaakira/laying.svg"
  5949. }
  5950. },
  5951. },
  5952. [
  5953. {
  5954. name: "Normal",
  5955. height: math.unit(12, "feet")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(279, "feet"),
  5960. default: true
  5961. }
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5966. {
  5967. femSfw: {
  5968. height: math.unit(8, "feet"),
  5969. weight: math.unit(350, "lb"),
  5970. name: "Fem",
  5971. image: {
  5972. source: "./media/characters/sigvald/fem-sfw.svg",
  5973. extra: 182 / 164,
  5974. bottom: 8.7 / 190.5
  5975. }
  5976. },
  5977. femNsfw: {
  5978. height: math.unit(8, "feet"),
  5979. weight: math.unit(350, "lb"),
  5980. name: "Fem (NSFW)",
  5981. image: {
  5982. source: "./media/characters/sigvald/fem-nsfw.svg",
  5983. extra: 182 / 164,
  5984. bottom: 8.7 / 190.5
  5985. }
  5986. },
  5987. maleNsfw: {
  5988. height: math.unit(8, "feet"),
  5989. weight: math.unit(350, "lb"),
  5990. name: "Male (NSFW)",
  5991. image: {
  5992. source: "./media/characters/sigvald/male-nsfw.svg",
  5993. extra: 182 / 164,
  5994. bottom: 8.7 / 190.5
  5995. }
  5996. },
  5997. hermNsfw: {
  5998. height: math.unit(8, "feet"),
  5999. weight: math.unit(350, "lb"),
  6000. name: "Herm (NSFW)",
  6001. image: {
  6002. source: "./media/characters/sigvald/herm-nsfw.svg",
  6003. extra: 182 / 164,
  6004. bottom: 8.7 / 190.5
  6005. }
  6006. },
  6007. dick: {
  6008. height: math.unit(2.36, "feet"),
  6009. name: "Dick",
  6010. image: {
  6011. source: "./media/characters/sigvald/dick.svg"
  6012. }
  6013. },
  6014. eye: {
  6015. height: math.unit(0.31, "feet"),
  6016. name: "Eye",
  6017. image: {
  6018. source: "./media/characters/sigvald/eye.svg"
  6019. }
  6020. },
  6021. mouth: {
  6022. height: math.unit(0.92, "feet"),
  6023. name: "Mouth",
  6024. image: {
  6025. source: "./media/characters/sigvald/mouth.svg"
  6026. }
  6027. },
  6028. paws: {
  6029. height: math.unit(2.2, "feet"),
  6030. name: "Paws",
  6031. image: {
  6032. source: "./media/characters/sigvald/paws.svg"
  6033. }
  6034. }
  6035. },
  6036. [
  6037. {
  6038. name: "Normal",
  6039. height: math.unit(8, "feet")
  6040. },
  6041. {
  6042. name: "Large",
  6043. height: math.unit(12, "feet")
  6044. },
  6045. {
  6046. name: "Larger",
  6047. height: math.unit(20, "feet")
  6048. },
  6049. {
  6050. name: "Macro",
  6051. height: math.unit(150, "feet")
  6052. },
  6053. {
  6054. name: "Macro+",
  6055. height: math.unit(200, "feet"),
  6056. default: true
  6057. },
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6062. {
  6063. side: {
  6064. height: math.unit(12, "feet"),
  6065. weight: math.unit(2000, "kg"),
  6066. name: "Side",
  6067. image: {
  6068. source: "./media/characters/scott/side.svg",
  6069. extra: 754 / 724,
  6070. bottom: 0.069
  6071. }
  6072. },
  6073. upright: {
  6074. height: math.unit(12, "feet"),
  6075. weight: math.unit(2000, "kg"),
  6076. name: "Upright",
  6077. image: {
  6078. source: "./media/characters/scott/upright.svg",
  6079. extra: 3881 / 3722,
  6080. bottom: 0.05
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(12, "feet"),
  6088. default: true
  6089. },
  6090. ]
  6091. ))
  6092. characterMakers.push(() => makeCharacter(
  6093. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6094. {
  6095. side: {
  6096. height: math.unit(8, "meters"),
  6097. weight: math.unit(84755, "lbs"),
  6098. name: "Side",
  6099. image: {
  6100. source: "./media/characters/tobias/side.svg",
  6101. extra: 1474 / 1096,
  6102. bottom: 38.9 / 1513.1235
  6103. }
  6104. },
  6105. maw: {
  6106. height: math.unit(2.3, "meters"),
  6107. name: "Maw",
  6108. image: {
  6109. source: "./media/characters/tobias/maw.svg"
  6110. }
  6111. },
  6112. burp: {
  6113. height: math.unit(2.85, "meters"),
  6114. name: "Burp",
  6115. image: {
  6116. source: "./media/characters/tobias/burp.svg"
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(8, "meters"),
  6124. default: true
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6130. {
  6131. front: {
  6132. height: math.unit(5.5, "feet"),
  6133. weight: math.unit(400, "lbs"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/kieran/front.svg",
  6137. extra: 2694 / 2364,
  6138. bottom: 217 / 2908
  6139. }
  6140. },
  6141. side: {
  6142. height: math.unit(5.5, "feet"),
  6143. weight: math.unit(400, "lbs"),
  6144. name: "Side",
  6145. image: {
  6146. source: "./media/characters/kieran/side.svg",
  6147. extra: 875 / 777,
  6148. bottom: 84.6 / 959
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(5.5, "feet"),
  6156. default: true
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6162. {
  6163. side: {
  6164. height: math.unit(2, "meters"),
  6165. weight: math.unit(70, "kg"),
  6166. name: "Side",
  6167. image: {
  6168. source: "./media/characters/sanya/side.svg",
  6169. bottom: 0.02,
  6170. extra: 1.02
  6171. }
  6172. },
  6173. },
  6174. [
  6175. {
  6176. name: "Small",
  6177. height: math.unit(2, "meters")
  6178. },
  6179. {
  6180. name: "Normal",
  6181. height: math.unit(3, "meters")
  6182. },
  6183. {
  6184. name: "Macro",
  6185. height: math.unit(16, "meters"),
  6186. default: true
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6192. {
  6193. front: {
  6194. height: math.unit(2, "meters"),
  6195. weight: math.unit(120, "kg"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/miranda/front.svg",
  6199. extra: 195 / 185,
  6200. bottom: 10.9 / 206.5
  6201. }
  6202. },
  6203. back: {
  6204. height: math.unit(2, "meters"),
  6205. weight: math.unit(120, "kg"),
  6206. name: "Back",
  6207. image: {
  6208. source: "./media/characters/miranda/back.svg",
  6209. extra: 201 / 193,
  6210. bottom: 2.3 / 203.7
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(10, "feet"),
  6218. default: true
  6219. }
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "James", species: ["deer"], tags: ["anthro"] },
  6224. {
  6225. side: {
  6226. height: math.unit(2, "meters"),
  6227. weight: math.unit(100, "kg"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/james/front.svg",
  6231. extra: 10 / 8.5
  6232. }
  6233. },
  6234. },
  6235. [
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(8.5, "feet"),
  6239. default: true
  6240. }
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6245. {
  6246. side: {
  6247. height: math.unit(9.5, "feet"),
  6248. weight: math.unit(2500, "lbs"),
  6249. name: "Side",
  6250. image: {
  6251. source: "./media/characters/heather/side.svg"
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(9.5, "feet"),
  6259. default: true
  6260. }
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6265. {
  6266. side: {
  6267. height: math.unit(6.5, "feet"),
  6268. weight: math.unit(400, "lbs"),
  6269. name: "Side",
  6270. image: {
  6271. source: "./media/characters/lukas/side.svg",
  6272. extra: 7.25 / 6.5
  6273. }
  6274. },
  6275. },
  6276. [
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(6.5, "feet"),
  6280. default: true
  6281. }
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6286. {
  6287. side: {
  6288. height: math.unit(5, "feet"),
  6289. weight: math.unit(3000, "lbs"),
  6290. name: "Side",
  6291. image: {
  6292. source: "./media/characters/louise/side.svg"
  6293. }
  6294. },
  6295. },
  6296. [
  6297. {
  6298. name: "Normal",
  6299. height: math.unit(5, "feet"),
  6300. default: true
  6301. }
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6306. {
  6307. side: {
  6308. height: math.unit(6, "feet"),
  6309. weight: math.unit(150, "lbs"),
  6310. name: "Side",
  6311. image: {
  6312. source: "./media/characters/ramona/side.svg",
  6313. extra: 871/854,
  6314. bottom: 41/912
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(6 + 4/12, "feet")
  6322. },
  6323. {
  6324. name: "Minimacro",
  6325. height: math.unit(5.3, "meters"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Macro",
  6330. height: math.unit(20, "stories")
  6331. },
  6332. {
  6333. name: "Macro+",
  6334. height: math.unit(50, "stories")
  6335. },
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6340. {
  6341. standing: {
  6342. height: math.unit(5.75, "feet"),
  6343. weight: math.unit(160, "lbs"),
  6344. name: "Standing",
  6345. image: {
  6346. source: "./media/characters/deerpuff/standing.svg",
  6347. extra: 682 / 624
  6348. }
  6349. },
  6350. sitting: {
  6351. height: math.unit(5.75 / 1.79, "feet"),
  6352. weight: math.unit(160, "lbs"),
  6353. name: "Sitting",
  6354. image: {
  6355. source: "./media/characters/deerpuff/sitting.svg",
  6356. bottom: 44 / 400,
  6357. extra: 1
  6358. }
  6359. },
  6360. taurLaying: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(400, "lbs"),
  6363. name: "Taur (Laying)",
  6364. image: {
  6365. source: "./media/characters/deerpuff/taur-laying.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Puffball",
  6372. height: math.unit(6, "inches")
  6373. },
  6374. {
  6375. name: "Normalpuff",
  6376. height: math.unit(5.75, "feet")
  6377. },
  6378. {
  6379. name: "Macropuff",
  6380. height: math.unit(1500, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Megapuff",
  6385. height: math.unit(500, "miles")
  6386. },
  6387. {
  6388. name: "Gigapuff",
  6389. height: math.unit(250000, "miles")
  6390. },
  6391. {
  6392. name: "Omegapuff",
  6393. height: math.unit(1000, "lightyears")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6399. {
  6400. stomping: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(170, "lbs"),
  6403. name: "Stomping",
  6404. image: {
  6405. source: "./media/characters/vivian/stomping.svg"
  6406. }
  6407. },
  6408. sitting: {
  6409. height: math.unit(6 / 1.75, "feet"),
  6410. weight: math.unit(170, "lbs"),
  6411. name: "Sitting",
  6412. image: {
  6413. source: "./media/characters/vivian/sitting.svg",
  6414. bottom: 1 / 6.4,
  6415. extra: 1,
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(7, "feet"),
  6423. default: true
  6424. },
  6425. {
  6426. name: "Macro",
  6427. height: math.unit(10, "stories")
  6428. },
  6429. {
  6430. name: "Macro+",
  6431. height: math.unit(30, "stories")
  6432. },
  6433. {
  6434. name: "Megamacro",
  6435. height: math.unit(10, "miles")
  6436. },
  6437. {
  6438. name: "Megamacro+",
  6439. height: math.unit(2750000, "meters")
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(160, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/prince/front.svg",
  6452. extra: 1938/1682,
  6453. bottom: 45/1983
  6454. }
  6455. },
  6456. back: {
  6457. height: math.unit(6, "feet"),
  6458. weight: math.unit(160, "lbs"),
  6459. name: "Back",
  6460. image: {
  6461. source: "./media/characters/prince/back.svg",
  6462. extra: 1955/1726,
  6463. bottom: 6/1961
  6464. }
  6465. },
  6466. },
  6467. [
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(7.75, "feet"),
  6471. default: true
  6472. },
  6473. {
  6474. name: "Not cute",
  6475. height: math.unit(17, "feet")
  6476. },
  6477. {
  6478. name: "I said NOT",
  6479. height: math.unit(91, "feet")
  6480. },
  6481. {
  6482. name: "Please stop",
  6483. height: math.unit(560, "feet")
  6484. },
  6485. {
  6486. name: "What have you done",
  6487. height: math.unit(2200, "feet")
  6488. },
  6489. {
  6490. name: "Deer God",
  6491. height: math.unit(3.6, "miles")
  6492. },
  6493. ]
  6494. ))
  6495. characterMakers.push(() => makeCharacter(
  6496. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6497. {
  6498. standing: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(300, "lbs"),
  6501. name: "Standing",
  6502. image: {
  6503. source: "./media/characters/psymon/standing.svg",
  6504. extra: 1888 / 1810,
  6505. bottom: 0.05
  6506. }
  6507. },
  6508. slithering: {
  6509. height: math.unit(6, "feet"),
  6510. weight: math.unit(300, "lbs"),
  6511. name: "Slithering",
  6512. image: {
  6513. source: "./media/characters/psymon/slithering.svg",
  6514. extra: 1330 / 1224
  6515. }
  6516. },
  6517. slitheringAlt: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(300, "lbs"),
  6520. name: "Slithering (Alt)",
  6521. image: {
  6522. source: "./media/characters/psymon/slithering-alt.svg",
  6523. extra: 1330 / 1224
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(11.25, "feet"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Large",
  6535. height: math.unit(27, "feet")
  6536. },
  6537. {
  6538. name: "Giant",
  6539. height: math.unit(87, "feet")
  6540. },
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(365, "feet")
  6544. },
  6545. {
  6546. name: "Megamacro",
  6547. height: math.unit(3, "miles")
  6548. },
  6549. {
  6550. name: "World Serpent",
  6551. height: math.unit(8000, "miles")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Daimos", species: ["veilhound"], 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/daimos/front.svg",
  6564. extra: 4160 / 3897,
  6565. bottom: 0.021
  6566. }
  6567. }
  6568. },
  6569. [
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(8, "feet"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Big Dog",
  6577. height: math.unit(22, "feet")
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(127, "feet")
  6582. },
  6583. {
  6584. name: "Megamacro",
  6585. height: math.unit(3600, "feet")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6591. {
  6592. side: {
  6593. height: math.unit(6, "feet"),
  6594. weight: math.unit(180, "lbs"),
  6595. name: "Side",
  6596. image: {
  6597. source: "./media/characters/blake/side.svg",
  6598. extra: 1212 / 1120,
  6599. bottom: 0.05
  6600. }
  6601. },
  6602. crouched: {
  6603. height: math.unit(6 * 0.57, "feet"),
  6604. weight: math.unit(180, "lbs"),
  6605. name: "Crouched",
  6606. image: {
  6607. source: "./media/characters/blake/crouched.svg",
  6608. extra: 840 / 587,
  6609. bottom: 0.04
  6610. }
  6611. },
  6612. bent: {
  6613. height: math.unit(6 * 0.75, "feet"),
  6614. weight: math.unit(180, "lbs"),
  6615. name: "Bent",
  6616. image: {
  6617. source: "./media/characters/blake/bent.svg",
  6618. extra: 592 / 544,
  6619. bottom: 0.035
  6620. }
  6621. },
  6622. },
  6623. [
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(8 + 1 / 6, "feet"),
  6627. default: true
  6628. },
  6629. {
  6630. name: "Big Backside",
  6631. height: math.unit(37, "feet")
  6632. },
  6633. {
  6634. name: "Subway Shredder",
  6635. height: math.unit(72, "feet")
  6636. },
  6637. {
  6638. name: "City Carver",
  6639. height: math.unit(1675, "feet")
  6640. },
  6641. {
  6642. name: "Tectonic Tweaker",
  6643. height: math.unit(2300, "miles")
  6644. },
  6645. ]
  6646. ))
  6647. characterMakers.push(() => makeCharacter(
  6648. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6649. {
  6650. front: {
  6651. height: math.unit(6, "feet"),
  6652. weight: math.unit(180, "lbs"),
  6653. name: "Front",
  6654. image: {
  6655. source: "./media/characters/guisetto/front.svg",
  6656. extra: 856 / 817,
  6657. bottom: 0.06
  6658. }
  6659. },
  6660. airborne: {
  6661. height: math.unit(6, "feet"),
  6662. weight: math.unit(180, "lbs"),
  6663. name: "Airborne",
  6664. image: {
  6665. source: "./media/characters/guisetto/airborne.svg",
  6666. extra: 584 / 525
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(10 + 11 / 12, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Large",
  6678. height: math.unit(35, "feet")
  6679. },
  6680. {
  6681. name: "Macro",
  6682. height: math.unit(475, "feet")
  6683. },
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6688. {
  6689. front: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(180, "lbs"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/luxor/front.svg",
  6695. extra: 2940 / 2152
  6696. }
  6697. },
  6698. back: {
  6699. height: math.unit(6, "feet"),
  6700. weight: math.unit(180, "lbs"),
  6701. name: "Back",
  6702. image: {
  6703. source: "./media/characters/luxor/back.svg",
  6704. extra: 1083 / 960
  6705. }
  6706. },
  6707. },
  6708. [
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(5 + 5 / 6, "feet"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Lamp",
  6716. height: math.unit(50, "feet")
  6717. },
  6718. {
  6719. name: "Lämp",
  6720. height: math.unit(300, "feet")
  6721. },
  6722. {
  6723. name: "The sun is a lamp",
  6724. height: math.unit(250000, "miles")
  6725. },
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6730. {
  6731. front: {
  6732. height: math.unit(6, "feet"),
  6733. weight: math.unit(50, "lbs"),
  6734. name: "Front",
  6735. image: {
  6736. source: "./media/characters/huoyan/front.svg"
  6737. }
  6738. },
  6739. side: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(180, "lbs"),
  6742. name: "Side",
  6743. image: {
  6744. source: "./media/characters/huoyan/side.svg"
  6745. }
  6746. },
  6747. },
  6748. [
  6749. {
  6750. name: "Chef",
  6751. height: math.unit(9, "feet")
  6752. },
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(65, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Macro",
  6760. height: math.unit(780, "feet")
  6761. },
  6762. {
  6763. name: "Flaming Mountain",
  6764. height: math.unit(4.8, "miles")
  6765. },
  6766. {
  6767. name: "Celestial",
  6768. height: math.unit(765000, "miles")
  6769. },
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6774. {
  6775. front: {
  6776. height: math.unit(5 + 3 / 4, "feet"),
  6777. weight: math.unit(120, "lbs"),
  6778. name: "Front",
  6779. image: {
  6780. source: "./media/characters/tails/front.svg"
  6781. }
  6782. }
  6783. },
  6784. [
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(5 + 3 / 4, "feet"),
  6788. default: true
  6789. }
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(4, "feet"),
  6797. weight: math.unit(50, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/rainy/front.svg"
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(800, "feet"),
  6808. default: true
  6809. }
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(150, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/rainier/front.svg"
  6821. }
  6822. }
  6823. },
  6824. [
  6825. {
  6826. name: "Micro",
  6827. height: math.unit(2, "mm"),
  6828. default: true
  6829. }
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(8 + 4/12, "feet"),
  6837. weight: math.unit(450, "kilograms"),
  6838. volume: math.unit(5, "cups"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/andy-renard/front.svg",
  6842. extra: 1839/1726,
  6843. bottom: 134/1973
  6844. }
  6845. },
  6846. back: {
  6847. height: math.unit(8 + 4/12, "feet"),
  6848. weight: math.unit(450, "kilograms"),
  6849. volume: math.unit(5, "cups"),
  6850. name: "Back",
  6851. image: {
  6852. source: "./media/characters/andy-renard/back.svg",
  6853. extra: 1838/1710,
  6854. bottom: 105/1943
  6855. }
  6856. },
  6857. },
  6858. [
  6859. {
  6860. name: "Tall",
  6861. height: math.unit(8 + 4/12, "feet")
  6862. },
  6863. {
  6864. name: "Mini Macro",
  6865. height: math.unit(15, "feet"),
  6866. default: true
  6867. },
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(100, "feet")
  6871. },
  6872. {
  6873. name: "Mega Macro",
  6874. height: math.unit(1000, "feet")
  6875. },
  6876. {
  6877. name: "Giga Macro",
  6878. height: math.unit(10, "miles")
  6879. },
  6880. {
  6881. name: "God Macro",
  6882. height: math.unit(1, "multiverse")
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(6, "feet"),
  6891. weight: math.unit(210, "lbs"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/cimmaron/front-sfw.svg",
  6895. extra: 701 / 676,
  6896. bottom: 0.046
  6897. }
  6898. },
  6899. back: {
  6900. height: math.unit(6, "feet"),
  6901. weight: math.unit(210, "lbs"),
  6902. name: "Back",
  6903. image: {
  6904. source: "./media/characters/cimmaron/back-sfw.svg",
  6905. extra: 701 / 676,
  6906. bottom: 0.046
  6907. }
  6908. },
  6909. frontNsfw: {
  6910. height: math.unit(6, "feet"),
  6911. weight: math.unit(210, "lbs"),
  6912. name: "Front (NSFW)",
  6913. image: {
  6914. source: "./media/characters/cimmaron/front-nsfw.svg",
  6915. extra: 701 / 676,
  6916. bottom: 0.046
  6917. }
  6918. },
  6919. backNsfw: {
  6920. height: math.unit(6, "feet"),
  6921. weight: math.unit(210, "lbs"),
  6922. name: "Back (NSFW)",
  6923. image: {
  6924. source: "./media/characters/cimmaron/back-nsfw.svg",
  6925. extra: 701 / 676,
  6926. bottom: 0.046
  6927. }
  6928. },
  6929. dick: {
  6930. height: math.unit(1.714, "feet"),
  6931. name: "Dick",
  6932. image: {
  6933. source: "./media/characters/cimmaron/dick.svg"
  6934. }
  6935. },
  6936. },
  6937. [
  6938. {
  6939. name: "Normal",
  6940. height: math.unit(6, "feet"),
  6941. default: true
  6942. },
  6943. {
  6944. name: "Macro Mayor",
  6945. height: math.unit(350, "meters")
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(200, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/akari/front.svg",
  6958. extra: 962 / 901,
  6959. bottom: 0.04
  6960. }
  6961. }
  6962. },
  6963. [
  6964. {
  6965. name: "Micro",
  6966. height: math.unit(5, "inches"),
  6967. default: true
  6968. },
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(7, "feet")
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(140, "lbs"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/cynosura/front.svg",
  6984. extra: 437/410,
  6985. bottom: 9/446
  6986. }
  6987. },
  6988. back: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(140, "lbs"),
  6991. name: "Back",
  6992. image: {
  6993. source: "./media/characters/cynosura/back.svg",
  6994. extra: 1304/1160,
  6995. bottom: 71/1375
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Micro",
  7002. height: math.unit(4, "inches")
  7003. },
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(5.75, "feet"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Tall",
  7011. height: math.unit(10, "feet")
  7012. },
  7013. {
  7014. name: "Big",
  7015. height: math.unit(20, "feet")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(50, "feet")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(13 + 2/12, "feet"),
  7028. weight: math.unit(800, "kg"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/gin/front.svg",
  7032. extra: 1312/1191,
  7033. bottom: 45/1357
  7034. }
  7035. },
  7036. mouth: {
  7037. height: math.unit(2.39 * 1.8, "feet"),
  7038. name: "Mouth",
  7039. image: {
  7040. source: "./media/characters/gin/mouth.svg"
  7041. }
  7042. },
  7043. hand: {
  7044. height: math.unit(1.57 * 2.19, "feet"),
  7045. name: "Hand",
  7046. image: {
  7047. source: "./media/characters/gin/hand.svg"
  7048. }
  7049. },
  7050. foot: {
  7051. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7052. name: "Foot",
  7053. image: {
  7054. source: "./media/characters/gin/foot.svg"
  7055. }
  7056. },
  7057. sole: {
  7058. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7059. name: "Sole",
  7060. image: {
  7061. source: "./media/characters/gin/sole.svg"
  7062. }
  7063. },
  7064. },
  7065. [
  7066. {
  7067. name: "Very Small",
  7068. height: math.unit(13 + 2 / 12, "feet")
  7069. },
  7070. {
  7071. name: "Micro",
  7072. height: math.unit(600, "miles")
  7073. },
  7074. {
  7075. name: "Regular",
  7076. height: math.unit(20, "earths"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(2.2, "solarradii")
  7082. },
  7083. {
  7084. name: "Teramacro",
  7085. height: math.unit(1.2, "galaxies")
  7086. },
  7087. {
  7088. name: "Omegamacro",
  7089. height: math.unit(200, "universes")
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(6 + 1 / 6, "feet"),
  7098. weight: math.unit(178, "lbs"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/guy/front.svg"
  7102. }
  7103. }
  7104. },
  7105. [
  7106. {
  7107. name: "Normal",
  7108. height: math.unit(6 + 1 / 6, "feet"),
  7109. default: true
  7110. },
  7111. {
  7112. name: "Large",
  7113. height: math.unit(25 + 7 / 12, "feet")
  7114. },
  7115. {
  7116. name: "Macro",
  7117. height: math.unit(60 + 9 / 12, "feet")
  7118. },
  7119. {
  7120. name: "Macro+",
  7121. height: math.unit(246, "feet")
  7122. },
  7123. {
  7124. name: "Macro++",
  7125. height: math.unit(878, "feet")
  7126. }
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(9, "feet"),
  7134. weight: math.unit(800, "lbs"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/tiberius/front.svg",
  7138. extra: 2295 / 2071
  7139. }
  7140. },
  7141. back: {
  7142. height: math.unit(9, "feet"),
  7143. weight: math.unit(800, "lbs"),
  7144. name: "Back",
  7145. image: {
  7146. source: "./media/characters/tiberius/back.svg",
  7147. extra: 2373 / 2160
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(9, "feet"),
  7155. default: true
  7156. }
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7161. {
  7162. front: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(600, "lbs"),
  7165. name: "Front",
  7166. image: {
  7167. source: "./media/characters/surgo/front.svg",
  7168. extra: 3591 / 2227
  7169. }
  7170. },
  7171. back: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(600, "lbs"),
  7174. name: "Back",
  7175. image: {
  7176. source: "./media/characters/surgo/back.svg",
  7177. extra: 3557 / 2228
  7178. }
  7179. },
  7180. laying: {
  7181. height: math.unit(6 * 0.85, "feet"),
  7182. weight: math.unit(600, "lbs"),
  7183. name: "Laying",
  7184. image: {
  7185. source: "./media/characters/surgo/laying.svg"
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(6, "feet"),
  7193. default: true
  7194. }
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7199. {
  7200. side: {
  7201. height: math.unit(6, "feet"),
  7202. weight: math.unit(150, "lbs"),
  7203. name: "Side",
  7204. image: {
  7205. source: "./media/characters/cibus/side.svg",
  7206. extra: 800 / 400
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(6, "feet"),
  7214. default: true
  7215. }
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(240, "lbs"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/nibbles/front.svg"
  7227. }
  7228. },
  7229. side: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(240, "lbs"),
  7232. name: "Side",
  7233. image: {
  7234. source: "./media/characters/nibbles/side.svg"
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(9, "feet"),
  7242. default: true
  7243. }
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7248. {
  7249. side: {
  7250. height: math.unit(5 + 1 / 6, "feet"),
  7251. weight: math.unit(130, "lbs"),
  7252. name: "Side",
  7253. image: {
  7254. source: "./media/characters/rikky/side.svg",
  7255. extra: 851 / 801
  7256. }
  7257. },
  7258. },
  7259. [
  7260. {
  7261. name: "Normal",
  7262. height: math.unit(5 + 1 / 6, "feet")
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(152, "feet"),
  7267. default: true
  7268. },
  7269. {
  7270. name: "Megamacro",
  7271. height: math.unit(7, "miles")
  7272. }
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7277. {
  7278. side: {
  7279. height: math.unit(370, "cm"),
  7280. weight: math.unit(350, "lbs"),
  7281. name: "Side",
  7282. image: {
  7283. source: "./media/characters/malfressa/side.svg"
  7284. }
  7285. },
  7286. walking: {
  7287. height: math.unit(370, "cm"),
  7288. weight: math.unit(350, "lbs"),
  7289. name: "Walking",
  7290. image: {
  7291. source: "./media/characters/malfressa/walking.svg"
  7292. }
  7293. },
  7294. feral: {
  7295. height: math.unit(2500, "cm"),
  7296. weight: math.unit(100000, "lbs"),
  7297. name: "Feral",
  7298. image: {
  7299. source: "./media/characters/malfressa/feral.svg",
  7300. extra: 2108 / 837,
  7301. bottom: 0.02
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Normal",
  7308. height: math.unit(370, "cm")
  7309. },
  7310. {
  7311. name: "Macro",
  7312. height: math.unit(300, "meters"),
  7313. default: true
  7314. }
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7319. {
  7320. front: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(60, "kg"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/jaro/front.svg",
  7326. extra: 845/817,
  7327. bottom: 45/890
  7328. }
  7329. },
  7330. back: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(60, "kg"),
  7333. name: "Back",
  7334. image: {
  7335. source: "./media/characters/jaro/back.svg",
  7336. extra: 847/817,
  7337. bottom: 34/881
  7338. }
  7339. },
  7340. },
  7341. [
  7342. {
  7343. name: "Micro",
  7344. height: math.unit(7, "inches")
  7345. },
  7346. {
  7347. name: "Normal",
  7348. height: math.unit(5.5, "feet"),
  7349. default: true
  7350. },
  7351. {
  7352. name: "Minimacro",
  7353. height: math.unit(20, "feet")
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(200, "meters")
  7358. }
  7359. ]
  7360. ))
  7361. characterMakers.push(() => makeCharacter(
  7362. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7363. {
  7364. front: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(195, "lb"),
  7367. name: "Front",
  7368. image: {
  7369. source: "./media/characters/rogue/front.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(90, "feet"),
  7377. default: true
  7378. },
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7383. {
  7384. standing: {
  7385. height: math.unit(5 + 8 / 12, "feet"),
  7386. weight: math.unit(140, "lb"),
  7387. name: "Standing",
  7388. image: {
  7389. source: "./media/characters/piper/standing.svg",
  7390. extra: 1440/1284,
  7391. bottom: 66/1506
  7392. }
  7393. },
  7394. running: {
  7395. height: math.unit(5 + 8 / 12, "feet"),
  7396. weight: math.unit(140, "lb"),
  7397. name: "Running",
  7398. image: {
  7399. source: "./media/characters/piper/running.svg",
  7400. extra: 3948/3655,
  7401. bottom: 0/3948
  7402. }
  7403. },
  7404. sole: {
  7405. height: math.unit(0.81, "feet"),
  7406. weight: math.unit(2, "kg"),
  7407. name: "Sole",
  7408. image: {
  7409. source: "./media/characters/piper/sole.svg"
  7410. }
  7411. },
  7412. nipple: {
  7413. height: math.unit(0.25, "feet"),
  7414. weight: math.unit(1.5, "lb"),
  7415. name: "Nipple",
  7416. image: {
  7417. source: "./media/characters/piper/nipple.svg"
  7418. }
  7419. },
  7420. head: {
  7421. height: math.unit(1.1, "feet"),
  7422. name: "Head",
  7423. image: {
  7424. source: "./media/characters/piper/head.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Micro",
  7431. height: math.unit(2, "inches")
  7432. },
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(5 + 8 / 12, "feet")
  7436. },
  7437. {
  7438. name: "Macro",
  7439. height: math.unit(250, "feet"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Megamacro",
  7444. height: math.unit(7, "miles")
  7445. },
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(6, "feet"),
  7453. weight: math.unit(220, "lb"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/gemini/front.svg"
  7457. }
  7458. },
  7459. back: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(220, "lb"),
  7462. name: "Back",
  7463. image: {
  7464. source: "./media/characters/gemini/back.svg"
  7465. }
  7466. },
  7467. kneeling: {
  7468. height: math.unit(6 / 1.5, "feet"),
  7469. weight: math.unit(220, "lb"),
  7470. name: "Kneeling",
  7471. image: {
  7472. source: "./media/characters/gemini/kneeling.svg",
  7473. bottom: 0.02
  7474. }
  7475. },
  7476. },
  7477. [
  7478. {
  7479. name: "Macro",
  7480. height: math.unit(300, "meters"),
  7481. default: true
  7482. },
  7483. {
  7484. name: "Megamacro",
  7485. height: math.unit(6900, "meters")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7491. {
  7492. anthro: {
  7493. height: math.unit(2.35, "meters"),
  7494. weight: math.unit(73, "kg"),
  7495. name: "Anthro",
  7496. image: {
  7497. source: "./media/characters/alicia/anthro.svg",
  7498. extra: 2571 / 2385,
  7499. bottom: 75 / 2648
  7500. }
  7501. },
  7502. paw: {
  7503. height: math.unit(1.32, "feet"),
  7504. name: "Paw",
  7505. image: {
  7506. source: "./media/characters/alicia/paw.svg"
  7507. }
  7508. },
  7509. feral: {
  7510. height: math.unit(1.69, "meters"),
  7511. weight: math.unit(73, "kg"),
  7512. name: "Feral",
  7513. image: {
  7514. source: "./media/characters/alicia/feral.svg",
  7515. extra: 2123 / 1715,
  7516. bottom: 222 / 2349
  7517. }
  7518. },
  7519. },
  7520. [
  7521. {
  7522. name: "Normal",
  7523. height: math.unit(2.35, "meters")
  7524. },
  7525. {
  7526. name: "Macro",
  7527. height: math.unit(60, "meters"),
  7528. default: true
  7529. },
  7530. {
  7531. name: "Megamacro",
  7532. height: math.unit(10000, "kilometers")
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7538. {
  7539. front: {
  7540. height: math.unit(7, "feet"),
  7541. weight: math.unit(250, "lbs"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/archy/front.svg"
  7545. }
  7546. }
  7547. },
  7548. [
  7549. {
  7550. name: "Micro",
  7551. height: math.unit(1, "inch")
  7552. },
  7553. {
  7554. name: "Shorty",
  7555. height: math.unit(5, "feet")
  7556. },
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(7, "feet")
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(600, "meters"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Megamacro",
  7568. height: math.unit(1, "mile")
  7569. },
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(1.65, "meters"),
  7577. weight: math.unit(74, "kg"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/berri/front.svg",
  7581. extra: 857 / 837,
  7582. bottom: 18 / 877
  7583. }
  7584. },
  7585. bum: {
  7586. height: math.unit(1.46, "feet"),
  7587. name: "Bum",
  7588. image: {
  7589. source: "./media/characters/berri/bum.svg"
  7590. }
  7591. },
  7592. mouth: {
  7593. height: math.unit(0.44, "feet"),
  7594. name: "Mouth",
  7595. image: {
  7596. source: "./media/characters/berri/mouth.svg"
  7597. }
  7598. },
  7599. paw: {
  7600. height: math.unit(0.826, "feet"),
  7601. name: "Paw",
  7602. image: {
  7603. source: "./media/characters/berri/paw.svg"
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Normal",
  7610. height: math.unit(1.65, "meters")
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(60, "m"),
  7615. default: true
  7616. },
  7617. {
  7618. name: "Megamacro",
  7619. height: math.unit(9.213, "km")
  7620. },
  7621. {
  7622. name: "Planet Eater",
  7623. height: math.unit(489, "megameters")
  7624. },
  7625. {
  7626. name: "Teramacro",
  7627. height: math.unit(2471635000000, "meters")
  7628. },
  7629. {
  7630. name: "Examacro",
  7631. height: math.unit(8.0624e+26, "meters")
  7632. }
  7633. ]
  7634. ))
  7635. characterMakers.push(() => makeCharacter(
  7636. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7637. {
  7638. front: {
  7639. height: math.unit(1.72, "meters"),
  7640. weight: math.unit(68, "kg"),
  7641. name: "Front",
  7642. image: {
  7643. source: "./media/characters/lexi/front.svg"
  7644. }
  7645. }
  7646. },
  7647. [
  7648. {
  7649. name: "Very Smol",
  7650. height: math.unit(10, "mm")
  7651. },
  7652. {
  7653. name: "Micro",
  7654. height: math.unit(6.8, "cm"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Normal",
  7659. height: math.unit(1.72, "m")
  7660. }
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(1.69, "meters"),
  7668. weight: math.unit(68, "kg"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/martin/front.svg",
  7672. extra: 596 / 581
  7673. }
  7674. }
  7675. },
  7676. [
  7677. {
  7678. name: "Micro",
  7679. height: math.unit(6.85, "cm"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(1.69, "m")
  7685. }
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(1.69, "meters"),
  7693. weight: math.unit(68, "kg"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/juno/front.svg"
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Micro",
  7703. height: math.unit(7, "cm")
  7704. },
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(1.89, "m")
  7708. },
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(353, "meters"),
  7712. default: true
  7713. }
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(1.93, "meters"),
  7721. weight: math.unit(83, "kg"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/samantha/front.svg"
  7725. }
  7726. },
  7727. frontClothed: {
  7728. height: math.unit(1.93, "meters"),
  7729. weight: math.unit(83, "kg"),
  7730. name: "Front (Clothed)",
  7731. image: {
  7732. source: "./media/characters/samantha/front-clothed.svg"
  7733. }
  7734. },
  7735. back: {
  7736. height: math.unit(1.93, "meters"),
  7737. weight: math.unit(83, "kg"),
  7738. name: "Back",
  7739. image: {
  7740. source: "./media/characters/samantha/back.svg"
  7741. }
  7742. },
  7743. },
  7744. [
  7745. {
  7746. name: "Normal",
  7747. height: math.unit(1.93, "m")
  7748. },
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(74, "meters"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Macro+",
  7756. height: math.unit(223, "meters"),
  7757. },
  7758. {
  7759. name: "Megamacro",
  7760. height: math.unit(8381, "meters"),
  7761. },
  7762. {
  7763. name: "Megamacro+",
  7764. height: math.unit(12000, "kilometers")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(1.92, "meters"),
  7773. weight: math.unit(80, "kg"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/dr-clay/front.svg"
  7777. }
  7778. },
  7779. frontClothed: {
  7780. height: math.unit(1.92, "meters"),
  7781. weight: math.unit(80, "kg"),
  7782. name: "Front (Clothed)",
  7783. image: {
  7784. source: "./media/characters/dr-clay/front-clothed.svg"
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(1.92, "m")
  7792. },
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(214, "meters"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Macro+",
  7800. height: math.unit(12.237, "meters"),
  7801. },
  7802. {
  7803. name: "Megamacro",
  7804. height: math.unit(557, "megameters"),
  7805. },
  7806. {
  7807. name: "Unimaginable",
  7808. height: math.unit(120e9, "lightyears")
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(2, "meters"),
  7817. weight: math.unit(80, "kg"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7821. }
  7822. }
  7823. },
  7824. [
  7825. {
  7826. name: "Teramacro",
  7827. height: math.unit(500000, "lightyears"),
  7828. default: true
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7834. {
  7835. crux: {
  7836. height: math.unit(2, "meters"),
  7837. weight: math.unit(150, "kg"),
  7838. name: "Crux",
  7839. image: {
  7840. source: "./media/characters/vemus/crux.svg",
  7841. extra: 1074/936,
  7842. bottom: 23/1097
  7843. }
  7844. },
  7845. skunkTanuki: {
  7846. height: math.unit(2, "meters"),
  7847. weight: math.unit(150, "kg"),
  7848. name: "Skunk-Tanuki",
  7849. image: {
  7850. source: "./media/characters/vemus/skunk-tanuki.svg",
  7851. extra: 926/893,
  7852. bottom: 20/946
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(4, "meters"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Big",
  7864. height: math.unit(8, "meters")
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(100, "meters")
  7869. },
  7870. {
  7871. name: "Macro+",
  7872. height: math.unit(1500, "meters")
  7873. },
  7874. {
  7875. name: "Stellar",
  7876. height: math.unit(14e8, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(2, "meters"),
  7885. weight: math.unit(70, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/beherit/front.svg",
  7889. extra: 1234/1109,
  7890. bottom: 55/1289
  7891. }
  7892. }
  7893. },
  7894. [
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(6, "feet")
  7898. },
  7899. {
  7900. name: "Lorg",
  7901. height: math.unit(25, "feet"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Lorger",
  7906. height: math.unit(75, "feet")
  7907. },
  7908. {
  7909. name: "Macro",
  7910. height: math.unit(200, "meters")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(2, "meters"),
  7919. weight: math.unit(150, "kg"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/everett/front.svg",
  7923. extra: 1017/866,
  7924. bottom: 86/1103
  7925. }
  7926. },
  7927. paw: {
  7928. height: math.unit(2 / 3.6, "meters"),
  7929. name: "Paw",
  7930. image: {
  7931. source: "./media/characters/everett/paw.svg"
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(15, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Lorg",
  7943. height: math.unit(70, "feet"),
  7944. default: true
  7945. },
  7946. {
  7947. name: "Lorger",
  7948. height: math.unit(250, "feet")
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(500, "meters")
  7953. },
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(2, "meters"),
  7961. weight: math.unit(86, "kg"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/rose/front.svg",
  7965. extra: 1785/1636,
  7966. bottom: 30/1815
  7967. },
  7968. form: "liom",
  7969. default: true
  7970. },
  7971. frontSporty: {
  7972. height: math.unit(2, "meters"),
  7973. weight: math.unit(86, "kg"),
  7974. name: "Front (Sporty)",
  7975. image: {
  7976. source: "./media/characters/rose/front-sporty.svg",
  7977. extra: 350/335,
  7978. bottom: 10/360
  7979. },
  7980. form: "liom"
  7981. },
  7982. frontAlt: {
  7983. height: math.unit(1.6, "meters"),
  7984. weight: math.unit(86, "kg"),
  7985. name: "Front (Alt)",
  7986. image: {
  7987. source: "./media/characters/rose/front-alt.svg",
  7988. extra: 299/283,
  7989. bottom: 3/302
  7990. },
  7991. form: "liom"
  7992. },
  7993. plush: {
  7994. height: math.unit(2, "meters"),
  7995. weight: math.unit(86/3, "kg"),
  7996. name: "Plush",
  7997. image: {
  7998. source: "./media/characters/rose/plush.svg",
  7999. extra: 361/337,
  8000. bottom: 11/372
  8001. },
  8002. form: "plush",
  8003. default: true
  8004. },
  8005. faeStanding: {
  8006. height: math.unit(10, "cm"),
  8007. weight: math.unit(10, "grams"),
  8008. name: "Standing",
  8009. image: {
  8010. source: "./media/characters/rose/fae-standing.svg",
  8011. extra: 1189/1060,
  8012. bottom: 27/1216
  8013. },
  8014. form: "fae",
  8015. default: true
  8016. },
  8017. faeSitting: {
  8018. height: math.unit(5, "cm"),
  8019. weight: math.unit(10, "grams"),
  8020. name: "Sitting",
  8021. image: {
  8022. source: "./media/characters/rose/fae-sitting.svg",
  8023. extra: 737/577,
  8024. bottom: 356/1093
  8025. },
  8026. form: "fae"
  8027. },
  8028. faePaw: {
  8029. height: math.unit(1.35, "cm"),
  8030. name: "Paw",
  8031. image: {
  8032. source: "./media/characters/rose/fae-paw.svg"
  8033. },
  8034. form: "fae"
  8035. },
  8036. },
  8037. [
  8038. {
  8039. name: "True Micro",
  8040. height: math.unit(9, "cm"),
  8041. form: "liom"
  8042. },
  8043. {
  8044. name: "Micro",
  8045. height: math.unit(16, "cm"),
  8046. form: "liom"
  8047. },
  8048. {
  8049. name: "Normal",
  8050. height: math.unit(1.85, "meters"),
  8051. default: true,
  8052. form: "liom"
  8053. },
  8054. {
  8055. name: "Mini-Macro",
  8056. height: math.unit(5, "meters"),
  8057. form: "liom"
  8058. },
  8059. {
  8060. name: "Macro",
  8061. height: math.unit(15, "meters"),
  8062. form: "liom"
  8063. },
  8064. {
  8065. name: "True Macro",
  8066. height: math.unit(40, "meters"),
  8067. form: "liom"
  8068. },
  8069. {
  8070. name: "City Scale",
  8071. height: math.unit(1, "km"),
  8072. form: "liom"
  8073. },
  8074. {
  8075. name: "Plushie",
  8076. height: math.unit(9, "cm"),
  8077. form: "plush",
  8078. default: true
  8079. },
  8080. {
  8081. name: "Fae",
  8082. height: math.unit(10, "cm"),
  8083. form: "fae",
  8084. default: true
  8085. },
  8086. ],
  8087. {
  8088. "liom": {
  8089. name: "Liom"
  8090. },
  8091. "plush": {
  8092. name: "Plush"
  8093. },
  8094. "fae": {
  8095. name: "Fae Fox",
  8096. default: true
  8097. }
  8098. }
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(2, "meters"),
  8105. weight: math.unit(350, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/regal/front.svg"
  8109. }
  8110. },
  8111. back: {
  8112. height: math.unit(2, "meters"),
  8113. weight: math.unit(350, "lbs"),
  8114. name: "Back",
  8115. image: {
  8116. source: "./media/characters/regal/back.svg"
  8117. }
  8118. },
  8119. },
  8120. [
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(350, "feet"),
  8124. default: true
  8125. }
  8126. ]
  8127. ))
  8128. characterMakers.push(() => makeCharacter(
  8129. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8130. {
  8131. front: {
  8132. height: math.unit(4 + 11 / 12, "feet"),
  8133. weight: math.unit(100, "lbs"),
  8134. name: "Front",
  8135. image: {
  8136. source: "./media/characters/opal/front.svg"
  8137. }
  8138. },
  8139. frontAlt: {
  8140. height: math.unit(4 + 11 / 12, "feet"),
  8141. weight: math.unit(100, "lbs"),
  8142. name: "Front (Alt)",
  8143. image: {
  8144. source: "./media/characters/opal/front-alt.svg"
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Small",
  8151. height: math.unit(4 + 11 / 12, "feet")
  8152. },
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(20, "feet"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(120, "feet")
  8161. },
  8162. {
  8163. name: "Megamacro",
  8164. height: math.unit(80, "miles")
  8165. },
  8166. {
  8167. name: "True Size",
  8168. height: math.unit(100000, "lightyears")
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(6, "feet"),
  8177. weight: math.unit(200, "lbs"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/vector-wuff/front.svg"
  8181. }
  8182. }
  8183. },
  8184. [
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(2.8, "meters")
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(450, "meters"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Megamacro",
  8196. height: math.unit(15, "kilometers")
  8197. }
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(256, "lbs"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/dannik/front.svg"
  8209. }
  8210. }
  8211. },
  8212. [
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(69.57, "meters"),
  8216. default: true
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(6, "feet"),
  8225. weight: math.unit(120, "lbs"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/azura-saharah/front.svg"
  8229. }
  8230. },
  8231. back: {
  8232. height: math.unit(6, "feet"),
  8233. weight: math.unit(120, "lbs"),
  8234. name: "Back",
  8235. image: {
  8236. source: "./media/characters/azura-saharah/back.svg"
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(100, "feet"),
  8244. default: true
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8250. {
  8251. side: {
  8252. height: math.unit(5 + 4 / 12, "feet"),
  8253. weight: math.unit(163, "lbs"),
  8254. name: "Side",
  8255. image: {
  8256. source: "./media/characters/kennedy/side.svg"
  8257. }
  8258. }
  8259. },
  8260. [
  8261. {
  8262. name: "Standard Doggo",
  8263. height: math.unit(5 + 4 / 12, "feet")
  8264. },
  8265. {
  8266. name: "Big Doggo",
  8267. height: math.unit(25 + 3 / 12, "feet"),
  8268. default: true
  8269. },
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8274. {
  8275. front: {
  8276. height: math.unit(5 + 5/12, "feet"),
  8277. weight: math.unit(100, "lbs"),
  8278. name: "Front",
  8279. image: {
  8280. source: "./media/characters/odios-de-lunar/front.svg",
  8281. extra: 1468/1323,
  8282. bottom: 22/1490
  8283. }
  8284. }
  8285. },
  8286. [
  8287. {
  8288. name: "Micro",
  8289. height: math.unit(3, "inches")
  8290. },
  8291. {
  8292. name: "Normal",
  8293. height: math.unit(5.5, "feet"),
  8294. default: true
  8295. },
  8296. {
  8297. name: "Macro",
  8298. height: math.unit(100, "feet")
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8304. {
  8305. back: {
  8306. height: math.unit(6, "feet"),
  8307. weight: math.unit(220, "lbs"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/mandake/back.svg"
  8311. }
  8312. }
  8313. },
  8314. [
  8315. {
  8316. name: "Normal",
  8317. height: math.unit(7, "feet"),
  8318. default: true
  8319. },
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(78, "feet")
  8323. },
  8324. {
  8325. name: "Macro+",
  8326. height: math.unit(300, "meters")
  8327. },
  8328. {
  8329. name: "Macro++",
  8330. height: math.unit(2400, "feet")
  8331. },
  8332. {
  8333. name: "Megamacro",
  8334. height: math.unit(5167, "meters")
  8335. },
  8336. {
  8337. name: "Gigamacro",
  8338. height: math.unit(41769, "miles")
  8339. },
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8344. {
  8345. front: {
  8346. height: math.unit(6, "feet"),
  8347. weight: math.unit(120, "lbs"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/yozey/front.svg"
  8351. }
  8352. },
  8353. frontAlt: {
  8354. height: math.unit(6, "feet"),
  8355. weight: math.unit(120, "lbs"),
  8356. name: "Front (Alt)",
  8357. image: {
  8358. source: "./media/characters/yozey/front-alt.svg"
  8359. }
  8360. },
  8361. side: {
  8362. height: math.unit(6, "feet"),
  8363. weight: math.unit(120, "lbs"),
  8364. name: "Side",
  8365. image: {
  8366. source: "./media/characters/yozey/side.svg"
  8367. }
  8368. },
  8369. },
  8370. [
  8371. {
  8372. name: "Micro",
  8373. height: math.unit(3, "inches"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(6, "feet")
  8379. }
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8384. {
  8385. front: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(103, "lbs"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/valeska-voss/front.svg"
  8391. }
  8392. }
  8393. },
  8394. [
  8395. {
  8396. name: "Mini-Sized Sub",
  8397. height: math.unit(3.1, "inches")
  8398. },
  8399. {
  8400. name: "Mid-Sized Sub",
  8401. height: math.unit(6.2, "inches")
  8402. },
  8403. {
  8404. name: "Full-Sized Sub",
  8405. height: math.unit(9.3, "inches")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(5 + 2 / 12, "foot"),
  8410. default: true
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(160, "lbs"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/gene-zeta/front.svg",
  8423. extra: 3006 / 2826,
  8424. bottom: 182 / 3188
  8425. }
  8426. }
  8427. },
  8428. [
  8429. {
  8430. name: "Micro",
  8431. height: math.unit(6, "inches")
  8432. },
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(5 + 11 / 12, "foot"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Macro",
  8440. height: math.unit(140, "feet")
  8441. },
  8442. {
  8443. name: "Supercharged",
  8444. height: math.unit(2500, "feet")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(6, "feet"),
  8453. weight: math.unit(350, "lbs"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/razinox/front.svg",
  8457. extra: 1686 / 1548,
  8458. bottom: 28.2 / 1868
  8459. }
  8460. },
  8461. back: {
  8462. height: math.unit(6, "feet"),
  8463. weight: math.unit(350, "lbs"),
  8464. name: "Back",
  8465. image: {
  8466. source: "./media/characters/razinox/back.svg",
  8467. extra: 1660 / 1590,
  8468. bottom: 15 / 1665
  8469. }
  8470. },
  8471. },
  8472. [
  8473. {
  8474. name: "Normal",
  8475. height: math.unit(10 + 8 / 12, "foot")
  8476. },
  8477. {
  8478. name: "Minimacro",
  8479. height: math.unit(15, "foot")
  8480. },
  8481. {
  8482. name: "Macro",
  8483. height: math.unit(60, "foot"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Megamacro",
  8488. height: math.unit(5, "miles")
  8489. },
  8490. {
  8491. name: "Gigamacro",
  8492. height: math.unit(6000, "miles")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(6, "feet"),
  8501. weight: math.unit(150, "lbs"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/cobalt/front.svg"
  8505. }
  8506. }
  8507. },
  8508. [
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(8 + 1 / 12, "foot")
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(111, "foot"),
  8516. default: true
  8517. },
  8518. {
  8519. name: "Supracosmic",
  8520. height: math.unit(1e42, "feet")
  8521. },
  8522. ]
  8523. ))
  8524. characterMakers.push(() => makeCharacter(
  8525. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8526. {
  8527. front: {
  8528. height: math.unit(5, "inches"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/amanda/front.svg",
  8532. extra: 926/791,
  8533. bottom: 38/964
  8534. }
  8535. },
  8536. back: {
  8537. height: math.unit(5, "inches"),
  8538. name: "Back",
  8539. image: {
  8540. source: "./media/characters/amanda/back.svg",
  8541. extra: 909/805,
  8542. bottom: 43/952
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(5, "inches"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(2.75, "meters"),
  8559. weight: math.unit(1200, "lb"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/teal/front.svg",
  8563. extra: 2463 / 2320,
  8564. bottom: 166 / 2629
  8565. }
  8566. },
  8567. back: {
  8568. height: math.unit(2.75, "meters"),
  8569. weight: math.unit(1200, "lb"),
  8570. name: "Back",
  8571. image: {
  8572. source: "./media/characters/teal/back.svg",
  8573. extra: 2580 / 2489,
  8574. bottom: 151 / 2731
  8575. }
  8576. },
  8577. sitting: {
  8578. height: math.unit(1.9, "meters"),
  8579. weight: math.unit(1200, "lb"),
  8580. name: "Sitting",
  8581. image: {
  8582. source: "./media/characters/teal/sitting.svg",
  8583. extra: 623 / 590,
  8584. bottom: 121 / 744
  8585. }
  8586. },
  8587. standing: {
  8588. height: math.unit(2.75, "meters"),
  8589. weight: math.unit(1200, "lb"),
  8590. name: "Standing",
  8591. image: {
  8592. source: "./media/characters/teal/standing.svg",
  8593. extra: 923 / 893,
  8594. bottom: 60 / 983
  8595. }
  8596. },
  8597. stretching: {
  8598. height: math.unit(3.65, "meters"),
  8599. weight: math.unit(1200, "lb"),
  8600. name: "Stretching",
  8601. image: {
  8602. source: "./media/characters/teal/stretching.svg",
  8603. extra: 1276 / 1244,
  8604. bottom: 0 / 1276
  8605. }
  8606. },
  8607. legged: {
  8608. height: math.unit(1.3, "meters"),
  8609. weight: math.unit(100, "lb"),
  8610. name: "Legged",
  8611. image: {
  8612. source: "./media/characters/teal/legged.svg",
  8613. extra: 462 / 437,
  8614. bottom: 24 / 486
  8615. }
  8616. },
  8617. naga: {
  8618. height: math.unit(5.4, "meters"),
  8619. weight: math.unit(4000, "lb"),
  8620. name: "Naga",
  8621. image: {
  8622. source: "./media/characters/teal/naga.svg",
  8623. extra: 1902 / 1858,
  8624. bottom: 0 / 1902
  8625. }
  8626. },
  8627. hand: {
  8628. height: math.unit(0.52, "meters"),
  8629. name: "Hand",
  8630. image: {
  8631. source: "./media/characters/teal/hand.svg"
  8632. }
  8633. },
  8634. maw: {
  8635. height: math.unit(0.43, "meters"),
  8636. name: "Maw",
  8637. image: {
  8638. source: "./media/characters/teal/maw.svg"
  8639. }
  8640. },
  8641. slit: {
  8642. height: math.unit(0.25, "meters"),
  8643. name: "Slit",
  8644. image: {
  8645. source: "./media/characters/teal/slit.svg"
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(2.75, "meters"),
  8653. default: true
  8654. },
  8655. {
  8656. name: "Macro",
  8657. height: math.unit(300, "feet")
  8658. },
  8659. {
  8660. name: "Macro+",
  8661. height: math.unit(2000, "feet")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8667. {
  8668. frontCat: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(180, "lbs"),
  8671. name: "Front (Cat)",
  8672. image: {
  8673. source: "./media/characters/ravin-amulet/front-cat.svg"
  8674. }
  8675. },
  8676. frontCatAlt: {
  8677. height: math.unit(6, "feet"),
  8678. weight: math.unit(180, "lbs"),
  8679. name: "Front (Alt, Cat)",
  8680. image: {
  8681. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8682. }
  8683. },
  8684. frontWerewolf: {
  8685. height: math.unit(6 * 1.2, "feet"),
  8686. weight: math.unit(225, "lbs"),
  8687. name: "Front (Werewolf)",
  8688. image: {
  8689. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8690. }
  8691. },
  8692. backWerewolf: {
  8693. height: math.unit(6 * 1.2, "feet"),
  8694. weight: math.unit(225, "lbs"),
  8695. name: "Back (Werewolf)",
  8696. image: {
  8697. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Nano",
  8704. height: math.unit(1, "micrometer")
  8705. },
  8706. {
  8707. name: "Micro",
  8708. height: math.unit(1, "inch")
  8709. },
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(6, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(60, "feet")
  8718. }
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(6, "feet"),
  8726. weight: math.unit(165, "lbs"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/fluoresce/front.svg"
  8730. }
  8731. }
  8732. },
  8733. [
  8734. {
  8735. name: "Micro",
  8736. height: math.unit(6, "cm")
  8737. },
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(5 + 7 / 12, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(56, "feet")
  8746. },
  8747. {
  8748. name: "Megamacro",
  8749. height: math.unit(1.9, "miles")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(9 + 6 / 12, "feet"),
  8758. weight: math.unit(523, "lbs"),
  8759. name: "Side",
  8760. image: {
  8761. source: "./media/characters/aurora/side.svg",
  8762. extra: 474/393,
  8763. bottom: 5/479
  8764. }
  8765. }
  8766. },
  8767. [
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(9 + 6 / 12, "feet")
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(96, "feet"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Macro+",
  8779. height: math.unit(243, "feet")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(194, "cm"),
  8788. weight: math.unit(90, "kg"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/ranek/front.svg",
  8792. extra: 1862/1791,
  8793. bottom: 80/1942
  8794. }
  8795. },
  8796. back: {
  8797. height: math.unit(194, "cm"),
  8798. weight: math.unit(90, "kg"),
  8799. name: "Back",
  8800. image: {
  8801. source: "./media/characters/ranek/back.svg",
  8802. extra: 1853/1787,
  8803. bottom: 74/1927
  8804. }
  8805. },
  8806. feral: {
  8807. height: math.unit(30, "cm"),
  8808. weight: math.unit(1.6, "lbs"),
  8809. name: "Feral",
  8810. image: {
  8811. source: "./media/characters/ranek/feral.svg",
  8812. extra: 990/631,
  8813. bottom: 29/1019
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(194, "cm"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Macro",
  8825. height: math.unit(100, "meters")
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8831. {
  8832. front: {
  8833. height: math.unit(5 + 6 / 12, "feet"),
  8834. weight: math.unit(153, "lbs"),
  8835. name: "Front",
  8836. image: {
  8837. source: "./media/characters/andrew-cooper/front.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Nano",
  8844. height: math.unit(1, "mm")
  8845. },
  8846. {
  8847. name: "Micro",
  8848. height: math.unit(2, "inches")
  8849. },
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(5 + 6 / 12, "feet"),
  8853. default: true
  8854. }
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(6, "feet"),
  8862. weight: math.unit(180, "lbs"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/akane-sato/front.svg",
  8866. extra: 1219 / 1140
  8867. }
  8868. },
  8869. back: {
  8870. height: math.unit(6, "feet"),
  8871. weight: math.unit(180, "lbs"),
  8872. name: "Back",
  8873. image: {
  8874. source: "./media/characters/akane-sato/back.svg",
  8875. extra: 1219 / 1170
  8876. }
  8877. },
  8878. },
  8879. [
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(2.5, "meters")
  8883. },
  8884. {
  8885. name: "Macro",
  8886. height: math.unit(250, "meters"),
  8887. default: true
  8888. },
  8889. {
  8890. name: "Megamacro",
  8891. height: math.unit(25, "km")
  8892. },
  8893. ]
  8894. ))
  8895. characterMakers.push(() => makeCharacter(
  8896. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8897. {
  8898. front: {
  8899. height: math.unit(6, "feet"),
  8900. weight: math.unit(65, "kg"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/rook/front.svg",
  8904. extra: 960 / 950
  8905. }
  8906. }
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(8.8, "feet")
  8912. },
  8913. {
  8914. name: "Macro",
  8915. height: math.unit(88, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Megamacro",
  8920. height: math.unit(8, "miles")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(12 + 2 / 12, "feet"),
  8929. weight: math.unit(808, "lbs"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/prodigy/front.svg"
  8933. }
  8934. }
  8935. },
  8936. [
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(12 + 2 / 12, "feet"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Macro",
  8944. height: math.unit(143, "feet")
  8945. },
  8946. {
  8947. name: "Macro+",
  8948. height: math.unit(400, "feet")
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(225, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/daniel/front.svg"
  8961. }
  8962. },
  8963. leaning: {
  8964. height: math.unit(6, "feet"),
  8965. weight: math.unit(225, "lbs"),
  8966. name: "Leaning",
  8967. image: {
  8968. source: "./media/characters/daniel/leaning.svg"
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(1000, "feet"),
  8976. default: true
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(88, "lbs"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/chiros/front.svg",
  8989. extra: 306 / 226
  8990. }
  8991. },
  8992. side: {
  8993. height: math.unit(6, "feet"),
  8994. weight: math.unit(88, "lbs"),
  8995. name: "Side",
  8996. image: {
  8997. source: "./media/characters/chiros/side.svg",
  8998. extra: 306 / 226
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(6, "cm"),
  9006. default: true
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9012. {
  9013. front: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(100, "lbs"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/selka/front.svg",
  9019. extra: 947 / 887
  9020. }
  9021. }
  9022. },
  9023. [
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(5, "cm"),
  9027. default: true
  9028. },
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(8 + 3 / 12, "feet"),
  9036. weight: math.unit(424, "lbs"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/verin/front.svg",
  9040. extra: 1845 / 1550
  9041. }
  9042. },
  9043. frontArmored: {
  9044. height: math.unit(8 + 3 / 12, "feet"),
  9045. weight: math.unit(424, "lbs"),
  9046. name: "Front (Armored)",
  9047. image: {
  9048. source: "./media/characters/verin/front-armor.svg",
  9049. extra: 1845 / 1550,
  9050. bottom: 0.01
  9051. }
  9052. },
  9053. back: {
  9054. height: math.unit(8 + 3 / 12, "feet"),
  9055. weight: math.unit(424, "lbs"),
  9056. name: "Back",
  9057. image: {
  9058. source: "./media/characters/verin/back.svg",
  9059. bottom: 0.1,
  9060. extra: 1
  9061. }
  9062. },
  9063. foot: {
  9064. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9065. name: "Foot",
  9066. image: {
  9067. source: "./media/characters/verin/foot.svg"
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(8 + 3 / 12, "feet")
  9075. },
  9076. {
  9077. name: "Minimacro",
  9078. height: math.unit(21, "feet"),
  9079. default: true
  9080. },
  9081. {
  9082. name: "Macro",
  9083. height: math.unit(626, "feet")
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(2.718, "meters"),
  9092. weight: math.unit(150, "lbs"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/sovrim-terraquian/front.svg",
  9096. extra: 1752/1689,
  9097. bottom: 36/1788
  9098. }
  9099. },
  9100. back: {
  9101. height: math.unit(2.718, "meters"),
  9102. weight: math.unit(150, "lbs"),
  9103. name: "Back",
  9104. image: {
  9105. source: "./media/characters/sovrim-terraquian/back.svg",
  9106. extra: 1698/1657,
  9107. bottom: 58/1756
  9108. }
  9109. },
  9110. tongue: {
  9111. height: math.unit(2.865, "feet"),
  9112. name: "Tongue",
  9113. image: {
  9114. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9115. }
  9116. },
  9117. hand: {
  9118. height: math.unit(1.61, "feet"),
  9119. name: "Hand",
  9120. image: {
  9121. source: "./media/characters/sovrim-terraquian/hand.svg"
  9122. }
  9123. },
  9124. foot: {
  9125. height: math.unit(1.05, "feet"),
  9126. name: "Foot",
  9127. image: {
  9128. source: "./media/characters/sovrim-terraquian/foot.svg"
  9129. }
  9130. },
  9131. footAlt: {
  9132. height: math.unit(0.88, "feet"),
  9133. name: "Foot (Alt)",
  9134. image: {
  9135. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Micro",
  9142. height: math.unit(2, "inches")
  9143. },
  9144. {
  9145. name: "Small",
  9146. height: math.unit(1, "meter")
  9147. },
  9148. {
  9149. name: "Normal",
  9150. height: math.unit(Math.E, "meters"),
  9151. default: true
  9152. },
  9153. {
  9154. name: "Macro",
  9155. height: math.unit(20, "meters")
  9156. },
  9157. {
  9158. name: "Macro+",
  9159. height: math.unit(400, "meters")
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(7, "feet"),
  9168. weight: math.unit(489, "lbs"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/reece-silvermane/front.svg",
  9172. bottom: 0.02,
  9173. extra: 1
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Macro",
  9180. height: math.unit(1.5, "miles"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9187. {
  9188. front: {
  9189. height: math.unit(6, "feet"),
  9190. weight: math.unit(78, "kg"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/kane/front.svg",
  9194. extra: 978 / 899
  9195. }
  9196. },
  9197. back: {
  9198. height: math.unit(6, "feet"),
  9199. weight: math.unit(78, "kg"),
  9200. name: "Back",
  9201. image: {
  9202. source: "./media/characters/kane/back.svg",
  9203. extra: 1966/1800,
  9204. bottom: 0/1966
  9205. }
  9206. },
  9207. head: {
  9208. height: math.unit(1.4, "feet"),
  9209. name: "Head",
  9210. image: {
  9211. source: "./media/characters/kane/head.svg"
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(2.1, "m"),
  9219. },
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(1, "km"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(200, "kg"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/tegon/front.svg",
  9236. bottom: 0.01,
  9237. extra: 1
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Micro",
  9244. height: math.unit(1, "inch")
  9245. },
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(6 + 3 / 12, "feet"),
  9249. default: true
  9250. },
  9251. {
  9252. name: "Macro",
  9253. height: math.unit(300, "feet")
  9254. },
  9255. {
  9256. name: "Megamacro",
  9257. height: math.unit(69, "miles")
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9263. {
  9264. side: {
  9265. height: math.unit(6, "feet"),
  9266. weight: math.unit(2304, "lbs"),
  9267. name: "Side",
  9268. image: {
  9269. source: "./media/characters/arcturax/side.svg",
  9270. extra: 790 / 376,
  9271. bottom: 0.01
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Micro",
  9278. height: math.unit(2, "inch")
  9279. },
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(6, "feet")
  9283. },
  9284. {
  9285. name: "Macro",
  9286. height: math.unit(39, "feet"),
  9287. default: true
  9288. },
  9289. {
  9290. name: "Megamacro",
  9291. height: math.unit(7, "miles")
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(50, "lbs"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/sentri/front.svg",
  9304. extra: 1750 / 1570,
  9305. bottom: 0.025
  9306. }
  9307. },
  9308. frontAlt: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(50, "lbs"),
  9311. name: "Front (Alt)",
  9312. image: {
  9313. source: "./media/characters/sentri/front-alt.svg",
  9314. extra: 1750 / 1570,
  9315. bottom: 0.025
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(15, "feet"),
  9323. default: true
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(2500, "feet")
  9328. }
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9333. {
  9334. front: {
  9335. height: math.unit(5 + 8 / 12, "feet"),
  9336. weight: math.unit(130, "lbs"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/corvin/front.svg",
  9340. extra: 1803 / 1629
  9341. }
  9342. },
  9343. frontShirt: {
  9344. height: math.unit(5 + 8 / 12, "feet"),
  9345. weight: math.unit(130, "lbs"),
  9346. name: "Front (Shirt)",
  9347. image: {
  9348. source: "./media/characters/corvin/front-shirt.svg",
  9349. extra: 1803 / 1629
  9350. }
  9351. },
  9352. frontPoncho: {
  9353. height: math.unit(5 + 8 / 12, "feet"),
  9354. weight: math.unit(130, "lbs"),
  9355. name: "Front (Poncho)",
  9356. image: {
  9357. source: "./media/characters/corvin/front-poncho.svg",
  9358. extra: 1803 / 1629
  9359. }
  9360. },
  9361. side: {
  9362. height: math.unit(5 + 8 / 12, "feet"),
  9363. weight: math.unit(130, "lbs"),
  9364. name: "Side",
  9365. image: {
  9366. source: "./media/characters/corvin/side.svg",
  9367. extra: 1012 / 945
  9368. }
  9369. },
  9370. back: {
  9371. height: math.unit(5 + 8 / 12, "feet"),
  9372. weight: math.unit(130, "lbs"),
  9373. name: "Back",
  9374. image: {
  9375. source: "./media/characters/corvin/back.svg",
  9376. extra: 1803 / 1629
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Micro",
  9383. height: math.unit(3, "inches")
  9384. },
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(5 + 8 / 12, "feet")
  9388. },
  9389. {
  9390. name: "Macro",
  9391. height: math.unit(300, "feet"),
  9392. default: true
  9393. },
  9394. {
  9395. name: "Megamacro",
  9396. height: math.unit(500, "miles")
  9397. }
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(6, "feet"),
  9405. weight: math.unit(135, "lbs"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/q/front.svg",
  9409. extra: 854 / 752,
  9410. bottom: 0.005
  9411. }
  9412. },
  9413. back: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(130, "lbs"),
  9416. name: "Back",
  9417. image: {
  9418. source: "./media/characters/q/back.svg",
  9419. extra: 854 / 752
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(90, "feet"),
  9427. default: true
  9428. },
  9429. {
  9430. name: "Extra Macro",
  9431. height: math.unit(300, "feet"),
  9432. },
  9433. {
  9434. name: "BIG WALF",
  9435. height: math.unit(750, "feet"),
  9436. },
  9437. ]
  9438. ))
  9439. characterMakers.push(() => makeCharacter(
  9440. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9441. {
  9442. front: {
  9443. height: math.unit(3, "feet"),
  9444. weight: math.unit(28, "lbs"),
  9445. name: "Front",
  9446. image: {
  9447. source: "./media/characters/citrine/front.svg"
  9448. }
  9449. }
  9450. },
  9451. [
  9452. {
  9453. name: "Normal",
  9454. height: math.unit(3, "feet"),
  9455. default: true
  9456. }
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9461. {
  9462. front: {
  9463. height: math.unit(14, "feet"),
  9464. weight: math.unit(1450, "kg"),
  9465. preyCapacity: math.unit(15, "people"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/aura-starwind/front.svg",
  9469. extra: 1440/1327,
  9470. bottom: 11/1451
  9471. }
  9472. },
  9473. side: {
  9474. height: math.unit(14, "feet"),
  9475. weight: math.unit(1450, "kg"),
  9476. preyCapacity: math.unit(15, "people"),
  9477. name: "Side",
  9478. image: {
  9479. source: "./media/characters/aura-starwind/side.svg",
  9480. extra: 1654 / 1497
  9481. }
  9482. },
  9483. taur: {
  9484. height: math.unit(18, "feet"),
  9485. weight: math.unit(5500, "kg"),
  9486. preyCapacity: math.unit(50, "people"),
  9487. name: "Taur",
  9488. image: {
  9489. source: "./media/characters/aura-starwind/taur.svg",
  9490. extra: 1760 / 1650
  9491. }
  9492. },
  9493. feral: {
  9494. height: math.unit(46, "feet"),
  9495. weight: math.unit(25000, "kg"),
  9496. preyCapacity: math.unit(120, "people"),
  9497. name: "Feral",
  9498. image: {
  9499. source: "./media/characters/aura-starwind/feral.svg"
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(14, "feet"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Macro",
  9511. height: math.unit(50, "meters")
  9512. },
  9513. {
  9514. name: "Megamacro",
  9515. height: math.unit(5000, "meters")
  9516. },
  9517. {
  9518. name: "Gigamacro",
  9519. height: math.unit(100000, "kilometers")
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(2 + 7 / 12, "feet"),
  9528. weight: math.unit(32, "lbs"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/rivet/front.svg",
  9532. extra: 1716 / 1658,
  9533. bottom: 0.03
  9534. }
  9535. },
  9536. foot: {
  9537. height: math.unit(0.551, "feet"),
  9538. name: "Rivet's Foot",
  9539. image: {
  9540. source: "./media/characters/rivet/foot.svg"
  9541. },
  9542. rename: true
  9543. }
  9544. },
  9545. [
  9546. {
  9547. name: "Micro",
  9548. height: math.unit(1.5, "inches"),
  9549. },
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(2 + 7 / 12, "feet"),
  9553. default: true
  9554. },
  9555. {
  9556. name: "Macro",
  9557. height: math.unit(85, "feet")
  9558. },
  9559. {
  9560. name: "Megamacro",
  9561. height: math.unit(2.2, "km")
  9562. }
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9567. {
  9568. front: {
  9569. height: math.unit(5 + 9 / 12, "feet"),
  9570. weight: math.unit(150, "lbs"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/coffee/front.svg",
  9574. extra: 946/880,
  9575. bottom: 66/1012
  9576. }
  9577. },
  9578. foot: {
  9579. height: math.unit(1.29, "feet"),
  9580. name: "Foot",
  9581. image: {
  9582. source: "./media/characters/coffee/foot.svg"
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Micro",
  9589. height: math.unit(2, "inches"),
  9590. },
  9591. {
  9592. name: "Normal",
  9593. height: math.unit(5 + 9 / 12, "feet"),
  9594. default: true
  9595. },
  9596. {
  9597. name: "Macro",
  9598. height: math.unit(800, "feet")
  9599. },
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(25, "miles")
  9603. }
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(6, "feet"),
  9611. weight: math.unit(200, "lbs"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/chari-gal/front.svg",
  9615. extra: 735/649,
  9616. bottom: 55/790
  9617. },
  9618. form: "normal",
  9619. default: true
  9620. },
  9621. back: {
  9622. height: math.unit(6, "feet"),
  9623. weight: math.unit(200, "lb"),
  9624. name: "Back",
  9625. image: {
  9626. source: "./media/characters/chari-gal/back.svg",
  9627. extra: 762/666,
  9628. bottom: 31/793
  9629. },
  9630. form: "normal"
  9631. },
  9632. mouth: {
  9633. height: math.unit(1.35, "feet"),
  9634. name: "Mouth",
  9635. image: {
  9636. source: "./media/characters/chari-gal/mouth.svg"
  9637. },
  9638. form: "normal"
  9639. },
  9640. gigantamax: {
  9641. height: math.unit(6 * 16, "feet"),
  9642. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9643. name: "Gigantamax",
  9644. image: {
  9645. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9646. extra: 1507/1149,
  9647. bottom: 254/1761
  9648. },
  9649. form: "gigantamax",
  9650. default: true
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(5 + 7 / 12, "feet"),
  9657. form: "normal",
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(200, "feet"),
  9662. default: true,
  9663. form: "normal"
  9664. },
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9668. form: "gigantamax",
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(16 * 200, "feet"),
  9673. default: true,
  9674. form: "gigantamax"
  9675. },
  9676. ],
  9677. {
  9678. "normal": {
  9679. name: "Normal",
  9680. default: true
  9681. },
  9682. "gigantamax": {
  9683. name: "Gigantamax",
  9684. },
  9685. }
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(6, "feet"),
  9692. weight: math.unit(150, "lbs"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/nova/front.svg",
  9696. extra: 5000 / 4722,
  9697. bottom: 0.02
  9698. }
  9699. }
  9700. },
  9701. [
  9702. {
  9703. name: "Micro-",
  9704. height: math.unit(0.8, "inches")
  9705. },
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(2, "inches"),
  9709. default: true
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9715. {
  9716. koboldFront: {
  9717. height: math.unit(3 + 1 / 12, "feet"),
  9718. weight: math.unit(21.7, "lbs"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/argent/kobold-front.svg",
  9722. extra: 1471 / 1331,
  9723. bottom: 100.8 / 1575.5
  9724. },
  9725. form: "kobold",
  9726. default: true
  9727. },
  9728. dragonFront: {
  9729. height: math.unit(75, "inches"),
  9730. name: "Front",
  9731. image: {
  9732. source: "./media/characters/argent/dragon-front.svg",
  9733. extra: 1389/1248,
  9734. bottom: 54/1443
  9735. },
  9736. form: "dragon",
  9737. },
  9738. dragonBack: {
  9739. height: math.unit(75, "inches"),
  9740. name: "Back",
  9741. image: {
  9742. source: "./media/characters/argent/dragon-back.svg",
  9743. extra: 1399/1271,
  9744. bottom: 23/1422
  9745. },
  9746. form: "dragon",
  9747. },
  9748. dragonDressed: {
  9749. height: math.unit(75, "inches"),
  9750. name: "Dressed",
  9751. image: {
  9752. source: "./media/characters/argent/dragon-dressed.svg",
  9753. extra: 1350/1215,
  9754. bottom: 26/1376
  9755. },
  9756. form: "dragon"
  9757. },
  9758. dragonHead: {
  9759. height: math.unit(23.5, "inches"),
  9760. name: "Head",
  9761. image: {
  9762. source: "./media/characters/argent/dragon-head.svg"
  9763. },
  9764. form: "dragon",
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Micro",
  9770. height: math.unit(2, "inches"),
  9771. form: "kobold",
  9772. },
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(3 + 1 / 12, "feet"),
  9776. form: "kobold",
  9777. default: true
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(120, "feet"),
  9782. form: "kobold",
  9783. },
  9784. {
  9785. name: "Speck",
  9786. height: math.unit(1, "mm"),
  9787. form: "dragon",
  9788. },
  9789. {
  9790. name: "Tiny",
  9791. height: math.unit(1, "cm"),
  9792. form: "dragon",
  9793. },
  9794. {
  9795. name: "Micro",
  9796. height: math.unit(5, "cm"),
  9797. form: "dragon",
  9798. },
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(75, "inches"),
  9802. form: "dragon",
  9803. default: true
  9804. },
  9805. {
  9806. name: "Extra Tall",
  9807. height: math.unit(9, "feet"),
  9808. form: "dragon",
  9809. },
  9810. {
  9811. name: "Inconvenient",
  9812. height: math.unit(5, "meters"),
  9813. form: "dragon",
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(70, "meters"),
  9818. form: "dragon",
  9819. },
  9820. {
  9821. name: "Macro+",
  9822. height: math.unit(250, "meters"),
  9823. form: "dragon",
  9824. },
  9825. {
  9826. name: "Megamacro",
  9827. height: math.unit(20, "km"),
  9828. form: "dragon",
  9829. },
  9830. {
  9831. name: "Mountainous",
  9832. height: math.unit(100, "km"),
  9833. form: "dragon",
  9834. },
  9835. {
  9836. name: "Continental",
  9837. height: math.unit(2, "megameters"),
  9838. form: "dragon",
  9839. },
  9840. {
  9841. name: "Too Big",
  9842. height: math.unit(900, "megameters"),
  9843. form: "dragon",
  9844. },
  9845. ],
  9846. {
  9847. "kobold": {
  9848. name: "Kobold",
  9849. default: true
  9850. },
  9851. "dragon": {
  9852. name: "Dragon",
  9853. },
  9854. }
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9858. {
  9859. lamp: {
  9860. height: math.unit(7 * 1559 / 989, "feet"),
  9861. name: "Magic Lamp",
  9862. image: {
  9863. source: "./media/characters/mira-al-cul/lamp.svg",
  9864. extra: 1617 / 1559
  9865. }
  9866. },
  9867. front: {
  9868. height: math.unit(7, "feet"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/mira-al-cul/front.svg",
  9872. extra: 1044 / 990
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Heavily Restricted",
  9879. height: math.unit(7 * 1559 / 989, "feet")
  9880. },
  9881. {
  9882. name: "Freshly Freed",
  9883. height: math.unit(50 * 1559 / 989, "feet")
  9884. },
  9885. {
  9886. name: "World Encompassing",
  9887. height: math.unit(10000 * 1559 / 989, "miles")
  9888. },
  9889. {
  9890. name: "Galactic",
  9891. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9892. },
  9893. {
  9894. name: "Palmed Universe",
  9895. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9896. default: true
  9897. },
  9898. {
  9899. name: "Multiversal Matriarch",
  9900. height: math.unit(8.87e10, "yottameters")
  9901. },
  9902. {
  9903. name: "Void Mother",
  9904. height: math.unit(3.14e110, "yottaparsecs")
  9905. },
  9906. {
  9907. name: "Toying with Transcendence",
  9908. height: math.unit(1e307, "meters")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9914. {
  9915. front: {
  9916. height: math.unit(17 + 1 / 12, "feet"),
  9917. weight: math.unit(476.2 * 5, "lbs"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/kuro-shi-uchū/front.svg",
  9921. extra: 2329 / 1835,
  9922. bottom: 0.02
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(2, "inches")
  9930. },
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(12, "meters")
  9934. },
  9935. {
  9936. name: "Planetary",
  9937. height: math.unit(0.00929, "AU"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Universal",
  9942. height: math.unit(20, "gigaparsecs")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9948. {
  9949. front: {
  9950. height: math.unit(5 + 2 / 12, "feet"),
  9951. weight: math.unit(120, "lbs"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/katherine/front.svg",
  9955. extra: 2075 / 1969
  9956. }
  9957. },
  9958. dress: {
  9959. height: math.unit(5 + 2 / 12, "feet"),
  9960. weight: math.unit(120, "lbs"),
  9961. name: "Dress",
  9962. image: {
  9963. source: "./media/characters/katherine/dress.svg",
  9964. extra: 2258 / 2064
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(1, "inches"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 2 / 12, "feet")
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(100, "meters")
  9981. },
  9982. {
  9983. name: "Megamacro",
  9984. height: math.unit(80, "miles")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(7 + 8 / 12, "feet"),
  9993. weight: math.unit(250, "lbs"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/yevis/front.svg",
  9997. extra: 1938 / 1755
  9998. }
  9999. }
  10000. },
  10001. [
  10002. {
  10003. name: "Mortal",
  10004. height: math.unit(7 + 8 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Battle",
  10008. height: math.unit(25 + 11 / 12, "feet")
  10009. },
  10010. {
  10011. name: "Wrath",
  10012. height: math.unit(1654 + 11 / 12, "feet")
  10013. },
  10014. {
  10015. name: "Planet Destroyer",
  10016. height: math.unit(12000, "miles")
  10017. },
  10018. {
  10019. name: "Galaxy Conqueror",
  10020. height: math.unit(1.45, "zettameters"),
  10021. default: true
  10022. },
  10023. {
  10024. name: "Universal War",
  10025. height: math.unit(184, "gigaparsecs")
  10026. },
  10027. {
  10028. name: "Eternity War",
  10029. height: math.unit(1.98e55, "yottaparsecs")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(5 + 8 / 12, "feet"),
  10038. weight: math.unit(63, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/xavier/front.svg",
  10042. extra: 944 / 883
  10043. }
  10044. },
  10045. frontStretch: {
  10046. height: math.unit(5 + 8 / 12, "feet"),
  10047. weight: math.unit(63, "kg"),
  10048. name: "Stretching",
  10049. image: {
  10050. source: "./media/characters/xavier/front-stretch.svg",
  10051. extra: 962 / 820
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(5 + 8 / 12, "feet")
  10059. },
  10060. {
  10061. name: "Macro",
  10062. height: math.unit(100, "meters"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "McLargeHuge",
  10067. height: math.unit(10, "miles")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10073. {
  10074. front: {
  10075. height: math.unit(5 + 5 / 12, "feet"),
  10076. weight: math.unit(150, "lb"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/joshii/front.svg",
  10080. extra: 765 / 653,
  10081. bottom: 51 / 816
  10082. }
  10083. },
  10084. foot: {
  10085. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10086. name: "Foot",
  10087. image: {
  10088. source: "./media/characters/joshii/foot.svg"
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Micro",
  10095. height: math.unit(2, "inches")
  10096. },
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(5 + 5 / 12, "feet")
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(785, "feet"),
  10104. default: true
  10105. },
  10106. {
  10107. name: "Megamacro",
  10108. height: math.unit(24.5, "miles")
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(6, "feet"),
  10117. weight: math.unit(150, "lb"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/goddess-elizabeth/front.svg",
  10121. extra: 1800 / 1525,
  10122. bottom: 0.005
  10123. }
  10124. },
  10125. foot: {
  10126. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10127. name: "Foot",
  10128. image: {
  10129. source: "./media/characters/goddess-elizabeth/foot.svg"
  10130. }
  10131. },
  10132. mouth: {
  10133. height: math.unit(6, "feet"),
  10134. name: "Mouth",
  10135. image: {
  10136. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Micro",
  10143. height: math.unit(12, "feet")
  10144. },
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(80, "miles"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(15000, "parsecs")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(5 + 9 / 12, "feet"),
  10161. weight: math.unit(144, "lb"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/kara/front.svg"
  10165. }
  10166. },
  10167. feet: {
  10168. height: math.unit(6 / 6.765, "feet"),
  10169. name: "Kara's Feet",
  10170. rename: true,
  10171. image: {
  10172. source: "./media/characters/kara/feet.svg"
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(5 + 9 / 12, "feet")
  10180. },
  10181. {
  10182. name: "Macro",
  10183. height: math.unit(174, "feet"),
  10184. default: true
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(18, "feet"),
  10193. weight: math.unit(4050, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/tyrone/front.svg",
  10197. extra: 2405 / 2270,
  10198. bottom: 182 / 2587
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(18, "feet"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(300, "feet")
  10211. },
  10212. {
  10213. name: "Megamacro",
  10214. height: math.unit(15, "km")
  10215. },
  10216. {
  10217. name: "Gigamacro",
  10218. height: math.unit(500, "km")
  10219. },
  10220. {
  10221. name: "Teramacro",
  10222. height: math.unit(0.5, "gigameters")
  10223. },
  10224. {
  10225. name: "Omnimacro",
  10226. height: math.unit(1e252, "yottauniverse")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(7 + 8 / 12, "feet"),
  10235. weight: math.unit(120, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/danny/front.svg",
  10239. extra: 1490 / 1350
  10240. }
  10241. },
  10242. back: {
  10243. height: math.unit(7 + 8 / 12, "feet"),
  10244. weight: math.unit(120, "lb"),
  10245. name: "Back",
  10246. image: {
  10247. source: "./media/characters/danny/back.svg",
  10248. extra: 1490 / 1350
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(7 + 8 / 12, "feet"),
  10256. default: true
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(3.5, "inches"),
  10265. weight: math.unit(19, "grams"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/mallow/front.svg",
  10269. extra: 471 / 431
  10270. }
  10271. },
  10272. back: {
  10273. height: math.unit(3.5, "inches"),
  10274. weight: math.unit(19, "grams"),
  10275. name: "Back",
  10276. image: {
  10277. source: "./media/characters/mallow/back.svg",
  10278. extra: 471 / 431
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(3.5, "inches"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(9, "feet"),
  10295. weight: math.unit(230, "kg"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/starry-aqua/front.svg"
  10299. }
  10300. },
  10301. back: {
  10302. height: math.unit(9, "feet"),
  10303. weight: math.unit(230, "kg"),
  10304. name: "Back",
  10305. image: {
  10306. source: "./media/characters/starry-aqua/back.svg"
  10307. }
  10308. },
  10309. hand: {
  10310. height: math.unit(9 * 0.1168, "feet"),
  10311. name: "Hand",
  10312. image: {
  10313. source: "./media/characters/starry-aqua/hand.svg"
  10314. }
  10315. },
  10316. foot: {
  10317. height: math.unit(9 * 0.18, "feet"),
  10318. name: "Foot",
  10319. image: {
  10320. source: "./media/characters/starry-aqua/foot.svg"
  10321. }
  10322. }
  10323. },
  10324. [
  10325. {
  10326. name: "Micro",
  10327. height: math.unit(3, "inches")
  10328. },
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(9, "feet")
  10332. },
  10333. {
  10334. name: "Macro",
  10335. height: math.unit(300, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(3200, "feet")
  10341. }
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10346. {
  10347. front: {
  10348. height: math.unit(15, "feet"),
  10349. weight: math.unit(5026, "lb"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/luka-towers/front.svg",
  10353. extra: 1269/1133,
  10354. bottom: 51/1320
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(15, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Minimacro",
  10366. height: math.unit(25, "feet")
  10367. },
  10368. {
  10369. name: "Macro",
  10370. height: math.unit(320, "feet")
  10371. },
  10372. {
  10373. name: "Megamacro",
  10374. height: math.unit(35000, "feet")
  10375. },
  10376. {
  10377. name: "Gigamacro",
  10378. height: math.unit(4000, "miles")
  10379. },
  10380. {
  10381. name: "Teramacro",
  10382. height: math.unit(15000, "miles")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(150, "lb"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/natalie-nightring/front.svg",
  10395. extra: 1,
  10396. bottom: 0.06
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Uh Oh",
  10403. height: math.unit(0.1, "mm")
  10404. },
  10405. {
  10406. name: "Small",
  10407. height: math.unit(3, "inches")
  10408. },
  10409. {
  10410. name: "Human Scale",
  10411. height: math.unit(6, "feet")
  10412. },
  10413. {
  10414. name: "Librarian",
  10415. height: math.unit(50, "feet"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Immense",
  10420. height: math.unit(200, "miles")
  10421. },
  10422. ]
  10423. ))
  10424. characterMakers.push(() => makeCharacter(
  10425. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10426. {
  10427. front: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(180, "lbs"),
  10430. name: "Front",
  10431. image: {
  10432. source: "./media/characters/danni-rosie/front.svg",
  10433. extra: 1260 / 1128,
  10434. bottom: 0.022
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Micro",
  10441. height: math.unit(2, "inches"),
  10442. default: true
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(5 + 9 / 12, "feet"),
  10451. weight: math.unit(220, "lb"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/samantha-kruse/front.svg",
  10455. extra: (985 / 935),
  10456. bottom: 0.03
  10457. }
  10458. },
  10459. frontUndressed: {
  10460. height: math.unit(5 + 9 / 12, "feet"),
  10461. weight: math.unit(220, "lb"),
  10462. name: "Front (Undressed)",
  10463. image: {
  10464. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10465. extra: (973 / 923),
  10466. bottom: 0.025
  10467. }
  10468. },
  10469. fat: {
  10470. height: math.unit(5 + 9 / 12, "feet"),
  10471. weight: math.unit(900, "lb"),
  10472. name: "Front (Fat)",
  10473. image: {
  10474. source: "./media/characters/samantha-kruse/fat.svg",
  10475. extra: 2688 / 2561
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(5 + 9 / 12, "feet"),
  10483. default: true
  10484. }
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10489. {
  10490. back: {
  10491. height: math.unit(5 + 4 / 12, "feet"),
  10492. weight: math.unit(4963, "lb"),
  10493. name: "Back",
  10494. image: {
  10495. source: "./media/characters/amelia-rosie/back.svg",
  10496. extra: 1113 / 963,
  10497. bottom: 0.01
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Level 0",
  10504. height: math.unit(5 + 4 / 12, "feet")
  10505. },
  10506. {
  10507. name: "Level 1",
  10508. height: math.unit(164597, "feet"),
  10509. default: true
  10510. },
  10511. {
  10512. name: "Level 2",
  10513. height: math.unit(956243, "miles")
  10514. },
  10515. {
  10516. name: "Level 3",
  10517. height: math.unit(29421709423, "miles")
  10518. },
  10519. {
  10520. name: "Level 4",
  10521. height: math.unit(154, "lightyears")
  10522. },
  10523. {
  10524. name: "Level 5",
  10525. height: math.unit(4738272, "lightyears")
  10526. },
  10527. {
  10528. name: "Level 6",
  10529. height: math.unit(145787152896, "lightyears")
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(5 + 11 / 12, "feet"),
  10538. weight: math.unit(65, "kg"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/rook-kitara/front.svg",
  10542. extra: 1347 / 1274,
  10543. bottom: 0.005
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Totally Unfair",
  10550. height: math.unit(1.8, "mm")
  10551. },
  10552. {
  10553. name: "Lap Rookie",
  10554. height: math.unit(1.4, "feet")
  10555. },
  10556. {
  10557. name: "Normal",
  10558. height: math.unit(5 + 11 / 12, "feet"),
  10559. default: true
  10560. },
  10561. {
  10562. name: "How Did This Happen",
  10563. height: math.unit(80, "miles")
  10564. }
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10569. {
  10570. front: {
  10571. height: math.unit(7, "feet"),
  10572. weight: math.unit(300, "lb"),
  10573. name: "Front",
  10574. image: {
  10575. source: "./media/characters/pisces/front.svg",
  10576. extra: 2255 / 2115,
  10577. bottom: 0.03
  10578. }
  10579. },
  10580. back: {
  10581. height: math.unit(7, "feet"),
  10582. weight: math.unit(300, "lb"),
  10583. name: "Back",
  10584. image: {
  10585. source: "./media/characters/pisces/back.svg",
  10586. extra: 2146 / 2055,
  10587. bottom: 0.04
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Normal",
  10594. height: math.unit(7, "feet"),
  10595. default: true
  10596. },
  10597. {
  10598. name: "Swimming Pool",
  10599. height: math.unit(12.2, "meters")
  10600. },
  10601. {
  10602. name: "Olympic Swimming Pool",
  10603. height: math.unit(56.3, "meters")
  10604. },
  10605. {
  10606. name: "Lake Superior",
  10607. height: math.unit(93900, "meters")
  10608. },
  10609. {
  10610. name: "Mediterranean Sea",
  10611. height: math.unit(644457, "meters")
  10612. },
  10613. {
  10614. name: "World's Oceans",
  10615. height: math.unit(4567491, "meters")
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10621. {
  10622. front: {
  10623. height: math.unit(2.3, "meters"),
  10624. weight: math.unit(120, "kg"),
  10625. name: "Front",
  10626. image: {
  10627. source: "./media/characters/zelas/front.svg"
  10628. }
  10629. },
  10630. side: {
  10631. height: math.unit(2.3, "meters"),
  10632. weight: math.unit(120, "kg"),
  10633. name: "Side",
  10634. image: {
  10635. source: "./media/characters/zelas/side.svg"
  10636. }
  10637. },
  10638. back: {
  10639. height: math.unit(2.3, "meters"),
  10640. weight: math.unit(120, "kg"),
  10641. name: "Back",
  10642. image: {
  10643. source: "./media/characters/zelas/back.svg"
  10644. }
  10645. },
  10646. foot: {
  10647. height: math.unit(1.116, "feet"),
  10648. name: "Foot",
  10649. image: {
  10650. source: "./media/characters/zelas/foot.svg"
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(2.3, "meters")
  10658. },
  10659. {
  10660. name: "Macro",
  10661. height: math.unit(30, "meters"),
  10662. default: true
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(1, "inch"),
  10671. weight: math.unit(0.21, "grams"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/talbot/front.svg",
  10675. extra: 594 / 544
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Micro",
  10682. height: math.unit(1, "inch"),
  10683. default: true
  10684. },
  10685. ]
  10686. ))
  10687. characterMakers.push(() => makeCharacter(
  10688. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10689. {
  10690. front: {
  10691. height: math.unit(3 + 3 / 12, "feet"),
  10692. weight: math.unit(51.8, "lb"),
  10693. name: "Front",
  10694. image: {
  10695. source: "./media/characters/fliss/front.svg",
  10696. extra: 840 / 640
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Teeny Tiny",
  10703. height: math.unit(1, "mm")
  10704. },
  10705. {
  10706. name: "Small",
  10707. height: math.unit(1, "inch"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Standard Sylveon",
  10712. height: math.unit(3 + 3 / 12, "feet")
  10713. },
  10714. {
  10715. name: "Large Nuisance",
  10716. height: math.unit(33, "feet")
  10717. },
  10718. {
  10719. name: "City Filler",
  10720. height: math.unit(3000, "feet")
  10721. },
  10722. {
  10723. name: "New Horizon",
  10724. height: math.unit(6000, "miles")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(5, "cm"),
  10733. weight: math.unit(1.94, "g"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/fleta/front.svg",
  10737. extra: 835 / 803
  10738. }
  10739. },
  10740. back: {
  10741. height: math.unit(5, "cm"),
  10742. weight: math.unit(1.94, "g"),
  10743. name: "Back",
  10744. image: {
  10745. source: "./media/characters/fleta/back.svg",
  10746. extra: 835 / 803
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Micro",
  10753. height: math.unit(5, "cm"),
  10754. default: true
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(6, "feet"),
  10763. weight: math.unit(225, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/dominic/front.svg",
  10767. extra: 1770 / 1620,
  10768. bottom: 0.025
  10769. }
  10770. },
  10771. back: {
  10772. height: math.unit(6, "feet"),
  10773. weight: math.unit(225, "lb"),
  10774. name: "Back",
  10775. image: {
  10776. source: "./media/characters/dominic/back.svg",
  10777. extra: 1745 / 1620,
  10778. bottom: 0.065
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Nano",
  10785. height: math.unit(0.1, "mm")
  10786. },
  10787. {
  10788. name: "Micro-",
  10789. height: math.unit(1, "mm")
  10790. },
  10791. {
  10792. name: "Micro",
  10793. height: math.unit(4, "inches")
  10794. },
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(6 + 4 / 12, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Macro",
  10802. height: math.unit(115, "feet")
  10803. },
  10804. {
  10805. name: "Macro+",
  10806. height: math.unit(955, "feet")
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(8990, "feet")
  10811. },
  10812. {
  10813. name: "Gigmacro",
  10814. height: math.unit(9310, "miles")
  10815. },
  10816. {
  10817. name: "Teramacro",
  10818. height: math.unit(1567005010, "miles")
  10819. },
  10820. {
  10821. name: "Examacro",
  10822. height: math.unit(1425, "parsecs")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(400, "feet"),
  10831. weight: math.unit(44444444, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/major-colonel/front.svg"
  10835. }
  10836. },
  10837. back: {
  10838. height: math.unit(400, "feet"),
  10839. weight: math.unit(44444444, "lb"),
  10840. name: "Back",
  10841. image: {
  10842. source: "./media/characters/major-colonel/back.svg"
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Macro",
  10849. height: math.unit(400, "feet"),
  10850. default: true
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10856. {
  10857. catFront: {
  10858. height: math.unit(6, "feet"),
  10859. weight: math.unit(120, "lb"),
  10860. name: "Front (Cat Side)",
  10861. image: {
  10862. source: "./media/characters/axel-lycan/cat-front.svg",
  10863. extra: 430 / 402,
  10864. bottom: 43 / 472.35
  10865. }
  10866. },
  10867. catBack: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(120, "lb"),
  10870. name: "Back (Cat Side)",
  10871. image: {
  10872. source: "./media/characters/axel-lycan/cat-back.svg",
  10873. extra: 447 / 419,
  10874. bottom: 23.3 / 469
  10875. }
  10876. },
  10877. wolfFront: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(120, "lb"),
  10880. name: "Front (Wolf Side)",
  10881. image: {
  10882. source: "./media/characters/axel-lycan/wolf-front.svg",
  10883. extra: 485 / 456,
  10884. bottom: 19 / 504
  10885. }
  10886. },
  10887. wolfBack: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(120, "lb"),
  10890. name: "Back (Wolf Side)",
  10891. image: {
  10892. source: "./media/characters/axel-lycan/wolf-back.svg",
  10893. extra: 475 / 438,
  10894. bottom: 39.2 / 514
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Macro",
  10901. height: math.unit(1, "km"),
  10902. default: true
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(5 + 9 / 12, "feet"),
  10911. weight: math.unit(175, "lb"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/vanrel-hyena/front.svg",
  10915. extra: 1086 / 1010,
  10916. bottom: 0.04
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Normal",
  10923. height: math.unit(5 + 9 / 12, "feet"),
  10924. default: true
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10930. {
  10931. front: {
  10932. height: math.unit(6, "feet"),
  10933. weight: math.unit(103, "lb"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/abbott-absol/front.svg",
  10937. extra: 765/694,
  10938. bottom: 47/812
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Megamicro",
  10945. height: math.unit(0.1, "mm")
  10946. },
  10947. {
  10948. name: "Micro",
  10949. height: math.unit(1, "inch")
  10950. },
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(6, "feet"),
  10954. default: true
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(264, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/hector/front.svg",
  10967. extra: 2280 / 2130,
  10968. bottom: 0.07
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(12.25, "foot"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Macro",
  10980. height: math.unit(160, "feet")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(150, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/sal/front.svg",
  10993. extra: 1846 / 1699,
  10994. bottom: 0.04
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(10, "miles"),
  11002. default: true
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11008. {
  11009. front: {
  11010. height: math.unit(3, "meters"),
  11011. weight: math.unit(450, "kg"),
  11012. name: "front",
  11013. image: {
  11014. source: "./media/characters/ranger/front.svg",
  11015. extra: 2401 / 2243,
  11016. bottom: 0.05
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Normal",
  11023. height: math.unit(3, "meters"),
  11024. default: true
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11030. {
  11031. front: {
  11032. height: math.unit(14, "feet"),
  11033. weight: math.unit(800, "kg"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/theresa/front.svg",
  11037. extra: 3575 / 3346,
  11038. bottom: 0.03
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Normal",
  11045. height: math.unit(14, "feet"),
  11046. default: true
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11052. {
  11053. front: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(3, "kg"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/ine/front.svg",
  11059. extra: 678 / 539,
  11060. bottom: 0.023
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(2.265, "feet"),
  11068. default: true
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(5, "feet"),
  11077. weight: math.unit(30, "kg"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/vial/front.svg",
  11081. extra: 1365 / 1277,
  11082. bottom: 0.04
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(5, "feet"),
  11090. default: true
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11096. {
  11097. side: {
  11098. height: math.unit(3.4, "meters"),
  11099. weight: math.unit(1000, "lb"),
  11100. name: "Side",
  11101. image: {
  11102. source: "./media/characters/rovoska/side.svg",
  11103. extra: 4403 / 1515
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(3.4, "meters"),
  11111. default: true
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(8, "feet"),
  11120. weight: math.unit(315, "lb"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/gunner-rotthbauer/front.svg"
  11124. }
  11125. },
  11126. back: {
  11127. height: math.unit(8, "feet"),
  11128. weight: math.unit(315, "lb"),
  11129. name: "Back",
  11130. image: {
  11131. source: "./media/characters/gunner-rotthbauer/back.svg"
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Micro",
  11138. height: math.unit(3.5, "inches")
  11139. },
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(8, "feet"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(250, "feet")
  11148. },
  11149. {
  11150. name: "Megamacro",
  11151. height: math.unit(1, "AU")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(5 + 5 / 12, "feet"),
  11160. weight: math.unit(140, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/allatia/front.svg",
  11164. extra: 1227 / 1180,
  11165. bottom: 0.027
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Normal",
  11172. height: math.unit(5 + 5 / 12, "feet")
  11173. },
  11174. {
  11175. name: "Macro",
  11176. height: math.unit(250, "feet"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Megamacro",
  11181. height: math.unit(8, "miles")
  11182. }
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(6, "feet"),
  11190. weight: math.unit(120, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/tene/front.svg",
  11194. extra: 814/750,
  11195. bottom: 36/850
  11196. }
  11197. },
  11198. stomping: {
  11199. height: math.unit(2.025, "meters"),
  11200. weight: math.unit(120, "lb"),
  11201. name: "Stomping",
  11202. image: {
  11203. source: "./media/characters/tene/stomping.svg",
  11204. extra: 885/821,
  11205. bottom: 15/900
  11206. }
  11207. },
  11208. sitting: {
  11209. height: math.unit(1, "meter"),
  11210. weight: math.unit(120, "lb"),
  11211. name: "Sitting",
  11212. image: {
  11213. source: "./media/characters/tene/sitting.svg",
  11214. extra: 396/366,
  11215. bottom: 79/475
  11216. }
  11217. },
  11218. smiling: {
  11219. height: math.unit(1.2, "feet"),
  11220. name: "Smiling",
  11221. image: {
  11222. source: "./media/characters/tene/smiling.svg",
  11223. extra: 1364/1071,
  11224. bottom: 0/1364
  11225. }
  11226. },
  11227. smug: {
  11228. height: math.unit(1.3, "feet"),
  11229. name: "Smug",
  11230. image: {
  11231. source: "./media/characters/tene/smug.svg",
  11232. extra: 1323/1082,
  11233. bottom: 0/1323
  11234. }
  11235. },
  11236. feral: {
  11237. height: math.unit(3.9, "feet"),
  11238. weight: math.unit(250, "lb"),
  11239. name: "Feral",
  11240. image: {
  11241. source: "./media/characters/tene/feral.svg",
  11242. extra: 717 / 458,
  11243. bottom: 0.179
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(6, "feet")
  11251. },
  11252. {
  11253. name: "Macro",
  11254. height: math.unit(300, "feet"),
  11255. default: true
  11256. },
  11257. {
  11258. name: "Megamacro",
  11259. height: math.unit(5, "miles")
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11265. {
  11266. side: {
  11267. height: math.unit(6, "feet"),
  11268. name: "Side",
  11269. image: {
  11270. source: "./media/characters/evander/side.svg",
  11271. extra: 877 / 477
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Normal",
  11278. height: math.unit(0.83, "meters"),
  11279. default: true
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(12, "feet"),
  11288. weight: math.unit(1000, "lb"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11292. extra: 1762 / 1611
  11293. }
  11294. },
  11295. back: {
  11296. height: math.unit(12, "feet"),
  11297. weight: math.unit(1000, "lb"),
  11298. name: "Back",
  11299. image: {
  11300. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11301. extra: 1762 / 1611
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(12, "feet"),
  11309. default: true
  11310. },
  11311. {
  11312. name: "Kaiju",
  11313. height: math.unit(150, "feet")
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(150, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/zero-alurus/front.svg"
  11326. }
  11327. },
  11328. back: {
  11329. height: math.unit(6, "feet"),
  11330. weight: math.unit(150, "lb"),
  11331. name: "Back",
  11332. image: {
  11333. source: "./media/characters/zero-alurus/back.svg"
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(5 + 10 / 12, "feet")
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(60, "feet"),
  11345. default: true
  11346. },
  11347. {
  11348. name: "Macro+",
  11349. height: math.unit(450, "feet")
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(6, "feet"),
  11358. weight: math.unit(200, "lb"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/mega-shi/front.svg",
  11362. extra: 1279 / 1250,
  11363. bottom: 0.02
  11364. }
  11365. },
  11366. back: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(200, "lb"),
  11369. name: "Back",
  11370. image: {
  11371. source: "./media/characters/mega-shi/back.svg",
  11372. extra: 1279 / 1250,
  11373. bottom: 0.02
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Micro",
  11380. height: math.unit(16 + 6 / 12, "feet")
  11381. },
  11382. {
  11383. name: "Third Dimension",
  11384. height: math.unit(40, "meters")
  11385. },
  11386. {
  11387. name: "Normal",
  11388. height: math.unit(660, "feet"),
  11389. default: true
  11390. },
  11391. {
  11392. name: "Megamacro",
  11393. height: math.unit(10, "miles")
  11394. },
  11395. {
  11396. name: "Planetary Launch",
  11397. height: math.unit(500, "miles")
  11398. },
  11399. {
  11400. name: "Interstellar",
  11401. height: math.unit(1e9, "miles")
  11402. },
  11403. {
  11404. name: "Leaving the Universe",
  11405. height: math.unit(1, "gigaparsec")
  11406. },
  11407. {
  11408. name: "Travelling Universes",
  11409. height: math.unit(30e15, "parsecs")
  11410. },
  11411. ]
  11412. ))
  11413. characterMakers.push(() => makeCharacter(
  11414. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11415. {
  11416. front: {
  11417. height: math.unit(5 + 4/12, "feet"),
  11418. weight: math.unit(120, "lb"),
  11419. name: "Front",
  11420. image: {
  11421. source: "./media/characters/odyssey/front.svg",
  11422. extra: 1747/1571,
  11423. bottom: 47/1794
  11424. }
  11425. },
  11426. side: {
  11427. height: math.unit(5.1, "feet"),
  11428. weight: math.unit(120, "lb"),
  11429. name: "Side",
  11430. image: {
  11431. source: "./media/characters/odyssey/side.svg",
  11432. extra: 1847/1619,
  11433. bottom: 47/1894
  11434. }
  11435. },
  11436. lounging: {
  11437. height: math.unit(1.464, "feet"),
  11438. weight: math.unit(120, "lb"),
  11439. name: "Lounging",
  11440. image: {
  11441. source: "./media/characters/odyssey/lounging.svg",
  11442. extra: 1235/837,
  11443. bottom: 551/1786
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Normal",
  11450. height: math.unit(5 + 4 / 12, "feet")
  11451. },
  11452. {
  11453. name: "Macro",
  11454. height: math.unit(1, "km")
  11455. },
  11456. {
  11457. name: "Megamacro",
  11458. height: math.unit(3000, "km")
  11459. },
  11460. {
  11461. name: "Gigamacro",
  11462. height: math.unit(1, "AU"),
  11463. default: true
  11464. },
  11465. {
  11466. name: "Omniversal",
  11467. height: math.unit(100e14, "lightyears")
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(5 + 10/12, "feet"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/mekuto/front.svg",
  11479. extra: 875/835,
  11480. bottom: 46/921
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Minimicro",
  11487. height: math.unit(0.2, "inches")
  11488. },
  11489. {
  11490. name: "Micro",
  11491. height: math.unit(1.5, "inches")
  11492. },
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(5 + 10 / 12, "feet"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Minimacro",
  11500. height: math.unit(17 + 9 / 12, "feet")
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(177.5, "feet")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(152, "miles")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(6.5, "inches"),
  11517. weight: math.unit(13, "oz"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/dafydd-tomos/front.svg",
  11521. extra: 2990 / 2603,
  11522. bottom: 0.03
  11523. }
  11524. },
  11525. },
  11526. [
  11527. {
  11528. name: "Micro",
  11529. height: math.unit(6.5, "inches"),
  11530. default: true
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11536. {
  11537. front: {
  11538. height: math.unit(6, "feet"),
  11539. weight: math.unit(150, "lb"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/splinter/front.svg",
  11543. extra: 2990 / 2882,
  11544. bottom: 0.04
  11545. }
  11546. },
  11547. back: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(150, "lb"),
  11550. name: "Back",
  11551. image: {
  11552. source: "./media/characters/splinter/back.svg",
  11553. extra: 2990 / 2882,
  11554. bottom: 0.04
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(6, "feet")
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(230, "meters"),
  11566. default: true
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(4 + 10 / 12, "feet"),
  11575. weight: math.unit(480, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/snow-gabumon/front.svg",
  11579. extra: 1140 / 963,
  11580. bottom: 0.058
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(4 + 10 / 12, "feet"),
  11585. weight: math.unit(480, "lb"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/snow-gabumon/back.svg",
  11589. extra: 1115 / 962,
  11590. bottom: 0.041
  11591. }
  11592. },
  11593. frontUndresed: {
  11594. height: math.unit(4 + 10 / 12, "feet"),
  11595. weight: math.unit(480, "lb"),
  11596. name: "Front (Undressed)",
  11597. image: {
  11598. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11599. extra: 1061 / 960,
  11600. bottom: 0.045
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Micro",
  11607. height: math.unit(1, "inch")
  11608. },
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(4 + 10 / 12, "feet"),
  11612. default: true
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(200, "feet")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(120, "miles")
  11621. },
  11622. {
  11623. name: "Gigamacro",
  11624. height: math.unit(9800, "miles")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(1.7, "meters"),
  11633. weight: math.unit(140, "lb"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/moody/front.svg",
  11637. extra: 3226 / 3007,
  11638. bottom: 0.087
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Micro",
  11645. height: math.unit(1, "mm")
  11646. },
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(1.7, "meters"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(80, "meters")
  11655. },
  11656. {
  11657. name: "Macro+",
  11658. height: math.unit(500, "meters")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(150, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/zyas/front.svg",
  11671. extra: 1180 / 1120,
  11672. bottom: 0.045
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(10, "feet"),
  11680. default: true
  11681. },
  11682. {
  11683. name: "Macro",
  11684. height: math.unit(500, "feet")
  11685. },
  11686. {
  11687. name: "Megamacro",
  11688. height: math.unit(5, "miles")
  11689. },
  11690. {
  11691. name: "Teramacro",
  11692. height: math.unit(150000, "miles")
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11698. {
  11699. front: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(150, "lb"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/cuon/front.svg",
  11705. extra: 1390 / 1320,
  11706. bottom: 0.008
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Micro",
  11713. height: math.unit(3, "inches")
  11714. },
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(18 + 9 / 12, "feet"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(360, "feet")
  11723. },
  11724. {
  11725. name: "Megamacro",
  11726. height: math.unit(360, "miles")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(2.4, "meters"),
  11735. weight: math.unit(70, "kg"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/nyanuxk/front.svg",
  11739. extra: 1172 / 1084,
  11740. bottom: 0.065
  11741. }
  11742. },
  11743. side: {
  11744. height: math.unit(2.4, "meters"),
  11745. weight: math.unit(70, "kg"),
  11746. name: "Side",
  11747. image: {
  11748. source: "./media/characters/nyanuxk/side.svg",
  11749. extra: 1190 / 1132,
  11750. bottom: 0.007
  11751. }
  11752. },
  11753. back: {
  11754. height: math.unit(2.4, "meters"),
  11755. weight: math.unit(70, "kg"),
  11756. name: "Back",
  11757. image: {
  11758. source: "./media/characters/nyanuxk/back.svg",
  11759. extra: 1200 / 1141,
  11760. bottom: 0.015
  11761. }
  11762. },
  11763. foot: {
  11764. height: math.unit(0.52, "meters"),
  11765. name: "Foot",
  11766. image: {
  11767. source: "./media/characters/nyanuxk/foot.svg"
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Micro",
  11774. height: math.unit(2, "cm")
  11775. },
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(2.4, "meters"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Smaller Macro",
  11783. height: math.unit(120, "meters")
  11784. },
  11785. {
  11786. name: "Bigger Macro",
  11787. height: math.unit(1.2, "km")
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(15, "kilometers")
  11792. },
  11793. {
  11794. name: "Gigamacro",
  11795. height: math.unit(2000, "km")
  11796. },
  11797. {
  11798. name: "Teramacro",
  11799. height: math.unit(500000, "km")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11805. {
  11806. side: {
  11807. height: math.unit(6, "feet"),
  11808. name: "Side",
  11809. image: {
  11810. source: "./media/characters/ailbhe/side.svg",
  11811. extra: 757 / 464,
  11812. bottom: 0.041
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(1.07, "meters"),
  11820. default: true
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(120, "kg"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/zevulfius/front.svg",
  11833. extra: 965 / 903
  11834. }
  11835. },
  11836. side: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(120, "kg"),
  11839. name: "Side",
  11840. image: {
  11841. source: "./media/characters/zevulfius/side.svg",
  11842. extra: 939 / 900
  11843. }
  11844. },
  11845. back: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(120, "kg"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/zevulfius/back.svg",
  11851. extra: 918 / 854,
  11852. bottom: 0.005
  11853. }
  11854. },
  11855. foot: {
  11856. height: math.unit(6 / 3.72, "feet"),
  11857. name: "Foot",
  11858. image: {
  11859. source: "./media/characters/zevulfius/foot.svg"
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(750, "meters")
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(20, "km"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Gigamacro",
  11875. height: math.unit(2000, "km")
  11876. },
  11877. {
  11878. name: "Teramacro",
  11879. height: math.unit(250000, "km")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(100, "feet"),
  11888. weight: math.unit(350, "kg"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/rikes/front.svg",
  11892. extra: 1565 / 1483,
  11893. bottom: 0.017
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(100, "feet"),
  11901. default: true
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(8, "feet"),
  11910. weight: math.unit(356, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/adam-silver-mane/front.svg",
  11914. extra: 1036/937,
  11915. bottom: 63/1099
  11916. }
  11917. },
  11918. side: {
  11919. height: math.unit(8, "feet"),
  11920. weight: math.unit(356, "lb"),
  11921. name: "Side",
  11922. image: {
  11923. source: "./media/characters/adam-silver-mane/side.svg",
  11924. extra: 997/901,
  11925. bottom: 59/1056
  11926. }
  11927. },
  11928. frontNsfw: {
  11929. height: math.unit(8, "feet"),
  11930. weight: math.unit(356, "lb"),
  11931. name: "Front (NSFW)",
  11932. image: {
  11933. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11934. extra: 1036/937,
  11935. bottom: 63/1099
  11936. }
  11937. },
  11938. sideNsfw: {
  11939. height: math.unit(8, "feet"),
  11940. weight: math.unit(356, "lb"),
  11941. name: "Side (NSFW)",
  11942. image: {
  11943. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11944. extra: 997/901,
  11945. bottom: 59/1056
  11946. }
  11947. },
  11948. dick: {
  11949. height: math.unit(2.1, "feet"),
  11950. name: "Dick",
  11951. image: {
  11952. source: "./media/characters/adam-silver-mane/dick.svg"
  11953. }
  11954. },
  11955. taur: {
  11956. height: math.unit(16, "feet"),
  11957. weight: math.unit(1500, "kg"),
  11958. name: "Taur",
  11959. image: {
  11960. source: "./media/characters/adam-silver-mane/taur.svg",
  11961. extra: 1713 / 1571,
  11962. bottom: 0.01
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(8, "feet")
  11970. },
  11971. {
  11972. name: "Minimacro",
  11973. height: math.unit(80, "feet")
  11974. },
  11975. {
  11976. name: "MDA",
  11977. height: math.unit(80, "meters")
  11978. },
  11979. {
  11980. name: "Macro",
  11981. height: math.unit(800, "feet"),
  11982. default: true
  11983. },
  11984. {
  11985. name: "Megamacro",
  11986. height: math.unit(8000, "feet")
  11987. },
  11988. {
  11989. name: "Gigamacro",
  11990. height: math.unit(800, "miles")
  11991. },
  11992. {
  11993. name: "Teramacro",
  11994. height: math.unit(80000, "miles")
  11995. },
  11996. {
  11997. name: "Celestial",
  11998. height: math.unit(8e6, "miles")
  11999. },
  12000. {
  12001. name: "Star Dragon",
  12002. height: math.unit(800000, "parsecs")
  12003. },
  12004. {
  12005. name: "Godly",
  12006. height: math.unit(800, "teraparsecs")
  12007. },
  12008. ]
  12009. ))
  12010. characterMakers.push(() => makeCharacter(
  12011. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12012. {
  12013. front: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(150, "lb"),
  12016. name: "Front",
  12017. image: {
  12018. source: "./media/characters/ky'owin/front.svg",
  12019. extra: 3862/3053,
  12020. bottom: 74/3936
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(6 + 8 / 12, "feet")
  12028. },
  12029. {
  12030. name: "Large",
  12031. height: math.unit(68, "feet")
  12032. },
  12033. {
  12034. name: "Macro",
  12035. height: math.unit(132, "feet")
  12036. },
  12037. {
  12038. name: "Macro+",
  12039. height: math.unit(340, "feet")
  12040. },
  12041. {
  12042. name: "Macro++",
  12043. height: math.unit(680, "feet"),
  12044. default: true
  12045. },
  12046. {
  12047. name: "Megamacro",
  12048. height: math.unit(1, "mile")
  12049. },
  12050. {
  12051. name: "Megamacro+",
  12052. height: math.unit(10, "miles")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(4, "feet"),
  12061. weight: math.unit(50, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/mal/front.svg",
  12065. extra: 785 / 724,
  12066. bottom: 0.07
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Micro",
  12073. height: math.unit(4, "inches")
  12074. },
  12075. {
  12076. name: "Normal",
  12077. height: math.unit(4, "feet"),
  12078. default: true
  12079. },
  12080. {
  12081. name: "Macro",
  12082. height: math.unit(200, "feet")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12088. {
  12089. front: {
  12090. height: math.unit(6, "feet"),
  12091. weight: math.unit(150, "lb"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/jordan-deware/front.svg",
  12095. extra: 1191 / 1012
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Nano",
  12102. height: math.unit(0.01, "mm")
  12103. },
  12104. {
  12105. name: "Minimicro",
  12106. height: math.unit(1, "mm")
  12107. },
  12108. {
  12109. name: "Micro",
  12110. height: math.unit(0.5, "inches")
  12111. },
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(4, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Minimacro",
  12119. height: math.unit(40, "meters")
  12120. },
  12121. {
  12122. name: "Small Macro",
  12123. height: math.unit(400, "meters")
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(4, "miles")
  12128. },
  12129. {
  12130. name: "Megamacro",
  12131. height: math.unit(40, "miles")
  12132. },
  12133. {
  12134. name: "Megamacro+",
  12135. height: math.unit(400, "miles")
  12136. },
  12137. {
  12138. name: "Gigamacro",
  12139. height: math.unit(400000, "miles")
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12145. {
  12146. side: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(150, "lb"),
  12149. name: "Side",
  12150. image: {
  12151. source: "./media/characters/kimiko/side.svg",
  12152. extra: 600 / 358
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(15, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(220, "feet")
  12165. },
  12166. {
  12167. name: "Macro+",
  12168. height: math.unit(1450, "feet")
  12169. },
  12170. {
  12171. name: "Megamacro",
  12172. height: math.unit(11500, "feet")
  12173. },
  12174. {
  12175. name: "Gigamacro",
  12176. height: math.unit(9500, "miles")
  12177. },
  12178. {
  12179. name: "Teramacro",
  12180. height: math.unit(2208005005, "miles")
  12181. },
  12182. {
  12183. name: "Examacro",
  12184. height: math.unit(2750, "parsecs")
  12185. },
  12186. {
  12187. name: "Zettamacro",
  12188. height: math.unit(101500, "parsecs")
  12189. },
  12190. ]
  12191. ))
  12192. characterMakers.push(() => makeCharacter(
  12193. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12194. {
  12195. front: {
  12196. height: math.unit(6, "feet"),
  12197. weight: math.unit(70, "kg"),
  12198. name: "Front",
  12199. image: {
  12200. source: "./media/characters/andrew-sleepy/front.svg"
  12201. }
  12202. },
  12203. side: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(70, "kg"),
  12206. name: "Side",
  12207. image: {
  12208. source: "./media/characters/andrew-sleepy/side.svg"
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Micro",
  12215. height: math.unit(1, "mm"),
  12216. default: true
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12222. {
  12223. front: {
  12224. height: math.unit(6, "feet"),
  12225. weight: math.unit(150, "lb"),
  12226. name: "Front",
  12227. image: {
  12228. source: "./media/characters/judio/front.svg",
  12229. extra: 1258 / 1110
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(5 + 6 / 12, "feet")
  12237. },
  12238. {
  12239. name: "Macro",
  12240. height: math.unit(1000, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Megamacro",
  12245. height: math.unit(10, "miles")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12251. {
  12252. frontDressed: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(68, "kg"),
  12255. name: "Front (Dressed)",
  12256. image: {
  12257. source: "./media/characters/nomaxice/front-dressed.svg",
  12258. extra: 1137/824,
  12259. bottom: 74/1211
  12260. }
  12261. },
  12262. frontShorts: {
  12263. height: math.unit(6, "feet"),
  12264. weight: math.unit(68, "kg"),
  12265. name: "Front (Shorts)",
  12266. image: {
  12267. source: "./media/characters/nomaxice/front-shorts.svg",
  12268. extra: 1137/824,
  12269. bottom: 74/1211
  12270. }
  12271. },
  12272. back: {
  12273. height: math.unit(6, "feet"),
  12274. weight: math.unit(68, "kg"),
  12275. name: "Back",
  12276. image: {
  12277. source: "./media/characters/nomaxice/back.svg",
  12278. extra: 822/786,
  12279. bottom: 39/861
  12280. }
  12281. },
  12282. hand: {
  12283. height: math.unit(0.565, "feet"),
  12284. name: "Hand",
  12285. image: {
  12286. source: "./media/characters/nomaxice/hand.svg"
  12287. }
  12288. },
  12289. foot: {
  12290. height: math.unit(1, "feet"),
  12291. name: "Foot",
  12292. image: {
  12293. source: "./media/characters/nomaxice/foot.svg"
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Micro",
  12300. height: math.unit(8, "cm")
  12301. },
  12302. {
  12303. name: "Norm",
  12304. height: math.unit(1.82, "m")
  12305. },
  12306. {
  12307. name: "Norm+",
  12308. height: math.unit(8.8, "feet"),
  12309. default: true
  12310. },
  12311. {
  12312. name: "Big",
  12313. height: math.unit(8, "meters")
  12314. },
  12315. {
  12316. name: "Macro",
  12317. height: math.unit(18, "meters")
  12318. },
  12319. {
  12320. name: "Macro+",
  12321. height: math.unit(88, "meters")
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(12, "feet"),
  12330. weight: math.unit(1.5, "tons"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/dydros/front.svg",
  12334. extra: 863 / 800,
  12335. bottom: 0.015
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(12, "feet"),
  12340. weight: math.unit(1.5, "tons"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/dydros/back.svg",
  12344. extra: 900 / 843,
  12345. bottom: 0.005
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Normal",
  12352. height: math.unit(12, "feet"),
  12353. default: true
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(100, "kg"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/riggi/front.svg",
  12366. extra: 5787 / 5303
  12367. }
  12368. },
  12369. hyper: {
  12370. height: math.unit(6 * 5 / 3, "feet"),
  12371. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12372. name: "Hyper",
  12373. image: {
  12374. source: "./media/characters/riggi/hyper.svg",
  12375. extra: 3595 / 3485
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Small Macro",
  12382. height: math.unit(50, "feet")
  12383. },
  12384. {
  12385. name: "Default",
  12386. height: math.unit(200, "feet"),
  12387. default: true
  12388. },
  12389. {
  12390. name: "Loom",
  12391. height: math.unit(10000, "feet")
  12392. },
  12393. {
  12394. name: "Cruising Altitude",
  12395. height: math.unit(30000, "feet")
  12396. },
  12397. {
  12398. name: "Megamacro",
  12399. height: math.unit(100, "miles")
  12400. },
  12401. {
  12402. name: "Continent Sized",
  12403. height: math.unit(2800, "miles")
  12404. },
  12405. {
  12406. name: "Earth Sized",
  12407. height: math.unit(8000, "miles")
  12408. },
  12409. ]
  12410. ))
  12411. characterMakers.push(() => makeCharacter(
  12412. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12413. {
  12414. front: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(250, "lb"),
  12417. name: "Front",
  12418. image: {
  12419. source: "./media/characters/alexi/front.svg",
  12420. extra: 3483 / 3291,
  12421. bottom: 0.04
  12422. }
  12423. },
  12424. back: {
  12425. height: math.unit(6, "feet"),
  12426. weight: math.unit(250, "lb"),
  12427. name: "Back",
  12428. image: {
  12429. source: "./media/characters/alexi/back.svg",
  12430. extra: 3533 / 3356,
  12431. bottom: 0.021
  12432. }
  12433. },
  12434. frontTransforming: {
  12435. height: math.unit(8.58, "feet"),
  12436. weight: math.unit(1300, "lb"),
  12437. name: "Transforming",
  12438. image: {
  12439. source: "./media/characters/alexi/front-transforming.svg",
  12440. extra: 437 / 409,
  12441. bottom: 19 / 458.66
  12442. }
  12443. },
  12444. frontTransformed: {
  12445. height: math.unit(12.5, "feet"),
  12446. weight: math.unit(4000, "lb"),
  12447. name: "Transformed",
  12448. image: {
  12449. source: "./media/characters/alexi/front-transformed.svg",
  12450. extra: 639 / 614,
  12451. bottom: 30.55 / 671
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(14, "feet"),
  12459. default: true
  12460. },
  12461. {
  12462. name: "Minimacro",
  12463. height: math.unit(30, "meters")
  12464. },
  12465. {
  12466. name: "Macro",
  12467. height: math.unit(500, "meters")
  12468. },
  12469. {
  12470. name: "Megamacro",
  12471. height: math.unit(9000, "km")
  12472. },
  12473. {
  12474. name: "Teramacro",
  12475. height: math.unit(384000, "km")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(150, "lb"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/kayroo/front.svg",
  12488. extra: 1153 / 1038,
  12489. bottom: 0.06
  12490. }
  12491. },
  12492. foot: {
  12493. height: math.unit(6, "feet"),
  12494. weight: math.unit(150, "lb"),
  12495. name: "Foot",
  12496. image: {
  12497. source: "./media/characters/kayroo/foot.svg"
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(8, "feet"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Minimacro",
  12509. height: math.unit(250, "feet")
  12510. },
  12511. {
  12512. name: "Macro",
  12513. height: math.unit(2800, "feet")
  12514. },
  12515. {
  12516. name: "Megamacro",
  12517. height: math.unit(5200, "feet")
  12518. },
  12519. {
  12520. name: "Gigamacro",
  12521. height: math.unit(27000, "feet")
  12522. },
  12523. {
  12524. name: "Omega",
  12525. height: math.unit(45000, "feet")
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(18, "feet"),
  12534. weight: math.unit(5800, "lb"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/rhys/front.svg",
  12538. extra: 3386 / 3090,
  12539. bottom: 0.07
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Normal",
  12546. height: math.unit(18, "feet"),
  12547. default: true
  12548. },
  12549. {
  12550. name: "Working Size",
  12551. height: math.unit(200, "feet")
  12552. },
  12553. {
  12554. name: "Demolition Size",
  12555. height: math.unit(2000, "feet")
  12556. },
  12557. {
  12558. name: "Maximum Licensed Size",
  12559. height: math.unit(5, "miles")
  12560. },
  12561. {
  12562. name: "Maximum Observed Size",
  12563. height: math.unit(10, "yottameters")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(6, "feet"),
  12572. weight: math.unit(250, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/toto/front.svg",
  12576. extra: 527 / 479,
  12577. bottom: 0.05
  12578. }
  12579. },
  12580. },
  12581. [
  12582. {
  12583. name: "Micro",
  12584. height: math.unit(3, "feet")
  12585. },
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(10, "feet")
  12589. },
  12590. {
  12591. name: "Macro",
  12592. height: math.unit(150, "feet"),
  12593. default: true
  12594. },
  12595. {
  12596. name: "Megamacro",
  12597. height: math.unit(1200, "feet")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "King", species: ["lion"], tags: ["anthro"] },
  12603. {
  12604. back: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/king/back.svg"
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Micro",
  12616. height: math.unit(2, "inches")
  12617. },
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(8, "feet")
  12621. },
  12622. {
  12623. name: "Macro",
  12624. height: math.unit(200, "feet"),
  12625. default: true
  12626. },
  12627. {
  12628. name: "Megamacro",
  12629. height: math.unit(50, "miles")
  12630. },
  12631. ]
  12632. ))
  12633. characterMakers.push(() => makeCharacter(
  12634. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12635. {
  12636. front: {
  12637. height: math.unit(11, "feet"),
  12638. weight: math.unit(1400, "lb"),
  12639. name: "Front",
  12640. image: {
  12641. source: "./media/characters/cordite/front.svg",
  12642. extra: 1919/1827,
  12643. bottom: 40/1959
  12644. }
  12645. },
  12646. side: {
  12647. height: math.unit(11, "feet"),
  12648. weight: math.unit(1400, "lb"),
  12649. name: "Side",
  12650. image: {
  12651. source: "./media/characters/cordite/side.svg",
  12652. extra: 1908/1793,
  12653. bottom: 38/1946
  12654. }
  12655. },
  12656. back: {
  12657. height: math.unit(11, "feet"),
  12658. weight: math.unit(1400, "lb"),
  12659. name: "Back",
  12660. image: {
  12661. source: "./media/characters/cordite/back.svg",
  12662. extra: 1938/1837,
  12663. bottom: 10/1948
  12664. }
  12665. },
  12666. feral: {
  12667. height: math.unit(2, "feet"),
  12668. weight: math.unit(90, "lb"),
  12669. name: "Feral",
  12670. image: {
  12671. source: "./media/characters/cordite/feral.svg",
  12672. extra: 1260 / 755,
  12673. bottom: 0.05
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(11, "feet"),
  12681. default: true
  12682. },
  12683. ]
  12684. ))
  12685. characterMakers.push(() => makeCharacter(
  12686. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12687. {
  12688. front: {
  12689. height: math.unit(6, "feet"),
  12690. weight: math.unit(150, "lb"),
  12691. name: "Front",
  12692. image: {
  12693. source: "./media/characters/pianostrong/front.svg",
  12694. extra: 6577 / 6254,
  12695. bottom: 0.02
  12696. }
  12697. },
  12698. side: {
  12699. height: math.unit(6, "feet"),
  12700. weight: math.unit(150, "lb"),
  12701. name: "Side",
  12702. image: {
  12703. source: "./media/characters/pianostrong/side.svg",
  12704. extra: 6106 / 5730
  12705. }
  12706. },
  12707. back: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "lb"),
  12710. name: "Back",
  12711. image: {
  12712. source: "./media/characters/pianostrong/back.svg",
  12713. extra: 6085 / 5733,
  12714. bottom: 0.01
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Macro",
  12721. height: math.unit(100, "feet")
  12722. },
  12723. {
  12724. name: "Macro+",
  12725. height: math.unit(300, "feet"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Macro++",
  12730. height: math.unit(1000, "feet")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(150, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/kona/front.svg",
  12743. extra: 2960 / 2629,
  12744. bottom: 0.005
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(11 + 8 / 12, "feet")
  12752. },
  12753. {
  12754. name: "Macro",
  12755. height: math.unit(850, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Macro+",
  12760. height: math.unit(1.5, "km"),
  12761. default: true
  12762. },
  12763. {
  12764. name: "Megamacro",
  12765. height: math.unit(80, "miles")
  12766. },
  12767. {
  12768. name: "Gigamacro",
  12769. height: math.unit(3500, "miles")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12775. {
  12776. side: {
  12777. height: math.unit(1.9, "meters"),
  12778. weight: math.unit(326, "kg"),
  12779. name: "Side",
  12780. image: {
  12781. source: "./media/characters/levi/side.svg",
  12782. extra: 1704 / 1334,
  12783. bottom: 0.02
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(1.9, "meters"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(20, "meters")
  12796. },
  12797. {
  12798. name: "Macro+",
  12799. height: math.unit(200, "meters")
  12800. },
  12801. {
  12802. name: "Megamacro",
  12803. height: math.unit(2, "km")
  12804. },
  12805. {
  12806. name: "Megamacro+",
  12807. height: math.unit(20, "km")
  12808. },
  12809. {
  12810. name: "Gigamacro",
  12811. height: math.unit(2500, "km")
  12812. },
  12813. {
  12814. name: "Gigamacro+",
  12815. height: math.unit(120000, "km")
  12816. },
  12817. {
  12818. name: "Teramacro",
  12819. height: math.unit(7.77e6, "km")
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(6 + 4/12, "feet"),
  12828. weight: math.unit(190, "lb"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/bmc/front.svg",
  12832. extra: 1626/1472,
  12833. bottom: 79/1705
  12834. }
  12835. },
  12836. back: {
  12837. height: math.unit(6 + 4/12, "feet"),
  12838. weight: math.unit(190, "lb"),
  12839. name: "Back",
  12840. image: {
  12841. source: "./media/characters/bmc/back.svg",
  12842. extra: 1640/1479,
  12843. bottom: 45/1685
  12844. }
  12845. },
  12846. frontArmor: {
  12847. height: math.unit(6 + 4/12, "feet"),
  12848. weight: math.unit(190, "lb"),
  12849. name: "Front-armor",
  12850. image: {
  12851. source: "./media/characters/bmc/front-armor.svg",
  12852. extra: 1538/1468,
  12853. bottom: 79/1617
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Human-sized",
  12860. height: math.unit(6 + 4 / 12, "feet")
  12861. },
  12862. {
  12863. name: "Interactive Size",
  12864. height: math.unit(25, "feet")
  12865. },
  12866. {
  12867. name: "Small",
  12868. height: math.unit(250, "feet")
  12869. },
  12870. {
  12871. name: "Normal",
  12872. height: math.unit(1250, "feet"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Good Day",
  12877. height: math.unit(88, "miles")
  12878. },
  12879. {
  12880. name: "Largest Measured Size",
  12881. height: math.unit(105.960, "galaxies")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(20, "feet"),
  12890. weight: math.unit(2016, "kg"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/sven-the-kaiju/front.svg",
  12894. extra: 1277/1250,
  12895. bottom: 35/1312
  12896. }
  12897. },
  12898. mouth: {
  12899. height: math.unit(1.85, "feet"),
  12900. name: "Mouth",
  12901. image: {
  12902. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Fairy",
  12909. height: math.unit(6, "inches")
  12910. },
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(20, "feet"),
  12914. default: true
  12915. },
  12916. {
  12917. name: "Rampage",
  12918. height: math.unit(200, "feet")
  12919. },
  12920. {
  12921. name: "Archfey Forest Guardian",
  12922. height: math.unit(1, "mile")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(4, "meters"),
  12931. weight: math.unit(2, "tons"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/marik/front.svg",
  12935. extra: 1057 / 1003,
  12936. bottom: 0.08
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(4, "meters"),
  12944. default: true
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(20, "meters")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(50, "km")
  12953. },
  12954. {
  12955. name: "Gigamacro",
  12956. height: math.unit(100, "km")
  12957. },
  12958. {
  12959. name: "Alpha Macro",
  12960. height: math.unit(7.88e7, "yottameters")
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(110, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/mel/front.svg",
  12973. extra: 736 / 617,
  12974. bottom: 0.017
  12975. }
  12976. },
  12977. },
  12978. [
  12979. {
  12980. name: "Pico",
  12981. height: math.unit(3, "pm")
  12982. },
  12983. {
  12984. name: "Nano",
  12985. height: math.unit(3, "nm")
  12986. },
  12987. {
  12988. name: "Micro",
  12989. height: math.unit(0.3, "mm"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Micro+",
  12994. height: math.unit(3, "mm")
  12995. },
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(5 + 10.5 / 12, "feet")
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13004. {
  13005. kaiju: {
  13006. height: math.unit(1.75, "meters"),
  13007. weight: math.unit(55, "kg"),
  13008. name: "Kaiju",
  13009. image: {
  13010. source: "./media/characters/lykonous/kaiju.svg",
  13011. extra: 1055 / 946,
  13012. bottom: 0.135
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(2.5, "meters"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Kaiju Dragon",
  13024. height: math.unit(60, "meters")
  13025. },
  13026. {
  13027. name: "Mega Kaiju",
  13028. height: math.unit(120, "km")
  13029. },
  13030. {
  13031. name: "Giga Kaiju",
  13032. height: math.unit(200, "megameters")
  13033. },
  13034. {
  13035. name: "Terra Kaiju",
  13036. height: math.unit(400, "gigameters")
  13037. },
  13038. {
  13039. name: "Kaiju Dragon God",
  13040. height: math.unit(13000, "exaparsecs")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(6, "feet"),
  13049. weight: math.unit(150, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/blü/front.svg",
  13053. extra: 1883 / 1564,
  13054. bottom: 0.031
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(13, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Big Boi",
  13066. height: math.unit(150, "meters")
  13067. },
  13068. {
  13069. name: "Mini Stomper",
  13070. height: math.unit(300, "meters")
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(1000, "meters")
  13075. },
  13076. {
  13077. name: "Megamacro",
  13078. height: math.unit(11000, "meters")
  13079. },
  13080. {
  13081. name: "Gigamacro",
  13082. height: math.unit(11000, "km")
  13083. },
  13084. {
  13085. name: "Teramacro",
  13086. height: math.unit(420000, "km")
  13087. },
  13088. {
  13089. name: "Examacro",
  13090. height: math.unit(120, "parsecs")
  13091. },
  13092. {
  13093. name: "God Tho",
  13094. height: math.unit(98000000000, "parsecs")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13100. {
  13101. taurFront: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(200, "lb"),
  13104. name: "Taur (Front)",
  13105. image: {
  13106. source: "./media/characters/scales/taur-front.svg",
  13107. extra: 1,
  13108. bottom: 0.05
  13109. }
  13110. },
  13111. taurBack: {
  13112. height: math.unit(6, "feet"),
  13113. weight: math.unit(200, "lb"),
  13114. name: "Taur (Back)",
  13115. image: {
  13116. source: "./media/characters/scales/taur-back.svg",
  13117. extra: 1,
  13118. bottom: 0.08
  13119. }
  13120. },
  13121. anthro: {
  13122. height: math.unit(6 * 7 / 12, "feet"),
  13123. weight: math.unit(100, "lb"),
  13124. name: "Anthro",
  13125. image: {
  13126. source: "./media/characters/scales/anthro.svg",
  13127. extra: 1,
  13128. bottom: 0.06
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(12, "feet"),
  13136. default: true
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13142. {
  13143. front: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(150, "lb"),
  13146. name: "Front",
  13147. image: {
  13148. source: "./media/characters/koragos/front.svg",
  13149. extra: 841 / 794,
  13150. bottom: 0.035
  13151. }
  13152. },
  13153. back: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Back",
  13157. image: {
  13158. source: "./media/characters/koragos/back.svg",
  13159. extra: 841 / 810,
  13160. bottom: 0.022
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(6 + 11 / 12, "feet"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Macro",
  13172. height: math.unit(490, "feet")
  13173. },
  13174. {
  13175. name: "Megamacro",
  13176. height: math.unit(10, "miles")
  13177. },
  13178. {
  13179. name: "Gigamacro",
  13180. height: math.unit(50, "miles")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(250, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/xylrem/front.svg",
  13193. extra: 3323 / 3050,
  13194. bottom: 0.065
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Micro",
  13201. height: math.unit(4, "feet")
  13202. },
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(16, "feet"),
  13206. default: true
  13207. },
  13208. {
  13209. name: "Macro",
  13210. height: math.unit(2720, "feet")
  13211. },
  13212. {
  13213. name: "Megamacro",
  13214. height: math.unit(25000, "miles")
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(8, "feet"),
  13223. weight: math.unit(250, "kg"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/ikideru/front.svg",
  13227. extra: 930 / 870,
  13228. bottom: 0.087
  13229. }
  13230. },
  13231. back: {
  13232. height: math.unit(8, "feet"),
  13233. weight: math.unit(250, "kg"),
  13234. name: "Back",
  13235. image: {
  13236. source: "./media/characters/ikideru/back.svg",
  13237. extra: 919 / 852,
  13238. bottom: 0.055
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Rare",
  13245. height: math.unit(8, "feet"),
  13246. default: true
  13247. },
  13248. {
  13249. name: "Playful Loom",
  13250. height: math.unit(80, "feet")
  13251. },
  13252. {
  13253. name: "City Leaner",
  13254. height: math.unit(230, "feet")
  13255. },
  13256. {
  13257. name: "Megamacro",
  13258. height: math.unit(2500, "feet")
  13259. },
  13260. {
  13261. name: "Gigamacro",
  13262. height: math.unit(26400, "feet")
  13263. },
  13264. {
  13265. name: "Tectonic Shifter",
  13266. height: math.unit(1.7, "megameters")
  13267. },
  13268. {
  13269. name: "Planet Carer",
  13270. height: math.unit(21, "megameters")
  13271. },
  13272. {
  13273. name: "God",
  13274. height: math.unit(11157.22, "parsecs")
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(120, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/neo/front.svg"
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Micro",
  13293. height: math.unit(2, "inches"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Human Size",
  13298. height: math.unit(5 + 8 / 12, "feet")
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(13 + 10 / 12, "feet"),
  13307. weight: math.unit(5320, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/chauncey-chantz/front.svg",
  13311. extra: 1587 / 1435,
  13312. bottom: 0.02
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(13 + 10 / 12, "feet"),
  13320. default: true
  13321. },
  13322. {
  13323. name: "Macro",
  13324. height: math.unit(45, "feet")
  13325. },
  13326. {
  13327. name: "Megamacro",
  13328. height: math.unit(250, "miles")
  13329. },
  13330. {
  13331. name: "Planetary",
  13332. height: math.unit(10000, "miles")
  13333. },
  13334. {
  13335. name: "Galactic",
  13336. height: math.unit(40000, "parsecs")
  13337. },
  13338. {
  13339. name: "Universal",
  13340. height: math.unit(1, "yottameter")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13346. {
  13347. front: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/epifox/front.svg",
  13353. extra: 1,
  13354. bottom: 0.075
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Micro",
  13361. height: math.unit(6, "inches")
  13362. },
  13363. {
  13364. name: "Normal",
  13365. height: math.unit(12, "feet"),
  13366. default: true
  13367. },
  13368. {
  13369. name: "Macro",
  13370. height: math.unit(3810, "feet")
  13371. },
  13372. {
  13373. name: "Megamacro",
  13374. height: math.unit(500, "miles")
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(1.8796, "m"),
  13383. weight: math.unit(230, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/colin-t/front.svg",
  13387. extra: 1272 / 1193,
  13388. bottom: 0.07
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Micro",
  13395. height: math.unit(0.571, "meters")
  13396. },
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(1.8796, "meters"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Tall",
  13404. height: math.unit(4, "meters")
  13405. },
  13406. {
  13407. name: "Macro",
  13408. height: math.unit(67.241, "meters")
  13409. },
  13410. {
  13411. name: "Megamacro",
  13412. height: math.unit(371.856, "meters")
  13413. },
  13414. {
  13415. name: "Planetary",
  13416. height: math.unit(12631.5689, "km")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13422. {
  13423. front: {
  13424. height: math.unit(1.85, "meters"),
  13425. weight: math.unit(80, "kg"),
  13426. name: "Front",
  13427. image: {
  13428. source: "./media/characters/matvei/front.svg",
  13429. extra: 456/447,
  13430. bottom: 8/464
  13431. }
  13432. },
  13433. back: {
  13434. height: math.unit(1.85, "meters"),
  13435. weight: math.unit(80, "kg"),
  13436. name: "Back",
  13437. image: {
  13438. source: "./media/characters/matvei/back.svg",
  13439. extra: 434/427,
  13440. bottom: 11/445
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(1.85, "meters"),
  13448. default: true
  13449. },
  13450. ]
  13451. ))
  13452. characterMakers.push(() => makeCharacter(
  13453. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13454. {
  13455. front: {
  13456. height: math.unit(5 + 9 / 12, "feet"),
  13457. weight: math.unit(70, "lb"),
  13458. name: "Front",
  13459. image: {
  13460. source: "./media/characters/quincy/front.svg",
  13461. extra: 3041 / 2751
  13462. }
  13463. },
  13464. back: {
  13465. height: math.unit(5 + 9 / 12, "feet"),
  13466. weight: math.unit(70, "lb"),
  13467. name: "Back",
  13468. image: {
  13469. source: "./media/characters/quincy/back.svg",
  13470. extra: 3041 / 2751
  13471. }
  13472. },
  13473. flying: {
  13474. height: math.unit(5 + 4 / 12, "feet"),
  13475. weight: math.unit(70, "lb"),
  13476. name: "Flying",
  13477. image: {
  13478. source: "./media/characters/quincy/flying.svg",
  13479. extra: 1044 / 930
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Micro",
  13486. height: math.unit(3, "cm")
  13487. },
  13488. {
  13489. name: "Normal",
  13490. height: math.unit(5 + 9 / 12, "feet")
  13491. },
  13492. {
  13493. name: "Macro",
  13494. height: math.unit(200, "meters"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Megamacro",
  13499. height: math.unit(1000, "meters")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(3 + 11/12, "feet"),
  13508. weight: math.unit(50, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/vanrel/front.svg",
  13512. extra: 1104/949,
  13513. bottom: 52/1156
  13514. }
  13515. },
  13516. back: {
  13517. height: math.unit(3 + 11/12, "feet"),
  13518. weight: math.unit(50, "lb"),
  13519. name: "Back",
  13520. image: {
  13521. source: "./media/characters/vanrel/back.svg",
  13522. extra: 1119/976,
  13523. bottom: 37/1156
  13524. }
  13525. },
  13526. tome: {
  13527. height: math.unit(1.35, "feet"),
  13528. weight: math.unit(10, "lb"),
  13529. name: "Vanrel's Tome",
  13530. rename: true,
  13531. image: {
  13532. source: "./media/characters/vanrel/tome.svg"
  13533. }
  13534. },
  13535. beans: {
  13536. height: math.unit(0.89, "feet"),
  13537. name: "Beans",
  13538. image: {
  13539. source: "./media/characters/vanrel/beans.svg"
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(3 + 11/12, "feet"),
  13547. default: true
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(7 + 5 / 12, "feet"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/kuiper-vanrel/front.svg",
  13559. extra: 1219/1169,
  13560. bottom: 69/1288
  13561. }
  13562. },
  13563. back: {
  13564. height: math.unit(7 + 5 / 12, "feet"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/kuiper-vanrel/back.svg",
  13568. extra: 1236/1193,
  13569. bottom: 27/1263
  13570. }
  13571. },
  13572. foot: {
  13573. height: math.unit(0.55, "meters"),
  13574. name: "Foot",
  13575. image: {
  13576. source: "./media/characters/kuiper-vanrel/foot.svg",
  13577. }
  13578. },
  13579. battle: {
  13580. height: math.unit(6.824, "feet"),
  13581. name: "Battle",
  13582. image: {
  13583. source: "./media/characters/kuiper-vanrel/battle.svg",
  13584. extra: 1466 / 1327,
  13585. bottom: 29 / 1492.5
  13586. }
  13587. },
  13588. meerkui: {
  13589. height: math.unit(18, "inches"),
  13590. name: "Meerkui",
  13591. image: {
  13592. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13593. extra: 1354/1289,
  13594. bottom: 69/1423
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Normal",
  13601. height: math.unit(7 + 5 / 12, "feet"),
  13602. default: true
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(8 + 5 / 12, "feet"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/keset-vanrel/front.svg",
  13614. extra: 1231/1148,
  13615. bottom: 82/1313
  13616. }
  13617. },
  13618. back: {
  13619. height: math.unit(8 + 5 / 12, "feet"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/keset-vanrel/back.svg",
  13623. extra: 1240/1174,
  13624. bottom: 33/1273
  13625. }
  13626. },
  13627. hand: {
  13628. height: math.unit(0.6, "meters"),
  13629. name: "Hand",
  13630. image: {
  13631. source: "./media/characters/keset-vanrel/hand.svg"
  13632. }
  13633. },
  13634. foot: {
  13635. height: math.unit(0.94978, "meters"),
  13636. name: "Foot",
  13637. image: {
  13638. source: "./media/characters/keset-vanrel/foot.svg"
  13639. }
  13640. },
  13641. battle: {
  13642. height: math.unit(7.408, "feet"),
  13643. name: "Battle",
  13644. image: {
  13645. source: "./media/characters/keset-vanrel/battle.svg",
  13646. extra: 1890 / 1386,
  13647. bottom: 73.28 / 1970
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Normal",
  13654. height: math.unit(8 + 5 / 12, "feet"),
  13655. default: true
  13656. },
  13657. ]
  13658. ))
  13659. characterMakers.push(() => makeCharacter(
  13660. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13661. {
  13662. front: {
  13663. height: math.unit(6, "feet"),
  13664. weight: math.unit(150, "lb"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/neos/front.svg",
  13668. extra: 1696 / 992,
  13669. bottom: 0.14
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Normal",
  13676. height: math.unit(54, "cm"),
  13677. default: true
  13678. },
  13679. {
  13680. name: "Macro",
  13681. height: math.unit(100, "m")
  13682. },
  13683. {
  13684. name: "Megamacro",
  13685. height: math.unit(10, "km")
  13686. },
  13687. {
  13688. name: "Megamacro+",
  13689. height: math.unit(100, "km")
  13690. },
  13691. {
  13692. name: "Gigamacro",
  13693. height: math.unit(100, "Mm")
  13694. },
  13695. {
  13696. name: "Teramacro",
  13697. height: math.unit(100, "Gm")
  13698. },
  13699. {
  13700. name: "Examacro",
  13701. height: math.unit(100, "Em")
  13702. },
  13703. {
  13704. name: "Godly",
  13705. height: math.unit(10000, "Ym")
  13706. },
  13707. {
  13708. name: "Beyond Godly",
  13709. height: math.unit(25, "multiverses")
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13715. {
  13716. feminine: {
  13717. height: math.unit(5, "feet"),
  13718. weight: math.unit(100, "lb"),
  13719. name: "Feminine",
  13720. image: {
  13721. source: "./media/characters/sammy-mouse/feminine.svg",
  13722. extra: 2526 / 2425,
  13723. bottom: 0.123
  13724. }
  13725. },
  13726. masculine: {
  13727. height: math.unit(5, "feet"),
  13728. weight: math.unit(100, "lb"),
  13729. name: "Masculine",
  13730. image: {
  13731. source: "./media/characters/sammy-mouse/masculine.svg",
  13732. extra: 2526 / 2425,
  13733. bottom: 0.123
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Micro",
  13740. height: math.unit(5, "inches")
  13741. },
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(5, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(60, "feet")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(4, "feet"),
  13758. weight: math.unit(50, "lb"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/kole/front.svg",
  13762. extra: 1423 / 1303,
  13763. bottom: 0.025
  13764. }
  13765. },
  13766. back: {
  13767. height: math.unit(4, "feet"),
  13768. weight: math.unit(50, "lb"),
  13769. name: "Back",
  13770. image: {
  13771. source: "./media/characters/kole/back.svg",
  13772. extra: 1426 / 1280,
  13773. bottom: 0.02
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(4, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(2.5, "feet"),
  13790. weight: math.unit(32, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/rufran/front.svg",
  13794. extra: 1313/885,
  13795. bottom: 94/1407
  13796. }
  13797. },
  13798. side: {
  13799. height: math.unit(2.5, "feet"),
  13800. weight: math.unit(32, "lb"),
  13801. name: "Side",
  13802. image: {
  13803. source: "./media/characters/rufran/side.svg",
  13804. extra: 1109/852,
  13805. bottom: 118/1227
  13806. }
  13807. },
  13808. back: {
  13809. height: math.unit(2.5, "feet"),
  13810. weight: math.unit(32, "lb"),
  13811. name: "Back",
  13812. image: {
  13813. source: "./media/characters/rufran/back.svg",
  13814. extra: 1280/878,
  13815. bottom: 131/1411
  13816. }
  13817. },
  13818. mouth: {
  13819. height: math.unit(1.13, "feet"),
  13820. name: "Mouth",
  13821. image: {
  13822. source: "./media/characters/rufran/mouth.svg"
  13823. }
  13824. },
  13825. foot: {
  13826. height: math.unit(1.33, "feet"),
  13827. name: "Foot",
  13828. image: {
  13829. source: "./media/characters/rufran/foot.svg"
  13830. }
  13831. },
  13832. koboldFront: {
  13833. height: math.unit(2 + 6 / 12, "feet"),
  13834. weight: math.unit(20, "lb"),
  13835. name: "Front (Kobold)",
  13836. image: {
  13837. source: "./media/characters/rufran/kobold-front.svg",
  13838. extra: 2041 / 1839,
  13839. bottom: 0.055
  13840. }
  13841. },
  13842. koboldBack: {
  13843. height: math.unit(2 + 6 / 12, "feet"),
  13844. weight: math.unit(20, "lb"),
  13845. name: "Back (Kobold)",
  13846. image: {
  13847. source: "./media/characters/rufran/kobold-back.svg",
  13848. extra: 2054 / 1839,
  13849. bottom: 0.01
  13850. }
  13851. },
  13852. koboldHand: {
  13853. height: math.unit(0.2166, "meters"),
  13854. name: "Hand (Kobold)",
  13855. image: {
  13856. source: "./media/characters/rufran/kobold-hand.svg"
  13857. }
  13858. },
  13859. koboldFoot: {
  13860. height: math.unit(0.185, "meters"),
  13861. name: "Foot (Kobold)",
  13862. image: {
  13863. source: "./media/characters/rufran/kobold-foot.svg"
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Micro",
  13870. height: math.unit(1, "inch")
  13871. },
  13872. {
  13873. name: "Normal",
  13874. height: math.unit(2 + 6 / 12, "feet"),
  13875. default: true
  13876. },
  13877. {
  13878. name: "Big",
  13879. height: math.unit(60, "feet")
  13880. },
  13881. {
  13882. name: "Macro",
  13883. height: math.unit(325, "feet")
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13889. {
  13890. front: {
  13891. height: math.unit(0.3, "meters"),
  13892. weight: math.unit(3.5, "kg"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/chip/front.svg",
  13896. extra: 748 / 674
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Micro",
  13903. height: math.unit(1, "inch"),
  13904. default: true
  13905. },
  13906. ]
  13907. ))
  13908. characterMakers.push(() => makeCharacter(
  13909. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13910. {
  13911. side: {
  13912. height: math.unit(2.3, "meters"),
  13913. weight: math.unit(3500, "lb"),
  13914. name: "Side",
  13915. image: {
  13916. source: "./media/characters/torvid/side.svg",
  13917. extra: 1972 / 722,
  13918. bottom: 0.035
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(2.3, "meters"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13932. {
  13933. front: {
  13934. height: math.unit(2, "meters"),
  13935. weight: math.unit(150.5, "kg"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/susan/front.svg",
  13939. extra: 693 / 635,
  13940. bottom: 0.05
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(505, "miles"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13954. {
  13955. front: {
  13956. height: math.unit(6, "feet"),
  13957. weight: math.unit(150, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/raindrops/front.svg",
  13961. extra: 2655 / 2461,
  13962. bottom: 49 / 2705
  13963. }
  13964. },
  13965. back: {
  13966. height: math.unit(6, "feet"),
  13967. weight: math.unit(150, "lb"),
  13968. name: "Back",
  13969. image: {
  13970. source: "./media/characters/raindrops/back.svg",
  13971. extra: 2574 / 2400,
  13972. bottom: 65 / 2634
  13973. }
  13974. },
  13975. },
  13976. [
  13977. {
  13978. name: "Micro",
  13979. height: math.unit(6, "inches")
  13980. },
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(6 + 2 / 12, "feet")
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(131, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Megamacro",
  13992. height: math.unit(15, "miles")
  13993. },
  13994. {
  13995. name: "Gigamacro",
  13996. height: math.unit(4000, "miles")
  13997. },
  13998. {
  13999. name: "Teramacro",
  14000. height: math.unit(315000, "miles")
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(2.794, "meters"),
  14009. weight: math.unit(325, "kg"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/tezwa/front.svg",
  14013. extra: 2083 / 1906,
  14014. bottom: 0.031
  14015. }
  14016. },
  14017. foot: {
  14018. height: math.unit(0.687, "meters"),
  14019. name: "Foot",
  14020. image: {
  14021. source: "./media/characters/tezwa/foot.svg"
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Normal",
  14028. height: math.unit(9 + 2 / 12, "feet"),
  14029. default: true
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14035. {
  14036. front: {
  14037. height: math.unit(58, "feet"),
  14038. weight: math.unit(89000, "lb"),
  14039. name: "Front",
  14040. image: {
  14041. source: "./media/characters/typhus/front.svg",
  14042. extra: 816 / 800,
  14043. bottom: 0.065
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Macro",
  14050. height: math.unit(58, "feet"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(12, "feet"),
  14060. weight: math.unit(6, "tonnes"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/lyra-von-wulf/front.svg",
  14064. extra: 1,
  14065. bottom: 0.10
  14066. }
  14067. },
  14068. frontMecha: {
  14069. height: math.unit(12, "feet"),
  14070. weight: math.unit(12, "tonnes"),
  14071. name: "Front (Mecha)",
  14072. image: {
  14073. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14074. extra: 1,
  14075. bottom: 0.042
  14076. }
  14077. },
  14078. maw: {
  14079. height: math.unit(2.2, "feet"),
  14080. name: "Maw",
  14081. image: {
  14082. source: "./media/characters/lyra-von-wulf/maw.svg"
  14083. }
  14084. },
  14085. },
  14086. [
  14087. {
  14088. name: "Normal",
  14089. height: math.unit(12, "feet"),
  14090. default: true
  14091. },
  14092. {
  14093. name: "Classic",
  14094. height: math.unit(50, "feet")
  14095. },
  14096. {
  14097. name: "Macro",
  14098. height: math.unit(500, "feet")
  14099. },
  14100. {
  14101. name: "Megamacro",
  14102. height: math.unit(1, "mile")
  14103. },
  14104. {
  14105. name: "Gigamacro",
  14106. height: math.unit(400, "miles")
  14107. },
  14108. {
  14109. name: "Teramacro",
  14110. height: math.unit(22000, "miles")
  14111. },
  14112. {
  14113. name: "Solarmacro",
  14114. height: math.unit(8600000, "miles")
  14115. },
  14116. {
  14117. name: "Galactic",
  14118. height: math.unit(1057000, "lightyears")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(6 + 10 / 12, "feet"),
  14127. weight: math.unit(150, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/dixon/front.svg",
  14131. extra: 3361 / 3209,
  14132. bottom: 0.01
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(6 + 10 / 12, "feet"),
  14140. default: true
  14141. },
  14142. {
  14143. name: "Big",
  14144. height: math.unit(12, "meters")
  14145. },
  14146. {
  14147. name: "Macro",
  14148. height: math.unit(500, "meters")
  14149. },
  14150. {
  14151. name: "Megamacro",
  14152. height: math.unit(2, "km")
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(185, "cm"),
  14161. weight: math.unit(68, "kg"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/kauko/front.svg",
  14165. extra: 1455 / 1421,
  14166. bottom: 0.03
  14167. }
  14168. },
  14169. back: {
  14170. height: math.unit(185, "cm"),
  14171. weight: math.unit(68, "kg"),
  14172. name: "Back",
  14173. image: {
  14174. source: "./media/characters/kauko/back.svg",
  14175. extra: 1455 / 1421,
  14176. bottom: 0.004
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Normal",
  14183. height: math.unit(185, "cm"),
  14184. default: true
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14190. {
  14191. frontSfw: {
  14192. height: math.unit(5, "meters"),
  14193. weight: math.unit(4250, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/varg/front-sfw.svg",
  14197. extra: 1103/1010,
  14198. bottom: 50/1153
  14199. },
  14200. form: "anthro",
  14201. default: true
  14202. },
  14203. backSfw: {
  14204. height: math.unit(5, "meters"),
  14205. weight: math.unit(4250, "lb"),
  14206. name: "Back",
  14207. image: {
  14208. source: "./media/characters/varg/back-sfw.svg",
  14209. extra: 1038/1022,
  14210. bottom: 36/1074
  14211. },
  14212. form: "anthro"
  14213. },
  14214. frontNsfw: {
  14215. height: math.unit(5, "meters"),
  14216. weight: math.unit(4250, "lb"),
  14217. name: "Front (NSFW)",
  14218. image: {
  14219. source: "./media/characters/varg/front-nsfw.svg",
  14220. extra: 1103/1010,
  14221. bottom: 50/1153
  14222. },
  14223. form: "anthro"
  14224. },
  14225. sheath: {
  14226. height: math.unit(3.8, "feet"),
  14227. weight: math.unit(90, "kilograms"),
  14228. name: "Sheath",
  14229. image: {
  14230. source: "./media/characters/varg/sheath.svg"
  14231. },
  14232. form: "anthro"
  14233. },
  14234. dick: {
  14235. height: math.unit(4.6, "feet"),
  14236. weight: math.unit(451, "kilograms"),
  14237. name: "Dick",
  14238. image: {
  14239. source: "./media/characters/varg/dick.svg"
  14240. },
  14241. form: "anthro"
  14242. },
  14243. feralSfw: {
  14244. height: math.unit(5, "meters"),
  14245. weight: math.unit(100000, "lb"),
  14246. name: "Side",
  14247. image: {
  14248. source: "./media/characters/varg/feral-sfw.svg",
  14249. extra: 1065/511,
  14250. bottom: 211/1276
  14251. },
  14252. form: "feral",
  14253. default: true
  14254. },
  14255. feralNsfw: {
  14256. height: math.unit(5, "meters"),
  14257. weight: math.unit(100000, "lb"),
  14258. name: "Side (NSFW)",
  14259. image: {
  14260. source: "./media/characters/varg/feral-nsfw.svg",
  14261. extra: 1065/511,
  14262. bottom: 211/1276
  14263. },
  14264. form: "feral",
  14265. },
  14266. feralSheath: {
  14267. height: math.unit(9.8, "feet"),
  14268. weight: math.unit(2000, "kilograms"),
  14269. name: "Sheath",
  14270. image: {
  14271. source: "./media/characters/varg/sheath.svg"
  14272. },
  14273. form: "feral"
  14274. },
  14275. feralDick: {
  14276. height: math.unit(13.11, "feet"),
  14277. weight: math.unit(10440, "kilograms"),
  14278. name: "Dick",
  14279. image: {
  14280. source: "./media/characters/varg/dick.svg"
  14281. },
  14282. form: "feral"
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(5, "meters"),
  14289. form: "anthro"
  14290. },
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(200, "meters"),
  14294. form: "anthro"
  14295. },
  14296. {
  14297. name: "Megamacro",
  14298. height: math.unit(20, "kilometers"),
  14299. form: "anthro"
  14300. },
  14301. {
  14302. name: "True Size",
  14303. height: math.unit(211, "km"),
  14304. form: "anthro",
  14305. default: true
  14306. },
  14307. {
  14308. name: "Gigamacro",
  14309. height: math.unit(1000, "km"),
  14310. form: "anthro"
  14311. },
  14312. {
  14313. name: "Gigamacro+",
  14314. height: math.unit(8000, "km"),
  14315. form: "anthro"
  14316. },
  14317. {
  14318. name: "Teramacro",
  14319. height: math.unit(1000000, "km"),
  14320. form: "anthro"
  14321. },
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(5, "meters"),
  14325. form: "feral"
  14326. },
  14327. {
  14328. name: "Macro",
  14329. height: math.unit(200, "meters"),
  14330. form: "feral"
  14331. },
  14332. {
  14333. name: "Megamacro",
  14334. height: math.unit(20, "kilometers"),
  14335. form: "feral"
  14336. },
  14337. {
  14338. name: "True Size",
  14339. height: math.unit(211, "km"),
  14340. form: "feral",
  14341. default: true
  14342. },
  14343. {
  14344. name: "Gigamacro",
  14345. height: math.unit(1000, "km"),
  14346. form: "feral"
  14347. },
  14348. {
  14349. name: "Gigamacro+",
  14350. height: math.unit(8000, "km"),
  14351. form: "feral"
  14352. },
  14353. {
  14354. name: "Teramacro",
  14355. height: math.unit(1000000, "km"),
  14356. form: "feral"
  14357. },
  14358. ],
  14359. {
  14360. "anthro": {
  14361. name: "Anthro",
  14362. default: true
  14363. },
  14364. "feral": {
  14365. name: "Feral",
  14366. },
  14367. }
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(7 + 7 / 12, "feet"),
  14374. weight: math.unit(267, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/dayza/front.svg",
  14378. extra: 1262 / 1200,
  14379. bottom: 0.035
  14380. }
  14381. },
  14382. side: {
  14383. height: math.unit(7 + 7 / 12, "feet"),
  14384. weight: math.unit(267, "lb"),
  14385. name: "Side",
  14386. image: {
  14387. source: "./media/characters/dayza/side.svg",
  14388. extra: 1295 / 1245,
  14389. bottom: 0.05
  14390. }
  14391. },
  14392. back: {
  14393. height: math.unit(7 + 7 / 12, "feet"),
  14394. weight: math.unit(267, "lb"),
  14395. name: "Back",
  14396. image: {
  14397. source: "./media/characters/dayza/back.svg",
  14398. extra: 1241 / 1170
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Normal",
  14405. height: math.unit(7 + 7 / 12, "feet"),
  14406. default: true
  14407. },
  14408. {
  14409. name: "Macro",
  14410. height: math.unit(155, "feet")
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6 + 5 / 12, "feet"),
  14419. weight: math.unit(160, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/xanthos/front.svg",
  14423. extra: 1,
  14424. bottom: 0.04
  14425. }
  14426. },
  14427. back: {
  14428. height: math.unit(6 + 5 / 12, "feet"),
  14429. weight: math.unit(160, "lb"),
  14430. name: "Back",
  14431. image: {
  14432. source: "./media/characters/xanthos/back.svg",
  14433. extra: 1,
  14434. bottom: 0.03
  14435. }
  14436. },
  14437. hand: {
  14438. height: math.unit(0.928, "feet"),
  14439. name: "Hand",
  14440. image: {
  14441. source: "./media/characters/xanthos/hand.svg"
  14442. }
  14443. },
  14444. foot: {
  14445. height: math.unit(1.286, "feet"),
  14446. name: "Foot",
  14447. image: {
  14448. source: "./media/characters/xanthos/foot.svg"
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(6 + 5 / 12, "feet"),
  14456. default: true
  14457. },
  14458. {
  14459. name: "Normal+",
  14460. height: math.unit(6, "meters")
  14461. },
  14462. {
  14463. name: "Macro",
  14464. height: math.unit(40, "feet")
  14465. },
  14466. {
  14467. name: "Macro+",
  14468. height: math.unit(200, "meters")
  14469. },
  14470. {
  14471. name: "Megamacro",
  14472. height: math.unit(20, "km")
  14473. },
  14474. {
  14475. name: "Megamacro+",
  14476. height: math.unit(100, "km")
  14477. },
  14478. {
  14479. name: "Gigamacro",
  14480. height: math.unit(200, "megameters")
  14481. },
  14482. {
  14483. name: "Gigamacro+",
  14484. height: math.unit(1.5, "gigameters")
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(6 + 3 / 12, "feet"),
  14493. weight: math.unit(215, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/grynn/front.svg",
  14497. extra: 4627 / 4209,
  14498. bottom: 0.047
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Micro",
  14505. height: math.unit(6, "inches")
  14506. },
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(6 + 3 / 12, "feet"),
  14510. default: true
  14511. },
  14512. {
  14513. name: "Big",
  14514. height: math.unit(104, "feet")
  14515. },
  14516. {
  14517. name: "Macro",
  14518. height: math.unit(944, "feet")
  14519. },
  14520. {
  14521. name: "Macro+",
  14522. height: math.unit(9480, "feet")
  14523. },
  14524. {
  14525. name: "Megamacro",
  14526. height: math.unit(78752, "feet")
  14527. },
  14528. {
  14529. name: "Megamacro+",
  14530. height: math.unit(630128, "feet")
  14531. },
  14532. {
  14533. name: "Megamacro++",
  14534. height: math.unit(3150695, "feet")
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(7 + 5 / 12, "feet"),
  14543. weight: math.unit(450, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/mocha-aura/front.svg",
  14547. extra: 1907 / 1817,
  14548. bottom: 0.04
  14549. }
  14550. },
  14551. back: {
  14552. height: math.unit(7 + 5 / 12, "feet"),
  14553. weight: math.unit(450, "lb"),
  14554. name: "Back",
  14555. image: {
  14556. source: "./media/characters/mocha-aura/back.svg",
  14557. extra: 1900 / 1825,
  14558. bottom: 0.045
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Nano",
  14565. height: math.unit(1, "nm")
  14566. },
  14567. {
  14568. name: "Megamicro",
  14569. height: math.unit(1, "mm")
  14570. },
  14571. {
  14572. name: "Micro",
  14573. height: math.unit(3, "inches")
  14574. },
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(7 + 5 / 12, "feet"),
  14578. default: true
  14579. },
  14580. {
  14581. name: "Macro",
  14582. height: math.unit(30, "feet")
  14583. },
  14584. {
  14585. name: "Megamacro",
  14586. height: math.unit(3500, "feet")
  14587. },
  14588. {
  14589. name: "Teramacro",
  14590. height: math.unit(500000, "miles")
  14591. },
  14592. {
  14593. name: "Petamacro",
  14594. height: math.unit(50000000000000000, "parsecs")
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(150, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/ilisha-devya/front.svg",
  14607. extra: 1053/1049,
  14608. bottom: 270/1323
  14609. }
  14610. },
  14611. back: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(150, "lb"),
  14614. name: "Back",
  14615. image: {
  14616. source: "./media/characters/ilisha-devya/back.svg",
  14617. extra: 1131/1128,
  14618. bottom: 39/1170
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(500, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Megamacro",
  14630. height: math.unit(10, "miles")
  14631. },
  14632. {
  14633. name: "Gigamacro",
  14634. height: math.unit(100000, "miles")
  14635. },
  14636. {
  14637. name: "Examacro",
  14638. height: math.unit(1e9, "lightyears")
  14639. },
  14640. {
  14641. name: "Omniversal",
  14642. height: math.unit(1e33, "lightyears")
  14643. },
  14644. {
  14645. name: "Beyond Infinite",
  14646. height: math.unit(1e100, "lightyears")
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14652. {
  14653. Side: {
  14654. height: math.unit(6, "feet"),
  14655. weight: math.unit(150, "lb"),
  14656. name: "Side",
  14657. image: {
  14658. source: "./media/characters/mira/side.svg",
  14659. extra: 900 / 799,
  14660. bottom: 0.02
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Human Size",
  14667. height: math.unit(6, "feet")
  14668. },
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(100, "feet"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Megamacro",
  14676. height: math.unit(10, "miles")
  14677. },
  14678. {
  14679. name: "Gigamacro",
  14680. height: math.unit(25000, "miles")
  14681. },
  14682. {
  14683. name: "Teramacro",
  14684. height: math.unit(300, "AU")
  14685. },
  14686. {
  14687. name: "Full Size",
  14688. height: math.unit(4.5e10, "lightyears")
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(6, "feet"),
  14697. weight: math.unit(150, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/holly/front.svg",
  14701. extra: 639 / 606
  14702. }
  14703. },
  14704. back: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(150, "lb"),
  14707. name: "Back",
  14708. image: {
  14709. source: "./media/characters/holly/back.svg",
  14710. extra: 623 / 598
  14711. }
  14712. },
  14713. frontWorking: {
  14714. height: math.unit(6, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front (Working)",
  14717. image: {
  14718. source: "./media/characters/holly/front-working.svg",
  14719. extra: 607 / 577,
  14720. bottom: 0.048
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(12 + 3 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(6, "feet"),
  14737. weight: math.unit(150, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/porter/front.svg",
  14741. extra: 1,
  14742. bottom: 0.01
  14743. }
  14744. },
  14745. frontRobes: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(150, "lb"),
  14748. name: "Front (Robes)",
  14749. image: {
  14750. source: "./media/characters/porter/front-robes.svg",
  14751. extra: 1.01,
  14752. bottom: 0.01
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(11 + 9 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14766. {
  14767. legendary: {
  14768. height: math.unit(6, "feet"),
  14769. weight: math.unit(150, "lb"),
  14770. name: "Legendary",
  14771. image: {
  14772. source: "./media/characters/lucy/legendary.svg",
  14773. extra: 1355 / 1100,
  14774. bottom: 0.045
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Legendary",
  14781. height: math.unit(86882 * 2, "miles"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(6, "feet"),
  14791. weight: math.unit(150, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/drusilla/front.svg",
  14795. extra: 678 / 635,
  14796. bottom: 0.03
  14797. }
  14798. },
  14799. back: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(150, "lb"),
  14802. name: "Back",
  14803. image: {
  14804. source: "./media/characters/drusilla/back.svg",
  14805. extra: 678 / 635,
  14806. bottom: 0.005
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Macro",
  14813. height: math.unit(100, "feet")
  14814. },
  14815. {
  14816. name: "Canon Height",
  14817. height: math.unit(2000, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(6, "feet"),
  14827. weight: math.unit(180, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/renard-thatch/front.svg",
  14831. extra: 2411 / 2275,
  14832. bottom: 0.01
  14833. }
  14834. },
  14835. frontPosing: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(180, "lb"),
  14838. name: "Front (Posing)",
  14839. image: {
  14840. source: "./media/characters/renard-thatch/front-posing.svg",
  14841. extra: 2381 / 2261,
  14842. bottom: 0.01
  14843. }
  14844. },
  14845. back: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(180, "lb"),
  14848. name: "Back",
  14849. image: {
  14850. source: "./media/characters/renard-thatch/back.svg",
  14851. extra: 2428 / 2288
  14852. }
  14853. },
  14854. },
  14855. [
  14856. {
  14857. name: "Micro",
  14858. height: math.unit(3, "inches")
  14859. },
  14860. {
  14861. name: "Default",
  14862. height: math.unit(6, "feet"),
  14863. default: true
  14864. },
  14865. {
  14866. name: "Macro",
  14867. height: math.unit(75, "feet")
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(1450, "feet"),
  14876. weight: math.unit(1.21e6, "tons"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/sekvra/front.svg",
  14880. extra: 1193/1190,
  14881. bottom: 78/1271
  14882. }
  14883. },
  14884. side: {
  14885. height: math.unit(1450, "feet"),
  14886. weight: math.unit(1.21e6, "tons"),
  14887. name: "Side",
  14888. image: {
  14889. source: "./media/characters/sekvra/side.svg",
  14890. extra: 1193/1190,
  14891. bottom: 52/1245
  14892. }
  14893. },
  14894. back: {
  14895. height: math.unit(1450, "feet"),
  14896. weight: math.unit(1.21e6, "tons"),
  14897. name: "Back",
  14898. image: {
  14899. source: "./media/characters/sekvra/back.svg",
  14900. extra: 1219/1216,
  14901. bottom: 21/1240
  14902. }
  14903. },
  14904. frontClothed: {
  14905. height: math.unit(1450, "feet"),
  14906. weight: math.unit(1.21e6, "tons"),
  14907. name: "Front (Clothed)",
  14908. image: {
  14909. source: "./media/characters/sekvra/front-clothed.svg",
  14910. extra: 1192/1189,
  14911. bottom: 79/1271
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Macro",
  14918. height: math.unit(1450, "feet"),
  14919. default: true
  14920. },
  14921. {
  14922. name: "Megamacro",
  14923. height: math.unit(15000, "feet")
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14929. {
  14930. front: {
  14931. height: math.unit(6, "feet"),
  14932. weight: math.unit(150, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/carmine/front.svg",
  14936. extra: 1557/1538,
  14937. bottom: 68/1625
  14938. }
  14939. },
  14940. frontArmor: {
  14941. height: math.unit(6, "feet"),
  14942. weight: math.unit(150, "lb"),
  14943. name: "Front (Armor)",
  14944. image: {
  14945. source: "./media/characters/carmine/front-armor.svg",
  14946. extra: 1549/1530,
  14947. bottom: 82/1631
  14948. }
  14949. },
  14950. mouth: {
  14951. height: math.unit(0.55, "feet"),
  14952. name: "Mouth",
  14953. image: {
  14954. source: "./media/characters/carmine/mouth.svg"
  14955. }
  14956. },
  14957. hand: {
  14958. height: math.unit(1.05, "feet"),
  14959. name: "Hand",
  14960. image: {
  14961. source: "./media/characters/carmine/hand.svg"
  14962. }
  14963. },
  14964. foot: {
  14965. height: math.unit(0.6, "feet"),
  14966. name: "Foot",
  14967. image: {
  14968. source: "./media/characters/carmine/foot.svg"
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Large",
  14975. height: math.unit(1, "mile")
  14976. },
  14977. {
  14978. name: "Huge",
  14979. height: math.unit(40, "miles"),
  14980. default: true
  14981. },
  14982. {
  14983. name: "Colossal",
  14984. height: math.unit(2500, "miles")
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(6, "feet"),
  14993. weight: math.unit(150, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/elyssia/front.svg",
  14997. extra: 2201 / 2035,
  14998. bottom: 0.05
  14999. }
  15000. },
  15001. frontClothed: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(150, "lb"),
  15004. name: "Front (Clothed)",
  15005. image: {
  15006. source: "./media/characters/elyssia/front-clothed.svg",
  15007. extra: 2201 / 2035,
  15008. bottom: 0.05
  15009. }
  15010. },
  15011. back: {
  15012. height: math.unit(6, "feet"),
  15013. weight: math.unit(150, "lb"),
  15014. name: "Back",
  15015. image: {
  15016. source: "./media/characters/elyssia/back.svg",
  15017. extra: 2201 / 2035,
  15018. bottom: 0.013
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Smaller",
  15025. height: math.unit(150, "feet")
  15026. },
  15027. {
  15028. name: "Standard",
  15029. height: math.unit(1400, "feet"),
  15030. default: true
  15031. },
  15032. {
  15033. name: "Distracted",
  15034. height: math.unit(15000, "feet")
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(7 + 4/12, "feet"),
  15043. weight: math.unit(690, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/geno-maxwell/front.svg",
  15047. extra: 984/856,
  15048. bottom: 87/1071
  15049. }
  15050. },
  15051. back: {
  15052. height: math.unit(7 + 4/12, "feet"),
  15053. weight: math.unit(690, "lb"),
  15054. name: "Back",
  15055. image: {
  15056. source: "./media/characters/geno-maxwell/back.svg",
  15057. extra: 981/854,
  15058. bottom: 57/1038
  15059. }
  15060. },
  15061. frontCostume: {
  15062. height: math.unit(7 + 4/12, "feet"),
  15063. weight: math.unit(690, "lb"),
  15064. name: "Front (Costume)",
  15065. image: {
  15066. source: "./media/characters/geno-maxwell/front-costume.svg",
  15067. extra: 984/856,
  15068. bottom: 87/1071
  15069. }
  15070. },
  15071. backcostume: {
  15072. height: math.unit(7 + 4/12, "feet"),
  15073. weight: math.unit(690, "lb"),
  15074. name: "Back (Costume)",
  15075. image: {
  15076. source: "./media/characters/geno-maxwell/back-costume.svg",
  15077. extra: 981/854,
  15078. bottom: 57/1038
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Micro",
  15085. height: math.unit(3, "inches")
  15086. },
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(7 + 4 / 12, "feet"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Macro",
  15094. height: math.unit(220, "feet")
  15095. },
  15096. {
  15097. name: "Megamacro",
  15098. height: math.unit(11, "miles")
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15104. {
  15105. front: {
  15106. height: math.unit(7 + 4/12, "feet"),
  15107. weight: math.unit(750, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/regena-maxwell/front.svg",
  15111. extra: 984/856,
  15112. bottom: 87/1071
  15113. }
  15114. },
  15115. back: {
  15116. height: math.unit(7 + 4/12, "feet"),
  15117. weight: math.unit(750, "lb"),
  15118. name: "Back",
  15119. image: {
  15120. source: "./media/characters/regena-maxwell/back.svg",
  15121. extra: 981/854,
  15122. bottom: 57/1038
  15123. }
  15124. },
  15125. frontCostume: {
  15126. height: math.unit(7 + 4/12, "feet"),
  15127. weight: math.unit(750, "lb"),
  15128. name: "Front (Costume)",
  15129. image: {
  15130. source: "./media/characters/regena-maxwell/front-costume.svg",
  15131. extra: 984/856,
  15132. bottom: 87/1071
  15133. }
  15134. },
  15135. backcostume: {
  15136. height: math.unit(7 + 4/12, "feet"),
  15137. weight: math.unit(750, "lb"),
  15138. name: "Back (Costume)",
  15139. image: {
  15140. source: "./media/characters/regena-maxwell/back-costume.svg",
  15141. extra: 981/854,
  15142. bottom: 57/1038
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(7 + 4 / 12, "feet"),
  15150. default: true
  15151. },
  15152. {
  15153. name: "Macro",
  15154. height: math.unit(220, "feet")
  15155. },
  15156. {
  15157. name: "Megamacro",
  15158. height: math.unit(11, "miles")
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15164. {
  15165. front: {
  15166. height: math.unit(6, "feet"),
  15167. weight: math.unit(150, "lb"),
  15168. name: "Front",
  15169. image: {
  15170. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15171. extra: 860 / 690,
  15172. bottom: 0.03
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(1.7, "meters"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(150, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/quilly/front.svg",
  15193. extra: 890 / 776
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Gigamacro",
  15200. height: math.unit(404090, "miles"),
  15201. default: true
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15207. {
  15208. front: {
  15209. height: math.unit(7 + 8 / 12, "feet"),
  15210. weight: math.unit(350, "lb"),
  15211. name: "Front",
  15212. image: {
  15213. source: "./media/characters/tempest/front.svg",
  15214. extra: 1175 / 1086,
  15215. bottom: 0.02
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Normal",
  15222. height: math.unit(7 + 8 / 12, "feet"),
  15223. default: true
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15229. {
  15230. side: {
  15231. height: math.unit(4 + 5 / 12, "feet"),
  15232. weight: math.unit(80, "lb"),
  15233. name: "Side",
  15234. image: {
  15235. source: "./media/characters/rodger/side.svg",
  15236. extra: 1235 / 1118
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Micro",
  15243. height: math.unit(1, "inch")
  15244. },
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(4 + 5 / 12, "feet"),
  15248. default: true
  15249. },
  15250. {
  15251. name: "Macro",
  15252. height: math.unit(120, "feet")
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(6, "feet"),
  15261. weight: math.unit(150, "lb"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/danyel/front.svg",
  15265. extra: 1185 / 1123,
  15266. bottom: 0.05
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Shrunken",
  15273. height: math.unit(0.5, "mm")
  15274. },
  15275. {
  15276. name: "Micro",
  15277. height: math.unit(1, "mm"),
  15278. default: true
  15279. },
  15280. {
  15281. name: "Upsized",
  15282. height: math.unit(5 + 5 / 12, "feet")
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15288. {
  15289. front: {
  15290. height: math.unit(5 + 6 / 12, "feet"),
  15291. weight: math.unit(200, "lb"),
  15292. name: "Front",
  15293. image: {
  15294. source: "./media/characters/vivian-bijoux/front.svg",
  15295. extra: 1217/1209,
  15296. bottom: 76/1293
  15297. }
  15298. },
  15299. back: {
  15300. height: math.unit(5 + 6 / 12, "feet"),
  15301. weight: math.unit(200, "lb"),
  15302. name: "Back",
  15303. image: {
  15304. source: "./media/characters/vivian-bijoux/back.svg",
  15305. extra: 1214/1208,
  15306. bottom: 51/1265
  15307. }
  15308. },
  15309. dressed: {
  15310. height: math.unit(5 + 6 / 12, "feet"),
  15311. weight: math.unit(200, "lb"),
  15312. name: "Dressed",
  15313. image: {
  15314. source: "./media/characters/vivian-bijoux/dressed.svg",
  15315. extra: 1217/1209,
  15316. bottom: 76/1293
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(5 + 6 / 12, "feet"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Bad Dream",
  15328. height: math.unit(500, "feet")
  15329. },
  15330. {
  15331. name: "Nightmare",
  15332. height: math.unit(500, "miles")
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(6 + 1 / 12, "feet"),
  15341. weight: math.unit(260, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/zeta/front.svg",
  15345. extra: 1968 / 1889,
  15346. bottom: 0.06
  15347. }
  15348. },
  15349. back: {
  15350. height: math.unit(6 + 1 / 12, "feet"),
  15351. weight: math.unit(260, "lb"),
  15352. name: "Back",
  15353. image: {
  15354. source: "./media/characters/zeta/back.svg",
  15355. extra: 1944 / 1858,
  15356. bottom: 0.03
  15357. }
  15358. },
  15359. hand: {
  15360. height: math.unit(1.112, "feet"),
  15361. name: "Hand",
  15362. image: {
  15363. source: "./media/characters/zeta/hand.svg"
  15364. }
  15365. },
  15366. foot: {
  15367. height: math.unit(1.48, "feet"),
  15368. name: "Foot",
  15369. image: {
  15370. source: "./media/characters/zeta/foot.svg"
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Micro",
  15377. height: math.unit(6, "inches")
  15378. },
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(6 + 1 / 12, "feet"),
  15382. default: true
  15383. },
  15384. {
  15385. name: "Macro",
  15386. height: math.unit(20, "feet")
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/jamie-larsen/front.svg",
  15399. extra: 962 / 933,
  15400. bottom: 0.02
  15401. }
  15402. },
  15403. back: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Back",
  15407. image: {
  15408. source: "./media/characters/jamie-larsen/back.svg",
  15409. extra: 997 / 946
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(28 + 7 / 12, "feet"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Macro+",
  15421. height: math.unit(180, "feet")
  15422. },
  15423. {
  15424. name: "Megamacro",
  15425. height: math.unit(10, "miles")
  15426. },
  15427. {
  15428. name: "Gigamacro",
  15429. height: math.unit(200000, "miles")
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(120, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/vance/front.svg",
  15442. extra: 1980 / 1890,
  15443. bottom: 0.09
  15444. }
  15445. },
  15446. back: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(120, "lb"),
  15449. name: "Back",
  15450. image: {
  15451. source: "./media/characters/vance/back.svg",
  15452. extra: 2081 / 1994,
  15453. bottom: 0.014
  15454. }
  15455. },
  15456. hand: {
  15457. height: math.unit(0.88, "feet"),
  15458. name: "Hand",
  15459. image: {
  15460. source: "./media/characters/vance/hand.svg"
  15461. }
  15462. },
  15463. foot: {
  15464. height: math.unit(0.64, "feet"),
  15465. name: "Foot",
  15466. image: {
  15467. source: "./media/characters/vance/foot.svg"
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Small",
  15474. height: math.unit(90, "feet"),
  15475. default: true
  15476. },
  15477. {
  15478. name: "Macro",
  15479. height: math.unit(100, "meters")
  15480. },
  15481. {
  15482. name: "Megamacro",
  15483. height: math.unit(15, "miles")
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(6, "feet"),
  15492. weight: math.unit(180, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/xochitl/front.svg",
  15496. extra: 2297 / 2261,
  15497. bottom: 0.065
  15498. }
  15499. },
  15500. back: {
  15501. height: math.unit(6, "feet"),
  15502. weight: math.unit(180, "lb"),
  15503. name: "Back",
  15504. image: {
  15505. source: "./media/characters/xochitl/back.svg",
  15506. extra: 2386 / 2354,
  15507. bottom: 0.01
  15508. }
  15509. },
  15510. foot: {
  15511. height: math.unit(6 / 5 * 1.15, "feet"),
  15512. weight: math.unit(150, "lb"),
  15513. name: "Foot",
  15514. image: {
  15515. source: "./media/characters/xochitl/foot.svg"
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(80, "feet")
  15523. },
  15524. {
  15525. name: "Macro+",
  15526. height: math.unit(400, "feet"),
  15527. default: true
  15528. },
  15529. {
  15530. name: "Gigamacro",
  15531. height: math.unit(80000, "miles")
  15532. },
  15533. {
  15534. name: "Gigamacro+",
  15535. height: math.unit(400000, "miles")
  15536. },
  15537. {
  15538. name: "Teramacro",
  15539. height: math.unit(300, "AU")
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/vincent/front.svg",
  15552. extra: 1130 / 1080,
  15553. bottom: 0.055
  15554. }
  15555. },
  15556. beak: {
  15557. height: math.unit(6 * 0.1, "feet"),
  15558. name: "Beak",
  15559. image: {
  15560. source: "./media/characters/vincent/beak.svg"
  15561. }
  15562. },
  15563. hand: {
  15564. height: math.unit(6 * 0.85, "feet"),
  15565. weight: math.unit(150, "lb"),
  15566. name: "Hand",
  15567. image: {
  15568. source: "./media/characters/vincent/hand.svg"
  15569. }
  15570. },
  15571. foot: {
  15572. height: math.unit(6 * 0.19, "feet"),
  15573. weight: math.unit(150, "lb"),
  15574. name: "Foot",
  15575. image: {
  15576. source: "./media/characters/vincent/foot.svg"
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Base",
  15583. height: math.unit(6 + 5 / 12, "feet"),
  15584. default: true
  15585. },
  15586. {
  15587. name: "Macro",
  15588. height: math.unit(300, "feet")
  15589. },
  15590. {
  15591. name: "Megamacro",
  15592. height: math.unit(2, "miles")
  15593. },
  15594. {
  15595. name: "Gigamacro",
  15596. height: math.unit(1000, "miles")
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(2, "meters"),
  15605. weight: math.unit(500, "kg"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/coatl/front.svg",
  15609. extra: 3948 / 3500,
  15610. bottom: 0.082
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(4, "meters")
  15618. },
  15619. {
  15620. name: "Macro",
  15621. height: math.unit(100, "meters"),
  15622. default: true
  15623. },
  15624. {
  15625. name: "Macro+",
  15626. height: math.unit(300, "meters")
  15627. },
  15628. {
  15629. name: "Megamacro",
  15630. height: math.unit(3, "gigameters")
  15631. },
  15632. {
  15633. name: "Megamacro+",
  15634. height: math.unit(300, "terameters")
  15635. },
  15636. {
  15637. name: "Megamacro++",
  15638. height: math.unit(3, "lightyears")
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(50, "kg"),
  15648. name: "front",
  15649. image: {
  15650. source: "./media/characters/shiroryu/front.svg",
  15651. extra: 1990 / 1935
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Mortal Mingling",
  15658. height: math.unit(3, "meters")
  15659. },
  15660. {
  15661. name: "Kaiju-ish",
  15662. height: math.unit(250, "meters")
  15663. },
  15664. {
  15665. name: "Somewhat Godly",
  15666. height: math.unit(400, "km"),
  15667. default: true
  15668. },
  15669. {
  15670. name: "Planetary",
  15671. height: math.unit(300, "megameters")
  15672. },
  15673. {
  15674. name: "Galaxy-dwarfing",
  15675. height: math.unit(450, "kiloparsecs")
  15676. },
  15677. {
  15678. name: "Universe Eater",
  15679. height: math.unit(150, "gigaparsecs")
  15680. },
  15681. {
  15682. name: "Almost Immeasurable",
  15683. height: math.unit(1.3e266, "yottaparsecs")
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(150, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/umeko/front.svg",
  15696. extra: 1,
  15697. bottom: 0.019
  15698. }
  15699. },
  15700. frontArmored: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(150, "lb"),
  15703. name: "Front (Armored)",
  15704. image: {
  15705. source: "./media/characters/umeko/front-armored.svg",
  15706. extra: 1,
  15707. bottom: 0.021
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Macro",
  15714. height: math.unit(220, "feet"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Guardian Dragon",
  15719. height: math.unit(50, "miles")
  15720. },
  15721. {
  15722. name: "Cosmic",
  15723. height: math.unit(800000, "miles")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/cassidy/front.svg",
  15736. extra: 810/808,
  15737. bottom: 41/851
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Canon Height",
  15744. height: math.unit(120, "feet"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Macro+",
  15749. height: math.unit(400, "feet")
  15750. },
  15751. {
  15752. name: "Macro++",
  15753. height: math.unit(4000, "feet")
  15754. },
  15755. {
  15756. name: "Megamacro",
  15757. height: math.unit(3, "miles")
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15763. {
  15764. front: {
  15765. height: math.unit(6, "feet"),
  15766. weight: math.unit(150, "lb"),
  15767. name: "Front",
  15768. image: {
  15769. source: "./media/characters/isaac/front.svg",
  15770. extra: 896 / 815,
  15771. bottom: 0.11
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Human Size",
  15778. height: math.unit(8, "feet"),
  15779. default: true
  15780. },
  15781. {
  15782. name: "Macro",
  15783. height: math.unit(400, "feet")
  15784. },
  15785. {
  15786. name: "Megamacro",
  15787. height: math.unit(50, "miles")
  15788. },
  15789. {
  15790. name: "Canon Height",
  15791. height: math.unit(200, "AU")
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(6, "feet"),
  15800. weight: math.unit(72, "kg"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/sleekit/front.svg",
  15804. extra: 4693 / 4487,
  15805. bottom: 0.012
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Minimum Height",
  15812. height: math.unit(10, "meters")
  15813. },
  15814. {
  15815. name: "Smaller",
  15816. height: math.unit(25, "meters")
  15817. },
  15818. {
  15819. name: "Larger",
  15820. height: math.unit(38, "meters"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Maximum height",
  15825. height: math.unit(100, "meters")
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15831. {
  15832. front: {
  15833. height: math.unit(6, "feet"),
  15834. weight: math.unit(150, "lb"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/nillia/front.svg",
  15838. extra: 719/665,
  15839. bottom: 6/725
  15840. }
  15841. },
  15842. back: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Back",
  15846. image: {
  15847. source: "./media/characters/nillia/back.svg",
  15848. extra: 705/651,
  15849. bottom: 5/710
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Canon Height",
  15856. height: math.unit(489, "feet"),
  15857. default: true
  15858. }
  15859. ]
  15860. ))
  15861. characterMakers.push(() => makeCharacter(
  15862. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15863. {
  15864. front: {
  15865. height: math.unit(6, "feet"),
  15866. weight: math.unit(150, "lb"),
  15867. name: "Front",
  15868. image: {
  15869. source: "./media/characters/mesmyriza/front.svg",
  15870. extra: 1541/1291,
  15871. bottom: 87/1628
  15872. }
  15873. },
  15874. foot: {
  15875. height: math.unit(6 / (250 / 35), "feet"),
  15876. name: "Foot",
  15877. image: {
  15878. source: "./media/characters/mesmyriza/foot.svg"
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Macro",
  15885. height: math.unit(457, "meters"),
  15886. default: true
  15887. },
  15888. {
  15889. name: "Megamacro",
  15890. height: math.unit(8, "megameters")
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(250, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/saudade/front.svg",
  15903. extra: 1172 / 1139,
  15904. bottom: 0.035
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Micro",
  15911. height: math.unit(3, "inches")
  15912. },
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(6, "feet"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Macro",
  15920. height: math.unit(50, "feet")
  15921. },
  15922. {
  15923. name: "Megamacro",
  15924. height: math.unit(2800, "feet")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(5 + 4 / 12, "feet"),
  15933. weight: math.unit(100, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/keireer/front.svg",
  15937. extra: 716 / 666,
  15938. bottom: 0.05
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(5 + 4 / 12, "feet"),
  15946. default: true
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(5.5, "feet"),
  15955. weight: math.unit(90, "kg"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/mirja/front.svg",
  15959. extra: 1452/1262,
  15960. bottom: 67/1519
  15961. }
  15962. },
  15963. frontDressed: {
  15964. height: math.unit(5.5, "feet"),
  15965. weight: math.unit(90, "lb"),
  15966. name: "Front (Dressed)",
  15967. image: {
  15968. source: "./media/characters/mirja/dressed.svg",
  15969. extra: 1452/1262,
  15970. bottom: 67/1519
  15971. }
  15972. },
  15973. back: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(90, "lb"),
  15976. name: "Back",
  15977. image: {
  15978. source: "./media/characters/mirja/back.svg",
  15979. extra: 1892/1795,
  15980. bottom: 48/1940
  15981. }
  15982. },
  15983. maw: {
  15984. height: math.unit(1.312, "feet"),
  15985. name: "Maw",
  15986. image: {
  15987. source: "./media/characters/mirja/maw.svg"
  15988. }
  15989. },
  15990. paw: {
  15991. height: math.unit(1.15, "feet"),
  15992. name: "Paw",
  15993. image: {
  15994. source: "./media/characters/mirja/paw.svg"
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "\"Incognito\"",
  16001. height: math.unit(3, "meters")
  16002. },
  16003. {
  16004. name: "Strolling Size",
  16005. height: math.unit(15, "km")
  16006. },
  16007. {
  16008. name: "Larger Strolling Size",
  16009. height: math.unit(400, "km")
  16010. },
  16011. {
  16012. name: "Preferred Size",
  16013. height: math.unit(5000, "km"),
  16014. default: true
  16015. },
  16016. {
  16017. name: "True Size",
  16018. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16024. {
  16025. front: {
  16026. height: math.unit(15, "feet"),
  16027. weight: math.unit(880, "kg"),
  16028. name: "Front",
  16029. image: {
  16030. source: "./media/characters/nightraver/front.svg",
  16031. extra: 2444 / 2160,
  16032. bottom: 0.027
  16033. }
  16034. },
  16035. back: {
  16036. height: math.unit(15, "feet"),
  16037. weight: math.unit(880, "kg"),
  16038. name: "Back",
  16039. image: {
  16040. source: "./media/characters/nightraver/back.svg",
  16041. extra: 2309 / 2180,
  16042. bottom: 0.005
  16043. }
  16044. },
  16045. sole: {
  16046. height: math.unit(2.878, "feet"),
  16047. name: "Sole",
  16048. image: {
  16049. source: "./media/characters/nightraver/sole.svg"
  16050. }
  16051. },
  16052. foot: {
  16053. height: math.unit(2.285, "feet"),
  16054. name: "Foot",
  16055. image: {
  16056. source: "./media/characters/nightraver/foot.svg"
  16057. }
  16058. },
  16059. maw: {
  16060. height: math.unit(2.67, "feet"),
  16061. name: "Maw",
  16062. image: {
  16063. source: "./media/characters/nightraver/maw.svg"
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Micro",
  16070. height: math.unit(1, "cm")
  16071. },
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(15, "feet"),
  16075. default: true
  16076. },
  16077. {
  16078. name: "Macro",
  16079. height: math.unit(300, "feet")
  16080. },
  16081. {
  16082. name: "Megamacro",
  16083. height: math.unit(300, "miles")
  16084. },
  16085. {
  16086. name: "Gigamacro",
  16087. height: math.unit(10000, "miles")
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16093. {
  16094. side: {
  16095. height: math.unit(2, "inches"),
  16096. weight: math.unit(5, "grams"),
  16097. name: "Side",
  16098. image: {
  16099. source: "./media/characters/arc/side.svg"
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Micro",
  16106. height: math.unit(2, "inches"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(1.1938, "meters"),
  16116. weight: math.unit(54, "kg"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/nebula-shahar/front.svg",
  16120. extra: 1642 / 1436,
  16121. bottom: 0.06
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Megamicro",
  16128. height: math.unit(0.3, "mm")
  16129. },
  16130. {
  16131. name: "Micro",
  16132. height: math.unit(3, "cm")
  16133. },
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(138, "cm"),
  16137. default: true
  16138. },
  16139. {
  16140. name: "Macro",
  16141. height: math.unit(30, "m")
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16147. {
  16148. front: {
  16149. height: math.unit(5.24, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/shayla/front.svg",
  16154. extra: 1512 / 1414,
  16155. bottom: 0.01
  16156. }
  16157. },
  16158. back: {
  16159. height: math.unit(5.24, "feet"),
  16160. weight: math.unit(150, "lb"),
  16161. name: "Back",
  16162. image: {
  16163. source: "./media/characters/shayla/back.svg",
  16164. extra: 1512 / 1414
  16165. }
  16166. },
  16167. hand: {
  16168. height: math.unit(0.7781496062992126, "feet"),
  16169. name: "Hand",
  16170. image: {
  16171. source: "./media/characters/shayla/hand.svg"
  16172. }
  16173. },
  16174. foot: {
  16175. height: math.unit(1.4206036745406823, "feet"),
  16176. name: "Foot",
  16177. image: {
  16178. source: "./media/characters/shayla/foot.svg"
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Micro",
  16185. height: math.unit(0.32, "feet")
  16186. },
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(5.24, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Macro",
  16194. height: math.unit(492.12, "feet")
  16195. },
  16196. {
  16197. name: "Megamacro",
  16198. height: math.unit(186.41, "miles")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(2.2, "m"),
  16207. weight: math.unit(120, "kg"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/pia-jr/front.svg",
  16211. extra: 1000 / 970,
  16212. bottom: 0.035
  16213. }
  16214. },
  16215. hand: {
  16216. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16217. name: "Hand",
  16218. image: {
  16219. source: "./media/characters/pia-jr/hand.svg"
  16220. }
  16221. },
  16222. paw: {
  16223. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16224. name: "Paw",
  16225. image: {
  16226. source: "./media/characters/pia-jr/paw.svg"
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Micro",
  16233. height: math.unit(1.2, "cm")
  16234. },
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(2.2, "m"),
  16238. default: true
  16239. },
  16240. {
  16241. name: "Macro",
  16242. height: math.unit(180, "m")
  16243. },
  16244. {
  16245. name: "Megamacro",
  16246. height: math.unit(420, "km")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(2, "m"),
  16255. weight: math.unit(115, "kg"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/pia-sr/front.svg",
  16259. extra: 760 / 730,
  16260. bottom: 0.015
  16261. }
  16262. },
  16263. back: {
  16264. height: math.unit(2, "m"),
  16265. weight: math.unit(115, "kg"),
  16266. name: "Back",
  16267. image: {
  16268. source: "./media/characters/pia-sr/back.svg",
  16269. extra: 760 / 730,
  16270. bottom: 0.01
  16271. }
  16272. },
  16273. hand: {
  16274. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16275. name: "Hand",
  16276. image: {
  16277. source: "./media/characters/pia-sr/hand.svg"
  16278. }
  16279. },
  16280. foot: {
  16281. height: math.unit(1.83, "feet"),
  16282. name: "Foot",
  16283. image: {
  16284. source: "./media/characters/pia-sr/foot.svg"
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Micro",
  16291. height: math.unit(88, "mm")
  16292. },
  16293. {
  16294. name: "Normal",
  16295. height: math.unit(2, "m"),
  16296. default: true
  16297. },
  16298. {
  16299. name: "Macro",
  16300. height: math.unit(200, "m")
  16301. },
  16302. {
  16303. name: "Megamacro",
  16304. height: math.unit(420, "km")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(8 + 2 / 12, "feet"),
  16313. weight: math.unit(300, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/kibibyte/front.svg",
  16317. extra: 2221 / 2098,
  16318. bottom: 0.04
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(8 + 2 / 12, "feet"),
  16326. default: true
  16327. },
  16328. {
  16329. name: "Socialable Macro",
  16330. height: math.unit(50, "feet")
  16331. },
  16332. {
  16333. name: "Macro",
  16334. height: math.unit(300, "feet")
  16335. },
  16336. {
  16337. name: "Megamacro",
  16338. height: math.unit(500, "miles")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(6, "feet"),
  16347. weight: math.unit(150, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/felix/front.svg",
  16351. extra: 762 / 722,
  16352. bottom: 0.02
  16353. }
  16354. },
  16355. frontClothed: {
  16356. height: math.unit(6, "feet"),
  16357. weight: math.unit(150, "lb"),
  16358. name: "Front (Clothed)",
  16359. image: {
  16360. source: "./media/characters/felix/front-clothed.svg",
  16361. extra: 762 / 722,
  16362. bottom: 0.02
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(6 + 8 / 12, "feet"),
  16370. default: true
  16371. },
  16372. {
  16373. name: "Macro",
  16374. height: math.unit(2600, "feet")
  16375. },
  16376. {
  16377. name: "Megamacro",
  16378. height: math.unit(450, "miles")
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6 + 1 / 12, "feet"),
  16387. weight: math.unit(250, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/tobo/front.svg",
  16391. extra: 608 / 586,
  16392. bottom: 0.023
  16393. }
  16394. },
  16395. back: {
  16396. height: math.unit(6 + 1 / 12, "feet"),
  16397. weight: math.unit(250, "lb"),
  16398. name: "Back",
  16399. image: {
  16400. source: "./media/characters/tobo/back.svg",
  16401. extra: 608 / 586
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Nano",
  16408. height: math.unit(2, "nm")
  16409. },
  16410. {
  16411. name: "Megamicro",
  16412. height: math.unit(0.1, "mm")
  16413. },
  16414. {
  16415. name: "Micro",
  16416. height: math.unit(1, "inch"),
  16417. default: true
  16418. },
  16419. {
  16420. name: "Human-sized",
  16421. height: math.unit(6 + 1 / 12, "feet")
  16422. },
  16423. {
  16424. name: "Macro",
  16425. height: math.unit(250, "feet")
  16426. },
  16427. {
  16428. name: "Megamacro",
  16429. height: math.unit(75, "miles")
  16430. },
  16431. {
  16432. name: "Texas-sized",
  16433. height: math.unit(750, "miles")
  16434. },
  16435. {
  16436. name: "Teramacro",
  16437. height: math.unit(50000, "miles")
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16443. {
  16444. front: {
  16445. height: math.unit(6, "feet"),
  16446. weight: math.unit(269, "lb"),
  16447. name: "Front",
  16448. image: {
  16449. source: "./media/characters/danny-kapowsky/front.svg",
  16450. extra: 766 / 736,
  16451. bottom: 0.044
  16452. }
  16453. },
  16454. back: {
  16455. height: math.unit(6, "feet"),
  16456. weight: math.unit(269, "lb"),
  16457. name: "Back",
  16458. image: {
  16459. source: "./media/characters/danny-kapowsky/back.svg",
  16460. extra: 797 / 760,
  16461. bottom: 0.025
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Macro",
  16468. height: math.unit(150, "feet"),
  16469. default: true
  16470. },
  16471. {
  16472. name: "Macro+",
  16473. height: math.unit(200, "feet")
  16474. },
  16475. {
  16476. name: "Macro++",
  16477. height: math.unit(300, "feet")
  16478. },
  16479. {
  16480. name: "Macro+++",
  16481. height: math.unit(400, "feet")
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16487. {
  16488. side: {
  16489. height: math.unit(6, "feet"),
  16490. weight: math.unit(170, "lb"),
  16491. name: "Side",
  16492. image: {
  16493. source: "./media/characters/finn/side.svg",
  16494. extra: 1953 / 1807,
  16495. bottom: 0.057
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Megamacro",
  16502. height: math.unit(14445, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(5 + 6 / 12, "feet"),
  16512. weight: math.unit(125, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/roy/front.svg",
  16516. extra: 1,
  16517. bottom: 0.11
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Micro",
  16524. height: math.unit(3, "inches"),
  16525. default: true
  16526. },
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(5 + 6 / 12, "feet")
  16530. },
  16531. {
  16532. name: "Lesser Macro",
  16533. height: math.unit(60, "feet")
  16534. },
  16535. {
  16536. name: "Greater Macro",
  16537. height: math.unit(120, "feet")
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(6, "feet"),
  16546. weight: math.unit(100, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/aevsivs/front.svg",
  16550. extra: 1,
  16551. bottom: 0.03
  16552. }
  16553. },
  16554. back: {
  16555. height: math.unit(6, "feet"),
  16556. weight: math.unit(100, "lb"),
  16557. name: "Back",
  16558. image: {
  16559. source: "./media/characters/aevsivs/back.svg"
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(2, "inches"),
  16567. default: true
  16568. },
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(5, "feet")
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(5 + 7 / 12, "feet"),
  16580. weight: math.unit(159, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/hildegard/front.svg",
  16584. extra: 289 / 269,
  16585. bottom: 7.63 / 297.8
  16586. }
  16587. },
  16588. back: {
  16589. height: math.unit(5 + 7 / 12, "feet"),
  16590. weight: math.unit(159, "lb"),
  16591. name: "Back",
  16592. image: {
  16593. source: "./media/characters/hildegard/back.svg",
  16594. extra: 280 / 260,
  16595. bottom: 2.3 / 282
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(5 + 7 / 12, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16609. {
  16610. bernard: {
  16611. height: math.unit(2 + 7 / 12, "feet"),
  16612. weight: math.unit(66, "lb"),
  16613. name: "Bernard",
  16614. rename: true,
  16615. image: {
  16616. source: "./media/characters/bernard-wilder/bernard.svg",
  16617. extra: 192 / 128,
  16618. bottom: 0.05
  16619. }
  16620. },
  16621. wilder: {
  16622. height: math.unit(5 + 8 / 12, "feet"),
  16623. weight: math.unit(143, "lb"),
  16624. name: "Wilder",
  16625. rename: true,
  16626. image: {
  16627. source: "./media/characters/bernard-wilder/wilder.svg",
  16628. extra: 361 / 312,
  16629. bottom: 0.02
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(2 + 7 / 12, "feet"),
  16637. default: true
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16643. {
  16644. anthro: {
  16645. height: math.unit(6 + 1 / 12, "feet"),
  16646. weight: math.unit(155, "lb"),
  16647. name: "Anthro",
  16648. image: {
  16649. source: "./media/characters/hearth/anthro.svg",
  16650. extra: 1178/1136,
  16651. bottom: 28/1206
  16652. }
  16653. },
  16654. feral: {
  16655. height: math.unit(3.78, "feet"),
  16656. weight: math.unit(35, "kg"),
  16657. name: "Feral",
  16658. image: {
  16659. source: "./media/characters/hearth/feral.svg",
  16660. extra: 153 / 135,
  16661. bottom: 0.03
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(6 + 1 / 12, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(6, "feet"),
  16678. weight: math.unit(182, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/ingrid/front.svg",
  16682. extra: 294 / 268,
  16683. bottom: 0.027
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(6, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16697. {
  16698. eevee: {
  16699. height: math.unit(2 + 10 / 12, "feet"),
  16700. weight: math.unit(86, "lb"),
  16701. name: "Malgam",
  16702. image: {
  16703. source: "./media/characters/malgam/eevee.svg",
  16704. extra: 952/784,
  16705. bottom: 38/990
  16706. }
  16707. },
  16708. sylveon: {
  16709. height: math.unit(4, "feet"),
  16710. weight: math.unit(101, "lb"),
  16711. name: "Future Malgam",
  16712. rename: true,
  16713. image: {
  16714. source: "./media/characters/malgam/sylveon.svg",
  16715. extra: 371 / 325,
  16716. bottom: 0.015
  16717. }
  16718. },
  16719. gigantamax: {
  16720. height: math.unit(50, "feet"),
  16721. name: "Gigantamax Malgam",
  16722. rename: true,
  16723. image: {
  16724. source: "./media/characters/malgam/gigantamax.svg"
  16725. }
  16726. },
  16727. },
  16728. [
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(2 + 10 / 12, "feet"),
  16732. default: true
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16738. {
  16739. front: {
  16740. height: math.unit(5 + 11 / 12, "feet"),
  16741. weight: math.unit(188, "lb"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/fleur/front.svg",
  16745. extra: 309 / 283,
  16746. bottom: 0.007
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Normal",
  16753. height: math.unit(5 + 11 / 12, "feet"),
  16754. default: true
  16755. },
  16756. ]
  16757. ))
  16758. characterMakers.push(() => makeCharacter(
  16759. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16760. {
  16761. front: {
  16762. height: math.unit(5 + 4 / 12, "feet"),
  16763. weight: math.unit(122, "lb"),
  16764. name: "Front",
  16765. image: {
  16766. source: "./media/characters/jude/front.svg",
  16767. extra: 288 / 273,
  16768. bottom: 0.03
  16769. }
  16770. },
  16771. },
  16772. [
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(5 + 4 / 12, "feet"),
  16776. default: true
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16782. {
  16783. front: {
  16784. height: math.unit(5 + 11 / 12, "feet"),
  16785. weight: math.unit(190, "lb"),
  16786. name: "Front",
  16787. image: {
  16788. source: "./media/characters/seara/front.svg",
  16789. extra: 1,
  16790. bottom: 0.05
  16791. }
  16792. },
  16793. },
  16794. [
  16795. {
  16796. name: "Normal",
  16797. height: math.unit(5 + 11 / 12, "feet"),
  16798. default: true
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16804. {
  16805. front: {
  16806. height: math.unit(16 + 5 / 12, "feet"),
  16807. weight: math.unit(524, "lb"),
  16808. name: "Front",
  16809. image: {
  16810. source: "./media/characters/caspian-lugia/front.svg",
  16811. extra: 1,
  16812. bottom: 0.04
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(16 + 5 / 12, "feet"),
  16820. default: true
  16821. },
  16822. ]
  16823. ))
  16824. characterMakers.push(() => makeCharacter(
  16825. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16826. {
  16827. front: {
  16828. height: math.unit(5 + 7 / 12, "feet"),
  16829. weight: math.unit(170, "lb"),
  16830. name: "Front",
  16831. image: {
  16832. source: "./media/characters/mika/front.svg",
  16833. extra: 1,
  16834. bottom: 0.016
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(5 + 7 / 12, "feet"),
  16842. default: true
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16848. {
  16849. front: {
  16850. height: math.unit(6 + 2 / 12, "feet"),
  16851. weight: math.unit(268, "lb"),
  16852. name: "Front",
  16853. image: {
  16854. source: "./media/characters/sol/front.svg",
  16855. extra: 247 / 231,
  16856. bottom: 0.05
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Normal",
  16863. height: math.unit(6 + 2 / 12, "feet"),
  16864. default: true
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16870. {
  16871. buizel: {
  16872. height: math.unit(2 + 5 / 12, "feet"),
  16873. weight: math.unit(87, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/umiko/buizel.svg",
  16877. extra: 172 / 157,
  16878. bottom: 0.01
  16879. },
  16880. form: "buizel",
  16881. default: true
  16882. },
  16883. floatzel: {
  16884. height: math.unit(5 + 9 / 12, "feet"),
  16885. weight: math.unit(250, "lb"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/umiko/floatzel.svg",
  16889. extra: 1076/1006,
  16890. bottom: 15/1091
  16891. },
  16892. form: "floatzel",
  16893. default: true
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(2 + 5 / 12, "feet"),
  16900. form: "buizel",
  16901. default: true
  16902. },
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(5 + 9 / 12, "feet"),
  16906. form: "floatzel",
  16907. default: true
  16908. },
  16909. ],
  16910. {
  16911. "buizel": {
  16912. name: "Buizel"
  16913. },
  16914. "floatzel": {
  16915. name: "Floatzel",
  16916. default: true
  16917. }
  16918. }
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6 + 2 / 12, "feet"),
  16925. weight: math.unit(146, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/iliac/front.svg",
  16929. extra: 389 / 365,
  16930. bottom: 0.035
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(6 + 2 / 12, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(6, "feet"),
  16947. weight: math.unit(170, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/topaz/front.svg",
  16951. extra: 317 / 303,
  16952. bottom: 0.055
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(6, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(5 + 11 / 12, "feet"),
  16969. weight: math.unit(144, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/gabriel/front.svg",
  16973. extra: 285 / 262,
  16974. bottom: 0.004
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(5 + 11 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16988. {
  16989. side: {
  16990. height: math.unit(6 + 5 / 12, "feet"),
  16991. weight: math.unit(300, "lb"),
  16992. name: "Side",
  16993. image: {
  16994. source: "./media/characters/tempest-suicune/side.svg",
  16995. extra: 195 / 154,
  16996. bottom: 0.04
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(6 + 5 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(7 + 2 / 12, "feet"),
  17013. weight: math.unit(322, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/vulcan/front.svg",
  17017. extra: 154 / 147,
  17018. bottom: 0.04
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(7 + 2 / 12, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(5 + 10 / 12, "feet"),
  17035. weight: math.unit(264, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/gault/front.svg",
  17039. extra: 161 / 140,
  17040. bottom: 0.028
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(5 + 10 / 12, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(6, "feet"),
  17057. weight: math.unit(150, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/shard/front.svg",
  17061. extra: 273 / 238,
  17062. bottom: 0.02
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(3 + 6 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(5 + 11 / 12, "feet"),
  17079. weight: math.unit(146, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/ashe/front.svg",
  17083. extra: 400 / 373,
  17084. bottom: 0.01
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(5 + 11 / 12, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(5 + 5 / 12, "feet"),
  17101. weight: math.unit(135, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/beatrix/front.svg",
  17105. extra: 392 / 379,
  17106. bottom: 0.01
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(6, "feet"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(6 + 2/12, "feet"),
  17123. weight: math.unit(135, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/ignatius/front.svg",
  17127. extra: 1380/1259,
  17128. bottom: 27/1407
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(6 + 2/12, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(6 + 2 / 12, "feet"),
  17145. weight: math.unit(138, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/mei-li/front.svg",
  17149. extra: 237 / 229,
  17150. bottom: 0.03
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(6 + 2 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17164. {
  17165. front: {
  17166. height: math.unit(2 + 4 / 12, "feet"),
  17167. weight: math.unit(62, "lb"),
  17168. name: "Front",
  17169. image: {
  17170. source: "./media/characters/puru/front.svg",
  17171. extra: 206 / 149,
  17172. bottom: 0.06
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(2 + 4 / 12, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17186. {
  17187. anthro: {
  17188. height: math.unit(5 + 8/12, "feet"),
  17189. weight: math.unit(200, "lb"),
  17190. energyNeed: math.unit(2000, "kcal"),
  17191. name: "Anthro",
  17192. image: {
  17193. source: "./media/characters/kee/anthro.svg",
  17194. extra: 3251/3184,
  17195. bottom: 250/3501
  17196. }
  17197. },
  17198. taur: {
  17199. height: math.unit(11, "feet"),
  17200. weight: math.unit(500, "lb"),
  17201. energyNeed: math.unit(5000, "kcal"),
  17202. name: "Taur",
  17203. image: {
  17204. source: "./media/characters/kee/taur.svg",
  17205. extra: 1362/1320,
  17206. bottom: 83/1445
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(5 + 8/12, "feet"),
  17214. default: true
  17215. },
  17216. {
  17217. name: "Macro",
  17218. height: math.unit(35, "feet")
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17224. {
  17225. anthro: {
  17226. height: math.unit(7, "feet"),
  17227. weight: math.unit(190, "lb"),
  17228. name: "Anthro",
  17229. image: {
  17230. source: "./media/characters/cobalt-dracha/anthro.svg",
  17231. extra: 231 / 225,
  17232. bottom: 0.04
  17233. }
  17234. },
  17235. feral: {
  17236. height: math.unit(9 + 7 / 12, "feet"),
  17237. weight: math.unit(294, "lb"),
  17238. name: "Feral",
  17239. image: {
  17240. source: "./media/characters/cobalt-dracha/feral.svg",
  17241. extra: 692 / 633,
  17242. bottom: 0.05
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(7, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17256. {
  17257. fallen: {
  17258. height: math.unit(11 + 8 / 12, "feet"),
  17259. weight: math.unit(485, "lb"),
  17260. name: "Java (Fallen)",
  17261. rename: true,
  17262. image: {
  17263. source: "./media/characters/java/fallen.svg",
  17264. extra: 226 / 208,
  17265. bottom: 0.005
  17266. }
  17267. },
  17268. godkin: {
  17269. height: math.unit(10 + 6 / 12, "feet"),
  17270. weight: math.unit(328, "lb"),
  17271. name: "Java (Godkin)",
  17272. rename: true,
  17273. image: {
  17274. source: "./media/characters/java/godkin.svg",
  17275. extra: 1104/1068,
  17276. bottom: 36/1140
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(11 + 8 / 12, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(5 + 9 / 12, "feet"),
  17293. weight: math.unit(170, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/purna/front.svg",
  17297. extra: 239 / 229,
  17298. bottom: 0.01
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(5 + 9 / 12, "feet"),
  17306. default: true
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(5 + 9 / 12, "feet"),
  17315. weight: math.unit(142, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/kuva/front.svg",
  17319. extra: 281 / 271,
  17320. bottom: 0.006
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(5 + 9 / 12, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17334. {
  17335. anthro: {
  17336. height: math.unit(9 + 2 / 12, "feet"),
  17337. weight: math.unit(270, "lb"),
  17338. name: "Anthro",
  17339. image: {
  17340. source: "./media/characters/embra/anthro.svg",
  17341. extra: 200 / 187,
  17342. bottom: 0.02
  17343. }
  17344. },
  17345. feral: {
  17346. height: math.unit(18 + 8 / 12, "feet"),
  17347. weight: math.unit(576, "lb"),
  17348. name: "Feral",
  17349. image: {
  17350. source: "./media/characters/embra/feral.svg",
  17351. extra: 152 / 137,
  17352. bottom: 0.037
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(9 + 2 / 12, "feet"),
  17360. default: true
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17366. {
  17367. anthro: {
  17368. height: math.unit(10 + 9 / 12, "feet"),
  17369. weight: math.unit(224, "lb"),
  17370. name: "Anthro",
  17371. image: {
  17372. source: "./media/characters/grottos/anthro.svg",
  17373. extra: 350 / 332,
  17374. bottom: 0.045
  17375. }
  17376. },
  17377. feral: {
  17378. height: math.unit(20 + 7 / 12, "feet"),
  17379. weight: math.unit(629, "lb"),
  17380. name: "Feral",
  17381. image: {
  17382. source: "./media/characters/grottos/feral.svg",
  17383. extra: 207 / 190,
  17384. bottom: 0.05
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(10 + 9 / 12, "feet"),
  17392. default: true
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17398. {
  17399. anthro: {
  17400. height: math.unit(9 + 6 / 12, "feet"),
  17401. weight: math.unit(298, "lb"),
  17402. name: "Anthro",
  17403. image: {
  17404. source: "./media/characters/frifna/anthro.svg",
  17405. extra: 282 / 269,
  17406. bottom: 0.015
  17407. }
  17408. },
  17409. feral: {
  17410. height: math.unit(16 + 2 / 12, "feet"),
  17411. weight: math.unit(624, "lb"),
  17412. name: "Feral",
  17413. image: {
  17414. source: "./media/characters/frifna/feral.svg"
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(9 + 6 / 12, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(6 + 2 / 12, "feet"),
  17431. weight: math.unit(168, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/elise/front.svg",
  17435. extra: 276 / 271
  17436. }
  17437. },
  17438. },
  17439. [
  17440. {
  17441. name: "Normal",
  17442. height: math.unit(6 + 2 / 12, "feet"),
  17443. default: true
  17444. },
  17445. ]
  17446. ))
  17447. characterMakers.push(() => makeCharacter(
  17448. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17449. {
  17450. front: {
  17451. height: math.unit(5 + 10 / 12, "feet"),
  17452. weight: math.unit(210, "lb"),
  17453. name: "Front",
  17454. image: {
  17455. source: "./media/characters/glade/front.svg",
  17456. extra: 258 / 247,
  17457. bottom: 0.008
  17458. }
  17459. },
  17460. },
  17461. [
  17462. {
  17463. name: "Normal",
  17464. height: math.unit(5 + 10 / 12, "feet"),
  17465. default: true
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17471. {
  17472. front: {
  17473. height: math.unit(5 + 10 / 12, "feet"),
  17474. weight: math.unit(129, "lb"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/rina/front.svg",
  17478. extra: 266 / 255,
  17479. bottom: 0.005
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(5 + 10 / 12, "feet"),
  17487. default: true
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17493. {
  17494. front: {
  17495. height: math.unit(6 + 1 / 12, "feet"),
  17496. weight: math.unit(192, "lb"),
  17497. name: "Front",
  17498. image: {
  17499. source: "./media/characters/veronica/front.svg",
  17500. extra: 319 / 309,
  17501. bottom: 0.005
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(6 + 1 / 12, "feet"),
  17509. default: true
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17515. {
  17516. front: {
  17517. height: math.unit(9 + 3 / 12, "feet"),
  17518. weight: math.unit(1100, "lb"),
  17519. name: "Front",
  17520. image: {
  17521. source: "./media/characters/braxton/front.svg",
  17522. extra: 1057 / 984,
  17523. bottom: 0.05
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(9 + 3 / 12, "feet")
  17531. },
  17532. {
  17533. name: "Giant",
  17534. height: math.unit(300, "feet"),
  17535. default: true
  17536. },
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(700, "feet")
  17540. },
  17541. {
  17542. name: "Megamacro",
  17543. height: math.unit(6000, "feet")
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17549. {
  17550. front: {
  17551. height: math.unit(6 + 7 / 12, "feet"),
  17552. weight: math.unit(150, "lb"),
  17553. name: "Front",
  17554. image: {
  17555. source: "./media/characters/blue-feyonics/front.svg",
  17556. extra: 1403 / 1306,
  17557. bottom: 0.047
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(6 + 7 / 12, "feet"),
  17565. default: true
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17571. {
  17572. front: {
  17573. height: math.unit(1.8, "meters"),
  17574. weight: math.unit(60, "kg"),
  17575. name: "Front",
  17576. image: {
  17577. source: "./media/characters/maxwell/front.svg",
  17578. extra: 2060 / 1873
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Micro",
  17585. height: math.unit(1, "mm")
  17586. },
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(1.8, "meter"),
  17590. default: true
  17591. },
  17592. {
  17593. name: "Macro",
  17594. height: math.unit(30, "meters")
  17595. },
  17596. {
  17597. name: "Megamacro",
  17598. height: math.unit(10, "km")
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17604. {
  17605. front: {
  17606. height: math.unit(6, "feet"),
  17607. weight: math.unit(150, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/jack/front.svg",
  17611. extra: 1754 / 1640,
  17612. bottom: 0.01
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(80000, "feet"),
  17620. default: true
  17621. },
  17622. {
  17623. name: "Max size",
  17624. height: math.unit(10, "lightyears")
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17630. {
  17631. urban: {
  17632. height: math.unit(5, "feet"),
  17633. weight: math.unit(240, "lb"),
  17634. name: "Urban",
  17635. image: {
  17636. source: "./media/characters/cafat/urban.svg",
  17637. extra: 1223/1126,
  17638. bottom: 205/1428
  17639. }
  17640. },
  17641. summer: {
  17642. height: math.unit(5, "feet"),
  17643. weight: math.unit(240, "lb"),
  17644. name: "Summer",
  17645. image: {
  17646. source: "./media/characters/cafat/summer.svg",
  17647. extra: 1223/1126,
  17648. bottom: 205/1428
  17649. }
  17650. },
  17651. winter: {
  17652. height: math.unit(5, "feet"),
  17653. weight: math.unit(240, "lb"),
  17654. name: "Winter",
  17655. image: {
  17656. source: "./media/characters/cafat/winter.svg",
  17657. extra: 1223/1126,
  17658. bottom: 205/1428
  17659. }
  17660. },
  17661. lingerie: {
  17662. height: math.unit(5, "feet"),
  17663. weight: math.unit(240, "lb"),
  17664. name: "Lingerie",
  17665. image: {
  17666. source: "./media/characters/cafat/lingerie.svg",
  17667. extra: 1223/1126,
  17668. bottom: 205/1428
  17669. }
  17670. },
  17671. upright: {
  17672. height: math.unit(6.3, "feet"),
  17673. weight: math.unit(240, "lb"),
  17674. name: "Upright",
  17675. image: {
  17676. source: "./media/characters/cafat/upright.svg",
  17677. bottom: 0.01
  17678. }
  17679. },
  17680. uprightFull: {
  17681. height: math.unit(6.3, "feet"),
  17682. weight: math.unit(240, "lb"),
  17683. name: "Upright (Full)",
  17684. image: {
  17685. source: "./media/characters/cafat/upright-full.svg",
  17686. bottom: 0.01
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Small",
  17693. height: math.unit(5, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Large",
  17698. height: math.unit(13, "feet")
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(6, "feet"),
  17707. weight: math.unit(150, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/verin-raharra/front.svg",
  17711. extra: 5019 / 4835,
  17712. bottom: 0.023
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(7 + 5 / 12, "feet"),
  17720. default: true
  17721. },
  17722. {
  17723. name: "Upsized",
  17724. height: math.unit(20, "feet")
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(7, "feet"),
  17733. weight: math.unit(230, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/nakata/front.svg",
  17737. extra: 1.005,
  17738. bottom: 0.01
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(7, "feet"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Big",
  17750. height: math.unit(14, "feet")
  17751. },
  17752. {
  17753. name: "Macro",
  17754. height: math.unit(400, "feet")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17760. {
  17761. front: {
  17762. height: math.unit(4.91, "feet"),
  17763. weight: math.unit(100, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/lily/front.svg",
  17767. extra: 1585 / 1415,
  17768. bottom: 0.02
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(4.91, "feet"),
  17776. default: true
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17782. {
  17783. laying: {
  17784. height: math.unit(4 + 4 / 12, "feet"),
  17785. weight: math.unit(600, "lb"),
  17786. name: "Laying",
  17787. image: {
  17788. source: "./media/characters/sheila/laying.svg",
  17789. extra: 1333 / 1265,
  17790. bottom: 0.16
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(4 + 4 / 12, "feet"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(6, "feet"),
  17807. weight: math.unit(190, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/sax/front.svg",
  17811. extra: 1187 / 973,
  17812. bottom: 0.042
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Micro",
  17819. height: math.unit(4, "inches"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(6, "feet"),
  17829. weight: math.unit(150, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/pandora/front.svg",
  17833. extra: 2720 / 2556,
  17834. bottom: 0.015
  17835. }
  17836. },
  17837. back: {
  17838. height: math.unit(6, "feet"),
  17839. weight: math.unit(150, "lb"),
  17840. name: "Back",
  17841. image: {
  17842. source: "./media/characters/pandora/back.svg",
  17843. extra: 2720 / 2556,
  17844. bottom: 0.01
  17845. }
  17846. },
  17847. beans: {
  17848. height: math.unit(6 / 8, "feet"),
  17849. name: "Beans",
  17850. image: {
  17851. source: "./media/characters/pandora/beans.svg"
  17852. }
  17853. },
  17854. collar: {
  17855. height: math.unit(0.31, "feet"),
  17856. name: "Collar",
  17857. image: {
  17858. source: "./media/characters/pandora/collar.svg"
  17859. }
  17860. },
  17861. skirt: {
  17862. height: math.unit(6, "feet"),
  17863. weight: math.unit(150, "lb"),
  17864. name: "Skirt",
  17865. image: {
  17866. source: "./media/characters/pandora/skirt.svg",
  17867. extra: 1622 / 1525,
  17868. bottom: 0.015
  17869. }
  17870. },
  17871. hoodie: {
  17872. height: math.unit(6, "feet"),
  17873. weight: math.unit(150, "lb"),
  17874. name: "Hoodie",
  17875. image: {
  17876. source: "./media/characters/pandora/hoodie.svg",
  17877. extra: 1622 / 1525,
  17878. bottom: 0.015
  17879. }
  17880. },
  17881. casual: {
  17882. height: math.unit(6, "feet"),
  17883. weight: math.unit(150, "lb"),
  17884. name: "Casual",
  17885. image: {
  17886. source: "./media/characters/pandora/casual.svg",
  17887. extra: 1622 / 1525,
  17888. bottom: 0.015
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(6, "feet")
  17896. },
  17897. {
  17898. name: "Big Steppy",
  17899. height: math.unit(1, "km"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Galactic Steppy",
  17904. height: math.unit(2, "gigameters")
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17910. {
  17911. side: {
  17912. height: math.unit(10, "feet"),
  17913. weight: math.unit(800, "kg"),
  17914. name: "Side",
  17915. image: {
  17916. source: "./media/characters/venio-darcony/side.svg",
  17917. extra: 1373 / 1003,
  17918. bottom: 0.037
  17919. }
  17920. },
  17921. front: {
  17922. height: math.unit(19, "feet"),
  17923. weight: math.unit(800, "kg"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/venio-darcony/front.svg"
  17927. }
  17928. },
  17929. back: {
  17930. height: math.unit(19, "feet"),
  17931. weight: math.unit(800, "kg"),
  17932. name: "Back",
  17933. image: {
  17934. source: "./media/characters/venio-darcony/back.svg"
  17935. }
  17936. },
  17937. sideNsfw: {
  17938. height: math.unit(10, "feet"),
  17939. weight: math.unit(800, "kg"),
  17940. name: "Side (NSFW)",
  17941. image: {
  17942. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17943. extra: 1373 / 1003,
  17944. bottom: 0.037
  17945. }
  17946. },
  17947. frontNsfw: {
  17948. height: math.unit(19, "feet"),
  17949. weight: math.unit(800, "kg"),
  17950. name: "Front (NSFW)",
  17951. image: {
  17952. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17953. }
  17954. },
  17955. backNsfw: {
  17956. height: math.unit(19, "feet"),
  17957. weight: math.unit(800, "kg"),
  17958. name: "Back (NSFW)",
  17959. image: {
  17960. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17961. }
  17962. },
  17963. sideArmored: {
  17964. height: math.unit(10, "feet"),
  17965. weight: math.unit(800, "kg"),
  17966. name: "Side (Armored)",
  17967. image: {
  17968. source: "./media/characters/venio-darcony/side-armored.svg",
  17969. extra: 1373 / 1003,
  17970. bottom: 0.037
  17971. }
  17972. },
  17973. frontArmored: {
  17974. height: math.unit(19, "feet"),
  17975. weight: math.unit(900, "kg"),
  17976. name: "Front (Armored)",
  17977. image: {
  17978. source: "./media/characters/venio-darcony/front-armored.svg"
  17979. }
  17980. },
  17981. backArmored: {
  17982. height: math.unit(19, "feet"),
  17983. weight: math.unit(900, "kg"),
  17984. name: "Back (Armored)",
  17985. image: {
  17986. source: "./media/characters/venio-darcony/back-armored.svg"
  17987. }
  17988. },
  17989. sword: {
  17990. height: math.unit(10, "feet"),
  17991. weight: math.unit(50, "lb"),
  17992. name: "Sword",
  17993. image: {
  17994. source: "./media/characters/venio-darcony/sword.svg"
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(10, "feet")
  18002. },
  18003. {
  18004. name: "Macro",
  18005. height: math.unit(130, "feet"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Macro+",
  18010. height: math.unit(240, "feet")
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(6, "feet"),
  18019. weight: math.unit(150, "lb"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/veski/front.svg",
  18023. extra: 1299 / 1225,
  18024. bottom: 0.04
  18025. }
  18026. },
  18027. back: {
  18028. height: math.unit(6, "feet"),
  18029. weight: math.unit(150, "lb"),
  18030. name: "Back",
  18031. image: {
  18032. source: "./media/characters/veski/back.svg",
  18033. extra: 1299 / 1225,
  18034. bottom: 0.008
  18035. }
  18036. },
  18037. maw: {
  18038. height: math.unit(1.5 * 1.21, "feet"),
  18039. name: "Maw",
  18040. image: {
  18041. source: "./media/characters/veski/maw.svg"
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Macro",
  18048. height: math.unit(2, "km"),
  18049. default: true
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18055. {
  18056. front: {
  18057. height: math.unit(5 + 7 / 12, "feet"),
  18058. name: "Front",
  18059. image: {
  18060. source: "./media/characters/isabelle/front.svg",
  18061. extra: 2130 / 1976,
  18062. bottom: 0.05
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Supermicro",
  18069. height: math.unit(10, "micrometers")
  18070. },
  18071. {
  18072. name: "Micro",
  18073. height: math.unit(1, "inch")
  18074. },
  18075. {
  18076. name: "Tiny",
  18077. height: math.unit(5, "inches")
  18078. },
  18079. {
  18080. name: "Standard",
  18081. height: math.unit(5 + 7 / 12, "inches")
  18082. },
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(80, "meters"),
  18086. default: true
  18087. },
  18088. {
  18089. name: "Megamacro",
  18090. height: math.unit(250, "meters")
  18091. },
  18092. {
  18093. name: "Gigamacro",
  18094. height: math.unit(5, "km")
  18095. },
  18096. {
  18097. name: "Cosmic",
  18098. height: math.unit(2.5e6, "miles")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6, "feet"),
  18107. weight: math.unit(150, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/hanzo/front.svg",
  18111. extra: 374 / 344,
  18112. bottom: 0.02
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(8, "feet"),
  18120. default: true
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(7, "feet"),
  18129. weight: math.unit(130, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/anna/front.svg",
  18133. extra: 169 / 145,
  18134. bottom: 0.06
  18135. }
  18136. },
  18137. full: {
  18138. height: math.unit(4.96, "feet"),
  18139. weight: math.unit(220, "lb"),
  18140. name: "Full",
  18141. image: {
  18142. source: "./media/characters/anna/full.svg",
  18143. extra: 138 / 114,
  18144. bottom: 0.15
  18145. }
  18146. },
  18147. tongue: {
  18148. height: math.unit(2.53, "feet"),
  18149. name: "Tongue",
  18150. image: {
  18151. source: "./media/characters/anna/tongue.svg"
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(7, "feet"),
  18159. default: true
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(7, "feet"),
  18168. weight: math.unit(150, "lb"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/ian-corvid/front.svg",
  18172. extra: 150 / 142,
  18173. bottom: 0.02
  18174. }
  18175. },
  18176. back: {
  18177. height: math.unit(7, "feet"),
  18178. weight: math.unit(150, "lb"),
  18179. name: "Back",
  18180. image: {
  18181. source: "./media/characters/ian-corvid/back.svg",
  18182. extra: 150 / 143,
  18183. bottom: 0.01
  18184. }
  18185. },
  18186. stomping: {
  18187. height: math.unit(7, "feet"),
  18188. weight: math.unit(150, "lb"),
  18189. name: "Stomping",
  18190. image: {
  18191. source: "./media/characters/ian-corvid/stomping.svg",
  18192. extra: 76 / 72
  18193. }
  18194. },
  18195. sitting: {
  18196. height: math.unit(7 / 1.8, "feet"),
  18197. weight: math.unit(150, "lb"),
  18198. name: "Sitting",
  18199. image: {
  18200. source: "./media/characters/ian-corvid/sitting.svg",
  18201. extra: 1400 / 1269,
  18202. bottom: 0.15
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Tiny Microw",
  18209. height: math.unit(1, "inch")
  18210. },
  18211. {
  18212. name: "Microw",
  18213. height: math.unit(6, "inches")
  18214. },
  18215. {
  18216. name: "Crow",
  18217. height: math.unit(7 + 1 / 12, "feet"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Macrow",
  18222. height: math.unit(176, "feet")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(5 + 7 / 12, "feet"),
  18231. weight: math.unit(147, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/natalie-kellon/front.svg",
  18235. extra: 1214 / 1141,
  18236. bottom: 0.02
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Micro",
  18243. height: math.unit(1 / 16, "inch")
  18244. },
  18245. {
  18246. name: "Tiny",
  18247. height: math.unit(4, "inches")
  18248. },
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(5 + 7 / 12, "feet"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Amazon",
  18256. height: math.unit(12, "feet")
  18257. },
  18258. {
  18259. name: "Giantess",
  18260. height: math.unit(160, "meters")
  18261. },
  18262. {
  18263. name: "Titaness",
  18264. height: math.unit(800, "meters")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(6, "feet"),
  18273. weight: math.unit(150, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/alluria/front.svg",
  18277. extra: 806 / 738,
  18278. bottom: 0.01
  18279. }
  18280. },
  18281. side: {
  18282. height: math.unit(6, "feet"),
  18283. weight: math.unit(150, "lb"),
  18284. name: "Side",
  18285. image: {
  18286. source: "./media/characters/alluria/side.svg",
  18287. extra: 800 / 750,
  18288. }
  18289. },
  18290. back: {
  18291. height: math.unit(6, "feet"),
  18292. weight: math.unit(150, "lb"),
  18293. name: "Back",
  18294. image: {
  18295. source: "./media/characters/alluria/back.svg",
  18296. extra: 806 / 738,
  18297. }
  18298. },
  18299. frontMaid: {
  18300. height: math.unit(6, "feet"),
  18301. weight: math.unit(150, "lb"),
  18302. name: "Front (Maid)",
  18303. image: {
  18304. source: "./media/characters/alluria/front-maid.svg",
  18305. extra: 806 / 738,
  18306. bottom: 0.01
  18307. }
  18308. },
  18309. sideMaid: {
  18310. height: math.unit(6, "feet"),
  18311. weight: math.unit(150, "lb"),
  18312. name: "Side (Maid)",
  18313. image: {
  18314. source: "./media/characters/alluria/side-maid.svg",
  18315. extra: 800 / 750,
  18316. bottom: 0.005
  18317. }
  18318. },
  18319. backMaid: {
  18320. height: math.unit(6, "feet"),
  18321. weight: math.unit(150, "lb"),
  18322. name: "Back (Maid)",
  18323. image: {
  18324. source: "./media/characters/alluria/back-maid.svg",
  18325. extra: 806 / 738,
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Micro",
  18332. height: math.unit(6, "inches"),
  18333. default: true
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18339. {
  18340. front: {
  18341. height: math.unit(6, "feet"),
  18342. weight: math.unit(150, "lb"),
  18343. name: "Front",
  18344. image: {
  18345. source: "./media/characters/kyle/front.svg",
  18346. extra: 1069 / 962,
  18347. bottom: 77.228 / 1727.45
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Macro",
  18354. height: math.unit(150, "feet"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(6, "feet"),
  18364. weight: math.unit(300, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/duncan/front.svg",
  18368. extra: 1650 / 1482,
  18369. bottom: 0.05
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Macro",
  18376. height: math.unit(100, "feet"),
  18377. default: true
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(5 + 4 / 12, "feet"),
  18386. weight: math.unit(220, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/memory/front.svg",
  18390. extra: 3641 / 3545,
  18391. bottom: 0.03
  18392. }
  18393. },
  18394. back: {
  18395. height: math.unit(5 + 4 / 12, "feet"),
  18396. weight: math.unit(220, "lb"),
  18397. name: "Back",
  18398. image: {
  18399. source: "./media/characters/memory/back.svg",
  18400. extra: 3641 / 3545,
  18401. bottom: 0.025
  18402. }
  18403. },
  18404. frontSkirt: {
  18405. height: math.unit(5 + 4 / 12, "feet"),
  18406. weight: math.unit(220, "lb"),
  18407. name: "Front (Skirt)",
  18408. image: {
  18409. source: "./media/characters/memory/front-skirt.svg",
  18410. extra: 3641 / 3545,
  18411. bottom: 0.03
  18412. }
  18413. },
  18414. frontDress: {
  18415. height: math.unit(5 + 4 / 12, "feet"),
  18416. weight: math.unit(220, "lb"),
  18417. name: "Front (Dress)",
  18418. image: {
  18419. source: "./media/characters/memory/front-dress.svg",
  18420. extra: 3641 / 3545,
  18421. bottom: 0.03
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Micro",
  18428. height: math.unit(6, "inches"),
  18429. default: true
  18430. },
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(5 + 4 / 12, "feet")
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(4 + 11 / 12, "feet"),
  18442. weight: math.unit(100, "lb"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/luno/front.svg",
  18446. extra: 1535 / 1487,
  18447. bottom: 0.03
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(3, "inches")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(4 + 11 / 12, "feet"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(300, "feet")
  18464. },
  18465. {
  18466. name: "Megamacro",
  18467. height: math.unit(700, "miles")
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(6 + 2 / 12, "feet"),
  18476. weight: math.unit(170, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/jamesy/front.svg",
  18480. extra: 440 / 382,
  18481. bottom: 0.005
  18482. }
  18483. },
  18484. },
  18485. [
  18486. {
  18487. name: "Micro",
  18488. height: math.unit(3, "inches")
  18489. },
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(6 + 2 / 12, "feet"),
  18493. default: true
  18494. },
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(300, "feet")
  18498. },
  18499. {
  18500. name: "Megamacro",
  18501. height: math.unit(700, "miles")
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(6, "feet"),
  18510. weight: math.unit(160, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/mark/front.svg",
  18514. extra: 3300 / 3100,
  18515. bottom: 136.42 / 3440.47
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(120, "meters")
  18523. },
  18524. {
  18525. name: "Bigger Macro",
  18526. height: math.unit(350, "meters")
  18527. },
  18528. {
  18529. name: "Megamacro",
  18530. height: math.unit(8, "km"),
  18531. default: true
  18532. },
  18533. {
  18534. name: "Continental",
  18535. height: math.unit(4550, "km")
  18536. },
  18537. {
  18538. name: "Planetary",
  18539. height: math.unit(65000, "km")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(6, "feet"),
  18548. weight: math.unit(400, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/mac/front.svg",
  18552. extra: 1048 / 987.7,
  18553. bottom: 60 / 1107.6,
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Macro",
  18560. height: math.unit(500, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(5 + 2 / 12, "feet"),
  18570. weight: math.unit(190, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/bari/front.svg",
  18574. extra: 3156 / 2880,
  18575. bottom: 0.03
  18576. }
  18577. },
  18578. back: {
  18579. height: math.unit(5 + 2 / 12, "feet"),
  18580. weight: math.unit(190, "lb"),
  18581. name: "Back",
  18582. image: {
  18583. source: "./media/characters/bari/back.svg",
  18584. extra: 3260 / 2834,
  18585. bottom: 0.025
  18586. }
  18587. },
  18588. frontPlush: {
  18589. height: math.unit(5 + 2 / 12, "feet"),
  18590. weight: math.unit(190, "lb"),
  18591. name: "Front (Plush)",
  18592. image: {
  18593. source: "./media/characters/bari/front-plush.svg",
  18594. extra: 1112 / 1061,
  18595. bottom: 0.002
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Micro",
  18602. height: math.unit(3, "inches")
  18603. },
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(5 + 2 / 12, "feet"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(20, "feet")
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(6 + 1 / 12, "feet"),
  18620. weight: math.unit(275, "lb"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/hunter-misha-raven/front.svg"
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Mortal",
  18630. height: math.unit(6 + 1 / 12, "feet")
  18631. },
  18632. {
  18633. name: "Divine",
  18634. height: math.unit(1.12134e34, "parsecs"),
  18635. default: true
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18641. {
  18642. front: {
  18643. height: math.unit(6 + 3 / 12, "feet"),
  18644. weight: math.unit(220, "lb"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/max-calore/front.svg",
  18648. extra: 1700 / 1648,
  18649. bottom: 0.01
  18650. }
  18651. },
  18652. back: {
  18653. height: math.unit(6 + 3 / 12, "feet"),
  18654. weight: math.unit(220, "lb"),
  18655. name: "Back",
  18656. image: {
  18657. source: "./media/characters/max-calore/back.svg",
  18658. extra: 1700 / 1648,
  18659. bottom: 0.01
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(6 + 3 / 12, "feet"),
  18667. default: true
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18673. {
  18674. side: {
  18675. height: math.unit(2 + 8 / 12, "feet"),
  18676. weight: math.unit(99, "lb"),
  18677. name: "Side",
  18678. image: {
  18679. source: "./media/characters/aspen/side.svg",
  18680. extra: 152 / 138,
  18681. bottom: 0.032
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(2 + 8 / 12, "feet"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18695. {
  18696. side: {
  18697. height: math.unit(3 + 2 / 12, "feet"),
  18698. weight: math.unit(224, "lb"),
  18699. name: "Side",
  18700. image: {
  18701. source: "./media/characters/sheila-feral-wolf/side.svg",
  18702. extra: 179 / 166,
  18703. bottom: 0.03
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(3 + 2 / 12, "feet"),
  18711. default: true
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18717. {
  18718. side: {
  18719. height: math.unit(1 + 9 / 12, "feet"),
  18720. weight: math.unit(38, "lb"),
  18721. name: "Side",
  18722. image: {
  18723. source: "./media/characters/michelle/side.svg",
  18724. extra: 147 / 136.7,
  18725. bottom: 0.03
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Normal",
  18732. height: math.unit(1 + 9 / 12, "feet"),
  18733. default: true
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18739. {
  18740. front: {
  18741. height: math.unit(1.54, "feet"),
  18742. weight: math.unit(50, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/nino/front.svg"
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(1.54, "feet"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(1.49, "feet"),
  18762. weight: math.unit(45, "lb"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/viola/front.svg"
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(1.49, "feet"),
  18773. default: true
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18779. {
  18780. front: {
  18781. height: math.unit(6 + 5 / 12, "feet"),
  18782. weight: math.unit(580, "lb"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/atlas/front.svg",
  18786. extra: 298.5 / 290,
  18787. bottom: 0.015
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(6 + 5 / 12, "feet"),
  18795. default: true
  18796. },
  18797. ]
  18798. ))
  18799. characterMakers.push(() => makeCharacter(
  18800. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18801. {
  18802. side: {
  18803. height: math.unit(15.6, "inches"),
  18804. weight: math.unit(10, "lb"),
  18805. name: "Side",
  18806. image: {
  18807. source: "./media/characters/davy/side.svg",
  18808. extra: 200 / 170,
  18809. bottom: 0.01
  18810. }
  18811. },
  18812. },
  18813. [
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(15.6, "inches"),
  18817. default: true
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18823. {
  18824. side: {
  18825. height: math.unit(4 + 8 / 12, "feet"),
  18826. weight: math.unit(166, "lb"),
  18827. name: "Side",
  18828. image: {
  18829. source: "./media/characters/fiona/side.svg",
  18830. extra: 232 / 220,
  18831. bottom: 0.03
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(4 + 8 / 12, "feet"),
  18839. default: true
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18845. {
  18846. front: {
  18847. height: math.unit(26, "inches"),
  18848. weight: math.unit(35, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/lyla/front.svg",
  18852. bottom: 0.1
  18853. }
  18854. },
  18855. },
  18856. [
  18857. {
  18858. name: "Normal",
  18859. height: math.unit(3, "feet"),
  18860. default: true
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18866. {
  18867. side: {
  18868. height: math.unit(1.8, "feet"),
  18869. weight: math.unit(44, "lb"),
  18870. name: "Side",
  18871. image: {
  18872. source: "./media/characters/perseus/side.svg",
  18873. bottom: 0.21
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(1.8, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18887. {
  18888. side: {
  18889. height: math.unit(4 + 2 / 12, "feet"),
  18890. weight: math.unit(20, "lb"),
  18891. name: "Side",
  18892. image: {
  18893. source: "./media/characters/remus/side.svg"
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(4 + 2 / 12, "feet"),
  18901. default: true
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(4 + 11 / 12, "feet"),
  18910. weight: math.unit(114, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/raf/front.svg",
  18914. extra: 1504/1339,
  18915. bottom: 26/1530
  18916. }
  18917. },
  18918. side: {
  18919. height: math.unit(4 + 11 / 12, "feet"),
  18920. weight: math.unit(114, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/raf/side.svg",
  18924. extra: 1466/1316,
  18925. bottom: 29/1495
  18926. }
  18927. },
  18928. paw: {
  18929. height: math.unit(1.45, "feet"),
  18930. name: "Paw",
  18931. image: {
  18932. source: "./media/characters/raf/paw.svg"
  18933. },
  18934. extraAttributes: {
  18935. "toeSize": {
  18936. name: "Toe Size",
  18937. power: 2,
  18938. type: "area",
  18939. base: math.unit(0.004, "m^2")
  18940. },
  18941. "padSize": {
  18942. name: "Pad Size",
  18943. power: 2,
  18944. type: "area",
  18945. base: math.unit(0.04, "m^2")
  18946. },
  18947. "footSize": {
  18948. name: "Foot Size",
  18949. power: 2,
  18950. type: "area",
  18951. base: math.unit(0.08, "m^2")
  18952. },
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Micro",
  18959. height: math.unit(2, "inches")
  18960. },
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(4 + 11 / 12, "feet"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Macro",
  18968. height: math.unit(70, "feet")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(1.5, "meters"),
  18977. weight: math.unit(68, "kg"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/liam-einarr/front.svg",
  18981. extra: 2822 / 2666
  18982. }
  18983. },
  18984. back: {
  18985. height: math.unit(1.5, "meters"),
  18986. weight: math.unit(68, "kg"),
  18987. name: "Back",
  18988. image: {
  18989. source: "./media/characters/liam-einarr/back.svg",
  18990. extra: 2822 / 2666,
  18991. bottom: 0.015
  18992. }
  18993. },
  18994. },
  18995. [
  18996. {
  18997. name: "Normal",
  18998. height: math.unit(1.5, "meters"),
  18999. default: true
  19000. },
  19001. {
  19002. name: "Macro",
  19003. height: math.unit(150, "meters")
  19004. },
  19005. {
  19006. name: "Megamacro",
  19007. height: math.unit(35, "km")
  19008. },
  19009. ]
  19010. ))
  19011. characterMakers.push(() => makeCharacter(
  19012. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19013. {
  19014. front: {
  19015. height: math.unit(6, "feet"),
  19016. weight: math.unit(75, "kg"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/linda/front.svg",
  19020. extra: 930 / 874,
  19021. bottom: 0.004
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(6, "feet"),
  19029. default: true
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(6 + 8 / 12, "feet"),
  19038. weight: math.unit(220, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/caylex/front.svg",
  19042. extra: 821 / 772,
  19043. bottom: 0.07
  19044. }
  19045. },
  19046. back: {
  19047. height: math.unit(6 + 8 / 12, "feet"),
  19048. weight: math.unit(220, "lb"),
  19049. name: "Back",
  19050. image: {
  19051. source: "./media/characters/caylex/back.svg",
  19052. extra: 821 / 772,
  19053. bottom: 0.022
  19054. }
  19055. },
  19056. hand: {
  19057. height: math.unit(1.25, "feet"),
  19058. name: "Hand",
  19059. image: {
  19060. source: "./media/characters/caylex/hand.svg"
  19061. }
  19062. },
  19063. foot: {
  19064. height: math.unit(1.6, "feet"),
  19065. name: "Foot",
  19066. image: {
  19067. source: "./media/characters/caylex/foot.svg"
  19068. }
  19069. },
  19070. armored: {
  19071. height: math.unit(6 + 8 / 12, "feet"),
  19072. weight: math.unit(250, "lb"),
  19073. name: "Armored",
  19074. image: {
  19075. source: "./media/characters/caylex/armored.svg",
  19076. extra: 1420 / 1310,
  19077. bottom: 0.045
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Normal",
  19084. height: math.unit(6 + 8 / 12, "feet"),
  19085. default: true
  19086. },
  19087. {
  19088. name: "Normal+",
  19089. height: math.unit(12, "feet")
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(7 + 6 / 12, "feet"),
  19098. weight: math.unit(288, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/alana/front.svg",
  19102. extra: 679 / 653,
  19103. bottom: 22.5 / 701
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Normal",
  19110. height: math.unit(7 + 6 / 12, "feet")
  19111. },
  19112. {
  19113. name: "Large",
  19114. height: math.unit(50, "feet")
  19115. },
  19116. {
  19117. name: "Macro",
  19118. height: math.unit(100, "feet"),
  19119. default: true
  19120. },
  19121. {
  19122. name: "Macro+",
  19123. height: math.unit(200, "feet")
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19129. {
  19130. front: {
  19131. height: math.unit(6 + 1 / 12, "feet"),
  19132. weight: math.unit(210, "lb"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/hasani/front.svg",
  19136. extra: 244 / 232,
  19137. bottom: 0.01
  19138. }
  19139. },
  19140. back: {
  19141. height: math.unit(6 + 1 / 12, "feet"),
  19142. weight: math.unit(210, "lb"),
  19143. name: "Back",
  19144. image: {
  19145. source: "./media/characters/hasani/back.svg",
  19146. extra: 244 / 232,
  19147. bottom: 0.01
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(6 + 1 / 12, "feet")
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(175, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(1.82, "meters"),
  19168. weight: math.unit(140, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/nita/front.svg",
  19172. extra: 2473 / 2363,
  19173. bottom: 0.01
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(1.82, "m")
  19181. },
  19182. {
  19183. name: "Macro",
  19184. height: math.unit(300, "m")
  19185. },
  19186. {
  19187. name: "Mistake Canon",
  19188. height: math.unit(0.5, "miles"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "Big Mistake",
  19193. height: math.unit(13, "miles")
  19194. },
  19195. {
  19196. name: "Playing God",
  19197. height: math.unit(2450, "miles")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(4, "feet"),
  19206. weight: math.unit(120, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/shiriko/front.svg",
  19210. extra: 970/934,
  19211. bottom: 5/975
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(4, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(6, "feet"),
  19228. name: "front",
  19229. image: {
  19230. source: "./media/characters/deja/front.svg",
  19231. extra: 926 / 840,
  19232. bottom: 0.07
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Planck Length",
  19239. height: math.unit(1.6e-35, "meters")
  19240. },
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(30.48, "meters"),
  19244. default: true
  19245. },
  19246. {
  19247. name: "Universal",
  19248. height: math.unit(8.8e26, "meters")
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19254. {
  19255. side: {
  19256. height: math.unit(8, "feet"),
  19257. weight: math.unit(6300, "lb"),
  19258. name: "Side",
  19259. image: {
  19260. source: "./media/characters/anima/side.svg",
  19261. bottom: 0.035
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(8, "feet"),
  19269. default: true
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19275. {
  19276. front: {
  19277. height: math.unit(8, "feet"),
  19278. weight: math.unit(350, "lb"),
  19279. name: "Front",
  19280. image: {
  19281. source: "./media/characters/bianca/front.svg",
  19282. extra: 234 / 225,
  19283. bottom: 0.03
  19284. }
  19285. },
  19286. },
  19287. [
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(8, "feet"),
  19291. default: true
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(11 + 5/12, "feet"),
  19300. weight: math.unit(1200, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/adinia/front.svg",
  19304. extra: 1767/1641,
  19305. bottom: 44/1811
  19306. },
  19307. extraAttributes: {
  19308. "energyIntake": {
  19309. name: "Energy Intake",
  19310. power: 3,
  19311. type: "energy",
  19312. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19313. },
  19314. }
  19315. },
  19316. back: {
  19317. height: math.unit(11 + 5/12, "feet"),
  19318. weight: math.unit(1200, "lb"),
  19319. name: "Back",
  19320. image: {
  19321. source: "./media/characters/adinia/back.svg",
  19322. extra: 1834/1684,
  19323. bottom: 14/1848
  19324. },
  19325. extraAttributes: {
  19326. "energyIntake": {
  19327. name: "Energy Intake",
  19328. power: 3,
  19329. type: "energy",
  19330. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19331. },
  19332. }
  19333. },
  19334. maw: {
  19335. height: math.unit(3.79, "feet"),
  19336. name: "Maw",
  19337. image: {
  19338. source: "./media/characters/adinia/maw.svg"
  19339. }
  19340. },
  19341. rump: {
  19342. height: math.unit(4.6, "feet"),
  19343. name: "Rump",
  19344. image: {
  19345. source: "./media/characters/adinia/rump.svg"
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(11 + 5 / 12, "feet"),
  19353. default: true
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(3, "meters"),
  19362. weight: math.unit(200, "kg"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/lykasa/front.svg",
  19366. extra: 1076 / 976,
  19367. bottom: 0.06
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(3, "meters")
  19375. },
  19376. {
  19377. name: "Kaiju",
  19378. height: math.unit(120, "meters"),
  19379. default: true
  19380. },
  19381. {
  19382. name: "Mega Kaiju",
  19383. height: math.unit(240, "km")
  19384. },
  19385. {
  19386. name: "Giga Kaiju",
  19387. height: math.unit(400, "megameters")
  19388. },
  19389. {
  19390. name: "Tera Kaiju",
  19391. height: math.unit(800, "gigameters")
  19392. },
  19393. {
  19394. name: "Kaiju Dragon Goddess",
  19395. height: math.unit(26, "zettaparsecs")
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19401. {
  19402. side: {
  19403. height: math.unit(283 / 124 * 6, "feet"),
  19404. weight: math.unit(35000, "lb"),
  19405. name: "Side",
  19406. image: {
  19407. source: "./media/characters/malfaren/side.svg",
  19408. extra: 1310/529,
  19409. bottom: 24/1334
  19410. }
  19411. },
  19412. front: {
  19413. height: math.unit(22.36, "feet"),
  19414. weight: math.unit(35000, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/malfaren/front.svg",
  19418. extra: 1237/1115,
  19419. bottom: 32/1269
  19420. }
  19421. },
  19422. maw: {
  19423. height: math.unit(6.9, "feet"),
  19424. name: "Maw",
  19425. image: {
  19426. source: "./media/characters/malfaren/maw.svg"
  19427. }
  19428. },
  19429. dick: {
  19430. height: math.unit(6.19, "feet"),
  19431. name: "Dick",
  19432. image: {
  19433. source: "./media/characters/malfaren/dick.svg"
  19434. }
  19435. },
  19436. eye: {
  19437. height: math.unit(0.69, "feet"),
  19438. name: "Eye",
  19439. image: {
  19440. source: "./media/characters/malfaren/eye.svg"
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Big",
  19447. height: math.unit(283 / 162 * 6, "feet"),
  19448. },
  19449. {
  19450. name: "Bigger",
  19451. height: math.unit(283 / 124 * 6, "feet")
  19452. },
  19453. {
  19454. name: "Massive",
  19455. height: math.unit(283 / 92 * 6, "feet"),
  19456. default: true
  19457. },
  19458. {
  19459. name: "👀💦",
  19460. height: math.unit(283 / 73 * 6, "feet"),
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(1.7, "m"),
  19469. weight: math.unit(70, "kg"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/kernel/front.svg",
  19473. extra: 222 / 210,
  19474. bottom: 0.007
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Nano",
  19481. height: math.unit(17, "micrometers")
  19482. },
  19483. {
  19484. name: "Micro",
  19485. height: math.unit(1.7, "mm")
  19486. },
  19487. {
  19488. name: "Small",
  19489. height: math.unit(1.7, "cm")
  19490. },
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(1.7, "m"),
  19494. default: true
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(1.75, "meters"),
  19503. weight: math.unit(65, "kg"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/jayne-folest/front.svg",
  19507. extra: 2115 / 2007,
  19508. bottom: 0.02
  19509. }
  19510. },
  19511. back: {
  19512. height: math.unit(1.75, "meters"),
  19513. weight: math.unit(65, "kg"),
  19514. name: "Back",
  19515. image: {
  19516. source: "./media/characters/jayne-folest/back.svg",
  19517. extra: 2115 / 2007,
  19518. bottom: 0.005
  19519. }
  19520. },
  19521. frontClothed: {
  19522. height: math.unit(1.75, "meters"),
  19523. weight: math.unit(65, "kg"),
  19524. name: "Front (Clothed)",
  19525. image: {
  19526. source: "./media/characters/jayne-folest/front-clothed.svg",
  19527. extra: 2115 / 2007,
  19528. bottom: 0.035
  19529. }
  19530. },
  19531. hand: {
  19532. height: math.unit(1 / 1.260, "feet"),
  19533. name: "Hand",
  19534. image: {
  19535. source: "./media/characters/jayne-folest/hand.svg"
  19536. }
  19537. },
  19538. foot: {
  19539. height: math.unit(1 / 0.918, "feet"),
  19540. name: "Foot",
  19541. image: {
  19542. source: "./media/characters/jayne-folest/foot.svg"
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Micro",
  19549. height: math.unit(4, "cm")
  19550. },
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(1.75, "meters")
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(47.5, "meters"),
  19558. default: true
  19559. },
  19560. ]
  19561. ))
  19562. characterMakers.push(() => makeCharacter(
  19563. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19564. {
  19565. front: {
  19566. height: math.unit(180, "cm"),
  19567. weight: math.unit(70, "kg"),
  19568. name: "Front",
  19569. image: {
  19570. source: "./media/characters/algier/front.svg",
  19571. extra: 596 / 572,
  19572. bottom: 0.04
  19573. }
  19574. },
  19575. back: {
  19576. height: math.unit(180, "cm"),
  19577. weight: math.unit(70, "kg"),
  19578. name: "Back",
  19579. image: {
  19580. source: "./media/characters/algier/back.svg",
  19581. extra: 596 / 572,
  19582. bottom: 0.025
  19583. }
  19584. },
  19585. frontdressed: {
  19586. height: math.unit(180, "cm"),
  19587. weight: math.unit(150, "kg"),
  19588. name: "Front-dressed",
  19589. image: {
  19590. source: "./media/characters/algier/front-dressed.svg",
  19591. extra: 596 / 572,
  19592. bottom: 0.038
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Micro",
  19599. height: math.unit(5, "cm")
  19600. },
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(180, "cm"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(64, "m")
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19614. {
  19615. upright: {
  19616. height: math.unit(7, "feet"),
  19617. weight: math.unit(300, "lb"),
  19618. name: "Upright",
  19619. image: {
  19620. source: "./media/characters/pretzel/upright.svg",
  19621. extra: 534 / 522,
  19622. bottom: 0.065
  19623. }
  19624. },
  19625. sprawling: {
  19626. height: math.unit(3.75, "feet"),
  19627. weight: math.unit(300, "lb"),
  19628. name: "Sprawling",
  19629. image: {
  19630. source: "./media/characters/pretzel/sprawling.svg",
  19631. extra: 314 / 281,
  19632. bottom: 0.1
  19633. }
  19634. },
  19635. tongue: {
  19636. height: math.unit(2, "feet"),
  19637. name: "Tongue",
  19638. image: {
  19639. source: "./media/characters/pretzel/tongue.svg"
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(7, "feet"),
  19647. default: true
  19648. },
  19649. {
  19650. name: "Oversized",
  19651. height: math.unit(15, "feet")
  19652. },
  19653. {
  19654. name: "Huge",
  19655. height: math.unit(30, "feet")
  19656. },
  19657. {
  19658. name: "Macro",
  19659. height: math.unit(250, "feet")
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19665. {
  19666. sideFront: {
  19667. height: math.unit(5 + 2 / 12, "feet"),
  19668. weight: math.unit(120, "lb"),
  19669. name: "Front Side",
  19670. image: {
  19671. source: "./media/characters/roxi/side-front.svg",
  19672. extra: 2924 / 2717,
  19673. bottom: 0.08
  19674. }
  19675. },
  19676. sideBack: {
  19677. height: math.unit(5 + 2 / 12, "feet"),
  19678. weight: math.unit(120, "lb"),
  19679. name: "Back Side",
  19680. image: {
  19681. source: "./media/characters/roxi/side-back.svg",
  19682. extra: 2904 / 2693,
  19683. bottom: 0.06
  19684. }
  19685. },
  19686. front: {
  19687. height: math.unit(5 + 2 / 12, "feet"),
  19688. weight: math.unit(120, "lb"),
  19689. name: "Front",
  19690. image: {
  19691. source: "./media/characters/roxi/front.svg",
  19692. extra: 2028 / 1907,
  19693. bottom: 0.01
  19694. }
  19695. },
  19696. frontAlt: {
  19697. height: math.unit(5 + 2 / 12, "feet"),
  19698. weight: math.unit(120, "lb"),
  19699. name: "Front (Alt)",
  19700. image: {
  19701. source: "./media/characters/roxi/front-alt.svg",
  19702. extra: 1828 / 1798,
  19703. bottom: 0.01
  19704. }
  19705. },
  19706. sitting: {
  19707. height: math.unit(2.8, "feet"),
  19708. weight: math.unit(120, "lb"),
  19709. name: "Sitting",
  19710. image: {
  19711. source: "./media/characters/roxi/sitting.svg",
  19712. extra: 2660 / 2462,
  19713. bottom: 0.1
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(5 + 2 / 12, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19727. {
  19728. side: {
  19729. height: math.unit(55, "feet"),
  19730. weight: math.unit(153, "tons"),
  19731. name: "Side",
  19732. image: {
  19733. source: "./media/characters/shadow/side.svg",
  19734. extra: 701 / 628,
  19735. bottom: 0.02
  19736. }
  19737. },
  19738. flying: {
  19739. height: math.unit(145, "feet"),
  19740. weight: math.unit(153, "tons"),
  19741. name: "Flying",
  19742. image: {
  19743. source: "./media/characters/shadow/flying.svg"
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(55, "feet"),
  19751. default: true
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(6, "feet"),
  19760. weight: math.unit(200, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/marcie/front.svg",
  19764. extra: 960 / 876,
  19765. bottom: 58 / 1017.87
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Macro",
  19772. height: math.unit(1, "mile"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(7, "feet"),
  19782. weight: math.unit(200, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/kachina/front.svg",
  19786. extra: 1290.68 / 1119,
  19787. bottom: 36.5 / 1327.18
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(7, "feet"),
  19795. default: true
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19801. {
  19802. looking: {
  19803. height: math.unit(2, "meters"),
  19804. weight: math.unit(300, "kg"),
  19805. name: "Looking",
  19806. image: {
  19807. source: "./media/characters/kash/looking.svg",
  19808. extra: 474 / 344,
  19809. bottom: 0.03
  19810. }
  19811. },
  19812. side: {
  19813. height: math.unit(2, "meters"),
  19814. weight: math.unit(300, "kg"),
  19815. name: "Side",
  19816. image: {
  19817. source: "./media/characters/kash/side.svg",
  19818. extra: 302 / 251,
  19819. bottom: 0.03
  19820. }
  19821. },
  19822. front: {
  19823. height: math.unit(2, "meters"),
  19824. weight: math.unit(300, "kg"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/kash/front.svg",
  19828. extra: 495 / 360,
  19829. bottom: 0.015
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(2, "meters"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Big",
  19841. height: math.unit(3, "meters")
  19842. },
  19843. {
  19844. name: "Large",
  19845. height: math.unit(5, "meters")
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19851. {
  19852. feeding: {
  19853. height: math.unit(6.7, "feet"),
  19854. weight: math.unit(350, "lb"),
  19855. name: "Feeding",
  19856. image: {
  19857. source: "./media/characters/lalim/feeding.svg",
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(6.7, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(9.5, "feet"),
  19874. weight: math.unit(600, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/de'vout/front.svg",
  19878. extra: 1443 / 1328,
  19879. bottom: 0.025
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(9.5, "feet"),
  19884. weight: math.unit(600, "lb"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/de'vout/back.svg",
  19888. extra: 1443 / 1328
  19889. }
  19890. },
  19891. frontDressed: {
  19892. height: math.unit(9.5, "feet"),
  19893. weight: math.unit(600, "lb"),
  19894. name: "Front (Dressed",
  19895. image: {
  19896. source: "./media/characters/de'vout/front-dressed.svg",
  19897. extra: 1443 / 1328,
  19898. bottom: 0.025
  19899. }
  19900. },
  19901. backDressed: {
  19902. height: math.unit(9.5, "feet"),
  19903. weight: math.unit(600, "lb"),
  19904. name: "Back (Dressed",
  19905. image: {
  19906. source: "./media/characters/de'vout/back-dressed.svg",
  19907. extra: 1443 / 1328
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(9.5, "feet"),
  19915. default: true
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19921. {
  19922. front: {
  19923. height: math.unit(8, "feet"),
  19924. weight: math.unit(225, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/talana/front.svg",
  19928. extra: 1410 / 1300,
  19929. bottom: 0.015
  19930. }
  19931. },
  19932. frontDressed: {
  19933. height: math.unit(8, "feet"),
  19934. weight: math.unit(225, "lb"),
  19935. name: "Front (Dressed",
  19936. image: {
  19937. source: "./media/characters/talana/front-dressed.svg",
  19938. extra: 1410 / 1300,
  19939. bottom: 0.015
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(8, "feet"),
  19947. default: true
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19953. {
  19954. side: {
  19955. height: math.unit(7.2, "feet"),
  19956. weight: math.unit(150, "lb"),
  19957. name: "Side",
  19958. image: {
  19959. source: "./media/characters/xeauvok/side.svg",
  19960. extra: 1975 / 1523,
  19961. bottom: 0.07
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(7.2, "feet"),
  19969. default: true
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19975. {
  19976. side: {
  19977. height: math.unit(4, "meters"),
  19978. weight: math.unit(2200, "kg"),
  19979. name: "Side",
  19980. image: {
  19981. source: "./media/characters/zara/side.svg",
  19982. extra: 765/744,
  19983. bottom: 156/921
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(4, "meters"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19997. {
  19998. side: {
  19999. height: math.unit(6, "feet"),
  20000. weight: math.unit(150, "lb"),
  20001. name: "Side",
  20002. image: {
  20003. source: "./media/characters/richard-dragon/side.svg",
  20004. extra: 845 / 340,
  20005. bottom: 0.017
  20006. }
  20007. },
  20008. maw: {
  20009. height: math.unit(2.97, "feet"),
  20010. name: "Maw",
  20011. image: {
  20012. source: "./media/characters/richard-dragon/maw.svg"
  20013. }
  20014. },
  20015. },
  20016. [
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(4, "feet"),
  20024. weight: math.unit(100, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/richard-smeargle/front.svg",
  20028. extra: 2952 / 2820,
  20029. bottom: 0.028
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(4, "feet"),
  20037. default: true
  20038. },
  20039. {
  20040. name: "Dynamax",
  20041. height: math.unit(20, "meters")
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(6, "feet"),
  20050. weight: math.unit(110, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/klay/front.svg",
  20054. extra: 962 / 883,
  20055. bottom: 0.04
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(6, "feet"),
  20060. weight: math.unit(110, "lb"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/klay/back.svg",
  20064. extra: 962 / 883
  20065. }
  20066. },
  20067. beans: {
  20068. height: math.unit(1.15, "feet"),
  20069. name: "Beans",
  20070. image: {
  20071. source: "./media/characters/klay/beans.svg"
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Micro",
  20078. height: math.unit(6, "inches")
  20079. },
  20080. {
  20081. name: "Mini",
  20082. height: math.unit(3, "feet")
  20083. },
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(6, "feet"),
  20087. default: true
  20088. },
  20089. {
  20090. name: "Big",
  20091. height: math.unit(25, "feet")
  20092. },
  20093. {
  20094. name: "Macro",
  20095. height: math.unit(100, "feet")
  20096. },
  20097. {
  20098. name: "Megamacro",
  20099. height: math.unit(400, "feet")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(6, "feet"),
  20108. weight: math.unit(160, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/marcus/front.svg",
  20112. extra: 734 / 676,
  20113. bottom: 0.03
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Little",
  20120. height: math.unit(6, "feet")
  20121. },
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(110, "feet"),
  20125. default: true
  20126. },
  20127. {
  20128. name: "Macro",
  20129. height: math.unit(250, "feet")
  20130. },
  20131. {
  20132. name: "Megamacro",
  20133. height: math.unit(1000, "feet")
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20139. {
  20140. front: {
  20141. height: math.unit(7, "feet"),
  20142. weight: math.unit(275, "lb"),
  20143. name: "Front",
  20144. image: {
  20145. source: "./media/characters/claude-delroute/front.svg",
  20146. extra: 902/827,
  20147. bottom: 26/928
  20148. }
  20149. },
  20150. side: {
  20151. height: math.unit(7, "feet"),
  20152. weight: math.unit(275, "lb"),
  20153. name: "Side",
  20154. image: {
  20155. source: "./media/characters/claude-delroute/side.svg",
  20156. extra: 908/853,
  20157. bottom: 16/924
  20158. }
  20159. },
  20160. back: {
  20161. height: math.unit(7, "feet"),
  20162. weight: math.unit(275, "lb"),
  20163. name: "Back",
  20164. image: {
  20165. source: "./media/characters/claude-delroute/back.svg",
  20166. extra: 911/829,
  20167. bottom: 18/929
  20168. }
  20169. },
  20170. maw: {
  20171. height: math.unit(0.6407, "meters"),
  20172. name: "Maw",
  20173. image: {
  20174. source: "./media/characters/claude-delroute/maw.svg"
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(7, "feet"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Lorge",
  20186. height: math.unit(20, "feet")
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20192. {
  20193. front: {
  20194. height: math.unit(8 + 4 / 12, "feet"),
  20195. weight: math.unit(600, "lb"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/dragonien/front.svg",
  20199. extra: 100 / 94,
  20200. bottom: 3.3 / 103.3445
  20201. }
  20202. },
  20203. back: {
  20204. height: math.unit(8 + 4 / 12, "feet"),
  20205. weight: math.unit(600, "lb"),
  20206. name: "Back",
  20207. image: {
  20208. source: "./media/characters/dragonien/back.svg",
  20209. extra: 776 / 746,
  20210. bottom: 6.4 / 782.0616
  20211. }
  20212. },
  20213. foot: {
  20214. height: math.unit(1.54, "feet"),
  20215. name: "Foot",
  20216. image: {
  20217. source: "./media/characters/dragonien/foot.svg",
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(8 + 4 / 12, "feet"),
  20225. default: true
  20226. },
  20227. {
  20228. name: "Macro",
  20229. height: math.unit(200, "feet")
  20230. },
  20231. {
  20232. name: "Megamacro",
  20233. height: math.unit(1, "mile")
  20234. },
  20235. {
  20236. name: "Gigamacro",
  20237. height: math.unit(1000, "miles")
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(5 + 2 / 12, "feet"),
  20246. weight: math.unit(110, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/desta/front.svg",
  20250. extra: 767 / 726,
  20251. bottom: 11.7 / 779
  20252. }
  20253. },
  20254. back: {
  20255. height: math.unit(5 + 2 / 12, "feet"),
  20256. weight: math.unit(110, "lb"),
  20257. name: "Back",
  20258. image: {
  20259. source: "./media/characters/desta/back.svg",
  20260. extra: 777 / 728,
  20261. bottom: 6 / 784
  20262. }
  20263. },
  20264. frontAlt: {
  20265. height: math.unit(5 + 2 / 12, "feet"),
  20266. weight: math.unit(110, "lb"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/desta/front-alt.svg",
  20270. extra: 1482 / 1417
  20271. }
  20272. },
  20273. side: {
  20274. height: math.unit(5 + 2 / 12, "feet"),
  20275. weight: math.unit(110, "lb"),
  20276. name: "Side",
  20277. image: {
  20278. source: "./media/characters/desta/side.svg",
  20279. extra: 2579 / 2491,
  20280. bottom: 0.053
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Micro",
  20287. height: math.unit(6, "inches")
  20288. },
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(5 + 2 / 12, "feet"),
  20292. default: true
  20293. },
  20294. {
  20295. name: "Macro",
  20296. height: math.unit(62, "feet")
  20297. },
  20298. {
  20299. name: "Megamacro",
  20300. height: math.unit(1800, "feet")
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20306. {
  20307. front: {
  20308. height: math.unit(10, "feet"),
  20309. weight: math.unit(700, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/storm-alystar/front.svg",
  20313. extra: 2112 / 1898,
  20314. bottom: 0.034
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Micro",
  20321. height: math.unit(3.5, "inches")
  20322. },
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(10, "feet"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Macro",
  20330. height: math.unit(400, "feet")
  20331. },
  20332. {
  20333. name: "Deific",
  20334. height: math.unit(60, "miles")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(2.35, "meters"),
  20343. weight: math.unit(119, "kg"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/ilia/front.svg",
  20347. extra: 1285 / 1255,
  20348. bottom: 0.06
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(2.35, "meters")
  20356. },
  20357. {
  20358. name: "Macro",
  20359. height: math.unit(140, "meters"),
  20360. default: true
  20361. },
  20362. {
  20363. name: "Megamacro",
  20364. height: math.unit(100, "miles")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(6 + 5 / 12, "feet"),
  20373. weight: math.unit(190, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/kingdead/front.svg",
  20377. extra: 1228 / 1177
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Micro",
  20384. height: math.unit(7, "inches")
  20385. },
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(6 + 5 / 12, "feet")
  20389. },
  20390. {
  20391. name: "Macro",
  20392. height: math.unit(150, "feet"),
  20393. default: true
  20394. },
  20395. {
  20396. name: "Megamacro",
  20397. height: math.unit(200, "miles")
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(8, "feet"),
  20406. weight: math.unit(600, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/kyrehx/front.svg",
  20410. extra: 1195 / 1095,
  20411. bottom: 0.034
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Micro",
  20418. height: math.unit(2, "inches")
  20419. },
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(8, "feet"),
  20423. default: true
  20424. },
  20425. {
  20426. name: "Macro",
  20427. height: math.unit(255, "feet")
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20436. weight: math.unit(184, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/xang/front.svg",
  20440. extra: 845 / 755
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20448. default: true
  20449. },
  20450. {
  20451. name: "Macro",
  20452. height: math.unit(0.935 * 146, "feet")
  20453. },
  20454. {
  20455. name: "Megamacro",
  20456. height: math.unit(0.935 * 3, "miles")
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20462. {
  20463. frontDressed: {
  20464. height: math.unit(5 + 7 / 12, "feet"),
  20465. weight: math.unit(140, "lb"),
  20466. name: "Front (Dressed)",
  20467. image: {
  20468. source: "./media/characters/doc-weardno/front-dressed.svg",
  20469. extra: 263 / 234
  20470. }
  20471. },
  20472. backDressed: {
  20473. height: math.unit(5 + 7 / 12, "feet"),
  20474. weight: math.unit(140, "lb"),
  20475. name: "Back (Dressed)",
  20476. image: {
  20477. source: "./media/characters/doc-weardno/back-dressed.svg",
  20478. extra: 266 / 238
  20479. }
  20480. },
  20481. front: {
  20482. height: math.unit(5 + 7 / 12, "feet"),
  20483. weight: math.unit(140, "lb"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/doc-weardno/front.svg",
  20487. extra: 254 / 233
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Micro",
  20494. height: math.unit(3, "inches")
  20495. },
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(5 + 7 / 12, "feet"),
  20499. default: true
  20500. },
  20501. {
  20502. name: "Macro",
  20503. height: math.unit(25, "feet")
  20504. },
  20505. {
  20506. name: "Megamacro",
  20507. height: math.unit(2, "miles")
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(6 + 2 / 12, "feet"),
  20516. weight: math.unit(153, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/seth-whilst/front.svg",
  20520. bottom: 0.07
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Micro",
  20527. height: math.unit(5, "inches")
  20528. },
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(6 + 2 / 12, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(3, "inches"),
  20541. weight: math.unit(8, "grams"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/pocket-jabari/front.svg",
  20545. extra: 1024 / 974,
  20546. bottom: 0.039
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Minimicro",
  20553. height: math.unit(8, "mm")
  20554. },
  20555. {
  20556. name: "Micro",
  20557. height: math.unit(3, "inches"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(3, "feet")
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20568. {
  20569. frontDressed: {
  20570. height: math.unit(15, "feet"),
  20571. weight: math.unit(3280, "lb"),
  20572. name: "Front (Dressed)",
  20573. image: {
  20574. source: "./media/characters/sapphy/front-dressed.svg",
  20575. extra: 1951/1654,
  20576. bottom: 194/2145
  20577. },
  20578. form: "anthro",
  20579. default: true
  20580. },
  20581. backDressed: {
  20582. height: math.unit(15, "feet"),
  20583. weight: math.unit(3280, "lb"),
  20584. name: "Back (Dressed)",
  20585. image: {
  20586. source: "./media/characters/sapphy/back-dressed.svg",
  20587. extra: 2058/1918,
  20588. bottom: 125/2183
  20589. },
  20590. form: "anthro"
  20591. },
  20592. frontNude: {
  20593. height: math.unit(15, "feet"),
  20594. weight: math.unit(3280, "lb"),
  20595. name: "Front (Nude)",
  20596. image: {
  20597. source: "./media/characters/sapphy/front-nude.svg",
  20598. extra: 1951/1654,
  20599. bottom: 194/2145
  20600. },
  20601. form: "anthro"
  20602. },
  20603. backNude: {
  20604. height: math.unit(15, "feet"),
  20605. weight: math.unit(3280, "lb"),
  20606. name: "Back (Nude)",
  20607. image: {
  20608. source: "./media/characters/sapphy/back-nude.svg",
  20609. extra: 2058/1918,
  20610. bottom: 125/2183
  20611. },
  20612. form: "anthro"
  20613. },
  20614. full: {
  20615. height: math.unit(15, "feet"),
  20616. weight: math.unit(3280, "lb"),
  20617. name: "Full",
  20618. image: {
  20619. source: "./media/characters/sapphy/full.svg",
  20620. extra: 1396/1317,
  20621. bottom: 44/1440
  20622. },
  20623. form: "anthro"
  20624. },
  20625. dick: {
  20626. height: math.unit(3.8, "feet"),
  20627. name: "Dick",
  20628. image: {
  20629. source: "./media/characters/sapphy/dick.svg"
  20630. },
  20631. form: "anthro"
  20632. },
  20633. feral: {
  20634. height: math.unit(35, "feet"),
  20635. weight: math.unit(160, "tons"),
  20636. name: "Feral",
  20637. image: {
  20638. source: "./media/characters/sapphy/feral.svg",
  20639. extra: 1050/573,
  20640. bottom: 60/1110
  20641. },
  20642. form: "feral",
  20643. default: true
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(15, "feet"),
  20650. form: "anthro"
  20651. },
  20652. {
  20653. name: "Casual Macro",
  20654. height: math.unit(120, "feet"),
  20655. form: "anthro"
  20656. },
  20657. {
  20658. name: "Macro",
  20659. height: math.unit(2150, "feet"),
  20660. default: true,
  20661. form: "anthro"
  20662. },
  20663. {
  20664. name: "Megamacro",
  20665. height: math.unit(8, "miles"),
  20666. form: "anthro"
  20667. },
  20668. {
  20669. name: "Galaxy Mom",
  20670. height: math.unit(6, "megalightyears"),
  20671. form: "anthro"
  20672. },
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(35, "feet"),
  20676. form: "feral",
  20677. default: true
  20678. },
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(300, "feet"),
  20682. form: "feral"
  20683. },
  20684. {
  20685. name: "Galaxy Mom",
  20686. height: math.unit(10, "megalightyears"),
  20687. form: "feral"
  20688. },
  20689. ],
  20690. {
  20691. "anthro": {
  20692. name: "Anthro",
  20693. default: true
  20694. },
  20695. "feral": {
  20696. name: "Feral"
  20697. }
  20698. }
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20702. {
  20703. hyenaFront: {
  20704. height: math.unit(6, "feet"),
  20705. weight: math.unit(190, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/kiro/hyena-front.svg",
  20709. extra: 927/839,
  20710. bottom: 91/1018
  20711. },
  20712. form: "hyena",
  20713. default: true
  20714. },
  20715. front: {
  20716. height: math.unit(6, "feet"),
  20717. weight: math.unit(170, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/kiro/front.svg",
  20721. extra: 1064 / 1012,
  20722. bottom: 0.052
  20723. },
  20724. form: "folf",
  20725. default: true
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Micro",
  20731. height: math.unit(6, "inches"),
  20732. form: "folf"
  20733. },
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(6, "feet"),
  20737. form: "folf",
  20738. default: true
  20739. },
  20740. {
  20741. name: "Macro",
  20742. height: math.unit(72, "feet"),
  20743. form: "folf"
  20744. },
  20745. {
  20746. name: "Micro",
  20747. height: math.unit(6, "inches"),
  20748. form: "hyena"
  20749. },
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(6, "feet"),
  20753. form: "hyena",
  20754. default: true
  20755. },
  20756. {
  20757. name: "Macro",
  20758. height: math.unit(72, "feet"),
  20759. form: "hyena"
  20760. },
  20761. ],
  20762. {
  20763. "hyena": {
  20764. name: "Hyena",
  20765. default: true
  20766. },
  20767. "folf": {
  20768. name: "Folf",
  20769. },
  20770. }
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20774. {
  20775. front: {
  20776. height: math.unit(5 + 9 / 12, "feet"),
  20777. weight: math.unit(175, "lb"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/irishfox/front.svg",
  20781. extra: 1912 / 1680,
  20782. bottom: 0.02
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Nano",
  20789. height: math.unit(1, "mm")
  20790. },
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(2, "inches")
  20794. },
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(5 + 9 / 12, "feet"),
  20798. default: true
  20799. },
  20800. {
  20801. name: "Macro",
  20802. height: math.unit(45, "feet")
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(6 + 1 / 12, "feet"),
  20811. weight: math.unit(75, "lb"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/aronai-sieyes/front.svg",
  20815. extra: 1532/1450,
  20816. bottom: 42/1574
  20817. }
  20818. },
  20819. side: {
  20820. height: math.unit(6 + 1 / 12, "feet"),
  20821. weight: math.unit(75, "lb"),
  20822. name: "Side",
  20823. image: {
  20824. source: "./media/characters/aronai-sieyes/side.svg",
  20825. extra: 1422/1365,
  20826. bottom: 148/1570
  20827. }
  20828. },
  20829. back: {
  20830. height: math.unit(6 + 1 / 12, "feet"),
  20831. weight: math.unit(75, "lb"),
  20832. name: "Back",
  20833. image: {
  20834. source: "./media/characters/aronai-sieyes/back.svg",
  20835. extra: 1526/1464,
  20836. bottom: 51/1577
  20837. }
  20838. },
  20839. dressed: {
  20840. height: math.unit(6 + 1 / 12, "feet"),
  20841. weight: math.unit(75, "lb"),
  20842. name: "Dressed",
  20843. image: {
  20844. source: "./media/characters/aronai-sieyes/dressed.svg",
  20845. extra: 1559/1483,
  20846. bottom: 39/1598
  20847. }
  20848. },
  20849. slit: {
  20850. height: math.unit(1.3, "feet"),
  20851. name: "Slit",
  20852. image: {
  20853. source: "./media/characters/aronai-sieyes/slit.svg"
  20854. }
  20855. },
  20856. slitSpread: {
  20857. height: math.unit(0.9, "feet"),
  20858. name: "Slit (Spread)",
  20859. image: {
  20860. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20861. }
  20862. },
  20863. rump: {
  20864. height: math.unit(1.3, "feet"),
  20865. name: "Rump",
  20866. image: {
  20867. source: "./media/characters/aronai-sieyes/rump.svg"
  20868. }
  20869. },
  20870. maw: {
  20871. height: math.unit(1.25, "feet"),
  20872. name: "Maw",
  20873. image: {
  20874. source: "./media/characters/aronai-sieyes/maw.svg"
  20875. }
  20876. },
  20877. feral: {
  20878. height: math.unit(18, "feet"),
  20879. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20880. name: "Feral",
  20881. image: {
  20882. source: "./media/characters/aronai-sieyes/feral.svg",
  20883. extra: 1530 / 1240,
  20884. bottom: 0.035
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Micro",
  20891. height: math.unit(2, "inches")
  20892. },
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(6 + 1 / 12, "feet"),
  20896. default: true
  20897. }
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(12, "feet"),
  20905. weight: math.unit(410, "kg"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/xuna/front.svg",
  20909. extra: 2184 / 1980
  20910. }
  20911. },
  20912. side: {
  20913. height: math.unit(12, "feet"),
  20914. weight: math.unit(410, "kg"),
  20915. name: "Side",
  20916. image: {
  20917. source: "./media/characters/xuna/side.svg",
  20918. extra: 2184 / 1980
  20919. }
  20920. },
  20921. back: {
  20922. height: math.unit(12, "feet"),
  20923. weight: math.unit(410, "kg"),
  20924. name: "Back",
  20925. image: {
  20926. source: "./media/characters/xuna/back.svg",
  20927. extra: 2184 / 1980
  20928. }
  20929. },
  20930. },
  20931. [
  20932. {
  20933. name: "Nano glow",
  20934. height: math.unit(10, "nm")
  20935. },
  20936. {
  20937. name: "Micro floof",
  20938. height: math.unit(0.3, "m")
  20939. },
  20940. {
  20941. name: "Huggable softy boi",
  20942. height: math.unit(3.6576, "m"),
  20943. default: true
  20944. },
  20945. {
  20946. name: "Admirable floof",
  20947. height: math.unit(80, "meters")
  20948. },
  20949. {
  20950. name: "Gentle macro",
  20951. height: math.unit(300, "meters")
  20952. },
  20953. {
  20954. name: "Very careful floof",
  20955. height: math.unit(3200, "meters")
  20956. },
  20957. {
  20958. name: "The mega floof",
  20959. height: math.unit(36000, "meters")
  20960. },
  20961. {
  20962. name: "Giga-fur-Wicker",
  20963. height: math.unit(4800000, "meters")
  20964. },
  20965. {
  20966. name: "Licky world",
  20967. height: math.unit(20000000, "meters")
  20968. },
  20969. {
  20970. name: "Floofy cyan sun",
  20971. height: math.unit(1500000000, "meters")
  20972. },
  20973. {
  20974. name: "Milky Wicker",
  20975. height: math.unit(1000000000000000000000, "meters")
  20976. },
  20977. {
  20978. name: "The observing Wicker",
  20979. height: math.unit(999999999999999999999999999, "meters")
  20980. },
  20981. ]
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(5 + 9 / 12, "feet"),
  20988. weight: math.unit(150, "lb"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/arokha-sieyes/front.svg",
  20992. extra: 1425 / 1284,
  20993. bottom: 0.05
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(5 + 9 / 12, "feet")
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(30, "meters"),
  21005. default: true
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21011. {
  21012. front: {
  21013. height: math.unit(6, "feet"),
  21014. weight: math.unit(180, "lb"),
  21015. name: "Front",
  21016. image: {
  21017. source: "./media/characters/arokh-sieyes/front.svg",
  21018. extra: 1830 / 1769,
  21019. bottom: 0.01
  21020. }
  21021. },
  21022. },
  21023. [
  21024. {
  21025. name: "Normal",
  21026. height: math.unit(6, "feet")
  21027. },
  21028. {
  21029. name: "Macro",
  21030. height: math.unit(30, "meters"),
  21031. default: true
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21037. {
  21038. side: {
  21039. height: math.unit(13 + 1 / 12, "feet"),
  21040. weight: math.unit(8.5, "tonnes"),
  21041. preyCapacity: math.unit(36, "people"),
  21042. name: "Side",
  21043. image: {
  21044. source: "./media/characters/goldeneye/side.svg",
  21045. extra: 1139/741,
  21046. bottom: 98/1237
  21047. }
  21048. },
  21049. front: {
  21050. height: math.unit(5.1, "feet"),
  21051. weight: math.unit(8.5, "tonnes"),
  21052. preyCapacity: math.unit(36, "people"),
  21053. name: "Front",
  21054. image: {
  21055. source: "./media/characters/goldeneye/front.svg",
  21056. extra: 635/365,
  21057. bottom: 598/1233
  21058. }
  21059. },
  21060. maw: {
  21061. height: math.unit(6.6, "feet"),
  21062. name: "Maw",
  21063. image: {
  21064. source: "./media/characters/goldeneye/maw.svg"
  21065. }
  21066. },
  21067. headFront: {
  21068. height: math.unit(8, "feet"),
  21069. name: "Head (Front)",
  21070. image: {
  21071. source: "./media/characters/goldeneye/head-front.svg"
  21072. }
  21073. },
  21074. headSide: {
  21075. height: math.unit(6, "feet"),
  21076. name: "Head (Side)",
  21077. image: {
  21078. source: "./media/characters/goldeneye/head-side.svg"
  21079. }
  21080. },
  21081. headBack: {
  21082. height: math.unit(8, "feet"),
  21083. name: "Head (Back)",
  21084. image: {
  21085. source: "./media/characters/goldeneye/head-back.svg"
  21086. }
  21087. },
  21088. paw: {
  21089. height: math.unit(3.4, "feet"),
  21090. name: "Paw",
  21091. image: {
  21092. source: "./media/characters/goldeneye/paw.svg"
  21093. }
  21094. },
  21095. toering: {
  21096. height: math.unit(0.45, "feet"),
  21097. name: "Toering",
  21098. image: {
  21099. source: "./media/characters/goldeneye/toering.svg"
  21100. }
  21101. },
  21102. eyes: {
  21103. height: math.unit(0.5, "feet"),
  21104. name: "Eyes",
  21105. image: {
  21106. source: "./media/characters/goldeneye/eyes.svg"
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(13 + 1 / 12, "feet"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21120. {
  21121. front: {
  21122. height: math.unit(6 + 1 / 12, "feet"),
  21123. weight: math.unit(210, "lb"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/leonardo-lycheborne/front.svg",
  21127. extra: 776/723,
  21128. bottom: 34/810
  21129. }
  21130. },
  21131. side: {
  21132. height: math.unit(6 + 1 / 12, "feet"),
  21133. weight: math.unit(210, "lb"),
  21134. name: "Side",
  21135. image: {
  21136. source: "./media/characters/leonardo-lycheborne/side.svg",
  21137. extra: 780/728,
  21138. bottom: 12/792
  21139. }
  21140. },
  21141. back: {
  21142. height: math.unit(6 + 1 / 12, "feet"),
  21143. weight: math.unit(210, "lb"),
  21144. name: "Back",
  21145. image: {
  21146. source: "./media/characters/leonardo-lycheborne/back.svg",
  21147. extra: 775/721,
  21148. bottom: 17/792
  21149. }
  21150. },
  21151. hand: {
  21152. height: math.unit(1.08, "feet"),
  21153. name: "Hand",
  21154. image: {
  21155. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21156. }
  21157. },
  21158. foot: {
  21159. height: math.unit(1.32, "feet"),
  21160. name: "Foot",
  21161. image: {
  21162. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21163. }
  21164. },
  21165. maw: {
  21166. height: math.unit(1, "feet"),
  21167. name: "Maw",
  21168. image: {
  21169. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21170. }
  21171. },
  21172. were: {
  21173. height: math.unit(20, "feet"),
  21174. weight: math.unit(7800, "lb"),
  21175. name: "Were",
  21176. image: {
  21177. source: "./media/characters/leonardo-lycheborne/were.svg",
  21178. extra: 1224/1165,
  21179. bottom: 72/1296
  21180. }
  21181. },
  21182. feral: {
  21183. height: math.unit(7.5, "feet"),
  21184. weight: math.unit(600, "lb"),
  21185. name: "Feral",
  21186. image: {
  21187. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21188. extra: 797/702,
  21189. bottom: 139/936
  21190. }
  21191. },
  21192. taur: {
  21193. height: math.unit(11, "feet"),
  21194. weight: math.unit(3300, "lb"),
  21195. name: "Taur",
  21196. image: {
  21197. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21198. extra: 1271/1197,
  21199. bottom: 47/1318
  21200. }
  21201. },
  21202. barghest: {
  21203. height: math.unit(11, "feet"),
  21204. weight: math.unit(1300, "lb"),
  21205. name: "Barghest",
  21206. image: {
  21207. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21208. extra: 1291/1204,
  21209. bottom: 37/1328
  21210. }
  21211. },
  21212. dick: {
  21213. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21214. name: "Dick",
  21215. image: {
  21216. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21217. }
  21218. },
  21219. dickWere: {
  21220. height: math.unit((20) / 3.8, "feet"),
  21221. name: "Dick (Were)",
  21222. image: {
  21223. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21224. }
  21225. },
  21226. },
  21227. [
  21228. {
  21229. name: "Normal",
  21230. height: math.unit(6 + 1 / 12, "feet"),
  21231. default: true
  21232. },
  21233. ]
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21237. {
  21238. front: {
  21239. height: math.unit(10, "feet"),
  21240. weight: math.unit(350, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/jet/front.svg",
  21244. extra: 2050 / 1980,
  21245. bottom: 0.013
  21246. }
  21247. },
  21248. back: {
  21249. height: math.unit(10, "feet"),
  21250. weight: math.unit(350, "lb"),
  21251. name: "Back",
  21252. image: {
  21253. source: "./media/characters/jet/back.svg",
  21254. extra: 2050 / 1980,
  21255. bottom: 0.013
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Micro",
  21262. height: math.unit(6, "inches")
  21263. },
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(10, "feet"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Macro",
  21271. height: math.unit(100, "feet")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(15, "feet"),
  21280. weight: math.unit(2800, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/tanarath/front.svg",
  21284. extra: 2392 / 2220,
  21285. bottom: 0.03
  21286. }
  21287. },
  21288. back: {
  21289. height: math.unit(15, "feet"),
  21290. weight: math.unit(2800, "lb"),
  21291. name: "Back",
  21292. image: {
  21293. source: "./media/characters/tanarath/back.svg",
  21294. extra: 2392 / 2220,
  21295. bottom: 0.03
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(15, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(7 + 1 / 12, "feet"),
  21312. weight: math.unit(175, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/patty-cattybatty/front.svg",
  21316. extra: 908 / 874,
  21317. bottom: 0.025
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Micro",
  21324. height: math.unit(1, "inch")
  21325. },
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(7 + 1 / 12, "feet")
  21329. },
  21330. {
  21331. name: "Mini Macro",
  21332. height: math.unit(155, "feet")
  21333. },
  21334. {
  21335. name: "Macro",
  21336. height: math.unit(1077, "feet")
  21337. },
  21338. {
  21339. name: "Mega Macro",
  21340. height: math.unit(47650, "feet"),
  21341. default: true
  21342. },
  21343. {
  21344. name: "Giga Macro",
  21345. height: math.unit(440, "miles")
  21346. },
  21347. {
  21348. name: "Tera Macro",
  21349. height: math.unit(8700, "miles")
  21350. },
  21351. {
  21352. name: "Planetary Macro",
  21353. height: math.unit(32700, "miles")
  21354. },
  21355. {
  21356. name: "Solar Macro",
  21357. height: math.unit(550000, "miles")
  21358. },
  21359. {
  21360. name: "Celestial Macro",
  21361. height: math.unit(2.5, "AU")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(4 + 5 / 12, "feet"),
  21370. weight: math.unit(90, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/cappu/front.svg",
  21374. extra: 1247 / 1152,
  21375. bottom: 0.012
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(4 + 5 / 12, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21389. {
  21390. frontDressed: {
  21391. height: math.unit(70, "cm"),
  21392. weight: math.unit(6, "kg"),
  21393. name: "Front (Dressed)",
  21394. image: {
  21395. source: "./media/characters/sebi/front-dressed.svg",
  21396. extra: 713.5 / 686.5,
  21397. bottom: 0.003
  21398. }
  21399. },
  21400. front: {
  21401. height: math.unit(70, "cm"),
  21402. weight: math.unit(5, "kg"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/sebi/front.svg",
  21406. extra: 713.5 / 686.5,
  21407. bottom: 0.003
  21408. }
  21409. }
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(70, "cm"),
  21415. default: true
  21416. },
  21417. {
  21418. name: "Macro",
  21419. height: math.unit(8, "meters")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(6, "feet"),
  21428. weight: math.unit(150, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/typhek/front.svg",
  21432. extra: 1948 / 1929,
  21433. bottom: 0.025
  21434. }
  21435. },
  21436. side: {
  21437. height: math.unit(6, "feet"),
  21438. weight: math.unit(150, "lb"),
  21439. name: "Side",
  21440. image: {
  21441. source: "./media/characters/typhek/side.svg",
  21442. extra: 2034 / 2010,
  21443. bottom: 0.003
  21444. }
  21445. },
  21446. back: {
  21447. height: math.unit(6, "feet"),
  21448. weight: math.unit(150, "lb"),
  21449. name: "Back",
  21450. image: {
  21451. source: "./media/characters/typhek/back.svg",
  21452. extra: 2005 / 1978,
  21453. bottom: 0.004
  21454. }
  21455. },
  21456. palm: {
  21457. height: math.unit(1.2, "feet"),
  21458. name: "Palm",
  21459. image: {
  21460. source: "./media/characters/typhek/palm.svg"
  21461. }
  21462. },
  21463. fist: {
  21464. height: math.unit(1.1, "feet"),
  21465. name: "Fist",
  21466. image: {
  21467. source: "./media/characters/typhek/fist.svg"
  21468. }
  21469. },
  21470. foot: {
  21471. height: math.unit(1.57, "feet"),
  21472. name: "Foot",
  21473. image: {
  21474. source: "./media/characters/typhek/foot.svg"
  21475. }
  21476. },
  21477. sole: {
  21478. height: math.unit(2.05, "feet"),
  21479. name: "Sole",
  21480. image: {
  21481. source: "./media/characters/typhek/sole.svg"
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Macro",
  21488. height: math.unit(40, "stories"),
  21489. default: true
  21490. },
  21491. {
  21492. name: "Megamacro",
  21493. height: math.unit(1, "mile")
  21494. },
  21495. {
  21496. name: "Gigamacro",
  21497. height: math.unit(4000, "solarradii")
  21498. },
  21499. {
  21500. name: "Universal",
  21501. height: math.unit(1.1, "universes")
  21502. }
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21507. {
  21508. side: {
  21509. height: math.unit(5 + 7 / 12, "feet"),
  21510. weight: math.unit(150, "lb"),
  21511. name: "Side",
  21512. image: {
  21513. source: "./media/characters/kassy/side.svg",
  21514. extra: 1280 / 1225,
  21515. bottom: 0.002
  21516. }
  21517. },
  21518. front: {
  21519. height: math.unit(5 + 7 / 12, "feet"),
  21520. weight: math.unit(150, "lb"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/kassy/front.svg",
  21524. extra: 1280 / 1225,
  21525. bottom: 0.025
  21526. }
  21527. },
  21528. back: {
  21529. height: math.unit(5 + 7 / 12, "feet"),
  21530. weight: math.unit(150, "lb"),
  21531. name: "Back",
  21532. image: {
  21533. source: "./media/characters/kassy/back.svg",
  21534. extra: 1280 / 1225,
  21535. bottom: 0.002
  21536. }
  21537. },
  21538. foot: {
  21539. height: math.unit(1.266, "feet"),
  21540. name: "Foot",
  21541. image: {
  21542. source: "./media/characters/kassy/foot.svg"
  21543. }
  21544. },
  21545. },
  21546. [
  21547. {
  21548. name: "Normal",
  21549. height: math.unit(5 + 7 / 12, "feet")
  21550. },
  21551. {
  21552. name: "Macro",
  21553. height: math.unit(137, "feet"),
  21554. default: true
  21555. },
  21556. {
  21557. name: "Megamacro",
  21558. height: math.unit(1, "mile")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(6 + 1 / 12, "feet"),
  21567. weight: math.unit(200, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/neil/front.svg",
  21571. extra: 1326 / 1250,
  21572. bottom: 0.023
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(6 + 1 / 12, "feet"),
  21580. default: true
  21581. },
  21582. {
  21583. name: "Macro",
  21584. height: math.unit(200, "feet")
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(5 + 9 / 12, "feet"),
  21593. weight: math.unit(190, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/atticus/front.svg",
  21597. extra: 2934 / 2785,
  21598. bottom: 0.025
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(5 + 9 / 12, "feet"),
  21606. default: true
  21607. },
  21608. {
  21609. name: "Macro",
  21610. height: math.unit(180, "feet")
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21616. {
  21617. side: {
  21618. height: math.unit(9, "feet"),
  21619. weight: math.unit(650, "lb"),
  21620. name: "Side",
  21621. image: {
  21622. source: "./media/characters/milo/side.svg",
  21623. extra: 2644 / 2310,
  21624. bottom: 0.032
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(9, "feet"),
  21632. default: true
  21633. },
  21634. {
  21635. name: "Macro",
  21636. height: math.unit(300, "feet")
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21642. {
  21643. side: {
  21644. height: math.unit(8, "meters"),
  21645. weight: math.unit(90000, "kg"),
  21646. name: "Side",
  21647. image: {
  21648. source: "./media/characters/ijzer/side.svg",
  21649. extra: 2756 / 1600,
  21650. bottom: 0.01
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Small",
  21657. height: math.unit(3, "meters")
  21658. },
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(8, "meters"),
  21662. default: true
  21663. },
  21664. {
  21665. name: "Normal+",
  21666. height: math.unit(10, "meters")
  21667. },
  21668. {
  21669. name: "Bigger",
  21670. height: math.unit(24, "meters")
  21671. },
  21672. {
  21673. name: "Huge",
  21674. height: math.unit(80, "meters")
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(6 + 2 / 12, "feet"),
  21683. weight: math.unit(153, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/luca-cervicum/front.svg",
  21687. extra: 370 / 327,
  21688. bottom: 0.015
  21689. }
  21690. },
  21691. back: {
  21692. height: math.unit(6 + 2 / 12, "feet"),
  21693. weight: math.unit(153, "lb"),
  21694. name: "Back",
  21695. image: {
  21696. source: "./media/characters/luca-cervicum/back.svg",
  21697. extra: 367 / 333,
  21698. bottom: 0.005
  21699. }
  21700. },
  21701. frontGear: {
  21702. height: math.unit(6 + 2 / 12, "feet"),
  21703. weight: math.unit(173, "lb"),
  21704. name: "Front (Gear)",
  21705. image: {
  21706. source: "./media/characters/luca-cervicum/front-gear.svg",
  21707. extra: 377 / 333,
  21708. bottom: 0.006
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Normal",
  21715. height: math.unit(6 + 2 / 12, "feet"),
  21716. default: true
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21722. {
  21723. front: {
  21724. height: math.unit(6 + 1 / 12, "feet"),
  21725. weight: math.unit(304, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/oliver/front.svg",
  21729. extra: 157 / 143,
  21730. bottom: 0.08
  21731. }
  21732. },
  21733. },
  21734. [
  21735. {
  21736. name: "Normal",
  21737. height: math.unit(6 + 1 / 12, "feet"),
  21738. default: true
  21739. },
  21740. ]
  21741. ))
  21742. characterMakers.push(() => makeCharacter(
  21743. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21744. {
  21745. front: {
  21746. height: math.unit(5 + 7 / 12, "feet"),
  21747. weight: math.unit(140, "lb"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/shane/front.svg",
  21751. extra: 304 / 289,
  21752. bottom: 0.005
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(5 + 7 / 12, "feet"),
  21760. default: true
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(5 + 9 / 12, "feet"),
  21769. weight: math.unit(178, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/shin/front.svg",
  21773. extra: 159 / 151,
  21774. bottom: 0.015
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(5 + 9 / 12, "feet"),
  21782. default: true
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(5 + 10 / 12, "feet"),
  21791. weight: math.unit(168, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/xerxes/front.svg",
  21795. extra: 282 / 260,
  21796. bottom: 0.045
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Normal",
  21803. height: math.unit(5 + 10 / 12, "feet"),
  21804. default: true
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(6 + 7 / 12, "feet"),
  21813. weight: math.unit(208, "lb"),
  21814. name: "Front",
  21815. image: {
  21816. source: "./media/characters/chaska/front.svg",
  21817. extra: 332 / 319,
  21818. bottom: 0.015
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(6 + 7 / 12, "feet"),
  21826. default: true
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(5 + 8 / 12, "feet"),
  21835. weight: math.unit(208, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/enuk/front.svg",
  21839. extra: 437 / 406,
  21840. bottom: 0.02
  21841. }
  21842. },
  21843. },
  21844. [
  21845. {
  21846. name: "Normal",
  21847. height: math.unit(5 + 8 / 12, "feet"),
  21848. default: true
  21849. },
  21850. ]
  21851. ))
  21852. characterMakers.push(() => makeCharacter(
  21853. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21854. {
  21855. front: {
  21856. height: math.unit(5 + 10 / 12, "feet"),
  21857. weight: math.unit(252, "lb"),
  21858. name: "Front",
  21859. image: {
  21860. source: "./media/characters/bruun/front.svg",
  21861. extra: 197 / 187,
  21862. bottom: 0.012
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(5 + 10 / 12, "feet"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(6 + 10 / 12, "feet"),
  21879. weight: math.unit(255, "lb"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/alexeev/front.svg",
  21883. extra: 213 / 200,
  21884. bottom: 0.05
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Normal",
  21891. height: math.unit(6 + 10 / 12, "feet"),
  21892. default: true
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(2 + 8 / 12, "feet"),
  21901. weight: math.unit(22, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/evelyn/front.svg",
  21905. extra: 208 / 180
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(2 + 8 / 12, "feet"),
  21913. default: true
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(5 + 9 / 12, "feet"),
  21922. weight: math.unit(139, "lb"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/inca/front.svg",
  21926. extra: 294 / 291,
  21927. bottom: 0.03
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(5 + 9 / 12, "feet"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(6 + 3 / 12, "feet"),
  21944. weight: math.unit(185, "lb"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/mera/front.svg",
  21948. extra: 291 / 277,
  21949. bottom: 0.03
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(6 + 3 / 12, "feet"),
  21957. default: true
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(6 + 7 / 12, "feet"),
  21966. weight: math.unit(160, "lb"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/ceres/front.svg",
  21970. extra: 1023 / 950,
  21971. bottom: 0.027
  21972. }
  21973. },
  21974. back: {
  21975. height: math.unit(6 + 7 / 12, "feet"),
  21976. weight: math.unit(160, "lb"),
  21977. name: "Back",
  21978. image: {
  21979. source: "./media/characters/ceres/back.svg",
  21980. extra: 1023 / 950
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Normal",
  21987. height: math.unit(6 + 7 / 12, "feet"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(5 + 10 / 12, "feet"),
  21997. weight: math.unit(150, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/kris/front.svg",
  22001. extra: 885 / 803,
  22002. bottom: 0.03
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(5 + 10 / 12, "feet"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22016. {
  22017. dragon_front: {
  22018. height: math.unit(5, "feet"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/taluthus/dragon-front.svg",
  22022. extra: 1203/1098,
  22023. bottom: 46/1249
  22024. },
  22025. form: "dragon",
  22026. default: true
  22027. },
  22028. dragon_maw: {
  22029. height: math.unit(2.35, "feet"),
  22030. name: "Maw",
  22031. image: {
  22032. source: "./media/characters/taluthus/dragon-maw.svg"
  22033. },
  22034. form: "dragon",
  22035. },
  22036. kitsune_front: {
  22037. height: math.unit(7, "feet"),
  22038. name: "Front",
  22039. image: {
  22040. source: "./media/characters/taluthus/kitsune-front.svg",
  22041. extra: 900/841,
  22042. bottom: 65/965
  22043. },
  22044. form: "kitsune",
  22045. default: true
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(5, "feet"),
  22052. form: "dragon",
  22053. default: true,
  22054. },
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(7, "feet"),
  22058. form: "kitsune",
  22059. default: true
  22060. },
  22061. {
  22062. name: "Macro",
  22063. height: math.unit(300, "feet"),
  22064. allForms: true
  22065. },
  22066. ],
  22067. {
  22068. "dragon": {
  22069. name: "Dragon",
  22070. default: true
  22071. },
  22072. "kitsune": {
  22073. name: "Kitsune",
  22074. },
  22075. }
  22076. ))
  22077. characterMakers.push(() => makeCharacter(
  22078. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22079. {
  22080. front: {
  22081. height: math.unit(5 + 9 / 12, "feet"),
  22082. weight: math.unit(145, "lb"),
  22083. name: "Front",
  22084. image: {
  22085. source: "./media/characters/dawn/front.svg",
  22086. extra: 2094 / 2016,
  22087. bottom: 0.025
  22088. }
  22089. },
  22090. back: {
  22091. height: math.unit(5 + 9 / 12, "feet"),
  22092. weight: math.unit(160, "lb"),
  22093. name: "Back",
  22094. image: {
  22095. source: "./media/characters/dawn/back.svg",
  22096. extra: 2112 / 2080,
  22097. bottom: 0.005
  22098. }
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(6 + 7 / 12, "feet"),
  22105. default: true
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22111. {
  22112. anthro: {
  22113. height: math.unit(8 + 3 / 12, "feet"),
  22114. weight: math.unit(450, "lb"),
  22115. name: "Anthro",
  22116. image: {
  22117. source: "./media/characters/arador/anthro.svg",
  22118. extra: 1835 / 1718,
  22119. bottom: 0.025
  22120. }
  22121. },
  22122. feral: {
  22123. height: math.unit(4, "feet"),
  22124. weight: math.unit(200, "lb"),
  22125. name: "Feral",
  22126. image: {
  22127. source: "./media/characters/arador/feral.svg",
  22128. extra: 1683 / 1514,
  22129. bottom: 0.07
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(8 + 3 / 12, "feet")
  22137. },
  22138. {
  22139. name: "Macro",
  22140. height: math.unit(82.5, "feet"),
  22141. default: true
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22147. {
  22148. front: {
  22149. height: math.unit(5 + 10 / 12, "feet"),
  22150. weight: math.unit(125, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/dharsi/front.svg",
  22154. extra: 716 / 630,
  22155. bottom: 0.035
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Nano",
  22162. height: math.unit(100, "nm")
  22163. },
  22164. {
  22165. name: "Micro",
  22166. height: math.unit(2, "inches")
  22167. },
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(5 + 10 / 12, "feet"),
  22171. default: true
  22172. },
  22173. {
  22174. name: "Macro",
  22175. height: math.unit(1000, "feet")
  22176. },
  22177. {
  22178. name: "Megamacro",
  22179. height: math.unit(10, "miles")
  22180. },
  22181. {
  22182. name: "Gigamacro",
  22183. height: math.unit(3000, "miles")
  22184. },
  22185. {
  22186. name: "Teramacro",
  22187. height: math.unit(500000, "miles")
  22188. },
  22189. {
  22190. name: "Teramacro+",
  22191. height: math.unit(30, "galaxies")
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22197. {
  22198. front: {
  22199. height: math.unit(6, "feet"),
  22200. weight: math.unit(150, "lb"),
  22201. name: "Front",
  22202. image: {
  22203. source: "./media/characters/deathy/front.svg",
  22204. extra: 1552 / 1463,
  22205. bottom: 0.025
  22206. }
  22207. },
  22208. side: {
  22209. height: math.unit(6, "feet"),
  22210. weight: math.unit(150, "lb"),
  22211. name: "Side",
  22212. image: {
  22213. source: "./media/characters/deathy/side.svg",
  22214. extra: 1604 / 1455,
  22215. bottom: 0.025
  22216. }
  22217. },
  22218. back: {
  22219. height: math.unit(6, "feet"),
  22220. weight: math.unit(150, "lb"),
  22221. name: "Back",
  22222. image: {
  22223. source: "./media/characters/deathy/back.svg",
  22224. extra: 1580 / 1463,
  22225. bottom: 0.005
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Micro",
  22232. height: math.unit(5, "millimeters")
  22233. },
  22234. {
  22235. name: "Normal",
  22236. height: math.unit(6 + 5 / 12, "feet"),
  22237. default: true
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22243. {
  22244. front: {
  22245. height: math.unit(16, "feet"),
  22246. weight: math.unit(4000, "lb"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/juniper/front.svg",
  22250. bottom: 0.04
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(16, "feet"),
  22258. default: true
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(6, "feet"),
  22267. weight: math.unit(150, "lb"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/hipster/front.svg",
  22271. extra: 1312 / 1209,
  22272. bottom: 0.025
  22273. }
  22274. },
  22275. back: {
  22276. height: math.unit(6, "feet"),
  22277. weight: math.unit(150, "lb"),
  22278. name: "Back",
  22279. image: {
  22280. source: "./media/characters/hipster/back.svg",
  22281. extra: 1281 / 1196,
  22282. bottom: 0.01
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Micro",
  22289. height: math.unit(1, "mm")
  22290. },
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(4, "inches"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Macro",
  22298. height: math.unit(500, "feet")
  22299. },
  22300. {
  22301. name: "Megamacro",
  22302. height: math.unit(1000, "miles")
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22308. {
  22309. front: {
  22310. height: math.unit(6, "feet"),
  22311. weight: math.unit(150, "lb"),
  22312. name: "Front",
  22313. image: {
  22314. source: "./media/characters/tendirmuldr/front.svg",
  22315. extra: 1878 / 1772,
  22316. bottom: 0.015
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Megamacro",
  22323. height: math.unit(1500, "miles"),
  22324. default: true
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22330. {
  22331. front: {
  22332. height: math.unit(14, "feet"),
  22333. weight: math.unit(12000, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/mort/front.svg",
  22337. extra: 365 / 318,
  22338. bottom: 0.01
  22339. }
  22340. },
  22341. side: {
  22342. height: math.unit(14, "feet"),
  22343. weight: math.unit(12000, "lb"),
  22344. name: "Side",
  22345. image: {
  22346. source: "./media/characters/mort/side.svg",
  22347. extra: 365 / 318,
  22348. bottom: 0.052
  22349. },
  22350. default: true
  22351. },
  22352. back: {
  22353. height: math.unit(14, "feet"),
  22354. weight: math.unit(12000, "lb"),
  22355. name: "Back",
  22356. image: {
  22357. source: "./media/characters/mort/back.svg",
  22358. extra: 371 / 332,
  22359. bottom: 0.18
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(14, "feet"),
  22367. default: true
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22373. {
  22374. front: {
  22375. height: math.unit(8, "feet"),
  22376. weight: math.unit(1, "ton"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/lycoa/front.svg",
  22380. extra: 1836/1728,
  22381. bottom: 81/1917
  22382. }
  22383. },
  22384. back: {
  22385. height: math.unit(8, "feet"),
  22386. weight: math.unit(1, "ton"),
  22387. name: "Back",
  22388. image: {
  22389. source: "./media/characters/lycoa/back.svg",
  22390. extra: 1785/1720,
  22391. bottom: 91/1876
  22392. }
  22393. },
  22394. head: {
  22395. height: math.unit(1.6243, "feet"),
  22396. name: "Head",
  22397. image: {
  22398. source: "./media/characters/lycoa/head.svg",
  22399. extra: 1011/782,
  22400. bottom: 0/1011
  22401. }
  22402. },
  22403. tailmaw: {
  22404. height: math.unit(1.9, "feet"),
  22405. name: "Tailmaw",
  22406. image: {
  22407. source: "./media/characters/lycoa/tailmaw.svg"
  22408. }
  22409. },
  22410. tentacles: {
  22411. height: math.unit(2.1, "feet"),
  22412. name: "Tentacles",
  22413. image: {
  22414. source: "./media/characters/lycoa/tentacles.svg"
  22415. }
  22416. },
  22417. dick: {
  22418. height: math.unit(1.73, "feet"),
  22419. name: "Dick",
  22420. image: {
  22421. source: "./media/characters/lycoa/dick.svg"
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(8, "feet"),
  22429. default: true
  22430. },
  22431. {
  22432. name: "Macro",
  22433. height: math.unit(30, "feet")
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22439. {
  22440. front: {
  22441. height: math.unit(4 + 2 / 12, "feet"),
  22442. weight: math.unit(70, "lb"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/naldara/front.svg",
  22446. extra: 1664/1387,
  22447. bottom: 81/1745
  22448. },
  22449. form: "anthro",
  22450. default: true
  22451. },
  22452. naga: {
  22453. height: math.unit(20, "feet"),
  22454. weight: math.unit(15000, "kg"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/naldara/naga.svg",
  22458. extra: 1590/1396,
  22459. bottom: 285/1875
  22460. },
  22461. form: "naga",
  22462. default: true
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(4 + 2 / 12, "feet"),
  22469. form: "anthro",
  22470. default: true
  22471. },
  22472. {
  22473. name: "Normal",
  22474. height: math.unit(20, "feet"),
  22475. form: "naga",
  22476. default: true
  22477. },
  22478. ],
  22479. {
  22480. "anthro": {
  22481. name: "Anthro",
  22482. default: true
  22483. },
  22484. "naga": {
  22485. name: "Naga"
  22486. }
  22487. }
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22491. {
  22492. front: {
  22493. height: math.unit(13 + 7 / 12, "feet"),
  22494. weight: math.unit(1500, "lb"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/briar/front.svg",
  22498. extra: 1223/1157,
  22499. bottom: 123/1346
  22500. }
  22501. },
  22502. },
  22503. [
  22504. {
  22505. name: "Normal",
  22506. height: math.unit(13 + 7 / 12, "feet"),
  22507. default: true
  22508. },
  22509. ]
  22510. ))
  22511. characterMakers.push(() => makeCharacter(
  22512. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22513. {
  22514. side: {
  22515. height: math.unit(16, "feet"),
  22516. weight: math.unit(500, "lb"),
  22517. name: "Side",
  22518. image: {
  22519. source: "./media/characters/vanguard/side.svg",
  22520. extra: 1022/914,
  22521. bottom: 30/1052
  22522. }
  22523. },
  22524. sideAlt: {
  22525. height: math.unit(10, "feet"),
  22526. weight: math.unit(500, "lb"),
  22527. name: "Side (Alt)",
  22528. image: {
  22529. source: "./media/characters/vanguard/side-alt.svg",
  22530. extra: 502 / 425,
  22531. bottom: 0.087
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(17.71, "feet"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(7.5, "feet"),
  22548. weight: math.unit(2, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/artemis/work-safe-front.svg",
  22552. extra: 1192 / 1075,
  22553. bottom: 0.07
  22554. },
  22555. form: "work-safe",
  22556. default: true
  22557. },
  22558. frontNsfw: {
  22559. height: math.unit(7.5, "feet"),
  22560. weight: math.unit(2, "lb"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/artemis/calibrating-front.svg",
  22564. extra: 1192 / 1075,
  22565. bottom: 0.07
  22566. },
  22567. form: "calibrating",
  22568. default: true
  22569. },
  22570. frontNsfwer: {
  22571. height: math.unit(7.5, "feet"),
  22572. weight: math.unit(2, "lb"),
  22573. name: "Front",
  22574. image: {
  22575. source: "./media/characters/artemis/oversize-load-front.svg",
  22576. extra: 1192 / 1075,
  22577. bottom: 0.07
  22578. },
  22579. form: "oversize-load",
  22580. default: true
  22581. },
  22582. side: {
  22583. height: math.unit(7.5, "feet"),
  22584. weight: math.unit(2, "lb"),
  22585. name: "Side",
  22586. image: {
  22587. source: "./media/characters/artemis/work-safe-side.svg",
  22588. extra: 1192 / 1075,
  22589. bottom: 0.07
  22590. },
  22591. form: "work-safe"
  22592. },
  22593. sideNsfw: {
  22594. height: math.unit(7.5, "feet"),
  22595. weight: math.unit(2, "lb"),
  22596. name: "Side",
  22597. image: {
  22598. source: "./media/characters/artemis/calibrating-side.svg",
  22599. extra: 1192 / 1075,
  22600. bottom: 0.07
  22601. },
  22602. form: "calibrating"
  22603. },
  22604. sideNsfwer: {
  22605. height: math.unit(7.5, "feet"),
  22606. weight: math.unit(2, "lb"),
  22607. name: "Side",
  22608. image: {
  22609. source: "./media/characters/artemis/oversize-load-side.svg",
  22610. extra: 1192 / 1075,
  22611. bottom: 0.07
  22612. },
  22613. form: "oversize-load"
  22614. },
  22615. maw: {
  22616. height: math.unit(1.1, "feet"),
  22617. name: "Maw",
  22618. image: {
  22619. source: "./media/characters/artemis/maw.svg"
  22620. },
  22621. form: "work-safe"
  22622. },
  22623. stomach: {
  22624. height: math.unit(0.95, "feet"),
  22625. name: "Stomach",
  22626. image: {
  22627. source: "./media/characters/artemis/stomach.svg"
  22628. },
  22629. form: "work-safe"
  22630. },
  22631. dickCanine: {
  22632. height: math.unit(1, "feet"),
  22633. name: "Dick (Canine)",
  22634. image: {
  22635. source: "./media/characters/artemis/dick-canine.svg"
  22636. },
  22637. form: "calibrating"
  22638. },
  22639. dickEquine: {
  22640. height: math.unit(0.85, "feet"),
  22641. name: "Dick (Equine)",
  22642. image: {
  22643. source: "./media/characters/artemis/dick-equine.svg"
  22644. },
  22645. form: "calibrating"
  22646. },
  22647. dickExotic: {
  22648. height: math.unit(0.85, "feet"),
  22649. name: "Dick (Exotic)",
  22650. image: {
  22651. source: "./media/characters/artemis/dick-exotic.svg"
  22652. },
  22653. form: "calibrating"
  22654. },
  22655. dickCanineBigger: {
  22656. height: math.unit(1 * 1.33, "feet"),
  22657. name: "Dick (Canine)",
  22658. image: {
  22659. source: "./media/characters/artemis/dick-canine.svg"
  22660. },
  22661. form: "oversize-load"
  22662. },
  22663. dickEquineBigger: {
  22664. height: math.unit(0.85 * 1.33, "feet"),
  22665. name: "Dick (Equine)",
  22666. image: {
  22667. source: "./media/characters/artemis/dick-equine.svg"
  22668. },
  22669. form: "oversize-load"
  22670. },
  22671. dickExoticBigger: {
  22672. height: math.unit(0.85 * 1.33, "feet"),
  22673. name: "Dick (Exotic)",
  22674. image: {
  22675. source: "./media/characters/artemis/dick-exotic.svg"
  22676. },
  22677. form: "oversize-load"
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(7.5, "feet"),
  22684. form: "work-safe",
  22685. default: true
  22686. },
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(7.5, "feet"),
  22690. form: "calibrating",
  22691. default: true
  22692. },
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(7.5, "feet"),
  22696. form: "oversize-load",
  22697. default: true
  22698. },
  22699. {
  22700. name: "Enlarged",
  22701. height: math.unit(12, "feet"),
  22702. form: "work-safe",
  22703. },
  22704. {
  22705. name: "Enlarged",
  22706. height: math.unit(12, "feet"),
  22707. form: "calibrating",
  22708. },
  22709. {
  22710. name: "Enlarged",
  22711. height: math.unit(12, "feet"),
  22712. form: "oversize-load",
  22713. },
  22714. ],
  22715. {
  22716. "work-safe": {
  22717. name: "Work-Safe",
  22718. default: true
  22719. },
  22720. "calibrating": {
  22721. name: "Calibrating"
  22722. },
  22723. "oversize-load": {
  22724. name: "Oversize Load"
  22725. }
  22726. }
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(5 + 3 / 12, "feet"),
  22733. weight: math.unit(160, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/kira/front.svg",
  22737. extra: 906 / 786,
  22738. bottom: 0.01
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(5 + 3 / 12, "feet"),
  22743. weight: math.unit(160, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/kira/back.svg",
  22747. extra: 882 / 757,
  22748. bottom: 0.005
  22749. }
  22750. },
  22751. frontDressed: {
  22752. height: math.unit(5 + 3 / 12, "feet"),
  22753. weight: math.unit(160, "lb"),
  22754. name: "Front (Dressed)",
  22755. image: {
  22756. source: "./media/characters/kira/front-dressed.svg",
  22757. extra: 906 / 786,
  22758. bottom: 0.01
  22759. }
  22760. },
  22761. beans: {
  22762. height: math.unit(0.92, "feet"),
  22763. name: "Beans",
  22764. image: {
  22765. source: "./media/characters/kira/beans.svg"
  22766. }
  22767. },
  22768. },
  22769. [
  22770. {
  22771. name: "Normal",
  22772. height: math.unit(5 + 3 / 12, "feet"),
  22773. default: true
  22774. },
  22775. ]
  22776. ))
  22777. characterMakers.push(() => makeCharacter(
  22778. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22779. {
  22780. front: {
  22781. height: math.unit(5 + 4 / 12, "feet"),
  22782. weight: math.unit(145, "lb"),
  22783. name: "Front",
  22784. image: {
  22785. source: "./media/characters/scramble/front.svg",
  22786. extra: 763 / 727,
  22787. bottom: 0.05
  22788. }
  22789. },
  22790. back: {
  22791. height: math.unit(5 + 4 / 12, "feet"),
  22792. weight: math.unit(145, "lb"),
  22793. name: "Back",
  22794. image: {
  22795. source: "./media/characters/scramble/back.svg",
  22796. extra: 826 / 737,
  22797. bottom: 0.002
  22798. }
  22799. },
  22800. },
  22801. [
  22802. {
  22803. name: "Normal",
  22804. height: math.unit(5 + 4 / 12, "feet"),
  22805. default: true
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22811. {
  22812. side: {
  22813. height: math.unit(6 + 2 / 12, "feet"),
  22814. weight: math.unit(190, "lb"),
  22815. name: "Side",
  22816. image: {
  22817. source: "./media/characters/biscuit/side.svg",
  22818. extra: 858 / 791,
  22819. bottom: 0.044
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(6 + 2 / 12, "feet"),
  22827. default: true
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22833. {
  22834. front: {
  22835. height: math.unit(5 + 2 / 12, "feet"),
  22836. weight: math.unit(120, "lb"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/poffin/front.svg",
  22840. extra: 786 / 680,
  22841. bottom: 0.005
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(5 + 2 / 12, "feet"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(6 + 3 / 12, "feet"),
  22858. weight: math.unit(519, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/dhari/front.svg",
  22862. extra: 1048 / 946,
  22863. bottom: 0.015
  22864. }
  22865. },
  22866. back: {
  22867. height: math.unit(6 + 3 / 12, "feet"),
  22868. weight: math.unit(519, "lb"),
  22869. name: "Back",
  22870. image: {
  22871. source: "./media/characters/dhari/back.svg",
  22872. extra: 1048 / 931,
  22873. bottom: 0.005
  22874. }
  22875. },
  22876. frontDressed: {
  22877. height: math.unit(6 + 3 / 12, "feet"),
  22878. weight: math.unit(519, "lb"),
  22879. name: "Front (Dressed)",
  22880. image: {
  22881. source: "./media/characters/dhari/front-dressed.svg",
  22882. extra: 1713 / 1546,
  22883. bottom: 0.02
  22884. }
  22885. },
  22886. backDressed: {
  22887. height: math.unit(6 + 3 / 12, "feet"),
  22888. weight: math.unit(519, "lb"),
  22889. name: "Back (Dressed)",
  22890. image: {
  22891. source: "./media/characters/dhari/back-dressed.svg",
  22892. extra: 1699 / 1537,
  22893. bottom: 0.01
  22894. }
  22895. },
  22896. maw: {
  22897. height: math.unit(0.95, "feet"),
  22898. name: "Maw",
  22899. image: {
  22900. source: "./media/characters/dhari/maw.svg"
  22901. }
  22902. },
  22903. wereFront: {
  22904. height: math.unit(12 + 8 / 12, "feet"),
  22905. weight: math.unit(4000, "lb"),
  22906. name: "Front (Were)",
  22907. image: {
  22908. source: "./media/characters/dhari/were-front.svg",
  22909. extra: 1065 / 969,
  22910. bottom: 0.015
  22911. }
  22912. },
  22913. wereBack: {
  22914. height: math.unit(12 + 8 / 12, "feet"),
  22915. weight: math.unit(4000, "lb"),
  22916. name: "Back (Were)",
  22917. image: {
  22918. source: "./media/characters/dhari/were-back.svg",
  22919. extra: 1065 / 969,
  22920. bottom: 0.012
  22921. }
  22922. },
  22923. wereMaw: {
  22924. height: math.unit(0.625, "meters"),
  22925. name: "Maw (Were)",
  22926. image: {
  22927. source: "./media/characters/dhari/were-maw.svg"
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(6 + 3 / 12, "feet"),
  22935. default: true
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22941. {
  22942. anthro: {
  22943. height: math.unit(5 + 7 / 12, "feet"),
  22944. weight: math.unit(175, "lb"),
  22945. name: "Anthro",
  22946. image: {
  22947. source: "./media/characters/rena-dyne/anthro.svg",
  22948. extra: 1849 / 1785,
  22949. bottom: 0.005
  22950. }
  22951. },
  22952. taur: {
  22953. height: math.unit(15 + 6 / 12, "feet"),
  22954. weight: math.unit(8000, "lb"),
  22955. name: "Taur",
  22956. image: {
  22957. source: "./media/characters/rena-dyne/taur.svg",
  22958. extra: 2315 / 2234,
  22959. bottom: 0.033
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(5 + 7 / 12, "feet"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(8, "feet"),
  22976. weight: math.unit(600, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/weremeep/front.svg",
  22980. extra: 970/849,
  22981. bottom: 7/977
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(8, "feet"),
  22989. default: true
  22990. },
  22991. {
  22992. name: "Lorg",
  22993. height: math.unit(12, "feet")
  22994. },
  22995. {
  22996. name: "Oh Lawd She Comin'",
  22997. height: math.unit(20, "feet")
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23003. {
  23004. front: {
  23005. height: math.unit(4, "feet"),
  23006. weight: math.unit(90, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/reza/front.svg",
  23010. extra: 1183 / 1111,
  23011. bottom: 0.017
  23012. }
  23013. },
  23014. back: {
  23015. height: math.unit(4, "feet"),
  23016. weight: math.unit(90, "lb"),
  23017. name: "Back",
  23018. image: {
  23019. source: "./media/characters/reza/back.svg",
  23020. extra: 1183 / 1111,
  23021. bottom: 0.01
  23022. }
  23023. },
  23024. drake: {
  23025. height: math.unit(30, "feet"),
  23026. weight: math.unit(246960, "lb"),
  23027. name: "Drake",
  23028. image: {
  23029. source: "./media/characters/reza/drake.svg",
  23030. extra: 2350 / 2024,
  23031. bottom: 60.7 / 2403
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Normal",
  23038. height: math.unit(4, "feet"),
  23039. default: true
  23040. },
  23041. ]
  23042. ))
  23043. characterMakers.push(() => makeCharacter(
  23044. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23045. {
  23046. side: {
  23047. height: math.unit(15, "feet"),
  23048. weight: math.unit(14, "tons"),
  23049. name: "Side",
  23050. image: {
  23051. source: "./media/characters/athea/side.svg",
  23052. extra: 960 / 540,
  23053. bottom: 0.003
  23054. }
  23055. },
  23056. sitting: {
  23057. height: math.unit(6 * 2.85, "feet"),
  23058. weight: math.unit(14, "tons"),
  23059. name: "Sitting",
  23060. image: {
  23061. source: "./media/characters/athea/sitting.svg",
  23062. extra: 621 / 581,
  23063. bottom: 0.075
  23064. }
  23065. },
  23066. maw: {
  23067. height: math.unit(7.59498031496063, "feet"),
  23068. name: "Maw",
  23069. image: {
  23070. source: "./media/characters/athea/maw.svg"
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Lap Cat",
  23077. height: math.unit(2.5, "feet")
  23078. },
  23079. {
  23080. name: "Minimacro",
  23081. height: math.unit(15, "feet"),
  23082. default: true
  23083. },
  23084. {
  23085. name: "Macro",
  23086. height: math.unit(120, "feet")
  23087. },
  23088. {
  23089. name: "Macro+",
  23090. height: math.unit(640, "feet")
  23091. },
  23092. {
  23093. name: "Colossus",
  23094. height: math.unit(2.2, "miles")
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(8 + 8 / 12, "feet"),
  23103. weight: math.unit(130, "kg"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/seroko/front.svg",
  23107. extra: 1385 / 1280,
  23108. bottom: 0.025
  23109. }
  23110. },
  23111. back: {
  23112. height: math.unit(8 + 8 / 12, "feet"),
  23113. weight: math.unit(130, "kg"),
  23114. name: "Back",
  23115. image: {
  23116. source: "./media/characters/seroko/back.svg",
  23117. extra: 1369 / 1238,
  23118. bottom: 0.018
  23119. }
  23120. },
  23121. frontDressed: {
  23122. height: math.unit(8 + 8 / 12, "feet"),
  23123. weight: math.unit(130, "kg"),
  23124. name: "Front (Dressed)",
  23125. image: {
  23126. source: "./media/characters/seroko/front-dressed.svg",
  23127. extra: 1366 / 1275,
  23128. bottom: 0.03
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(8 + 8 / 12, "feet"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(5.5, "feet"),
  23145. weight: math.unit(160, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/quatzi/front.svg",
  23149. extra: 2346 / 2242,
  23150. bottom: 0.015
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(5.5, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Big",
  23162. height: math.unit(7.7, "feet")
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23168. {
  23169. front: {
  23170. height: math.unit(5 + 11 / 12, "feet"),
  23171. weight: math.unit(180, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/sen/front.svg",
  23175. extra: 1321 / 1254,
  23176. bottom: 0.015
  23177. }
  23178. },
  23179. side: {
  23180. height: math.unit(5 + 11 / 12, "feet"),
  23181. weight: math.unit(180, "lb"),
  23182. name: "Side",
  23183. image: {
  23184. source: "./media/characters/sen/side.svg",
  23185. extra: 1321 / 1254,
  23186. bottom: 0.007
  23187. }
  23188. },
  23189. back: {
  23190. height: math.unit(5 + 11 / 12, "feet"),
  23191. weight: math.unit(180, "lb"),
  23192. name: "Back",
  23193. image: {
  23194. source: "./media/characters/sen/back.svg",
  23195. extra: 1321 / 1254
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(5 + 11 / 12, "feet"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(166.6, "cm"),
  23212. weight: math.unit(66.6, "kg"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/fruity/front.svg",
  23216. extra: 1510 / 1386,
  23217. bottom: 0.04
  23218. }
  23219. },
  23220. back: {
  23221. height: math.unit(166.6, "cm"),
  23222. weight: math.unit(66.6, "lb"),
  23223. name: "Back",
  23224. image: {
  23225. source: "./media/characters/fruity/back.svg",
  23226. extra: 1563 / 1435,
  23227. bottom: 0.005
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(166.6, "cm"),
  23235. default: true
  23236. },
  23237. {
  23238. name: "Demonic",
  23239. height: math.unit(166.6, "feet")
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23245. {
  23246. side: {
  23247. height: math.unit(10, "feet"),
  23248. weight: math.unit(500, "lb"),
  23249. name: "Side",
  23250. image: {
  23251. source: "./media/characters/zost/side.svg",
  23252. extra: 2870/2533,
  23253. bottom: 252/3122
  23254. }
  23255. },
  23256. mawFront: {
  23257. height: math.unit(1.08, "meters"),
  23258. name: "Maw (Front)",
  23259. image: {
  23260. source: "./media/characters/zost/maw-front.svg"
  23261. }
  23262. },
  23263. mawSide: {
  23264. height: math.unit(2.66, "feet"),
  23265. name: "Maw (Side)",
  23266. image: {
  23267. source: "./media/characters/zost/maw-side.svg"
  23268. }
  23269. },
  23270. wingspan: {
  23271. height: math.unit(7.4, "feet"),
  23272. name: "Wingspan",
  23273. image: {
  23274. source: "./media/characters/zost/wingspan.svg"
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(10, "feet"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(5 + 4 / 12, "feet"),
  23291. weight: math.unit(120, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/luci/front.svg",
  23295. extra: 1985 / 1884,
  23296. bottom: 0.04
  23297. }
  23298. },
  23299. back: {
  23300. height: math.unit(5 + 4 / 12, "feet"),
  23301. weight: math.unit(120, "lb"),
  23302. name: "Back",
  23303. image: {
  23304. source: "./media/characters/luci/back.svg",
  23305. extra: 1892 / 1791,
  23306. bottom: 0.002
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Normal",
  23313. height: math.unit(5 + 4 / 12, "feet"),
  23314. default: true
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23320. {
  23321. front: {
  23322. height: math.unit(1500, "feet"),
  23323. weight: math.unit(3.8e6, "tons"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/2th/front.svg",
  23327. extra: 3489 / 3350,
  23328. bottom: 0.1
  23329. }
  23330. },
  23331. foot: {
  23332. height: math.unit(461, "feet"),
  23333. name: "Foot",
  23334. image: {
  23335. source: "./media/characters/2th/foot.svg"
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "\"Micro\"",
  23342. height: math.unit(15 + 7 / 12, "feet")
  23343. },
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(1500, "feet"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Macro",
  23351. height: math.unit(5000, "feet")
  23352. },
  23353. {
  23354. name: "Megamacro",
  23355. height: math.unit(15, "miles")
  23356. },
  23357. {
  23358. name: "Gigamacro",
  23359. height: math.unit(4000, "miles")
  23360. },
  23361. {
  23362. name: "Galactic",
  23363. height: math.unit(50, "AU")
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23369. {
  23370. front: {
  23371. height: math.unit(5 + 6 / 12, "feet"),
  23372. weight: math.unit(220, "lb"),
  23373. name: "Front",
  23374. image: {
  23375. source: "./media/characters/amethyst/front.svg",
  23376. extra: 2078 / 2040,
  23377. bottom: 0.045
  23378. }
  23379. },
  23380. back: {
  23381. height: math.unit(5 + 6 / 12, "feet"),
  23382. weight: math.unit(220, "lb"),
  23383. name: "Back",
  23384. image: {
  23385. source: "./media/characters/amethyst/back.svg",
  23386. extra: 2021 / 1989,
  23387. bottom: 0.02
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(5 + 6 / 12, "feet"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(4 + 11 / 12, "feet"),
  23404. weight: math.unit(120, "lb"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/yumi-akiyama/front.svg",
  23408. extra: 1327 / 1235,
  23409. bottom: 0.02
  23410. }
  23411. },
  23412. back: {
  23413. height: math.unit(4 + 11 / 12, "feet"),
  23414. weight: math.unit(120, "lb"),
  23415. name: "Back",
  23416. image: {
  23417. source: "./media/characters/yumi-akiyama/back.svg",
  23418. extra: 1287 / 1245,
  23419. bottom: 0.002
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Galactic",
  23426. height: math.unit(50, "galaxies"),
  23427. default: true
  23428. },
  23429. {
  23430. name: "Universal",
  23431. height: math.unit(100, "universes")
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(8, "feet"),
  23440. weight: math.unit(500, "lb"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/rifter-yrmori/front.svg",
  23444. extra: 1180 / 1125,
  23445. bottom: 0.02
  23446. }
  23447. },
  23448. back: {
  23449. height: math.unit(8, "feet"),
  23450. weight: math.unit(500, "lb"),
  23451. name: "Back",
  23452. image: {
  23453. source: "./media/characters/rifter-yrmori/back.svg",
  23454. extra: 1190 / 1145,
  23455. bottom: 0.001
  23456. }
  23457. },
  23458. wings: {
  23459. height: math.unit(7.75, "feet"),
  23460. weight: math.unit(500, "lb"),
  23461. name: "Wings",
  23462. image: {
  23463. source: "./media/characters/rifter-yrmori/wings.svg",
  23464. extra: 1357 / 1285
  23465. }
  23466. },
  23467. maw: {
  23468. height: math.unit(0.8, "feet"),
  23469. name: "Maw",
  23470. image: {
  23471. source: "./media/characters/rifter-yrmori/maw.svg"
  23472. }
  23473. },
  23474. mawfront: {
  23475. height: math.unit(1.45, "feet"),
  23476. name: "Maw (Front)",
  23477. image: {
  23478. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(8, "feet"),
  23486. default: true
  23487. },
  23488. {
  23489. name: "Macro",
  23490. height: math.unit(42, "meters")
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23496. {
  23497. were: {
  23498. height: math.unit(25 + 6 / 12, "feet"),
  23499. weight: math.unit(10000, "lb"),
  23500. name: "Were",
  23501. image: {
  23502. source: "./media/characters/tahajin/were.svg",
  23503. extra: 801 / 770,
  23504. bottom: 0.042
  23505. }
  23506. },
  23507. aquatic: {
  23508. height: math.unit(6 + 4 / 12, "feet"),
  23509. weight: math.unit(160, "lb"),
  23510. name: "Aquatic",
  23511. image: {
  23512. source: "./media/characters/tahajin/aquatic.svg",
  23513. extra: 572 / 542,
  23514. bottom: 0.04
  23515. }
  23516. },
  23517. chow: {
  23518. height: math.unit(8 + 11 / 12, "feet"),
  23519. weight: math.unit(450, "lb"),
  23520. name: "Chow",
  23521. image: {
  23522. source: "./media/characters/tahajin/chow.svg",
  23523. extra: 660 / 640,
  23524. bottom: 0.015
  23525. }
  23526. },
  23527. demiNaga: {
  23528. height: math.unit(6 + 8 / 12, "feet"),
  23529. weight: math.unit(300, "lb"),
  23530. name: "Demi Naga",
  23531. image: {
  23532. source: "./media/characters/tahajin/demi-naga.svg",
  23533. extra: 643 / 615,
  23534. bottom: 0.1
  23535. }
  23536. },
  23537. data: {
  23538. height: math.unit(5, "inches"),
  23539. weight: math.unit(0.1, "lb"),
  23540. name: "Data",
  23541. image: {
  23542. source: "./media/characters/tahajin/data.svg"
  23543. }
  23544. },
  23545. fluu: {
  23546. height: math.unit(5 + 7 / 12, "feet"),
  23547. weight: math.unit(140, "lb"),
  23548. name: "Fluu",
  23549. image: {
  23550. source: "./media/characters/tahajin/fluu.svg",
  23551. extra: 628 / 592,
  23552. bottom: 0.02
  23553. }
  23554. },
  23555. starWarrior: {
  23556. height: math.unit(4 + 5 / 12, "feet"),
  23557. weight: math.unit(50, "lb"),
  23558. name: "Star Warrior",
  23559. image: {
  23560. source: "./media/characters/tahajin/star-warrior.svg"
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Normal",
  23567. height: math.unit(25 + 6 / 12, "feet"),
  23568. default: true
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(8, "feet"),
  23577. weight: math.unit(350, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/gabira/front.svg",
  23581. extra: 1261/1154,
  23582. bottom: 51/1312
  23583. }
  23584. },
  23585. back: {
  23586. height: math.unit(8, "feet"),
  23587. weight: math.unit(350, "lb"),
  23588. name: "Back",
  23589. image: {
  23590. source: "./media/characters/gabira/back.svg",
  23591. extra: 1265/1163,
  23592. bottom: 46/1311
  23593. }
  23594. },
  23595. head: {
  23596. height: math.unit(2.85, "feet"),
  23597. name: "Head",
  23598. image: {
  23599. source: "./media/characters/gabira/head.svg"
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Normal",
  23606. height: math.unit(8, "feet"),
  23607. default: true
  23608. },
  23609. ]
  23610. ))
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23613. {
  23614. front: {
  23615. height: math.unit(5 + 3 / 12, "feet"),
  23616. weight: math.unit(137, "lb"),
  23617. name: "Front",
  23618. image: {
  23619. source: "./media/characters/sasha-katraine/front.svg",
  23620. extra: 1745/1694,
  23621. bottom: 37/1782
  23622. }
  23623. },
  23624. back: {
  23625. height: math.unit(5 + 3 / 12, "feet"),
  23626. weight: math.unit(137, "lb"),
  23627. name: "Back",
  23628. image: {
  23629. source: "./media/characters/sasha-katraine/back.svg",
  23630. extra: 1776/1699,
  23631. bottom: 26/1802
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Micro",
  23638. height: math.unit(5, "inches")
  23639. },
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(5 + 3 / 12, "feet"),
  23643. default: true
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23649. {
  23650. side: {
  23651. height: math.unit(4, "inches"),
  23652. weight: math.unit(200, "grams"),
  23653. name: "Side",
  23654. image: {
  23655. source: "./media/characters/der/side.svg",
  23656. extra: 719 / 400,
  23657. bottom: 30.6 / 749.9187
  23658. }
  23659. },
  23660. },
  23661. [
  23662. {
  23663. name: "Micro",
  23664. height: math.unit(4, "inches"),
  23665. default: true
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23671. {
  23672. side: {
  23673. height: math.unit(30, "meters"),
  23674. weight: math.unit(700, "tonnes"),
  23675. name: "Side",
  23676. image: {
  23677. source: "./media/characters/fixerdragon/side.svg",
  23678. extra: (1293.0514 - 116.03) / 1106.86,
  23679. bottom: 116.03 / 1293.0514
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Planck",
  23686. height: math.unit(1.6e-35, "meters")
  23687. },
  23688. {
  23689. name: "Micro",
  23690. height: math.unit(0.4, "meters")
  23691. },
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(30, "meters"),
  23695. default: true
  23696. },
  23697. {
  23698. name: "Megamacro",
  23699. height: math.unit(1.2, "megameters")
  23700. },
  23701. {
  23702. name: "Teramacro",
  23703. height: math.unit(130, "terameters")
  23704. },
  23705. {
  23706. name: "Yottamacro",
  23707. height: math.unit(6200, "yottameters")
  23708. },
  23709. ]
  23710. ));
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(8, "feet"),
  23716. weight: math.unit(250, "lb"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/kite/front.svg",
  23720. extra: 2796 / 2659,
  23721. bottom: 0.002
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(8, "feet"),
  23729. default: true
  23730. },
  23731. {
  23732. name: "Macro",
  23733. height: math.unit(360, "feet")
  23734. },
  23735. {
  23736. name: "Megamacro",
  23737. height: math.unit(1500, "feet")
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23743. {
  23744. anthro_front: {
  23745. height: math.unit(5 + 11/12, "feet"),
  23746. weight: math.unit(170, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23750. extra: 1735/1585,
  23751. bottom: 96/1831
  23752. },
  23753. form: "anthro",
  23754. default: true
  23755. },
  23756. anthro_back: {
  23757. height: math.unit(5 + 11/12, "feet"),
  23758. weight: math.unit(170, "lb"),
  23759. name: "Back",
  23760. image: {
  23761. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23762. extra: 1749/1607,
  23763. bottom: 28/1777
  23764. },
  23765. form: "anthro"
  23766. },
  23767. anthro_male: {
  23768. height: math.unit(5 + 11/12, "feet"),
  23769. weight: math.unit(170, "lb"),
  23770. name: "Male",
  23771. image: {
  23772. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23773. extra: 1855/1713,
  23774. bottom: 63/1918
  23775. },
  23776. form: "anthro"
  23777. },
  23778. taur_front: {
  23779. height: math.unit(5 + 7/12, "feet"),
  23780. weight: math.unit(170, "lb"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23784. extra: 1151/1059,
  23785. bottom: 356/1507
  23786. },
  23787. form: "taur",
  23788. default: true
  23789. },
  23790. anthro_frontDressed: {
  23791. height: math.unit(5 + 11/12, "feet"),
  23792. weight: math.unit(170, "lb"),
  23793. name: "Front (Dressed)",
  23794. image: {
  23795. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23796. extra: 1735/1585,
  23797. bottom: 96/1831
  23798. },
  23799. form: "anthro"
  23800. },
  23801. anthro_backDressed: {
  23802. height: math.unit(5 + 11/12, "feet"),
  23803. weight: math.unit(170, "lb"),
  23804. name: "Back (Dressed)",
  23805. image: {
  23806. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23807. extra: 1749/1607,
  23808. bottom: 28/1777
  23809. },
  23810. form: "anthro"
  23811. },
  23812. anthro_maleDressed: {
  23813. height: math.unit(5 + 11/12, "feet"),
  23814. weight: math.unit(170, "lb"),
  23815. name: "Male (Dressed)",
  23816. image: {
  23817. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23818. extra: 1855/1713,
  23819. bottom: 63/1918
  23820. },
  23821. form: "anthro"
  23822. },
  23823. taur_frontDressed: {
  23824. height: math.unit(5 + 7/12, "feet"),
  23825. weight: math.unit(170, "lb"),
  23826. name: "Front (Dressed)",
  23827. image: {
  23828. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23829. extra: 1151/1059,
  23830. bottom: 356/1507
  23831. },
  23832. form: "taur"
  23833. },
  23834. maw: {
  23835. height: math.unit(1.46, "feet"),
  23836. name: "Maw",
  23837. image: {
  23838. source: "./media/characters/poojawa-vynar/maw.svg"
  23839. },
  23840. allForms: true
  23841. },
  23842. head: {
  23843. height: math.unit(2.34, "feet"),
  23844. name: "Head",
  23845. image: {
  23846. source: "./media/characters/poojawa-vynar/head.svg"
  23847. },
  23848. allForms: true
  23849. },
  23850. leftPaw: {
  23851. height: math.unit(1.72, "feet"),
  23852. name: "Left Paw",
  23853. image: {
  23854. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23855. },
  23856. allForms: true
  23857. },
  23858. rightPaw: {
  23859. height: math.unit(1.61, "feet"),
  23860. name: "Right Paw",
  23861. image: {
  23862. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23863. },
  23864. allForms: true
  23865. },
  23866. toering: {
  23867. height: math.unit(2.9, "inches"),
  23868. name: "Toering",
  23869. image: {
  23870. source: "./media/characters/poojawa-vynar/toering.svg"
  23871. },
  23872. allForms: true
  23873. },
  23874. shaft: {
  23875. height: math.unit(0.625, "feet"),
  23876. name: "Shaft",
  23877. image: {
  23878. source: "./media/characters/poojawa-vynar/shaft.svg"
  23879. },
  23880. allForms: true
  23881. },
  23882. spade: {
  23883. height: math.unit(0.42, "feet"),
  23884. name: "Spade",
  23885. image: {
  23886. source: "./media/characters/poojawa-vynar/spade.svg"
  23887. },
  23888. allForms: true
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Shortstack",
  23894. height: math.unit(4, "feet"),
  23895. form: "anthro"
  23896. },
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(5 + 11 / 12, "feet"),
  23900. form: "anthro",
  23901. default: true
  23902. },
  23903. {
  23904. name: "Tauric",
  23905. height: math.unit(4, "meters"),
  23906. form: "taur",
  23907. default: true
  23908. },
  23909. ],
  23910. {
  23911. "anthro": {
  23912. name: "Anthro",
  23913. default: true
  23914. },
  23915. "taur": {
  23916. name: "Taur",
  23917. },
  23918. }
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(293, "meters"),
  23925. weight: math.unit(70400, "tons"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/violette/front.svg",
  23929. extra: 1227 / 1180,
  23930. bottom: 0.005
  23931. }
  23932. },
  23933. back: {
  23934. height: math.unit(293, "meters"),
  23935. weight: math.unit(70400, "tons"),
  23936. name: "Back",
  23937. image: {
  23938. source: "./media/characters/violette/back.svg",
  23939. extra: 1227 / 1180,
  23940. bottom: 0.005
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Macro",
  23947. height: math.unit(293, "meters"),
  23948. default: true
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23954. {
  23955. front: {
  23956. height: math.unit(1050, "feet"),
  23957. weight: math.unit(200000, "tons"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/alessandra/front.svg",
  23961. extra: 960 / 912,
  23962. bottom: 0.06
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Macro",
  23969. height: math.unit(1050, "feet")
  23970. },
  23971. {
  23972. name: "Macro+",
  23973. height: math.unit(900, "meters"),
  23974. default: true
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23980. {
  23981. front: {
  23982. height: math.unit(5, "feet"),
  23983. weight: math.unit(187, "lb"),
  23984. name: "Front",
  23985. image: {
  23986. source: "./media/characters/person/front.svg",
  23987. extra: 3087 / 2945,
  23988. bottom: 91 / 3181
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Micro",
  23995. height: math.unit(3, "inches")
  23996. },
  23997. {
  23998. name: "Normal",
  23999. height: math.unit(5, "feet"),
  24000. default: true
  24001. },
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(90, "feet")
  24005. },
  24006. {
  24007. name: "Max Size",
  24008. height: math.unit(280, "feet")
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(4.5, "meters"),
  24017. weight: math.unit(3200, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/ty/front.svg",
  24021. extra: 1038 / 960,
  24022. bottom: 31.156 / 1068
  24023. }
  24024. },
  24025. back: {
  24026. height: math.unit(4.5, "meters"),
  24027. weight: math.unit(3200, "lb"),
  24028. name: "Back",
  24029. image: {
  24030. source: "./media/characters/ty/back.svg",
  24031. extra: 1044 / 966,
  24032. bottom: 7.48 / 1049
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(4.5, "meters"),
  24040. default: true
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24046. {
  24047. front: {
  24048. height: math.unit(5 + 4 / 12, "feet"),
  24049. weight: math.unit(115, "lb"),
  24050. name: "Front",
  24051. image: {
  24052. source: "./media/characters/rocky/front.svg",
  24053. extra: 1012 / 975,
  24054. bottom: 54 / 1066
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Normal",
  24061. height: math.unit(5 + 4 / 12, "feet"),
  24062. default: true
  24063. },
  24064. ]
  24065. ))
  24066. characterMakers.push(() => makeCharacter(
  24067. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24068. {
  24069. upright: {
  24070. height: math.unit(6, "meters"),
  24071. weight: math.unit(4000, "kg"),
  24072. name: "Upright",
  24073. image: {
  24074. source: "./media/characters/ruin/upright.svg",
  24075. extra: 668 / 661,
  24076. bottom: 42 / 799.8396
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(6, "meters"),
  24084. default: true
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24090. {
  24091. front: {
  24092. height: math.unit(5, "feet"),
  24093. weight: math.unit(106, "lb"),
  24094. name: "Front",
  24095. image: {
  24096. source: "./media/characters/robin/front.svg",
  24097. extra: 862 / 799,
  24098. bottom: 42.4 / 914.8856
  24099. }
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Normal",
  24105. height: math.unit(5, "feet"),
  24106. default: true
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24112. {
  24113. side: {
  24114. height: math.unit(3, "feet"),
  24115. weight: math.unit(225, "lb"),
  24116. name: "Side",
  24117. image: {
  24118. source: "./media/characters/saian/side.svg",
  24119. extra: 566 / 356,
  24120. bottom: 79.7 / 643
  24121. }
  24122. },
  24123. maw: {
  24124. height: math.unit(2.85, "feet"),
  24125. name: "Maw",
  24126. image: {
  24127. source: "./media/characters/saian/maw.svg"
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Normal",
  24134. height: math.unit(3, "feet"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24141. {
  24142. side: {
  24143. height: math.unit(8, "feet"),
  24144. weight: math.unit(300, "lb"),
  24145. name: "Side",
  24146. image: {
  24147. source: "./media/characters/equus-silvermane/side.svg",
  24148. extra: 2176 / 2050,
  24149. bottom: 65.7 / 2245
  24150. }
  24151. },
  24152. front: {
  24153. height: math.unit(8, "feet"),
  24154. weight: math.unit(300, "lb"),
  24155. name: "Front",
  24156. image: {
  24157. source: "./media/characters/equus-silvermane/front.svg",
  24158. extra: 4633 / 4400,
  24159. bottom: 71.3 / 4706.915
  24160. }
  24161. },
  24162. sideStepping: {
  24163. height: math.unit(8, "feet"),
  24164. weight: math.unit(300, "lb"),
  24165. name: "Side (Stepping)",
  24166. image: {
  24167. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24168. extra: 1968 / 1860,
  24169. bottom: 16.4 / 1989
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(8, "feet")
  24177. },
  24178. {
  24179. name: "Minimacro",
  24180. height: math.unit(75, "feet"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Macro",
  24185. height: math.unit(150, "feet")
  24186. },
  24187. {
  24188. name: "Macro+",
  24189. height: math.unit(1000, "feet")
  24190. },
  24191. {
  24192. name: "Megamacro",
  24193. height: math.unit(1, "mile")
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24199. {
  24200. side: {
  24201. height: math.unit(20, "feet"),
  24202. weight: math.unit(30000, "kg"),
  24203. name: "Side",
  24204. image: {
  24205. source: "./media/characters/windar/side.svg",
  24206. extra: 1491 / 1248,
  24207. bottom: 82.56 / 1568
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Normal",
  24214. height: math.unit(20, "feet"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24221. {
  24222. side: {
  24223. height: math.unit(15.66, "feet"),
  24224. weight: math.unit(150, "lb"),
  24225. name: "Side",
  24226. image: {
  24227. source: "./media/characters/melody/side.svg",
  24228. extra: 1097 / 944,
  24229. bottom: 11.8 / 1109
  24230. }
  24231. },
  24232. sideOutfit: {
  24233. height: math.unit(15.66, "feet"),
  24234. weight: math.unit(150, "lb"),
  24235. name: "Side (Outfit)",
  24236. image: {
  24237. source: "./media/characters/melody/side-outfit.svg",
  24238. extra: 1097 / 944,
  24239. bottom: 11.8 / 1109
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(15.66, "feet"),
  24247. default: true
  24248. },
  24249. ]
  24250. ))
  24251. characterMakers.push(() => makeCharacter(
  24252. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24253. {
  24254. armoredFront: {
  24255. height: math.unit(8, "feet"),
  24256. weight: math.unit(325, "lb"),
  24257. name: "Front",
  24258. image: {
  24259. source: "./media/characters/windera/armored-front.svg",
  24260. extra: 1830/1598,
  24261. bottom: 151/1981
  24262. },
  24263. form: "armored",
  24264. default: true
  24265. },
  24266. macroFront: {
  24267. height: math.unit(70, "feet"),
  24268. weight: math.unit(315453, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/windera/macro-front.svg",
  24272. extra: 963/883,
  24273. bottom: 23/986
  24274. },
  24275. form: "macro",
  24276. default: true
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(8, "feet"),
  24283. default: true,
  24284. form: "armored"
  24285. },
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(70, "feet"),
  24289. default: true,
  24290. form: "macro"
  24291. },
  24292. ],
  24293. {
  24294. "armored": {
  24295. name: "Armored",
  24296. default: true
  24297. },
  24298. "macro": {
  24299. name: "Macro",
  24300. },
  24301. }
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24305. {
  24306. front: {
  24307. height: math.unit(28.75, "feet"),
  24308. weight: math.unit(2000, "kg"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/sonear/front.svg",
  24312. extra: 1041.1 / 964.9,
  24313. bottom: 53.7 / 1096.6
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(28.75, "feet"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24327. {
  24328. side: {
  24329. height: math.unit(25.5, "feet"),
  24330. weight: math.unit(23000, "kg"),
  24331. name: "Side",
  24332. image: {
  24333. source: "./media/characters/kanara/side.svg"
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(25.5, "feet"),
  24341. default: true
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24347. {
  24348. side: {
  24349. height: math.unit(10, "feet"),
  24350. weight: math.unit(1000, "kg"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/ereus/side.svg",
  24354. extra: 1157 / 959,
  24355. bottom: 153 / 1312.5
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(10, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24369. {
  24370. side: {
  24371. height: math.unit(4.5, "feet"),
  24372. weight: math.unit(500, "lb"),
  24373. name: "Side",
  24374. image: {
  24375. source: "./media/characters/e-ter/side.svg",
  24376. extra: 1550 / 1248,
  24377. bottom: 146 / 1694
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Normal",
  24384. height: math.unit(4.5, "feet"),
  24385. default: true
  24386. },
  24387. ]
  24388. ))
  24389. characterMakers.push(() => makeCharacter(
  24390. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24391. {
  24392. side: {
  24393. height: math.unit(9.7, "feet"),
  24394. weight: math.unit(4000, "kg"),
  24395. name: "Side",
  24396. image: {
  24397. source: "./media/characters/yamie/side.svg"
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(9.7, "feet"),
  24405. default: true
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(50, "feet"),
  24414. weight: math.unit(50000, "kg"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/anders/front.svg",
  24418. extra: 570 / 539,
  24419. bottom: 14.7 / 586.7
  24420. }
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Large",
  24426. height: math.unit(50, "feet")
  24427. },
  24428. {
  24429. name: "Macro",
  24430. height: math.unit(2000, "feet"),
  24431. default: true
  24432. },
  24433. {
  24434. name: "Megamacro",
  24435. height: math.unit(12, "miles")
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(7 + 2 / 12, "feet"),
  24444. weight: math.unit(300, "lb"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/reban/front.svg",
  24448. extra: 1287/1212,
  24449. bottom: 148/1435
  24450. }
  24451. },
  24452. head: {
  24453. height: math.unit(1.95, "feet"),
  24454. name: "Head",
  24455. image: {
  24456. source: "./media/characters/reban/head.svg"
  24457. }
  24458. },
  24459. maw: {
  24460. height: math.unit(0.95, "feet"),
  24461. name: "Maw",
  24462. image: {
  24463. source: "./media/characters/reban/maw.svg"
  24464. }
  24465. },
  24466. foot: {
  24467. height: math.unit(1.65, "feet"),
  24468. name: "Foot",
  24469. image: {
  24470. source: "./media/characters/reban/foot.svg"
  24471. }
  24472. },
  24473. dick: {
  24474. height: math.unit(7 / 5, "feet"),
  24475. name: "Dick",
  24476. image: {
  24477. source: "./media/characters/reban/dick.svg"
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Natural Height",
  24484. height: math.unit(7 + 2 / 12, "feet")
  24485. },
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(500, "feet"),
  24489. default: true
  24490. },
  24491. {
  24492. name: "Canon Height",
  24493. height: math.unit(50, "AU")
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24499. {
  24500. front: {
  24501. height: math.unit(6, "feet"),
  24502. weight: math.unit(150, "lb"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/terrance-keayes/front.svg",
  24506. extra: 1.005,
  24507. bottom: 151 / 1615
  24508. }
  24509. },
  24510. side: {
  24511. height: math.unit(6, "feet"),
  24512. weight: math.unit(150, "lb"),
  24513. name: "Side",
  24514. image: {
  24515. source: "./media/characters/terrance-keayes/side.svg",
  24516. extra: 1.005,
  24517. bottom: 129.4 / 1544
  24518. }
  24519. },
  24520. back: {
  24521. height: math.unit(6, "feet"),
  24522. weight: math.unit(150, "lb"),
  24523. name: "Back",
  24524. image: {
  24525. source: "./media/characters/terrance-keayes/back.svg",
  24526. extra: 1.005,
  24527. bottom: 58.4 / 1557.3
  24528. }
  24529. },
  24530. dick: {
  24531. height: math.unit(6 * 0.208, "feet"),
  24532. name: "Dick",
  24533. image: {
  24534. source: "./media/characters/terrance-keayes/dick.svg"
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Canon Height",
  24541. height: math.unit(35, "miles"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(6, "feet"),
  24551. weight: math.unit(150, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/ofelia/front.svg",
  24555. extra: 1130/1117,
  24556. bottom: 91/1221
  24557. }
  24558. },
  24559. back: {
  24560. height: math.unit(6, "feet"),
  24561. weight: math.unit(150, "lb"),
  24562. name: "Back",
  24563. image: {
  24564. source: "./media/characters/ofelia/back.svg",
  24565. extra: 1172/1159,
  24566. bottom: 28/1200
  24567. }
  24568. },
  24569. maw: {
  24570. height: math.unit(1, "feet"),
  24571. name: "Maw",
  24572. image: {
  24573. source: "./media/characters/ofelia/maw.svg"
  24574. }
  24575. },
  24576. foot: {
  24577. height: math.unit(1.949, "feet"),
  24578. name: "Foot",
  24579. image: {
  24580. source: "./media/characters/ofelia/foot.svg"
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Canon Height",
  24587. height: math.unit(2000, "miles"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(6, "feet"),
  24597. weight: math.unit(150, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/samuel/front.svg",
  24601. extra: 265 / 258,
  24602. bottom: 2 / 266.1566
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Macro",
  24609. height: math.unit(100, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Full Size",
  24614. height: math.unit(1000, "miles")
  24615. },
  24616. ]
  24617. ))
  24618. characterMakers.push(() => makeCharacter(
  24619. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24620. {
  24621. front: {
  24622. height: math.unit(6, "feet"),
  24623. weight: math.unit(300, "lb"),
  24624. name: "Front",
  24625. image: {
  24626. source: "./media/characters/beishir-kiel/front.svg",
  24627. extra: 569 / 547,
  24628. bottom: 41.9 / 609
  24629. }
  24630. },
  24631. maw: {
  24632. height: math.unit(6 * 0.202, "feet"),
  24633. name: "Maw",
  24634. image: {
  24635. source: "./media/characters/beishir-kiel/maw.svg"
  24636. }
  24637. },
  24638. },
  24639. [
  24640. {
  24641. name: "Macro",
  24642. height: math.unit(300, "feet"),
  24643. default: true
  24644. },
  24645. ]
  24646. ))
  24647. characterMakers.push(() => makeCharacter(
  24648. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24649. {
  24650. front: {
  24651. height: math.unit(5 + 7/12, "feet"),
  24652. weight: math.unit(120, "lb"),
  24653. name: "Front",
  24654. image: {
  24655. source: "./media/characters/logan-grey/front.svg",
  24656. extra: 1836/1738,
  24657. bottom: 108/1944
  24658. }
  24659. },
  24660. back: {
  24661. height: math.unit(5 + 7/12, "feet"),
  24662. weight: math.unit(120, "lb"),
  24663. name: "Back",
  24664. image: {
  24665. source: "./media/characters/logan-grey/back.svg",
  24666. extra: 1880/1794,
  24667. bottom: 24/1904
  24668. }
  24669. },
  24670. frontSfw: {
  24671. height: math.unit(5 + 7/12, "feet"),
  24672. weight: math.unit(120, "lb"),
  24673. name: "Front (SFW)",
  24674. image: {
  24675. source: "./media/characters/logan-grey/front-sfw.svg",
  24676. extra: 1836/1738,
  24677. bottom: 108/1944
  24678. }
  24679. },
  24680. backSfw: {
  24681. height: math.unit(5 + 7/12, "feet"),
  24682. weight: math.unit(120, "lb"),
  24683. name: "Back (SFW)",
  24684. image: {
  24685. source: "./media/characters/logan-grey/back-sfw.svg",
  24686. extra: 1880/1794,
  24687. bottom: 24/1904
  24688. }
  24689. },
  24690. hands: {
  24691. height: math.unit(0.84, "feet"),
  24692. name: "Hands",
  24693. image: {
  24694. source: "./media/characters/logan-grey/hands.svg"
  24695. }
  24696. },
  24697. paws: {
  24698. height: math.unit(0.72, "feet"),
  24699. name: "Paws",
  24700. image: {
  24701. source: "./media/characters/logan-grey/paws.svg"
  24702. }
  24703. },
  24704. cock: {
  24705. height: math.unit(1.45, "feet"),
  24706. name: "Cock",
  24707. image: {
  24708. source: "./media/characters/logan-grey/cock.svg"
  24709. }
  24710. },
  24711. cockAlt: {
  24712. height: math.unit(1.437, "feet"),
  24713. name: "Cock (alt)",
  24714. image: {
  24715. source: "./media/characters/logan-grey/cock-alt.svg"
  24716. }
  24717. },
  24718. },
  24719. [
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(5 + 8 / 12, "feet")
  24723. },
  24724. {
  24725. name: "The 500 Foot Femboy",
  24726. height: math.unit(500, "feet"),
  24727. default: true
  24728. },
  24729. {
  24730. name: "Megmacro",
  24731. height: math.unit(20, "miles")
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24737. {
  24738. front: {
  24739. height: math.unit(8 + 2 / 12, "feet"),
  24740. weight: math.unit(275, "lb"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/draganta/front.svg",
  24744. extra: 1177 / 1135,
  24745. bottom: 33.46 / 1212.1
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(8 + 6 / 12, "feet"),
  24753. default: true
  24754. },
  24755. {
  24756. name: "Macro",
  24757. height: math.unit(150, "feet")
  24758. },
  24759. {
  24760. name: "Megamacro",
  24761. height: math.unit(1000, "miles")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(1.72, "m"),
  24770. weight: math.unit(80, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/voski/front.svg",
  24774. extra: 2076.22 / 2022.4,
  24775. bottom: 102.7 / 2177.3866
  24776. }
  24777. },
  24778. frontFlaccid: {
  24779. height: math.unit(1.72, "m"),
  24780. weight: math.unit(80, "lb"),
  24781. name: "Front (Flaccid)",
  24782. image: {
  24783. source: "./media/characters/voski/front-flaccid.svg",
  24784. extra: 2076.22 / 2022.4,
  24785. bottom: 102.7 / 2177.3866
  24786. }
  24787. },
  24788. frontErect: {
  24789. height: math.unit(1.72, "m"),
  24790. weight: math.unit(80, "lb"),
  24791. name: "Front (Erect)",
  24792. image: {
  24793. source: "./media/characters/voski/front-erect.svg",
  24794. extra: 2076.22 / 2022.4,
  24795. bottom: 102.7 / 2177.3866
  24796. }
  24797. },
  24798. back: {
  24799. height: math.unit(1.72, "m"),
  24800. weight: math.unit(80, "lb"),
  24801. name: "Back",
  24802. image: {
  24803. source: "./media/characters/voski/back.svg",
  24804. extra: 2104 / 2051,
  24805. bottom: 10.45 / 2113.63
  24806. }
  24807. },
  24808. },
  24809. [
  24810. {
  24811. name: "Normal",
  24812. height: math.unit(1.72, "m")
  24813. },
  24814. {
  24815. name: "Macro",
  24816. height: math.unit(55, "m"),
  24817. default: true
  24818. },
  24819. {
  24820. name: "Macro+",
  24821. height: math.unit(300, "m")
  24822. },
  24823. {
  24824. name: "Macro++",
  24825. height: math.unit(700, "m")
  24826. },
  24827. {
  24828. name: "Macro+++",
  24829. height: math.unit(4500, "m")
  24830. },
  24831. {
  24832. name: "Macro++++",
  24833. height: math.unit(45, "km")
  24834. },
  24835. {
  24836. name: "Macro+++++",
  24837. height: math.unit(1220, "km")
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(2.3, "m"),
  24846. weight: math.unit(304, "kg"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/icowom-lee/front.svg",
  24850. extra: 985 / 955,
  24851. bottom: 25.4 / 1012
  24852. }
  24853. },
  24854. fronttentacles: {
  24855. height: math.unit(2.3, "m"),
  24856. weight: math.unit(304, "kg"),
  24857. name: "Front-tentacles",
  24858. image: {
  24859. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24860. extra: 985 / 955,
  24861. bottom: 25.4 / 1012
  24862. }
  24863. },
  24864. back: {
  24865. height: math.unit(2.3, "m"),
  24866. weight: math.unit(304, "kg"),
  24867. name: "Back",
  24868. image: {
  24869. source: "./media/characters/icowom-lee/back.svg",
  24870. extra: 975 / 954,
  24871. bottom: 9.5 / 985
  24872. }
  24873. },
  24874. backtentacles: {
  24875. height: math.unit(2.3, "m"),
  24876. weight: math.unit(304, "kg"),
  24877. name: "Back-tentacles",
  24878. image: {
  24879. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24880. extra: 975 / 954,
  24881. bottom: 9.5 / 985
  24882. }
  24883. },
  24884. frontDressed: {
  24885. height: math.unit(2.3, "m"),
  24886. weight: math.unit(304, "kg"),
  24887. name: "Front (Dressed)",
  24888. image: {
  24889. source: "./media/characters/icowom-lee/front-dressed.svg",
  24890. extra: 3076 / 2933,
  24891. bottom: 51.4 / 3125.1889
  24892. }
  24893. },
  24894. rump: {
  24895. height: math.unit(0.776, "meters"),
  24896. name: "Rump",
  24897. image: {
  24898. source: "./media/characters/icowom-lee/rump.svg"
  24899. }
  24900. },
  24901. genitals: {
  24902. height: math.unit(0.78, "meters"),
  24903. name: "Genitals",
  24904. image: {
  24905. source: "./media/characters/icowom-lee/genitals.svg"
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(2.3, "meters"),
  24913. default: true
  24914. },
  24915. {
  24916. name: "Macro",
  24917. height: math.unit(94, "meters"),
  24918. default: true
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24924. {
  24925. front: {
  24926. height: math.unit(22, "meters"),
  24927. weight: math.unit(21000, "kg"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/shock-diamond/front.svg",
  24931. extra: 2204 / 2053,
  24932. bottom: 65 / 2239.47
  24933. }
  24934. },
  24935. frontNude: {
  24936. height: math.unit(22, "meters"),
  24937. weight: math.unit(21000, "kg"),
  24938. name: "Front (Nude)",
  24939. image: {
  24940. source: "./media/characters/shock-diamond/front-nude.svg",
  24941. extra: 2514 / 2285,
  24942. bottom: 13 / 2527.56
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(3, "meters")
  24950. },
  24951. {
  24952. name: "Macro",
  24953. height: math.unit(22, "meters"),
  24954. default: true
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(5 + 4/12, "feet"),
  24963. weight: math.unit(125, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/rory/front.svg",
  24967. extra: 1790/1681,
  24968. bottom: 66/1856
  24969. },
  24970. form: "normal",
  24971. default: true
  24972. },
  24973. back: {
  24974. height: math.unit(5 + 4/12, "feet"),
  24975. weight: math.unit(125, "lb"),
  24976. name: "Back",
  24977. image: {
  24978. source: "./media/characters/rory/back.svg",
  24979. extra: 1805/1690,
  24980. bottom: 56/1861
  24981. },
  24982. form: "normal"
  24983. },
  24984. frontDressed: {
  24985. height: math.unit(5 + 4/12, "feet"),
  24986. weight: math.unit(125, "lb"),
  24987. name: "Front (Dressed)",
  24988. image: {
  24989. source: "./media/characters/rory/front-dressed.svg",
  24990. extra: 1790/1681,
  24991. bottom: 66/1856
  24992. },
  24993. form: "normal"
  24994. },
  24995. backDressed: {
  24996. height: math.unit(5 + 4/12, "feet"),
  24997. weight: math.unit(125, "lb"),
  24998. name: "Back (Dressed)",
  24999. image: {
  25000. source: "./media/characters/rory/back-dressed.svg",
  25001. extra: 1805/1690,
  25002. bottom: 56/1861
  25003. },
  25004. form: "normal"
  25005. },
  25006. frontNsfw: {
  25007. height: math.unit(5 + 4/12, "feet"),
  25008. weight: math.unit(125, "lb"),
  25009. name: "Front (NSFW)",
  25010. image: {
  25011. source: "./media/characters/rory/front-nsfw.svg",
  25012. extra: 1790/1681,
  25013. bottom: 66/1856
  25014. },
  25015. form: "normal"
  25016. },
  25017. backNsfw: {
  25018. height: math.unit(5 + 4/12, "feet"),
  25019. weight: math.unit(125, "lb"),
  25020. name: "Back (NSFW)",
  25021. image: {
  25022. source: "./media/characters/rory/back-nsfw.svg",
  25023. extra: 1805/1690,
  25024. bottom: 56/1861
  25025. },
  25026. form: "normal"
  25027. },
  25028. dick: {
  25029. height: math.unit(0.8, "feet"),
  25030. name: "Dick",
  25031. image: {
  25032. source: "./media/characters/rory/dick.svg"
  25033. },
  25034. form: "normal"
  25035. },
  25036. thicc_front: {
  25037. height: math.unit(5 + 4/12, "feet"),
  25038. weight: math.unit(195, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/rory/thicc-front.svg",
  25042. extra: 1220/1100,
  25043. bottom: 103/1323
  25044. },
  25045. form: "thicc",
  25046. default: true
  25047. },
  25048. thicc_back: {
  25049. height: math.unit(5 + 4/12, "feet"),
  25050. weight: math.unit(195, "lb"),
  25051. name: "Back",
  25052. image: {
  25053. source: "./media/characters/rory/thicc-back.svg",
  25054. extra: 1166/1086,
  25055. bottom: 35/1201
  25056. },
  25057. form: "thicc"
  25058. },
  25059. },
  25060. [
  25061. {
  25062. name: "Micro",
  25063. height: math.unit(3, "inches"),
  25064. allForms: true
  25065. },
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(5 + 4/12, "feet"),
  25069. allForms: true,
  25070. default: true
  25071. },
  25072. {
  25073. name: "Macro",
  25074. height: math.unit(90, "feet"),
  25075. allForms: true
  25076. },
  25077. {
  25078. name: "Supercharged",
  25079. height: math.unit(270, "feet"),
  25080. allForms: true
  25081. },
  25082. ],
  25083. {
  25084. "normal": {
  25085. name: "Normal",
  25086. default: true
  25087. },
  25088. "thicc": {
  25089. name: "Thicc",
  25090. },
  25091. }
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(5 + 9 / 12, "feet"),
  25098. weight: math.unit(190, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/sprisk/front.svg",
  25102. extra: 1225 / 1180,
  25103. bottom: 42.7 / 1266.4
  25104. }
  25105. },
  25106. frontNsfw: {
  25107. height: math.unit(5 + 9 / 12, "feet"),
  25108. weight: math.unit(190, "lb"),
  25109. name: "Front (NSFW)",
  25110. image: {
  25111. source: "./media/characters/sprisk/front-nsfw.svg",
  25112. extra: 1225 / 1180,
  25113. bottom: 42.7 / 1266.4
  25114. }
  25115. },
  25116. back: {
  25117. height: math.unit(5 + 9 / 12, "feet"),
  25118. weight: math.unit(190, "lb"),
  25119. name: "Back",
  25120. image: {
  25121. source: "./media/characters/sprisk/back.svg",
  25122. extra: 1247 / 1200,
  25123. bottom: 5.6 / 1253.04
  25124. }
  25125. },
  25126. },
  25127. [
  25128. {
  25129. name: "Tiny",
  25130. height: math.unit(2, "inches")
  25131. },
  25132. {
  25133. name: "Normal",
  25134. height: math.unit(5 + 9 / 12, "feet"),
  25135. default: true
  25136. },
  25137. {
  25138. name: "Mini Macro",
  25139. height: math.unit(18, "feet")
  25140. },
  25141. {
  25142. name: "Macro",
  25143. height: math.unit(100, "feet")
  25144. },
  25145. {
  25146. name: "MACRO",
  25147. height: math.unit(50, "miles")
  25148. },
  25149. {
  25150. name: "M A C R O",
  25151. height: math.unit(300, "miles")
  25152. },
  25153. ]
  25154. ))
  25155. characterMakers.push(() => makeCharacter(
  25156. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25157. {
  25158. side: {
  25159. height: math.unit(15.6, "meters"),
  25160. weight: math.unit(700000, "kg"),
  25161. name: "Side",
  25162. image: {
  25163. source: "./media/characters/bunsen/side.svg",
  25164. extra: 1644 / 358
  25165. }
  25166. },
  25167. foot: {
  25168. height: math.unit(1.611 * 1644 / 358, "meter"),
  25169. name: "Foot",
  25170. image: {
  25171. source: "./media/characters/bunsen/foot.svg"
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Small",
  25178. height: math.unit(10, "feet")
  25179. },
  25180. {
  25181. name: "Normal",
  25182. height: math.unit(15.6, "meters"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(4 + 11 / 12, "feet"),
  25192. weight: math.unit(140, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/sesh/front.svg",
  25196. extra: 3420 / 3231,
  25197. bottom: 72 / 3949.5
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Normal",
  25204. height: math.unit(4 + 11 / 12, "feet")
  25205. },
  25206. {
  25207. name: "Grown",
  25208. height: math.unit(15, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Macro",
  25213. height: math.unit(1500, "feet")
  25214. },
  25215. {
  25216. name: "Megamacro",
  25217. height: math.unit(30, "miles")
  25218. },
  25219. {
  25220. name: "Continental",
  25221. height: math.unit(3000, "miles")
  25222. },
  25223. {
  25224. name: "Gravity Mass",
  25225. height: math.unit(300000, "miles")
  25226. },
  25227. {
  25228. name: "Planet Buster",
  25229. height: math.unit(30000000, "miles")
  25230. },
  25231. {
  25232. name: "Big",
  25233. height: math.unit(3000000000, "miles")
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(9, "feet"),
  25242. weight: math.unit(350, "lb"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/pepper/front.svg",
  25246. extra: 1448 / 1312,
  25247. bottom: 9.4 / 1457.88
  25248. }
  25249. },
  25250. back: {
  25251. height: math.unit(9, "feet"),
  25252. weight: math.unit(350, "lb"),
  25253. name: "Back",
  25254. image: {
  25255. source: "./media/characters/pepper/back.svg",
  25256. extra: 1423 / 1300,
  25257. bottom: 4.6 / 1429
  25258. }
  25259. },
  25260. maw: {
  25261. height: math.unit(0.932, "feet"),
  25262. name: "Maw",
  25263. image: {
  25264. source: "./media/characters/pepper/maw.svg"
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Normal",
  25271. height: math.unit(9, "feet"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(6, "feet"),
  25281. weight: math.unit(150, "lb"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/maelstrom/front.svg",
  25285. extra: 2100 / 1883,
  25286. bottom: 94 / 2196.7
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Less Kaiju",
  25293. height: math.unit(200, "feet")
  25294. },
  25295. {
  25296. name: "Kaiju",
  25297. height: math.unit(400, "feet"),
  25298. default: true
  25299. },
  25300. {
  25301. name: "Kaiju-er",
  25302. height: math.unit(600, "feet")
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(6 + 5 / 12, "feet"),
  25311. weight: math.unit(180, "lb"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/lexir/front.svg",
  25315. extra: 180 / 172,
  25316. bottom: 12 / 192
  25317. }
  25318. },
  25319. back: {
  25320. height: math.unit(6 + 5 / 12, "feet"),
  25321. weight: math.unit(180, "lb"),
  25322. name: "Back",
  25323. image: {
  25324. source: "./media/characters/lexir/back.svg",
  25325. extra: 1273/1201,
  25326. bottom: 39/1312
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Very Smal",
  25333. height: math.unit(1, "nm")
  25334. },
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(6 + 5 / 12, "feet"),
  25338. default: true
  25339. },
  25340. {
  25341. name: "Macro",
  25342. height: math.unit(1, "mile")
  25343. },
  25344. {
  25345. name: "Megamacro",
  25346. height: math.unit(50, "miles")
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(1.5, "meters"),
  25355. weight: math.unit(100, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/maksio/front.svg",
  25359. extra: 1549 / 1531,
  25360. bottom: 123.7 / 1674.5429
  25361. }
  25362. },
  25363. back: {
  25364. height: math.unit(1.5, "meters"),
  25365. weight: math.unit(100, "lb"),
  25366. name: "Back",
  25367. image: {
  25368. source: "./media/characters/maksio/back.svg",
  25369. extra: 1541 / 1509,
  25370. bottom: 97 / 1639
  25371. }
  25372. },
  25373. hand: {
  25374. height: math.unit(0.621, "feet"),
  25375. name: "Hand",
  25376. image: {
  25377. source: "./media/characters/maksio/hand.svg"
  25378. }
  25379. },
  25380. foot: {
  25381. height: math.unit(1.611, "feet"),
  25382. name: "Foot",
  25383. image: {
  25384. source: "./media/characters/maksio/foot.svg"
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Shrunken",
  25391. height: math.unit(10, "cm")
  25392. },
  25393. {
  25394. name: "Normal",
  25395. height: math.unit(150, "cm"),
  25396. default: true
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25402. {
  25403. front: {
  25404. height: math.unit(100, "feet"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/erza-bear/front.svg",
  25408. extra: 2449 / 2390,
  25409. bottom: 46 / 2494
  25410. }
  25411. },
  25412. back: {
  25413. height: math.unit(100, "feet"),
  25414. name: "Back",
  25415. image: {
  25416. source: "./media/characters/erza-bear/back.svg",
  25417. extra: 2489 / 2430,
  25418. bottom: 85.4 / 2480
  25419. }
  25420. },
  25421. tail: {
  25422. height: math.unit(42, "feet"),
  25423. name: "Tail",
  25424. image: {
  25425. source: "./media/characters/erza-bear/tail.svg"
  25426. }
  25427. },
  25428. tongue: {
  25429. height: math.unit(8, "feet"),
  25430. name: "Tongue",
  25431. image: {
  25432. source: "./media/characters/erza-bear/tongue.svg"
  25433. }
  25434. },
  25435. dick: {
  25436. height: math.unit(10.5, "feet"),
  25437. name: "Dick",
  25438. image: {
  25439. source: "./media/characters/erza-bear/dick.svg"
  25440. }
  25441. },
  25442. dickVertical: {
  25443. height: math.unit(16.9, "feet"),
  25444. name: "Dick (Vertical)",
  25445. image: {
  25446. source: "./media/characters/erza-bear/dick-vertical.svg"
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Macro",
  25453. height: math.unit(100, "feet"),
  25454. default: true
  25455. },
  25456. ]
  25457. ))
  25458. characterMakers.push(() => makeCharacter(
  25459. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25460. {
  25461. front: {
  25462. height: math.unit(172, "cm"),
  25463. weight: math.unit(73, "kg"),
  25464. name: "Front",
  25465. image: {
  25466. source: "./media/characters/violet-flor/front.svg",
  25467. extra: 1530 / 1442,
  25468. bottom: 61.9 / 1588.8
  25469. }
  25470. },
  25471. back: {
  25472. height: math.unit(180, "cm"),
  25473. weight: math.unit(73, "kg"),
  25474. name: "Back",
  25475. image: {
  25476. source: "./media/characters/violet-flor/back.svg",
  25477. extra: 1692 / 1630,
  25478. bottom: 20 / 1712
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Normal",
  25485. height: math.unit(172, "cm"),
  25486. default: true
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(6, "feet"),
  25495. weight: math.unit(220, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/lynn-rhea/front.svg",
  25499. extra: 310 / 273
  25500. }
  25501. },
  25502. back: {
  25503. height: math.unit(6, "feet"),
  25504. weight: math.unit(220, "lb"),
  25505. name: "Back",
  25506. image: {
  25507. source: "./media/characters/lynn-rhea/back.svg",
  25508. extra: 310 / 273
  25509. }
  25510. },
  25511. dicks: {
  25512. height: math.unit(0.9, "feet"),
  25513. name: "Dicks",
  25514. image: {
  25515. source: "./media/characters/lynn-rhea/dicks.svg"
  25516. }
  25517. },
  25518. slit: {
  25519. height: math.unit(0.4, "feet"),
  25520. name: "Slit",
  25521. image: {
  25522. source: "./media/characters/lynn-rhea/slit.svg"
  25523. }
  25524. },
  25525. },
  25526. [
  25527. {
  25528. name: "Micro",
  25529. height: math.unit(1, "inch")
  25530. },
  25531. {
  25532. name: "Macro",
  25533. height: math.unit(60, "feet"),
  25534. default: true
  25535. },
  25536. {
  25537. name: "Megamacro",
  25538. height: math.unit(2, "miles")
  25539. },
  25540. {
  25541. name: "Gigamacro",
  25542. height: math.unit(3, "earths")
  25543. },
  25544. {
  25545. name: "Galactic",
  25546. height: math.unit(0.8, "galaxies")
  25547. },
  25548. ]
  25549. ))
  25550. characterMakers.push(() => makeCharacter(
  25551. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25552. {
  25553. front: {
  25554. height: math.unit(1600, "feet"),
  25555. weight: math.unit(85758785169, "kg"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/valathos/front.svg",
  25559. extra: 1451 / 1339
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Macro",
  25566. height: math.unit(1600, "feet"),
  25567. default: true
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(7 + 5 / 12, "feet"),
  25576. weight: math.unit(300, "lb"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/azula/front.svg",
  25580. extra: 3208 / 2880,
  25581. bottom: 80.2 / 3277
  25582. }
  25583. },
  25584. back: {
  25585. height: math.unit(7 + 5 / 12, "feet"),
  25586. weight: math.unit(300, "lb"),
  25587. name: "Back",
  25588. image: {
  25589. source: "./media/characters/azula/back.svg",
  25590. extra: 3169 / 2822,
  25591. bottom: 150.6 / 3321
  25592. }
  25593. },
  25594. },
  25595. [
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(7 + 5 / 12, "feet"),
  25599. default: true
  25600. },
  25601. {
  25602. name: "Big",
  25603. height: math.unit(20, "feet")
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25609. {
  25610. front: {
  25611. height: math.unit(5 + 1 / 12, "feet"),
  25612. weight: math.unit(110, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/rupert/front.svg",
  25616. extra: 1549 / 1495,
  25617. bottom: 54.2 / 1604.4
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(5 + 1 / 12, "feet"),
  25625. default: true
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25631. {
  25632. front: {
  25633. height: math.unit(8 + 4 / 12, "feet"),
  25634. weight: math.unit(350, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/sheera-castellar/front.svg",
  25638. extra: 1957 / 1894,
  25639. bottom: 26.97 / 1975.017
  25640. }
  25641. },
  25642. side: {
  25643. height: math.unit(8 + 4 / 12, "feet"),
  25644. weight: math.unit(350, "lb"),
  25645. name: "Side",
  25646. image: {
  25647. source: "./media/characters/sheera-castellar/side.svg",
  25648. extra: 1957 / 1894
  25649. }
  25650. },
  25651. back: {
  25652. height: math.unit(8 + 4 / 12, "feet"),
  25653. weight: math.unit(350, "lb"),
  25654. name: "Back",
  25655. image: {
  25656. source: "./media/characters/sheera-castellar/back.svg",
  25657. extra: 1957 / 1894
  25658. }
  25659. },
  25660. angled: {
  25661. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25662. weight: math.unit(350, "lb"),
  25663. name: "Angled",
  25664. image: {
  25665. source: "./media/characters/sheera-castellar/angled.svg",
  25666. extra: 1807 / 1707,
  25667. bottom: 68 / 1875
  25668. }
  25669. },
  25670. genitals: {
  25671. height: math.unit(2.2, "feet"),
  25672. name: "Genitals",
  25673. image: {
  25674. source: "./media/characters/sheera-castellar/genitals.svg"
  25675. }
  25676. },
  25677. taur: {
  25678. height: math.unit(10 + 6/12, "feet"),
  25679. name: "Taur",
  25680. image: {
  25681. source: "./media/characters/sheera-castellar/taur.svg",
  25682. extra: 2017/1909,
  25683. bottom: 185/2202
  25684. }
  25685. },
  25686. },
  25687. [
  25688. {
  25689. name: "Normal",
  25690. height: math.unit(8 + 4 / 12, "feet")
  25691. },
  25692. {
  25693. name: "Macro",
  25694. height: math.unit(150, "feet"),
  25695. default: true
  25696. },
  25697. {
  25698. name: "Macro+",
  25699. height: math.unit(800, "feet")
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25705. {
  25706. front: {
  25707. height: math.unit(6, "feet"),
  25708. weight: math.unit(150, "lb"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/jaipur/front.svg",
  25712. extra: 3860 / 3731,
  25713. bottom: 287 / 4140
  25714. }
  25715. },
  25716. back: {
  25717. height: math.unit(6, "feet"),
  25718. weight: math.unit(150, "lb"),
  25719. name: "Back",
  25720. image: {
  25721. source: "./media/characters/jaipur/back.svg",
  25722. extra: 1637/1561,
  25723. bottom: 154/1791
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Normal",
  25730. height: math.unit(1.85, "meters"),
  25731. default: true
  25732. },
  25733. {
  25734. name: "Macro",
  25735. height: math.unit(150, "meters")
  25736. },
  25737. {
  25738. name: "Macro+",
  25739. height: math.unit(0.5, "miles")
  25740. },
  25741. {
  25742. name: "Macro++",
  25743. height: math.unit(2.5, "miles")
  25744. },
  25745. {
  25746. name: "Macro+++",
  25747. height: math.unit(12, "miles")
  25748. },
  25749. {
  25750. name: "Macro++++",
  25751. height: math.unit(120, "miles")
  25752. },
  25753. {
  25754. name: "Macro+++++",
  25755. height: math.unit(1200, "miles")
  25756. },
  25757. ]
  25758. ))
  25759. characterMakers.push(() => makeCharacter(
  25760. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25761. {
  25762. front: {
  25763. height: math.unit(6, "feet"),
  25764. weight: math.unit(150, "lb"),
  25765. name: "Front",
  25766. image: {
  25767. source: "./media/characters/sheila-wolf/front.svg",
  25768. extra: 1931 / 1808,
  25769. bottom: 29.5 / 1960
  25770. }
  25771. },
  25772. dick: {
  25773. height: math.unit(1.464, "feet"),
  25774. name: "Dick",
  25775. image: {
  25776. source: "./media/characters/sheila-wolf/dick.svg"
  25777. }
  25778. },
  25779. muzzle: {
  25780. height: math.unit(0.513, "feet"),
  25781. name: "Muzzle",
  25782. image: {
  25783. source: "./media/characters/sheila-wolf/muzzle.svg"
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Macro",
  25790. height: math.unit(70, "feet"),
  25791. default: true
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25797. {
  25798. front: {
  25799. height: math.unit(32, "meters"),
  25800. weight: math.unit(300000, "kg"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/almor/front.svg",
  25804. extra: 1408 / 1322,
  25805. bottom: 94.6 / 1506.5
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Macro",
  25812. height: math.unit(32, "meters"),
  25813. default: true
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(7, "feet"),
  25822. weight: math.unit(200, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/silver/front.svg",
  25826. extra: 472.1 / 450.5,
  25827. bottom: 26.5 / 499.424
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(7, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(800, "feet")
  25840. },
  25841. {
  25842. name: "Megamacro",
  25843. height: math.unit(250, "miles")
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(6, "feet"),
  25852. weight: math.unit(150, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/pliskin/front.svg",
  25856. extra: 1469 / 1359,
  25857. bottom: 70 / 1540
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Micro",
  25864. height: math.unit(3, "inches")
  25865. },
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(5 + 11 / 12, "feet"),
  25869. default: true
  25870. },
  25871. {
  25872. name: "Macro",
  25873. height: math.unit(120, "feet")
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(6, "feet"),
  25882. weight: math.unit(150, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/sammy/front.svg",
  25886. extra: 1193 / 1089,
  25887. bottom: 30.5 / 1226
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Macro",
  25894. height: math.unit(1700, "feet"),
  25895. default: true
  25896. },
  25897. {
  25898. name: "Examacro",
  25899. height: math.unit(2.5e9, "lightyears")
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(21, "meters"),
  25908. weight: math.unit(12, "tonnes"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/kuru/front.svg",
  25912. extra: 4301 / 3785,
  25913. bottom: 371.3 / 4691
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Macro",
  25920. height: math.unit(21, "meters"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(23, "meters"),
  25930. weight: math.unit(12.2, "tonnes"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/rakka/front.svg",
  25934. extra: 4670 / 4169,
  25935. bottom: 301 / 4968.7
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Macro",
  25942. height: math.unit(23, "meters"),
  25943. default: true
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(6, "feet"),
  25952. weight: math.unit(150, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/rhys-feline/front.svg",
  25956. extra: 2488 / 2308,
  25957. bottom: 35.67 / 2519.19
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Really Small",
  25964. height: math.unit(1, "nm")
  25965. },
  25966. {
  25967. name: "Micro",
  25968. height: math.unit(4, "inches")
  25969. },
  25970. {
  25971. name: "Normal",
  25972. height: math.unit(4 + 10 / 12, "feet"),
  25973. default: true
  25974. },
  25975. {
  25976. name: "Macro",
  25977. height: math.unit(100, "feet")
  25978. },
  25979. {
  25980. name: "Megamacto",
  25981. height: math.unit(50, "miles")
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25987. {
  25988. side: {
  25989. height: math.unit(30, "feet"),
  25990. weight: math.unit(35000, "kg"),
  25991. name: "Side",
  25992. image: {
  25993. source: "./media/characters/alydar/side.svg",
  25994. extra: 234 / 222,
  25995. bottom: 6.5 / 241
  25996. }
  25997. },
  25998. front: {
  25999. height: math.unit(30, "feet"),
  26000. weight: math.unit(35000, "kg"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/alydar/front.svg",
  26004. extra: 223.37 / 210.2,
  26005. bottom: 22.3 / 246.76
  26006. }
  26007. },
  26008. top: {
  26009. height: math.unit(64.54, "feet"),
  26010. weight: math.unit(35000, "kg"),
  26011. name: "Top",
  26012. image: {
  26013. source: "./media/characters/alydar/top.svg"
  26014. }
  26015. },
  26016. anthro: {
  26017. height: math.unit(30, "feet"),
  26018. weight: math.unit(9000, "kg"),
  26019. name: "Anthro",
  26020. image: {
  26021. source: "./media/characters/alydar/anthro.svg",
  26022. extra: 432 / 421,
  26023. bottom: 7.18 / 440
  26024. }
  26025. },
  26026. maw: {
  26027. height: math.unit(11.693, "feet"),
  26028. name: "Maw",
  26029. image: {
  26030. source: "./media/characters/alydar/maw.svg"
  26031. }
  26032. },
  26033. head: {
  26034. height: math.unit(11.693, "feet"),
  26035. name: "Head",
  26036. image: {
  26037. source: "./media/characters/alydar/head.svg"
  26038. }
  26039. },
  26040. headAlt: {
  26041. height: math.unit(12.861, "feet"),
  26042. name: "Head (Alt)",
  26043. image: {
  26044. source: "./media/characters/alydar/head-alt.svg"
  26045. }
  26046. },
  26047. wing: {
  26048. height: math.unit(20.712, "feet"),
  26049. name: "Wing",
  26050. image: {
  26051. source: "./media/characters/alydar/wing.svg"
  26052. }
  26053. },
  26054. wingFeather: {
  26055. height: math.unit(9.662, "feet"),
  26056. name: "Wing Feather",
  26057. image: {
  26058. source: "./media/characters/alydar/wing-feather.svg"
  26059. }
  26060. },
  26061. countourFeather: {
  26062. height: math.unit(4.154, "feet"),
  26063. name: "Contour Feather",
  26064. image: {
  26065. source: "./media/characters/alydar/contour-feather.svg"
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Diplomatic",
  26072. height: math.unit(13, "feet"),
  26073. default: true
  26074. },
  26075. {
  26076. name: "Small",
  26077. height: math.unit(30, "feet")
  26078. },
  26079. {
  26080. name: "Normal",
  26081. height: math.unit(95, "feet"),
  26082. default: true
  26083. },
  26084. {
  26085. name: "Large",
  26086. height: math.unit(285, "feet")
  26087. },
  26088. {
  26089. name: "Incomprehensible",
  26090. height: math.unit(450, "megameters")
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26096. {
  26097. side: {
  26098. height: math.unit(11, "feet"),
  26099. weight: math.unit(1750, "kg"),
  26100. name: "Side",
  26101. image: {
  26102. source: "./media/characters/selicia/side.svg",
  26103. extra: 440 / 396,
  26104. bottom: 24.8 / 465.979
  26105. }
  26106. },
  26107. maw: {
  26108. height: math.unit(4.665, "feet"),
  26109. name: "Maw",
  26110. image: {
  26111. source: "./media/characters/selicia/maw.svg"
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(11, "feet"),
  26119. default: true
  26120. },
  26121. ]
  26122. ))
  26123. characterMakers.push(() => makeCharacter(
  26124. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26125. {
  26126. side: {
  26127. height: math.unit(2 + 6 / 12, "feet"),
  26128. weight: math.unit(30, "lb"),
  26129. name: "Side",
  26130. image: {
  26131. source: "./media/characters/layla/side.svg",
  26132. extra: 244 / 188,
  26133. bottom: 18.2 / 262.1
  26134. }
  26135. },
  26136. back: {
  26137. height: math.unit(2 + 6 / 12, "feet"),
  26138. weight: math.unit(30, "lb"),
  26139. name: "Back",
  26140. image: {
  26141. source: "./media/characters/layla/back.svg",
  26142. extra: 308 / 241.5,
  26143. bottom: 8.9 / 316.8
  26144. }
  26145. },
  26146. cumming: {
  26147. height: math.unit(2 + 6 / 12, "feet"),
  26148. weight: math.unit(30, "lb"),
  26149. name: "Cumming",
  26150. image: {
  26151. source: "./media/characters/layla/cumming.svg",
  26152. extra: 342 / 279,
  26153. bottom: 595 / 938
  26154. }
  26155. },
  26156. dickFlaccid: {
  26157. height: math.unit(2.595, "feet"),
  26158. name: "Flaccid Genitals",
  26159. image: {
  26160. source: "./media/characters/layla/dick-flaccid.svg"
  26161. }
  26162. },
  26163. dickErect: {
  26164. height: math.unit(2.359, "feet"),
  26165. name: "Erect Genitals",
  26166. image: {
  26167. source: "./media/characters/layla/dick-erect.svg"
  26168. }
  26169. },
  26170. dragon: {
  26171. height: math.unit(40, "feet"),
  26172. name: "Dragon",
  26173. image: {
  26174. source: "./media/characters/layla/dragon.svg",
  26175. extra: 610/535,
  26176. bottom: 367/977
  26177. }
  26178. },
  26179. taur: {
  26180. height: math.unit(30, "feet"),
  26181. name: "Taur",
  26182. image: {
  26183. source: "./media/characters/layla/taur.svg",
  26184. extra: 1268/1199,
  26185. bottom: 112/1380
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Micro",
  26192. height: math.unit(1, "inch")
  26193. },
  26194. {
  26195. name: "Small",
  26196. height: math.unit(1, "foot")
  26197. },
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(2 + 6 / 12, "feet"),
  26201. default: true
  26202. },
  26203. {
  26204. name: "Macro",
  26205. height: math.unit(200, "feet")
  26206. },
  26207. {
  26208. name: "Megamacro",
  26209. height: math.unit(1000, "miles")
  26210. },
  26211. {
  26212. name: "Planetary",
  26213. height: math.unit(8000, "miles")
  26214. },
  26215. {
  26216. name: "True Layla",
  26217. height: math.unit(200000 * 7, "multiverses")
  26218. },
  26219. ]
  26220. ))
  26221. characterMakers.push(() => makeCharacter(
  26222. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26223. {
  26224. back: {
  26225. height: math.unit(10.5, "feet"),
  26226. weight: math.unit(800, "lb"),
  26227. name: "Back",
  26228. image: {
  26229. source: "./media/characters/knox/back.svg",
  26230. extra: 1486 / 1089,
  26231. bottom: 107 / 1601.4
  26232. }
  26233. },
  26234. side: {
  26235. height: math.unit(10.5, "feet"),
  26236. weight: math.unit(800, "lb"),
  26237. name: "Side",
  26238. image: {
  26239. source: "./media/characters/knox/side.svg",
  26240. extra: 244 / 218,
  26241. bottom: 14 / 260
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Compact",
  26248. height: math.unit(10.5, "feet"),
  26249. default: true
  26250. },
  26251. {
  26252. name: "Dynamax",
  26253. height: math.unit(210, "feet")
  26254. },
  26255. {
  26256. name: "Full Macro",
  26257. height: math.unit(850, "feet")
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(28, "feet"),
  26266. weight: math.unit(10500, "lb"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/kayda/front.svg",
  26270. extra: 1536 / 1428,
  26271. bottom: 68.7 / 1603
  26272. }
  26273. },
  26274. back: {
  26275. height: math.unit(28, "feet"),
  26276. weight: math.unit(10500, "lb"),
  26277. name: "Back",
  26278. image: {
  26279. source: "./media/characters/kayda/back.svg",
  26280. extra: 1557 / 1464,
  26281. bottom: 39.5 / 1597.49
  26282. }
  26283. },
  26284. dick: {
  26285. height: math.unit(3.858, "feet"),
  26286. name: "Dick",
  26287. image: {
  26288. source: "./media/characters/kayda/dick.svg"
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Macro",
  26295. height: math.unit(28, "feet"),
  26296. default: true
  26297. },
  26298. ]
  26299. ))
  26300. characterMakers.push(() => makeCharacter(
  26301. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26302. {
  26303. front: {
  26304. height: math.unit(10 + 11 / 12, "feet"),
  26305. weight: math.unit(1400, "lb"),
  26306. name: "Front",
  26307. image: {
  26308. source: "./media/characters/brian/front.svg",
  26309. extra: 737 / 692,
  26310. bottom: 55.4 / 785
  26311. }
  26312. },
  26313. },
  26314. [
  26315. {
  26316. name: "Normal",
  26317. height: math.unit(10 + 11 / 12, "feet"),
  26318. default: true
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(5 + 8 / 12, "feet"),
  26327. weight: math.unit(140, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/khemri/front.svg",
  26331. extra: 4780 / 4059,
  26332. bottom: 80.1 / 4859.25
  26333. }
  26334. },
  26335. },
  26336. [
  26337. {
  26338. name: "Micro",
  26339. height: math.unit(6, "inches")
  26340. },
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(5 + 8 / 12, "feet"),
  26344. default: true
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26350. {
  26351. front: {
  26352. height: math.unit(13, "feet"),
  26353. weight: math.unit(1700, "lb"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/felix-braveheart/front.svg",
  26357. extra: 1222 / 1157,
  26358. bottom: 53.2 / 1280
  26359. }
  26360. },
  26361. back: {
  26362. height: math.unit(13, "feet"),
  26363. weight: math.unit(1700, "lb"),
  26364. name: "Back",
  26365. image: {
  26366. source: "./media/characters/felix-braveheart/back.svg",
  26367. extra: 1277 / 1203,
  26368. bottom: 50.2 / 1327
  26369. }
  26370. },
  26371. feral: {
  26372. height: math.unit(6, "feet"),
  26373. weight: math.unit(400, "lb"),
  26374. name: "Feral",
  26375. image: {
  26376. source: "./media/characters/felix-braveheart/feral.svg",
  26377. extra: 682 / 625,
  26378. bottom: 6.9 / 688
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Normal",
  26385. height: math.unit(13, "feet"),
  26386. default: true
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26392. {
  26393. side: {
  26394. height: math.unit(5 + 11 / 12, "feet"),
  26395. weight: math.unit(1400, "lb"),
  26396. name: "Side",
  26397. image: {
  26398. source: "./media/characters/shadow-blade/side.svg",
  26399. extra: 1726 / 1267,
  26400. bottom: 58.4 / 1785
  26401. }
  26402. },
  26403. },
  26404. [
  26405. {
  26406. name: "Normal",
  26407. height: math.unit(5 + 11 / 12, "feet"),
  26408. default: true
  26409. },
  26410. ]
  26411. ))
  26412. characterMakers.push(() => makeCharacter(
  26413. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26414. {
  26415. front: {
  26416. height: math.unit(1 + 6 / 12, "feet"),
  26417. weight: math.unit(25, "lb"),
  26418. name: "Front",
  26419. image: {
  26420. source: "./media/characters/karla-halldor/front.svg",
  26421. extra: 1459 / 1383,
  26422. bottom: 12 / 1472
  26423. }
  26424. },
  26425. },
  26426. [
  26427. {
  26428. name: "Normal",
  26429. height: math.unit(1 + 6 / 12, "feet"),
  26430. default: true
  26431. },
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(6 + 2 / 12, "feet"),
  26439. weight: math.unit(160, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/ariam/front.svg",
  26443. extra: 1073/976,
  26444. bottom: 52/1125
  26445. }
  26446. },
  26447. back: {
  26448. height: math.unit(6 + 2/12, "feet"),
  26449. weight: math.unit(160, "lb"),
  26450. name: "Back",
  26451. image: {
  26452. source: "./media/characters/ariam/back.svg",
  26453. extra: 1103/1023,
  26454. bottom: 9/1112
  26455. }
  26456. },
  26457. dressed: {
  26458. height: math.unit(6 + 2/12, "feet"),
  26459. weight: math.unit(160, "lb"),
  26460. name: "Dressed",
  26461. image: {
  26462. source: "./media/characters/ariam/dressed.svg",
  26463. extra: 1099/1009,
  26464. bottom: 25/1124
  26465. }
  26466. },
  26467. squatting: {
  26468. height: math.unit(4.1, "feet"),
  26469. weight: math.unit(160, "lb"),
  26470. name: "Squatting",
  26471. image: {
  26472. source: "./media/characters/ariam/squatting.svg",
  26473. extra: 2617 / 2112,
  26474. bottom: 61.2 / 2681,
  26475. }
  26476. },
  26477. },
  26478. [
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(6 + 2 / 12, "feet"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Normal+",
  26486. height: math.unit(4, "meters")
  26487. },
  26488. {
  26489. name: "Macro",
  26490. height: math.unit(50, "meters")
  26491. },
  26492. {
  26493. name: "Macro+",
  26494. height: math.unit(100, "meters")
  26495. },
  26496. {
  26497. name: "Megamacro",
  26498. height: math.unit(20, "km")
  26499. },
  26500. {
  26501. name: "Caretaker",
  26502. height: math.unit(444, "megameters")
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(1.67, "meters"),
  26511. weight: math.unit(140, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26515. extra: 438 / 410,
  26516. bottom: 0.75 / 439
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Shrunken",
  26523. height: math.unit(7.6, "cm")
  26524. },
  26525. {
  26526. name: "Human Scale",
  26527. height: math.unit(1.67, "meters")
  26528. },
  26529. {
  26530. name: "Wolxi Scale",
  26531. height: math.unit(36.7, "meters"),
  26532. default: true
  26533. },
  26534. ]
  26535. ))
  26536. characterMakers.push(() => makeCharacter(
  26537. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26538. {
  26539. front: {
  26540. height: math.unit(1.73, "meters"),
  26541. weight: math.unit(240, "lb"),
  26542. name: "Front",
  26543. image: {
  26544. source: "./media/characters/izue-two-mothers/front.svg",
  26545. extra: 469 / 437,
  26546. bottom: 1.24 / 470.6
  26547. }
  26548. },
  26549. },
  26550. [
  26551. {
  26552. name: "Shrunken",
  26553. height: math.unit(7.86, "cm")
  26554. },
  26555. {
  26556. name: "Human Scale",
  26557. height: math.unit(1.73, "meters")
  26558. },
  26559. {
  26560. name: "Wolxi Scale",
  26561. height: math.unit(38, "meters"),
  26562. default: true
  26563. },
  26564. ]
  26565. ))
  26566. characterMakers.push(() => makeCharacter(
  26567. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26568. {
  26569. front: {
  26570. height: math.unit(1.55, "meters"),
  26571. weight: math.unit(120, "lb"),
  26572. name: "Front",
  26573. image: {
  26574. source: "./media/characters/teeku-love-shack/front.svg",
  26575. extra: 387 / 362,
  26576. bottom: 1.51 / 388
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Shrunken",
  26583. height: math.unit(7, "cm")
  26584. },
  26585. {
  26586. name: "Human Scale",
  26587. height: math.unit(1.55, "meters")
  26588. },
  26589. {
  26590. name: "Wolxi Scale",
  26591. height: math.unit(34.1, "meters"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(1.83, "meters"),
  26601. weight: math.unit(135, "lb"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/dejma-the-red/front.svg",
  26605. extra: 480 / 458,
  26606. bottom: 1.8 / 482
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Shrunken",
  26613. height: math.unit(8.3, "cm")
  26614. },
  26615. {
  26616. name: "Human Scale",
  26617. height: math.unit(1.83, "meters")
  26618. },
  26619. {
  26620. name: "Wolxi Scale",
  26621. height: math.unit(40, "meters"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(1.78, "meters"),
  26631. weight: math.unit(65, "kg"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/aki/front.svg",
  26635. extra: 452 / 415
  26636. }
  26637. },
  26638. frontNsfw: {
  26639. height: math.unit(1.78, "meters"),
  26640. weight: math.unit(65, "kg"),
  26641. name: "Front (NSFW)",
  26642. image: {
  26643. source: "./media/characters/aki/front-nsfw.svg",
  26644. extra: 452 / 415
  26645. }
  26646. },
  26647. back: {
  26648. height: math.unit(1.78, "meters"),
  26649. weight: math.unit(65, "kg"),
  26650. name: "Back",
  26651. image: {
  26652. source: "./media/characters/aki/back.svg",
  26653. extra: 452 / 415
  26654. }
  26655. },
  26656. rump: {
  26657. height: math.unit(2.05, "feet"),
  26658. name: "Rump",
  26659. image: {
  26660. source: "./media/characters/aki/rump.svg"
  26661. }
  26662. },
  26663. dick: {
  26664. height: math.unit(0.95, "feet"),
  26665. name: "Dick",
  26666. image: {
  26667. source: "./media/characters/aki/dick.svg"
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Micro",
  26674. height: math.unit(15, "cm")
  26675. },
  26676. {
  26677. name: "Normal",
  26678. height: math.unit(178, "cm"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(214, "m")
  26684. },
  26685. {
  26686. name: "Macro+",
  26687. height: math.unit(534, "m")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(5 + 5 / 12, "feet"),
  26696. weight: math.unit(120, "lb"),
  26697. name: "Front",
  26698. image: {
  26699. source: "./media/characters/ari/front.svg",
  26700. extra: 1550/1471,
  26701. bottom: 39/1589
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Normal",
  26708. height: math.unit(5 + 5 / 12, "feet")
  26709. },
  26710. {
  26711. name: "Macro",
  26712. height: math.unit(100, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Megamacro",
  26717. height: math.unit(100, "miles")
  26718. },
  26719. {
  26720. name: "Gigamacro",
  26721. height: math.unit(80000, "miles")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26727. {
  26728. side: {
  26729. height: math.unit(9, "feet"),
  26730. weight: math.unit(400, "kg"),
  26731. name: "Side",
  26732. image: {
  26733. source: "./media/characters/bolt/side.svg",
  26734. extra: 1126 / 896,
  26735. bottom: 60 / 1187.3,
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Micro",
  26742. height: math.unit(5, "inches")
  26743. },
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(9, "feet"),
  26747. default: true
  26748. },
  26749. {
  26750. name: "Macro",
  26751. height: math.unit(700, "feet")
  26752. },
  26753. {
  26754. name: "Max Size",
  26755. height: math.unit(1.52e22, "yottameters")
  26756. },
  26757. ]
  26758. ))
  26759. characterMakers.push(() => makeCharacter(
  26760. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26761. {
  26762. front: {
  26763. height: math.unit(4.3, "meters"),
  26764. weight: math.unit(3, "tons"),
  26765. name: "Front",
  26766. image: {
  26767. source: "./media/characters/draekon-sylviar/front.svg",
  26768. extra: 2072/1512,
  26769. bottom: 74/2146
  26770. }
  26771. },
  26772. back: {
  26773. height: math.unit(4.3, "meters"),
  26774. weight: math.unit(3, "tons"),
  26775. name: "Back",
  26776. image: {
  26777. source: "./media/characters/draekon-sylviar/back.svg",
  26778. extra: 1639/1483,
  26779. bottom: 41/1680
  26780. }
  26781. },
  26782. feral: {
  26783. height: math.unit(1.15, "meters"),
  26784. weight: math.unit(3, "tons"),
  26785. name: "Feral",
  26786. image: {
  26787. source: "./media/characters/draekon-sylviar/feral.svg",
  26788. extra: 1033/395,
  26789. bottom: 130/1163
  26790. }
  26791. },
  26792. maw: {
  26793. height: math.unit(1.3, "meters"),
  26794. name: "Maw",
  26795. image: {
  26796. source: "./media/characters/draekon-sylviar/maw.svg"
  26797. }
  26798. },
  26799. mawSeparated: {
  26800. height: math.unit(1.53, "meters"),
  26801. name: "Separated Maw",
  26802. image: {
  26803. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26804. }
  26805. },
  26806. tail: {
  26807. height: math.unit(1.15, "meters"),
  26808. name: "Tail",
  26809. image: {
  26810. source: "./media/characters/draekon-sylviar/tail.svg"
  26811. }
  26812. },
  26813. tailDick: {
  26814. height: math.unit(1.15, "meters"),
  26815. name: "Tail (Dick)",
  26816. image: {
  26817. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26818. }
  26819. },
  26820. tailDickSeparated: {
  26821. height: math.unit(1.19, "meters"),
  26822. name: "Tail (Separated Dick)",
  26823. image: {
  26824. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26825. }
  26826. },
  26827. slit: {
  26828. height: math.unit(1, "meters"),
  26829. name: "Slit",
  26830. image: {
  26831. source: "./media/characters/draekon-sylviar/slit.svg"
  26832. }
  26833. },
  26834. dick: {
  26835. height: math.unit(1.15, "meters"),
  26836. name: "Dick",
  26837. image: {
  26838. source: "./media/characters/draekon-sylviar/dick.svg"
  26839. }
  26840. },
  26841. dickSeparated: {
  26842. height: math.unit(1.1, "meters"),
  26843. name: "Separated Dick",
  26844. image: {
  26845. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26846. }
  26847. },
  26848. sheath: {
  26849. height: math.unit(1.15, "meters"),
  26850. name: "Sheath",
  26851. image: {
  26852. source: "./media/characters/draekon-sylviar/sheath.svg"
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Small",
  26859. height: math.unit(4.53 / 2, "meters"),
  26860. default: true
  26861. },
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(4.53, "meters"),
  26865. default: true
  26866. },
  26867. {
  26868. name: "Large",
  26869. height: math.unit(4.53 * 2, "meters"),
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(6 + 2 / 12, "feet"),
  26878. weight: math.unit(180, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/brawler/front.svg",
  26882. extra: 3301 / 3027,
  26883. bottom: 138 / 3439
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(6 + 2 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(11, "feet"),
  26900. weight: math.unit(1000, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/alex/front.svg",
  26904. bottom: 44.5 / 620
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Micro",
  26911. height: math.unit(5, "inches")
  26912. },
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(11, "feet"),
  26916. default: true
  26917. },
  26918. {
  26919. name: "Macro",
  26920. height: math.unit(9.5e9, "feet")
  26921. },
  26922. {
  26923. name: "Max Size",
  26924. height: math.unit(1.4e283, "yottameters")
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26930. {
  26931. female: {
  26932. height: math.unit(29.9, "m"),
  26933. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26934. name: "Female",
  26935. image: {
  26936. source: "./media/characters/zenari/female.svg",
  26937. extra: 3281.6 / 3217,
  26938. bottom: 72.2 / 3353
  26939. }
  26940. },
  26941. male: {
  26942. height: math.unit(27.7, "m"),
  26943. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26944. name: "Male",
  26945. image: {
  26946. source: "./media/characters/zenari/male.svg",
  26947. extra: 3008 / 2991,
  26948. bottom: 54.6 / 3069
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Macro",
  26955. height: math.unit(29.7, "meters"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26962. {
  26963. female: {
  26964. height: math.unit(23.8, "m"),
  26965. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26966. name: "Female",
  26967. image: {
  26968. source: "./media/characters/mactarian/female.svg",
  26969. extra: 2662 / 2569,
  26970. bottom: 73 / 2736
  26971. }
  26972. },
  26973. male: {
  26974. height: math.unit(23.8, "m"),
  26975. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26976. name: "Male",
  26977. image: {
  26978. source: "./media/characters/mactarian/male.svg",
  26979. extra: 2673 / 2600,
  26980. bottom: 76 / 2750
  26981. }
  26982. },
  26983. },
  26984. [
  26985. {
  26986. name: "Macro",
  26987. height: math.unit(23.8, "meters"),
  26988. default: true
  26989. },
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26994. {
  26995. female: {
  26996. height: math.unit(19.3, "m"),
  26997. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26998. name: "Female",
  26999. image: {
  27000. source: "./media/characters/umok/female.svg",
  27001. extra: 2186 / 2078,
  27002. bottom: 87 / 2277
  27003. }
  27004. },
  27005. male: {
  27006. height: math.unit(19.5, "m"),
  27007. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27008. name: "Male",
  27009. image: {
  27010. source: "./media/characters/umok/male.svg",
  27011. extra: 2233 / 2140,
  27012. bottom: 24.4 / 2258
  27013. }
  27014. },
  27015. },
  27016. [
  27017. {
  27018. name: "Macro",
  27019. height: math.unit(19.3, "meters"),
  27020. default: true
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27026. {
  27027. female: {
  27028. height: math.unit(26.15, "m"),
  27029. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27030. name: "Female",
  27031. image: {
  27032. source: "./media/characters/joraxian/female.svg",
  27033. extra: 2912 / 2824,
  27034. bottom: 36 / 2956
  27035. }
  27036. },
  27037. male: {
  27038. height: math.unit(25.4, "m"),
  27039. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27040. name: "Male",
  27041. image: {
  27042. source: "./media/characters/joraxian/male.svg",
  27043. extra: 2877 / 2721,
  27044. bottom: 82 / 2967
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Macro",
  27051. height: math.unit(26.15, "meters"),
  27052. default: true
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27058. {
  27059. female: {
  27060. height: math.unit(21.6, "m"),
  27061. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27062. name: "Female",
  27063. image: {
  27064. source: "./media/characters/sthara/female.svg",
  27065. extra: 2516 / 2347,
  27066. bottom: 21.5 / 2537
  27067. }
  27068. },
  27069. male: {
  27070. height: math.unit(24, "m"),
  27071. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27072. name: "Male",
  27073. image: {
  27074. source: "./media/characters/sthara/male.svg",
  27075. extra: 2732 / 2607,
  27076. bottom: 23 / 2732
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Macro",
  27083. height: math.unit(21.6, "meters"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(6 + 4 / 12, "feet"),
  27093. weight: math.unit(175, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/luka-bryzant/front.svg",
  27097. extra: 311 / 289,
  27098. bottom: 4 / 315
  27099. }
  27100. },
  27101. back: {
  27102. height: math.unit(6 + 4 / 12, "feet"),
  27103. weight: math.unit(175, "lb"),
  27104. name: "Back",
  27105. image: {
  27106. source: "./media/characters/luka-bryzant/back.svg",
  27107. extra: 311 / 289,
  27108. bottom: 3.8 / 313.7
  27109. }
  27110. },
  27111. },
  27112. [
  27113. {
  27114. name: "Micro",
  27115. height: math.unit(10, "inches")
  27116. },
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(6 + 4 / 12, "feet"),
  27120. default: true
  27121. },
  27122. {
  27123. name: "Large",
  27124. height: math.unit(12, "feet")
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(5 + 7 / 12, "feet"),
  27133. weight: math.unit(185, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/aman-aquila/front.svg",
  27137. extra: 1013 / 976,
  27138. bottom: 45.6 / 1057
  27139. }
  27140. },
  27141. side: {
  27142. height: math.unit(5 + 7 / 12, "feet"),
  27143. weight: math.unit(185, "lb"),
  27144. name: "Side",
  27145. image: {
  27146. source: "./media/characters/aman-aquila/side.svg",
  27147. extra: 1054 / 1011,
  27148. bottom: 15 / 1070
  27149. }
  27150. },
  27151. back: {
  27152. height: math.unit(5 + 7 / 12, "feet"),
  27153. weight: math.unit(185, "lb"),
  27154. name: "Back",
  27155. image: {
  27156. source: "./media/characters/aman-aquila/back.svg",
  27157. extra: 1026 / 970,
  27158. bottom: 12 / 1039
  27159. }
  27160. },
  27161. head: {
  27162. height: math.unit(1.211, "feet"),
  27163. name: "Head",
  27164. image: {
  27165. source: "./media/characters/aman-aquila/head.svg",
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Minimicro",
  27172. height: math.unit(0.057, "inches")
  27173. },
  27174. {
  27175. name: "Micro",
  27176. height: math.unit(7, "inches")
  27177. },
  27178. {
  27179. name: "Mini",
  27180. height: math.unit(3 + 7 / 12, "feet")
  27181. },
  27182. {
  27183. name: "Normal",
  27184. height: math.unit(5 + 7 / 12, "feet"),
  27185. default: true
  27186. },
  27187. {
  27188. name: "Macro",
  27189. height: math.unit(157 + 7 / 12, "feet")
  27190. },
  27191. {
  27192. name: "Megamacro",
  27193. height: math.unit(1557 + 7 / 12, "feet")
  27194. },
  27195. {
  27196. name: "Gigamacro",
  27197. height: math.unit(15557 + 7 / 12, "feet")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(3 + 2 / 12, "inches"),
  27206. weight: math.unit(0.3, "ounces"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/hiphae/front.svg",
  27210. extra: 1931 / 1683,
  27211. bottom: 24 / 1955
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(3 + 1 / 2, "inches"),
  27219. default: true
  27220. },
  27221. ]
  27222. ))
  27223. characterMakers.push(() => makeCharacter(
  27224. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27225. {
  27226. front: {
  27227. height: math.unit(5 + 10 / 12, "feet"),
  27228. weight: math.unit(165, "lb"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/nicky/front.svg",
  27232. extra: 3144 / 2886,
  27233. bottom: 45.6 / 3192
  27234. }
  27235. },
  27236. back: {
  27237. height: math.unit(5 + 10 / 12, "feet"),
  27238. weight: math.unit(165, "lb"),
  27239. name: "Back",
  27240. image: {
  27241. source: "./media/characters/nicky/back.svg",
  27242. extra: 3055 / 2804,
  27243. bottom: 28.4 / 3087
  27244. }
  27245. },
  27246. frontclothed: {
  27247. height: math.unit(5 + 10 / 12, "feet"),
  27248. weight: math.unit(165, "lb"),
  27249. name: "Front-clothed",
  27250. image: {
  27251. source: "./media/characters/nicky/front-clothed.svg",
  27252. extra: 3184.9 / 2926.9,
  27253. bottom: 86.5 / 3239.9
  27254. }
  27255. },
  27256. foot: {
  27257. height: math.unit(1.16, "feet"),
  27258. name: "Foot",
  27259. image: {
  27260. source: "./media/characters/nicky/foot.svg"
  27261. }
  27262. },
  27263. feet: {
  27264. height: math.unit(1.34, "feet"),
  27265. name: "Feet",
  27266. image: {
  27267. source: "./media/characters/nicky/feet.svg"
  27268. }
  27269. },
  27270. maw: {
  27271. height: math.unit(0.9, "feet"),
  27272. name: "Maw",
  27273. image: {
  27274. source: "./media/characters/nicky/maw.svg"
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(5 + 10 / 12, "feet"),
  27282. default: true
  27283. },
  27284. {
  27285. name: "Macro",
  27286. height: math.unit(60, "feet")
  27287. },
  27288. {
  27289. name: "Megamacro",
  27290. height: math.unit(1, "mile")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27296. {
  27297. side: {
  27298. height: math.unit(10, "feet"),
  27299. weight: math.unit(600, "lb"),
  27300. name: "Side",
  27301. image: {
  27302. source: "./media/characters/blair/side.svg",
  27303. bottom: 16.6 / 475,
  27304. extra: 458 / 431
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Micro",
  27311. height: math.unit(8, "inches")
  27312. },
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(10, "feet"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Macro",
  27320. height: math.unit(180, "feet")
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(5 + 4 / 12, "feet"),
  27329. weight: math.unit(125, "lb"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/fisher/front.svg",
  27333. extra: 444 / 390,
  27334. bottom: 2 / 444.8
  27335. }
  27336. },
  27337. },
  27338. [
  27339. {
  27340. name: "Micro",
  27341. height: math.unit(4, "inches")
  27342. },
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(5 + 4 / 12, "feet"),
  27346. default: true
  27347. },
  27348. {
  27349. name: "Macro",
  27350. height: math.unit(100, "feet")
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(6.71, "feet"),
  27359. weight: math.unit(200, "lb"),
  27360. preyCapacity: math.unit(1000000, "people"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/gliss/front.svg",
  27364. extra: 2347 / 2231,
  27365. bottom: 113 / 2462
  27366. }
  27367. },
  27368. hammerspaceSize: {
  27369. height: math.unit(6.71 * 717, "feet"),
  27370. weight: math.unit(200, "lb"),
  27371. preyCapacity: math.unit(1000000, "people"),
  27372. name: "Hammerspace Size",
  27373. image: {
  27374. source: "./media/characters/gliss/front.svg",
  27375. extra: 2347 / 2231,
  27376. bottom: 113 / 2462
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(6.71, "feet"),
  27384. default: true
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27390. {
  27391. side: {
  27392. height: math.unit(1.44, "m"),
  27393. weight: math.unit(80, "kg"),
  27394. name: "Side",
  27395. image: {
  27396. source: "./media/characters/dune-anderson/side.svg",
  27397. bottom: 49 / 1426
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Wolf-sized",
  27404. height: math.unit(1.44, "meters")
  27405. },
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(5.05, "meters"),
  27409. default: true
  27410. },
  27411. {
  27412. name: "Big",
  27413. height: math.unit(14.4, "meters")
  27414. },
  27415. {
  27416. name: "Huge",
  27417. height: math.unit(144, "meters")
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27423. {
  27424. front: {
  27425. height: math.unit(7, "feet"),
  27426. weight: math.unit(425, "lb"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/hind/front.svg",
  27430. extra: 2091 / 1860,
  27431. bottom: 129 / 2220
  27432. }
  27433. },
  27434. back: {
  27435. height: math.unit(7, "feet"),
  27436. weight: math.unit(425, "lb"),
  27437. name: "Back",
  27438. image: {
  27439. source: "./media/characters/hind/back.svg",
  27440. extra: 2091 / 1860,
  27441. bottom: 24.6 / 2309
  27442. }
  27443. },
  27444. tail: {
  27445. height: math.unit(2.8, "feet"),
  27446. name: "Tail",
  27447. image: {
  27448. source: "./media/characters/hind/tail.svg"
  27449. }
  27450. },
  27451. head: {
  27452. height: math.unit(2.55, "feet"),
  27453. name: "Head",
  27454. image: {
  27455. source: "./media/characters/hind/head.svg"
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "XS",
  27462. height: math.unit(0.7, "feet")
  27463. },
  27464. {
  27465. name: "Normal",
  27466. height: math.unit(7, "feet"),
  27467. default: true
  27468. },
  27469. {
  27470. name: "XL",
  27471. height: math.unit(70, "feet")
  27472. },
  27473. ]
  27474. ))
  27475. characterMakers.push(() => makeCharacter(
  27476. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27477. {
  27478. front: {
  27479. height: math.unit(2.1, "meters"),
  27480. weight: math.unit(150, "lb"),
  27481. name: "Front",
  27482. image: {
  27483. source: "./media/characters/tharquench-sizestealer/front.svg",
  27484. extra: 1605/1470,
  27485. bottom: 36/1641
  27486. }
  27487. },
  27488. frontAlt: {
  27489. height: math.unit(2.1, "meters"),
  27490. weight: math.unit(150, "lb"),
  27491. name: "Front (Alt)",
  27492. image: {
  27493. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27494. extra: 2318 / 2063,
  27495. bottom: 93.4 / 2410
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Nano",
  27502. height: math.unit(1, "mm")
  27503. },
  27504. {
  27505. name: "Micro",
  27506. height: math.unit(1, "cm")
  27507. },
  27508. {
  27509. name: "Normal",
  27510. height: math.unit(2.1, "meters"),
  27511. default: true
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27517. {
  27518. front: {
  27519. height: math.unit(7 + 5 / 12, "feet"),
  27520. weight: math.unit(357, "lb"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/solex-draconov/front.svg",
  27524. extra: 1993 / 1865,
  27525. bottom: 117 / 2111
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Natural Height",
  27532. height: math.unit(7 + 5 / 12, "feet"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Macro",
  27537. height: math.unit(350, "feet")
  27538. },
  27539. {
  27540. name: "Macro+",
  27541. height: math.unit(1000, "feet")
  27542. },
  27543. {
  27544. name: "Megamacro",
  27545. height: math.unit(20, "km")
  27546. },
  27547. {
  27548. name: "Megamacro+",
  27549. height: math.unit(1000, "km")
  27550. },
  27551. {
  27552. name: "Gigamacro",
  27553. height: math.unit(2.5, "Gm")
  27554. },
  27555. {
  27556. name: "Teramacro",
  27557. height: math.unit(15, "Tm")
  27558. },
  27559. {
  27560. name: "Galactic",
  27561. height: math.unit(30, "Zm")
  27562. },
  27563. {
  27564. name: "Universal",
  27565. height: math.unit(21000, "Ym")
  27566. },
  27567. {
  27568. name: "Omniversal",
  27569. height: math.unit(9.861e50, "Ym")
  27570. },
  27571. {
  27572. name: "Existential",
  27573. height: math.unit(1e300, "meters")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27579. {
  27580. side: {
  27581. height: math.unit(25, "feet"),
  27582. weight: math.unit(90000, "lb"),
  27583. name: "Side",
  27584. image: {
  27585. source: "./media/characters/mandarax/side.svg",
  27586. extra: 614 / 332,
  27587. bottom: 55 / 630
  27588. }
  27589. },
  27590. lounging: {
  27591. height: math.unit(15.4, "feet"),
  27592. weight: math.unit(90000, "lb"),
  27593. name: "Lounging",
  27594. image: {
  27595. source: "./media/characters/mandarax/lounging.svg",
  27596. extra: 817/609,
  27597. bottom: 685/1502
  27598. }
  27599. },
  27600. head: {
  27601. height: math.unit(11.4, "feet"),
  27602. name: "Head",
  27603. image: {
  27604. source: "./media/characters/mandarax/head.svg"
  27605. }
  27606. },
  27607. belly: {
  27608. height: math.unit(33, "feet"),
  27609. name: "Belly",
  27610. preyCapacity: math.unit(500, "people"),
  27611. image: {
  27612. source: "./media/characters/mandarax/belly.svg"
  27613. }
  27614. },
  27615. dick: {
  27616. height: math.unit(8.46, "feet"),
  27617. name: "Dick",
  27618. image: {
  27619. source: "./media/characters/mandarax/dick.svg"
  27620. }
  27621. },
  27622. top: {
  27623. height: math.unit(28, "meters"),
  27624. name: "Top",
  27625. image: {
  27626. source: "./media/characters/mandarax/top.svg"
  27627. }
  27628. },
  27629. },
  27630. [
  27631. {
  27632. name: "Normal",
  27633. height: math.unit(25, "feet"),
  27634. default: true
  27635. },
  27636. ]
  27637. ))
  27638. characterMakers.push(() => makeCharacter(
  27639. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27640. {
  27641. front: {
  27642. height: math.unit(5, "feet"),
  27643. weight: math.unit(90, "lb"),
  27644. name: "Front",
  27645. image: {
  27646. source: "./media/characters/pixil/front.svg",
  27647. extra: 2000 / 1618,
  27648. bottom: 12.3 / 2011
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(5, "feet"),
  27656. default: true
  27657. },
  27658. {
  27659. name: "Megamacro",
  27660. height: math.unit(10, "miles"),
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(7 + 2 / 12, "feet"),
  27669. weight: math.unit(200, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/angel/front.svg",
  27673. extra: 1946/1840,
  27674. bottom: 30/1976
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(7 + 2 / 12, "feet"),
  27682. default: true
  27683. },
  27684. {
  27685. name: "Macro",
  27686. height: math.unit(1000, "feet")
  27687. },
  27688. {
  27689. name: "Megamacro",
  27690. height: math.unit(2, "miles")
  27691. },
  27692. {
  27693. name: "Gigamacro",
  27694. height: math.unit(20, "earths")
  27695. },
  27696. ]
  27697. ))
  27698. characterMakers.push(() => makeCharacter(
  27699. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27700. {
  27701. front: {
  27702. height: math.unit(5, "feet"),
  27703. weight: math.unit(180, "lb"),
  27704. name: "Front",
  27705. image: {
  27706. source: "./media/characters/mekana/front.svg",
  27707. extra: 1671 / 1605,
  27708. bottom: 3.5 / 1691
  27709. }
  27710. },
  27711. side: {
  27712. height: math.unit(5, "feet"),
  27713. weight: math.unit(180, "lb"),
  27714. name: "Side",
  27715. image: {
  27716. source: "./media/characters/mekana/side.svg",
  27717. extra: 1671 / 1605,
  27718. bottom: 3.5 / 1691
  27719. }
  27720. },
  27721. back: {
  27722. height: math.unit(5, "feet"),
  27723. weight: math.unit(180, "lb"),
  27724. name: "Back",
  27725. image: {
  27726. source: "./media/characters/mekana/back.svg",
  27727. extra: 1671 / 1605,
  27728. bottom: 3.5 / 1691
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(5, "feet"),
  27736. default: true
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(4 + 6 / 12, "feet"),
  27745. weight: math.unit(80, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/pixie/front.svg",
  27749. extra: 1924 / 1825,
  27750. bottom: 22.4 / 1946
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Normal",
  27757. height: math.unit(4 + 6 / 12, "feet"),
  27758. default: true
  27759. },
  27760. {
  27761. name: "Macro",
  27762. height: math.unit(40, "feet")
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27768. {
  27769. front: {
  27770. height: math.unit(2.1, "meters"),
  27771. weight: math.unit(200, "lb"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/the-lascivious/front.svg",
  27775. extra: 1 / 0.893,
  27776. bottom: 3.5 / 573.7
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Human Scale",
  27783. height: math.unit(2.1, "meters")
  27784. },
  27785. {
  27786. name: "Wolxi Scale",
  27787. height: math.unit(46.2, "m"),
  27788. default: true
  27789. },
  27790. {
  27791. name: "Boinker of Buildings",
  27792. height: math.unit(10, "km")
  27793. },
  27794. {
  27795. name: "Shagger of Skyscrapers",
  27796. height: math.unit(40, "km")
  27797. },
  27798. {
  27799. name: "Banger of Boroughs",
  27800. height: math.unit(4000, "km")
  27801. },
  27802. {
  27803. name: "Screwer of States",
  27804. height: math.unit(100000, "km")
  27805. },
  27806. {
  27807. name: "Pounder of Planets",
  27808. height: math.unit(2000000, "km")
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27814. {
  27815. front: {
  27816. height: math.unit(6, "feet"),
  27817. weight: math.unit(150, "lb"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/aj/front.svg",
  27821. extra: 2039 / 1562,
  27822. bottom: 40 / 2079
  27823. }
  27824. },
  27825. },
  27826. [
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(11 + 6 / 12, "feet"),
  27830. default: true
  27831. },
  27832. {
  27833. name: "Megamacro",
  27834. height: math.unit(60, "megameters")
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27840. {
  27841. side: {
  27842. height: math.unit(31 + 8 / 12, "feet"),
  27843. weight: math.unit(75000, "kg"),
  27844. name: "Side",
  27845. image: {
  27846. source: "./media/characters/koros/side.svg",
  27847. extra: 1442 / 1297,
  27848. bottom: 122.7 / 1562
  27849. }
  27850. },
  27851. dicksKingsCrown: {
  27852. height: math.unit(6, "feet"),
  27853. name: "Dicks (King's Crown)",
  27854. image: {
  27855. source: "./media/characters/koros/dicks-kings-crown.svg"
  27856. }
  27857. },
  27858. dicksTailSet: {
  27859. height: math.unit(3, "feet"),
  27860. name: "Dicks (Tail Set)",
  27861. image: {
  27862. source: "./media/characters/koros/dicks-tail-set.svg"
  27863. }
  27864. },
  27865. dickCumming: {
  27866. height: math.unit(7.98, "feet"),
  27867. name: "Dick (Cumming)",
  27868. image: {
  27869. source: "./media/characters/koros/dick-cumming.svg"
  27870. }
  27871. },
  27872. dicksBack: {
  27873. height: math.unit(5.9, "feet"),
  27874. name: "Dicks (Back)",
  27875. image: {
  27876. source: "./media/characters/koros/dicks-back.svg"
  27877. }
  27878. },
  27879. dicksFront: {
  27880. height: math.unit(3.72, "feet"),
  27881. name: "Dicks (Front)",
  27882. image: {
  27883. source: "./media/characters/koros/dicks-front.svg"
  27884. }
  27885. },
  27886. dicksPeeking: {
  27887. height: math.unit(3.0, "feet"),
  27888. name: "Dicks (Peeking)",
  27889. image: {
  27890. source: "./media/characters/koros/dicks-peeking.svg"
  27891. }
  27892. },
  27893. eye: {
  27894. height: math.unit(1.7, "feet"),
  27895. name: "Eye",
  27896. image: {
  27897. source: "./media/characters/koros/eye.svg"
  27898. }
  27899. },
  27900. headFront: {
  27901. height: math.unit(11.69, "feet"),
  27902. name: "Head (Front)",
  27903. image: {
  27904. source: "./media/characters/koros/head-front.svg"
  27905. }
  27906. },
  27907. headSide: {
  27908. height: math.unit(14, "feet"),
  27909. name: "Head (Side)",
  27910. image: {
  27911. source: "./media/characters/koros/head-side.svg"
  27912. }
  27913. },
  27914. leg: {
  27915. height: math.unit(17, "feet"),
  27916. name: "Leg",
  27917. image: {
  27918. source: "./media/characters/koros/leg.svg"
  27919. }
  27920. },
  27921. mawSide: {
  27922. height: math.unit(12.8, "feet"),
  27923. name: "Maw (Side)",
  27924. image: {
  27925. source: "./media/characters/koros/maw-side.svg"
  27926. }
  27927. },
  27928. mawSpitting: {
  27929. height: math.unit(17, "feet"),
  27930. name: "Maw (Spitting)",
  27931. image: {
  27932. source: "./media/characters/koros/maw-spitting.svg"
  27933. }
  27934. },
  27935. slit: {
  27936. height: math.unit(2.8, "feet"),
  27937. name: "Slit",
  27938. image: {
  27939. source: "./media/characters/koros/slit.svg"
  27940. }
  27941. },
  27942. stomach: {
  27943. height: math.unit(6.8, "feet"),
  27944. preyCapacity: math.unit(20, "people"),
  27945. name: "Stomach",
  27946. image: {
  27947. source: "./media/characters/koros/stomach.svg"
  27948. }
  27949. },
  27950. wingspanBottom: {
  27951. height: math.unit(114, "feet"),
  27952. name: "Wingspan (Bottom)",
  27953. image: {
  27954. source: "./media/characters/koros/wingspan-bottom.svg"
  27955. }
  27956. },
  27957. wingspanTop: {
  27958. height: math.unit(104, "feet"),
  27959. name: "Wingspan (Top)",
  27960. image: {
  27961. source: "./media/characters/koros/wingspan-top.svg"
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(31 + 8 / 12, "feet"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(18 + 5 / 12, "feet"),
  27978. weight: math.unit(3750, "kg"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/vexx/front.svg",
  27982. extra: 426 / 396,
  27983. bottom: 31.5 / 458
  27984. }
  27985. },
  27986. maw: {
  27987. height: math.unit(6, "feet"),
  27988. name: "Maw",
  27989. image: {
  27990. source: "./media/characters/vexx/maw.svg"
  27991. }
  27992. },
  27993. },
  27994. [
  27995. {
  27996. name: "Normal",
  27997. height: math.unit(18 + 5 / 12, "feet"),
  27998. default: true
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28004. {
  28005. front: {
  28006. height: math.unit(17 + 6 / 12, "feet"),
  28007. weight: math.unit(150, "lb"),
  28008. name: "Front",
  28009. image: {
  28010. source: "./media/characters/baadra/front.svg",
  28011. extra: 1694/1553,
  28012. bottom: 179/1873
  28013. }
  28014. },
  28015. frontAlt: {
  28016. height: math.unit(17 + 6 / 12, "feet"),
  28017. weight: math.unit(150, "lb"),
  28018. name: "Front (Alt)",
  28019. image: {
  28020. source: "./media/characters/baadra/front-alt.svg",
  28021. extra: 3137 / 2890,
  28022. bottom: 168.4 / 3305
  28023. }
  28024. },
  28025. back: {
  28026. height: math.unit(17 + 6 / 12, "feet"),
  28027. weight: math.unit(150, "lb"),
  28028. name: "Back",
  28029. image: {
  28030. source: "./media/characters/baadra/back.svg",
  28031. extra: 3142 / 2890,
  28032. bottom: 220 / 3371
  28033. }
  28034. },
  28035. head: {
  28036. height: math.unit(5.45, "feet"),
  28037. name: "Head",
  28038. image: {
  28039. source: "./media/characters/baadra/head.svg"
  28040. }
  28041. },
  28042. headAngry: {
  28043. height: math.unit(4.95, "feet"),
  28044. name: "Head (Angry)",
  28045. image: {
  28046. source: "./media/characters/baadra/head-angry.svg"
  28047. }
  28048. },
  28049. headOpen: {
  28050. height: math.unit(6, "feet"),
  28051. name: "Head (Open)",
  28052. image: {
  28053. source: "./media/characters/baadra/head-open.svg"
  28054. }
  28055. },
  28056. },
  28057. [
  28058. {
  28059. name: "Normal",
  28060. height: math.unit(17 + 6 / 12, "feet"),
  28061. default: true
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28067. {
  28068. front: {
  28069. height: math.unit(7 + 3 / 12, "feet"),
  28070. weight: math.unit(180, "lb"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/juri/front.svg",
  28074. extra: 1401 / 1237,
  28075. bottom: 18.5 / 1418
  28076. }
  28077. },
  28078. side: {
  28079. height: math.unit(7 + 3 / 12, "feet"),
  28080. weight: math.unit(180, "lb"),
  28081. name: "Side",
  28082. image: {
  28083. source: "./media/characters/juri/side.svg",
  28084. extra: 1424 / 1242,
  28085. bottom: 18.5 / 1447
  28086. }
  28087. },
  28088. sitting: {
  28089. height: math.unit(6, "feet"),
  28090. weight: math.unit(180, "lb"),
  28091. name: "Sitting",
  28092. image: {
  28093. source: "./media/characters/juri/sitting.svg",
  28094. extra: 1270 / 1143,
  28095. bottom: 100 / 1343
  28096. }
  28097. },
  28098. back: {
  28099. height: math.unit(7 + 3 / 12, "feet"),
  28100. weight: math.unit(180, "lb"),
  28101. name: "Back",
  28102. image: {
  28103. source: "./media/characters/juri/back.svg",
  28104. extra: 1377 / 1240,
  28105. bottom: 23.7 / 1405
  28106. }
  28107. },
  28108. maw: {
  28109. height: math.unit(2.8, "feet"),
  28110. name: "Maw",
  28111. image: {
  28112. source: "./media/characters/juri/maw.svg"
  28113. }
  28114. },
  28115. stomach: {
  28116. height: math.unit(0.89, "feet"),
  28117. preyCapacity: math.unit(4, "liters"),
  28118. name: "Stomach",
  28119. image: {
  28120. source: "./media/characters/juri/stomach.svg"
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(7 + 3 / 12, "feet"),
  28128. default: true
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28134. {
  28135. fox: {
  28136. height: math.unit(5 + 6 / 12, "feet"),
  28137. weight: math.unit(140, "lb"),
  28138. name: "Fox",
  28139. image: {
  28140. source: "./media/characters/maxene-sita/fox.svg",
  28141. extra: 146 / 138,
  28142. bottom: 2.1 / 148.19
  28143. }
  28144. },
  28145. foxLaying: {
  28146. height: math.unit(1.70, "feet"),
  28147. weight: math.unit(140, "lb"),
  28148. name: "Fox (Laying)",
  28149. image: {
  28150. source: "./media/characters/maxene-sita/fox-laying.svg",
  28151. extra: 910 / 572,
  28152. bottom: 71 / 981
  28153. }
  28154. },
  28155. kitsune: {
  28156. height: math.unit(10, "feet"),
  28157. weight: math.unit(800, "lb"),
  28158. name: "Kitsune",
  28159. image: {
  28160. source: "./media/characters/maxene-sita/kitsune.svg",
  28161. extra: 185 / 176,
  28162. bottom: 4.7 / 189.9
  28163. }
  28164. },
  28165. hellhound: {
  28166. height: math.unit(10, "feet"),
  28167. weight: math.unit(700, "lb"),
  28168. name: "Hellhound",
  28169. image: {
  28170. source: "./media/characters/maxene-sita/hellhound.svg",
  28171. extra: 1600 / 1545,
  28172. bottom: 81 / 1681
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Normal",
  28179. height: math.unit(5 + 6 / 12, "feet"),
  28180. default: true
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28186. {
  28187. front: {
  28188. height: math.unit(3 + 4 / 12, "feet"),
  28189. weight: math.unit(70, "lb"),
  28190. name: "Front",
  28191. image: {
  28192. source: "./media/characters/maia/front.svg",
  28193. extra: 227 / 219.5,
  28194. bottom: 40 / 267
  28195. }
  28196. },
  28197. back: {
  28198. height: math.unit(3 + 4 / 12, "feet"),
  28199. weight: math.unit(70, "lb"),
  28200. name: "Back",
  28201. image: {
  28202. source: "./media/characters/maia/back.svg",
  28203. extra: 237 / 225
  28204. }
  28205. },
  28206. },
  28207. [
  28208. {
  28209. name: "Normal",
  28210. height: math.unit(3 + 4 / 12, "feet"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(5 + 10 / 12, "feet"),
  28220. weight: math.unit(197, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/jabaro/front.svg",
  28224. extra: 225 / 216,
  28225. bottom: 5.06 / 230
  28226. }
  28227. },
  28228. back: {
  28229. height: math.unit(5 + 10 / 12, "feet"),
  28230. weight: math.unit(197, "lb"),
  28231. name: "Back",
  28232. image: {
  28233. source: "./media/characters/jabaro/back.svg",
  28234. extra: 225 / 219,
  28235. bottom: 1.9 / 227
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Normal",
  28242. height: math.unit(5 + 10 / 12, "feet"),
  28243. default: true
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(5 + 8 / 12, "feet"),
  28252. weight: math.unit(139, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/risa/front.svg",
  28256. extra: 270 / 260,
  28257. bottom: 11.2 / 282
  28258. }
  28259. },
  28260. back: {
  28261. height: math.unit(5 + 8 / 12, "feet"),
  28262. weight: math.unit(139, "lb"),
  28263. name: "Back",
  28264. image: {
  28265. source: "./media/characters/risa/back.svg",
  28266. extra: 264 / 255,
  28267. bottom: 4 / 268
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(5 + 8 / 12, "feet"),
  28275. default: true
  28276. },
  28277. ]
  28278. ))
  28279. characterMakers.push(() => makeCharacter(
  28280. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28281. {
  28282. front: {
  28283. height: math.unit(2 + 11 / 12, "feet"),
  28284. weight: math.unit(30, "lb"),
  28285. name: "Front",
  28286. image: {
  28287. source: "./media/characters/weatley/front.svg",
  28288. bottom: 10.7 / 414,
  28289. extra: 403.5 / 362
  28290. }
  28291. },
  28292. back: {
  28293. height: math.unit(2 + 11 / 12, "feet"),
  28294. weight: math.unit(30, "lb"),
  28295. name: "Back",
  28296. image: {
  28297. source: "./media/characters/weatley/back.svg",
  28298. bottom: 10.7 / 414,
  28299. extra: 403.5 / 362
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Normal",
  28306. height: math.unit(2 + 11 / 12, "feet"),
  28307. default: true
  28308. },
  28309. ]
  28310. ))
  28311. characterMakers.push(() => makeCharacter(
  28312. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28313. {
  28314. front: {
  28315. height: math.unit(5 + 2 / 12, "feet"),
  28316. weight: math.unit(50, "kg"),
  28317. name: "Front",
  28318. image: {
  28319. source: "./media/characters/mercury-crescent/front.svg",
  28320. extra: 1088 / 1033,
  28321. bottom: 18.9 / 1109
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(5 + 2 / 12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(2, "feet"),
  28338. weight: math.unit(15, "kg"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/diamond-jones/front.svg",
  28342. extra: 727/723,
  28343. bottom: 46/773
  28344. }
  28345. },
  28346. },
  28347. [
  28348. {
  28349. name: "Normal",
  28350. height: math.unit(2, "feet"),
  28351. default: true
  28352. },
  28353. ]
  28354. ))
  28355. characterMakers.push(() => makeCharacter(
  28356. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28357. {
  28358. front: {
  28359. height: math.unit(3, "feet"),
  28360. weight: math.unit(30, "kg"),
  28361. name: "Front",
  28362. image: {
  28363. source: "./media/characters/sweet-bit/front.svg",
  28364. extra: 675 / 567,
  28365. bottom: 27.7 / 703
  28366. }
  28367. },
  28368. },
  28369. [
  28370. {
  28371. name: "Normal",
  28372. height: math.unit(3, "feet"),
  28373. default: true
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28379. {
  28380. side: {
  28381. height: math.unit(9.178, "feet"),
  28382. weight: math.unit(500, "lb"),
  28383. name: "Side",
  28384. image: {
  28385. source: "./media/characters/umbrazen/side.svg",
  28386. extra: 1730 / 1473,
  28387. bottom: 34.6 / 1765
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(9.178, "feet"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(10, "feet"),
  28404. weight: math.unit(750, "lb"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/arlist/front.svg",
  28408. extra: 961 / 778,
  28409. bottom: 6.2 / 986
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Normal",
  28416. height: math.unit(10, "feet"),
  28417. default: true
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(5 + 1 / 12, "feet"),
  28426. weight: math.unit(110, "lb"),
  28427. name: "Front",
  28428. image: {
  28429. source: "./media/characters/aradel/front.svg",
  28430. extra: 324 / 303,
  28431. bottom: 3.6 / 329.4
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(5 + 1 / 12, "feet"),
  28439. default: true
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28445. {
  28446. dressed: {
  28447. height: math.unit(3 + 8 / 12, "feet"),
  28448. weight: math.unit(50, "lb"),
  28449. name: "Dressed",
  28450. image: {
  28451. source: "./media/characters/serryn/dressed.svg",
  28452. extra: 1792 / 1656,
  28453. bottom: 43.5 / 1840
  28454. }
  28455. },
  28456. nude: {
  28457. height: math.unit(3 + 8 / 12, "feet"),
  28458. weight: math.unit(50, "lb"),
  28459. name: "Nude",
  28460. image: {
  28461. source: "./media/characters/serryn/nude.svg",
  28462. extra: 1792 / 1656,
  28463. bottom: 43.5 / 1840
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(3 + 8 / 12, "feet"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(7 + 10 / 12, "feet"),
  28480. weight: math.unit(255, "lb"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/xavier-thyme/front.svg",
  28484. extra: 3733 / 3642,
  28485. bottom: 131 / 3869
  28486. }
  28487. },
  28488. frontRaven: {
  28489. height: math.unit(7 + 10 / 12, "feet"),
  28490. weight: math.unit(255, "lb"),
  28491. name: "Front (Raven)",
  28492. image: {
  28493. source: "./media/characters/xavier-thyme/front-raven.svg",
  28494. extra: 4385 / 3642,
  28495. bottom: 131 / 4517
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Normal",
  28502. height: math.unit(7 + 10 / 12, "feet"),
  28503. default: true
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(1.6, "m"),
  28512. weight: math.unit(50, "kg"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/kiki/front.svg",
  28516. extra: 4682 / 3610,
  28517. bottom: 115 / 4777
  28518. }
  28519. },
  28520. },
  28521. [
  28522. {
  28523. name: "Normal",
  28524. height: math.unit(1.6, "meters"),
  28525. default: true
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(50, "m"),
  28534. weight: math.unit(500, "tonnes"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/ryoko/front.svg",
  28538. extra: 4632 / 3926,
  28539. bottom: 193 / 4823
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Normal",
  28546. height: math.unit(50, "meters"),
  28547. default: true
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(30, "m"),
  28556. weight: math.unit(22, "tonnes"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/elio/front.svg",
  28560. extra: 4582 / 3720,
  28561. bottom: 236 / 4828
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(30, "meters"),
  28569. default: true
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(6 + 3 / 12, "feet"),
  28578. weight: math.unit(120, "lb"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/azura/front.svg",
  28582. extra: 1149 / 1135,
  28583. bottom: 45 / 1194
  28584. }
  28585. },
  28586. frontClothed: {
  28587. height: math.unit(6 + 3 / 12, "feet"),
  28588. weight: math.unit(120, "lb"),
  28589. name: "Front (Clothed)",
  28590. image: {
  28591. source: "./media/characters/azura/front-clothed.svg",
  28592. extra: 1149 / 1135,
  28593. bottom: 45 / 1194
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(6 + 3 / 12, "feet"),
  28601. default: true
  28602. },
  28603. {
  28604. name: "Macro",
  28605. height: math.unit(20 + 6 / 12, "feet")
  28606. },
  28607. {
  28608. name: "Megamacro",
  28609. height: math.unit(12, "miles")
  28610. },
  28611. {
  28612. name: "Gigamacro",
  28613. height: math.unit(10000, "miles")
  28614. },
  28615. {
  28616. name: "Teramacro",
  28617. height: math.unit(900000, "miles")
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(12, "feet"),
  28626. weight: math.unit(1, "ton"),
  28627. capacity: math.unit(660000, "gallons"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/zeus/front.svg",
  28631. extra: 5005 / 4717,
  28632. bottom: 363 / 5388
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Normal",
  28639. height: math.unit(12, "feet")
  28640. },
  28641. {
  28642. name: "Preferred Size",
  28643. height: math.unit(0.5, "miles"),
  28644. default: true
  28645. },
  28646. {
  28647. name: "Giga Horse",
  28648. height: math.unit(300, "miles")
  28649. },
  28650. {
  28651. name: "Riding Planets",
  28652. height: math.unit(30, "megameters")
  28653. },
  28654. {
  28655. name: "Cosmic Giant",
  28656. height: math.unit(3, "zettameters")
  28657. },
  28658. {
  28659. name: "Breeding God",
  28660. height: math.unit(9.92e22, "yottameters")
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28666. {
  28667. side: {
  28668. height: math.unit(9, "feet"),
  28669. weight: math.unit(1500, "kg"),
  28670. name: "Side",
  28671. image: {
  28672. source: "./media/characters/fang/side.svg",
  28673. extra: 924 / 866,
  28674. bottom: 47.5 / 972.3
  28675. }
  28676. },
  28677. },
  28678. [
  28679. {
  28680. name: "Normal",
  28681. height: math.unit(9, "feet"),
  28682. default: true
  28683. },
  28684. {
  28685. name: "Macro",
  28686. height: math.unit(75 + 6 / 12, "feet")
  28687. },
  28688. {
  28689. name: "Teramacro",
  28690. height: math.unit(50000, "miles")
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(10, "feet"),
  28699. weight: math.unit(2, "tons"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/rekhit/front.svg",
  28703. extra: 2796 / 2590,
  28704. bottom: 225 / 3022
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Normal",
  28711. height: math.unit(10, "feet"),
  28712. default: true
  28713. },
  28714. {
  28715. name: "Macro",
  28716. height: math.unit(500, "feet")
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(7 + 6.451 / 12, "feet"),
  28725. weight: math.unit(310, "lb"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/dahlia-verrick/front.svg",
  28729. extra: 1488 / 1365,
  28730. bottom: 6.2 / 1495
  28731. }
  28732. },
  28733. back: {
  28734. height: math.unit(7 + 6.451 / 12, "feet"),
  28735. weight: math.unit(310, "lb"),
  28736. name: "Back",
  28737. image: {
  28738. source: "./media/characters/dahlia-verrick/back.svg",
  28739. extra: 1472 / 1351,
  28740. bottom: 5.28 / 1477
  28741. }
  28742. },
  28743. frontBusiness: {
  28744. height: math.unit(7 + 6.451 / 12, "feet"),
  28745. weight: math.unit(200, "lb"),
  28746. name: "Front (Business)",
  28747. image: {
  28748. source: "./media/characters/dahlia-verrick/front-business.svg",
  28749. extra: 1478 / 1381,
  28750. bottom: 5.5 / 1484
  28751. }
  28752. },
  28753. frontCasual: {
  28754. height: math.unit(7 + 6.451 / 12, "feet"),
  28755. weight: math.unit(200, "lb"),
  28756. name: "Front (Casual)",
  28757. image: {
  28758. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28759. extra: 1478 / 1381,
  28760. bottom: 5.5 / 1484
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Travel-Sized",
  28767. height: math.unit(7.45, "inches")
  28768. },
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(7 + 6.451 / 12, "feet"),
  28772. default: true
  28773. },
  28774. {
  28775. name: "Hitting the Town",
  28776. height: math.unit(37 + 8 / 12, "feet")
  28777. },
  28778. {
  28779. name: "Stomp in the Suburbs",
  28780. height: math.unit(964 + 9.728 / 12, "feet")
  28781. },
  28782. {
  28783. name: "Sit on the City",
  28784. height: math.unit(61747 + 10.592 / 12, "feet")
  28785. },
  28786. {
  28787. name: "Glomp the Globe",
  28788. height: math.unit(252919327 + 4.832 / 12, "feet")
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28794. {
  28795. front: {
  28796. height: math.unit(6 + 4 / 12, "feet"),
  28797. weight: math.unit(320, "lb"),
  28798. name: "Front",
  28799. image: {
  28800. source: "./media/characters/balina-mahigan/front.svg",
  28801. extra: 447 / 428,
  28802. bottom: 18 / 466
  28803. }
  28804. },
  28805. back: {
  28806. height: math.unit(6 + 4 / 12, "feet"),
  28807. weight: math.unit(320, "lb"),
  28808. name: "Back",
  28809. image: {
  28810. source: "./media/characters/balina-mahigan/back.svg",
  28811. extra: 445 / 428,
  28812. bottom: 4.07 / 448
  28813. }
  28814. },
  28815. arm: {
  28816. height: math.unit(1.88, "feet"),
  28817. name: "Arm",
  28818. image: {
  28819. source: "./media/characters/balina-mahigan/arm.svg"
  28820. }
  28821. },
  28822. backPort: {
  28823. height: math.unit(0.685, "feet"),
  28824. name: "Back Port",
  28825. image: {
  28826. source: "./media/characters/balina-mahigan/back-port.svg"
  28827. }
  28828. },
  28829. hoofpaw: {
  28830. height: math.unit(1.41, "feet"),
  28831. name: "Hoofpaw",
  28832. image: {
  28833. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28834. }
  28835. },
  28836. leftHandBack: {
  28837. height: math.unit(0.938, "feet"),
  28838. name: "Left Hand (Back)",
  28839. image: {
  28840. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28841. }
  28842. },
  28843. leftHandFront: {
  28844. height: math.unit(0.938, "feet"),
  28845. name: "Left Hand (Front)",
  28846. image: {
  28847. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28848. }
  28849. },
  28850. rightHandBack: {
  28851. height: math.unit(0.95, "feet"),
  28852. name: "Right Hand (Back)",
  28853. image: {
  28854. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28855. }
  28856. },
  28857. rightHandFront: {
  28858. height: math.unit(0.95, "feet"),
  28859. name: "Right Hand (Front)",
  28860. image: {
  28861. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Normal",
  28868. height: math.unit(6 + 4 / 12, "feet"),
  28869. default: true
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28875. {
  28876. front: {
  28877. height: math.unit(6, "feet"),
  28878. weight: math.unit(320, "lb"),
  28879. name: "Front",
  28880. image: {
  28881. source: "./media/characters/balina-mejeri/front.svg",
  28882. extra: 517 / 488,
  28883. bottom: 44.2 / 561
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(6 + 4 / 12, "feet")
  28891. },
  28892. {
  28893. name: "Business",
  28894. height: math.unit(155, "feet"),
  28895. default: true
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28901. {
  28902. kneeling: {
  28903. height: math.unit(6 + 4 / 12, "feet"),
  28904. weight: math.unit(300 * 20, "lb"),
  28905. name: "Kneeling",
  28906. image: {
  28907. source: "./media/characters/balbarian/kneeling.svg",
  28908. extra: 922 / 862,
  28909. bottom: 42.4 / 965
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(6 + 4 / 12, "feet")
  28917. },
  28918. {
  28919. name: "Treasured",
  28920. height: math.unit(18 + 9 / 12, "feet"),
  28921. default: true
  28922. },
  28923. {
  28924. name: "Macro",
  28925. height: math.unit(900, "feet")
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(6 + 4 / 12, "feet"),
  28934. weight: math.unit(325, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/balina-amarini/front.svg",
  28938. extra: 415 / 403,
  28939. bottom: 19 / 433.4
  28940. }
  28941. },
  28942. back: {
  28943. height: math.unit(6 + 4 / 12, "feet"),
  28944. weight: math.unit(325, "lb"),
  28945. name: "Back",
  28946. image: {
  28947. source: "./media/characters/balina-amarini/back.svg",
  28948. extra: 415 / 403,
  28949. bottom: 13.5 / 432
  28950. }
  28951. },
  28952. overdrive: {
  28953. height: math.unit(6 + 4 / 12, "feet"),
  28954. weight: math.unit(400, "lb"),
  28955. name: "Overdrive",
  28956. image: {
  28957. source: "./media/characters/balina-amarini/overdrive.svg",
  28958. extra: 269 / 259,
  28959. bottom: 12 / 282
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Boom",
  28966. height: math.unit(9 + 10 / 12, "feet"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Macro",
  28971. height: math.unit(280, "feet")
  28972. },
  28973. ]
  28974. ))
  28975. characterMakers.push(() => makeCharacter(
  28976. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28977. {
  28978. goddess: {
  28979. height: math.unit(600, "feet"),
  28980. weight: math.unit(2000000, "tons"),
  28981. name: "Goddess",
  28982. image: {
  28983. source: "./media/characters/lady-kubwa/goddess.svg",
  28984. extra: 1240.5 / 1223,
  28985. bottom: 22 / 1263
  28986. }
  28987. },
  28988. goddesser: {
  28989. height: math.unit(900, "feet"),
  28990. weight: math.unit(20000000, "lb"),
  28991. name: "Goddess-er",
  28992. image: {
  28993. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28994. extra: 899 / 888,
  28995. bottom: 12.6 / 912
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Macro",
  29002. height: math.unit(600, "feet"),
  29003. default: true
  29004. },
  29005. {
  29006. name: "Megamacro",
  29007. height: math.unit(250, "miles")
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29013. {
  29014. front: {
  29015. height: math.unit(7 + 7 / 12, "feet"),
  29016. weight: math.unit(250, "lb"),
  29017. name: "Front",
  29018. image: {
  29019. source: "./media/characters/tala-grovehorn/front.svg",
  29020. extra: 2636 / 2525,
  29021. bottom: 147 / 2781
  29022. }
  29023. },
  29024. back: {
  29025. height: math.unit(7 + 7 / 12, "feet"),
  29026. weight: math.unit(250, "lb"),
  29027. name: "Back",
  29028. image: {
  29029. source: "./media/characters/tala-grovehorn/back.svg",
  29030. extra: 2635 / 2539,
  29031. bottom: 100 / 2732.8
  29032. }
  29033. },
  29034. mouth: {
  29035. height: math.unit(1.15, "feet"),
  29036. name: "Mouth",
  29037. image: {
  29038. source: "./media/characters/tala-grovehorn/mouth.svg"
  29039. }
  29040. },
  29041. dick: {
  29042. height: math.unit(2.36, "feet"),
  29043. name: "Dick",
  29044. image: {
  29045. source: "./media/characters/tala-grovehorn/dick.svg"
  29046. }
  29047. },
  29048. slit: {
  29049. height: math.unit(0.61, "feet"),
  29050. name: "Slit",
  29051. image: {
  29052. source: "./media/characters/tala-grovehorn/slit.svg"
  29053. }
  29054. },
  29055. },
  29056. [
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(7 + 7 / 12, "feet"),
  29064. weight: math.unit(225, "lb"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/epona/front.svg",
  29068. extra: 2445 / 2290,
  29069. bottom: 251 / 2696
  29070. }
  29071. },
  29072. back: {
  29073. height: math.unit(7 + 7 / 12, "feet"),
  29074. weight: math.unit(225, "lb"),
  29075. name: "Back",
  29076. image: {
  29077. source: "./media/characters/epona/back.svg",
  29078. extra: 2546 / 2408,
  29079. bottom: 44 / 2589
  29080. }
  29081. },
  29082. genitals: {
  29083. height: math.unit(1.5, "feet"),
  29084. name: "Genitals",
  29085. image: {
  29086. source: "./media/characters/epona/genitals.svg"
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(7 + 7 / 12, "feet"),
  29094. default: true
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(7, "feet"),
  29103. weight: math.unit(518, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/avia-bloodbourn/front.svg",
  29107. extra: 1466 / 1350,
  29108. bottom: 65 / 1527
  29109. }
  29110. },
  29111. },
  29112. [
  29113. ]
  29114. ))
  29115. characterMakers.push(() => makeCharacter(
  29116. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29117. {
  29118. front: {
  29119. height: math.unit(9.35, "feet"),
  29120. weight: math.unit(600, "lb"),
  29121. name: "Front",
  29122. image: {
  29123. source: "./media/characters/amera/front.svg",
  29124. extra: 891 / 818,
  29125. bottom: 30 / 922.7
  29126. }
  29127. },
  29128. back: {
  29129. height: math.unit(9.35, "feet"),
  29130. weight: math.unit(600, "lb"),
  29131. name: "Back",
  29132. image: {
  29133. source: "./media/characters/amera/back.svg",
  29134. extra: 876 / 824,
  29135. bottom: 6.8 / 884
  29136. }
  29137. },
  29138. dick: {
  29139. height: math.unit(2.14, "feet"),
  29140. name: "Dick",
  29141. image: {
  29142. source: "./media/characters/amera/dick.svg"
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Normal",
  29149. height: math.unit(9.35, "feet"),
  29150. default: true
  29151. },
  29152. ]
  29153. ))
  29154. characterMakers.push(() => makeCharacter(
  29155. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29156. {
  29157. kneeling: {
  29158. height: math.unit(3 + 4 / 12, "feet"),
  29159. weight: math.unit(90, "lb"),
  29160. name: "Kneeling",
  29161. image: {
  29162. source: "./media/characters/rosewen/kneeling.svg",
  29163. extra: 1835 / 1571,
  29164. bottom: 27.7 / 1862
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(3 + 4 / 12, "feet"),
  29172. default: true
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29178. {
  29179. front: {
  29180. height: math.unit(5 + 10 / 12, "feet"),
  29181. weight: math.unit(200, "lb"),
  29182. name: "Front",
  29183. image: {
  29184. source: "./media/characters/sabah/front.svg",
  29185. extra: 849 / 763,
  29186. bottom: 33.9 / 881
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Normal",
  29193. height: math.unit(5 + 10 / 12, "feet"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29200. {
  29201. front: {
  29202. height: math.unit(3 + 5 / 12, "feet"),
  29203. weight: math.unit(40, "kg"),
  29204. name: "Front",
  29205. image: {
  29206. source: "./media/characters/purple-flame/front.svg",
  29207. extra: 1577 / 1412,
  29208. bottom: 97 / 1694
  29209. }
  29210. },
  29211. frontDressed: {
  29212. height: math.unit(3 + 5 / 12, "feet"),
  29213. weight: math.unit(40, "kg"),
  29214. name: "Front (Dressed)",
  29215. image: {
  29216. source: "./media/characters/purple-flame/front-dressed.svg",
  29217. extra: 1577 / 1412,
  29218. bottom: 97 / 1694
  29219. }
  29220. },
  29221. headphones: {
  29222. height: math.unit(0.85, "feet"),
  29223. name: "Headphones",
  29224. image: {
  29225. source: "./media/characters/purple-flame/headphones.svg"
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Really Small",
  29232. height: math.unit(5, "cm")
  29233. },
  29234. {
  29235. name: "Micro",
  29236. height: math.unit(1 + 5 / 12, "feet")
  29237. },
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(3 + 5 / 12, "feet"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Minimacro",
  29245. height: math.unit(125, "feet")
  29246. },
  29247. {
  29248. name: "Macro",
  29249. height: math.unit(0.5, "miles")
  29250. },
  29251. {
  29252. name: "Megamacro",
  29253. height: math.unit(50, "miles")
  29254. },
  29255. {
  29256. name: "Gigantic",
  29257. height: math.unit(750, "miles")
  29258. },
  29259. {
  29260. name: "Planetary",
  29261. height: math.unit(15000, "miles")
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(14, "feet"),
  29270. weight: math.unit(959, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/arsenal/front.svg",
  29274. extra: 2357 / 2157,
  29275. bottom: 93 / 2458
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(14, "feet"),
  29283. default: true
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(6, "feet"),
  29292. weight: math.unit(150, "lb"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/adira/front.svg",
  29296. extra: 1078 / 1029,
  29297. bottom: 87 / 1166
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Micro",
  29304. height: math.unit(4, "inches"),
  29305. default: true
  29306. },
  29307. {
  29308. name: "Macro",
  29309. height: math.unit(50, "feet")
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(16, "feet"),
  29318. weight: math.unit(1000, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/grim/front.svg",
  29322. extra: 622 / 614,
  29323. bottom: 18.1 / 642
  29324. }
  29325. },
  29326. back: {
  29327. height: math.unit(16, "feet"),
  29328. weight: math.unit(1000, "lb"),
  29329. name: "Back",
  29330. image: {
  29331. source: "./media/characters/grim/back.svg",
  29332. extra: 610.6 / 602,
  29333. bottom: 40.8 / 652
  29334. }
  29335. },
  29336. hunched: {
  29337. height: math.unit(9.75, "feet"),
  29338. weight: math.unit(1000, "lb"),
  29339. name: "Hunched",
  29340. image: {
  29341. source: "./media/characters/grim/hunched.svg",
  29342. extra: 304 / 297,
  29343. bottom: 35.4 / 394
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Normal",
  29350. height: math.unit(16, "feet"),
  29351. default: true
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29357. {
  29358. front: {
  29359. height: math.unit(2.3, "meters"),
  29360. weight: math.unit(300, "lb"),
  29361. name: "Front",
  29362. image: {
  29363. source: "./media/characters/sinja/front-sfw.svg",
  29364. extra: 1393 / 1294,
  29365. bottom: 70 / 1463
  29366. }
  29367. },
  29368. frontNsfw: {
  29369. height: math.unit(2.3, "meters"),
  29370. weight: math.unit(300, "lb"),
  29371. name: "Front (NSFW)",
  29372. image: {
  29373. source: "./media/characters/sinja/front-nsfw.svg",
  29374. extra: 1393 / 1294,
  29375. bottom: 70 / 1463
  29376. }
  29377. },
  29378. back: {
  29379. height: math.unit(2.3, "meters"),
  29380. weight: math.unit(300, "lb"),
  29381. name: "Back",
  29382. image: {
  29383. source: "./media/characters/sinja/back.svg",
  29384. extra: 1393 / 1294,
  29385. bottom: 70 / 1463
  29386. }
  29387. },
  29388. head: {
  29389. height: math.unit(1.771, "feet"),
  29390. name: "Head",
  29391. image: {
  29392. source: "./media/characters/sinja/head.svg"
  29393. }
  29394. },
  29395. slit: {
  29396. height: math.unit(0.8, "feet"),
  29397. name: "Slit",
  29398. image: {
  29399. source: "./media/characters/sinja/slit.svg"
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "Normal",
  29406. height: math.unit(2.3, "meters")
  29407. },
  29408. {
  29409. name: "Macro",
  29410. height: math.unit(91, "meters"),
  29411. default: true
  29412. },
  29413. {
  29414. name: "Megamacro",
  29415. height: math.unit(91440, "meters")
  29416. },
  29417. {
  29418. name: "Gigamacro",
  29419. height: math.unit(60960000, "meters")
  29420. },
  29421. {
  29422. name: "Teramacro",
  29423. height: math.unit(9144000000, "meters")
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(1.7, "meters"),
  29432. weight: math.unit(130, "lb"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/kyu/front.svg",
  29436. extra: 415 / 395,
  29437. bottom: 5 / 420
  29438. }
  29439. },
  29440. head: {
  29441. height: math.unit(1.75, "feet"),
  29442. name: "Head",
  29443. image: {
  29444. source: "./media/characters/kyu/head.svg"
  29445. }
  29446. },
  29447. foot: {
  29448. height: math.unit(0.81, "feet"),
  29449. name: "Foot",
  29450. image: {
  29451. source: "./media/characters/kyu/foot.svg"
  29452. }
  29453. },
  29454. },
  29455. [
  29456. {
  29457. name: "Normal",
  29458. height: math.unit(1.7, "meters")
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(131, "feet"),
  29463. default: true
  29464. },
  29465. {
  29466. name: "Megamacro",
  29467. height: math.unit(91440, "meters")
  29468. },
  29469. {
  29470. name: "Gigamacro",
  29471. height: math.unit(60960000, "meters")
  29472. },
  29473. {
  29474. name: "Teramacro",
  29475. height: math.unit(9144000000, "meters")
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(7 + 1 / 12, "feet"),
  29484. weight: math.unit(250, "lb"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/joey/front.svg",
  29488. extra: 1791 / 1537,
  29489. bottom: 28 / 1816
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Micro",
  29496. height: math.unit(3, "inches")
  29497. },
  29498. {
  29499. name: "Normal",
  29500. height: math.unit(7 + 1 / 12, "feet"),
  29501. default: true
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29507. {
  29508. front: {
  29509. height: math.unit(165, "cm"),
  29510. weight: math.unit(140, "lb"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/sam-evans/front.svg",
  29514. extra: 3417 / 3230,
  29515. bottom: 41.3 / 3417
  29516. }
  29517. },
  29518. frontSixTails: {
  29519. height: math.unit(165, "cm"),
  29520. weight: math.unit(140, "lb"),
  29521. name: "Front-six-tails",
  29522. image: {
  29523. source: "./media/characters/sam-evans/front-six-tails.svg",
  29524. extra: 3417 / 3230,
  29525. bottom: 41.3 / 3417
  29526. }
  29527. },
  29528. back: {
  29529. height: math.unit(165, "cm"),
  29530. weight: math.unit(140, "lb"),
  29531. name: "Back",
  29532. image: {
  29533. source: "./media/characters/sam-evans/back.svg",
  29534. extra: 3227 / 3032,
  29535. bottom: 6.8 / 3234
  29536. }
  29537. },
  29538. face: {
  29539. height: math.unit(0.68, "feet"),
  29540. name: "Face",
  29541. image: {
  29542. source: "./media/characters/sam-evans/face.svg"
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(165, "cm"),
  29550. default: true
  29551. },
  29552. {
  29553. name: "Macro",
  29554. height: math.unit(100, "meters")
  29555. },
  29556. {
  29557. name: "Macro+",
  29558. height: math.unit(800, "meters")
  29559. },
  29560. {
  29561. name: "Macro++",
  29562. height: math.unit(3, "km")
  29563. },
  29564. {
  29565. name: "Macro+++",
  29566. height: math.unit(30, "km")
  29567. },
  29568. ]
  29569. ))
  29570. characterMakers.push(() => makeCharacter(
  29571. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29572. {
  29573. front: {
  29574. height: math.unit(10, "feet"),
  29575. weight: math.unit(750, "lb"),
  29576. name: "Front",
  29577. image: {
  29578. source: "./media/characters/juliet-a/front.svg",
  29579. extra: 1766 / 1720,
  29580. bottom: 43 / 1809
  29581. }
  29582. },
  29583. back: {
  29584. height: math.unit(10, "feet"),
  29585. weight: math.unit(750, "lb"),
  29586. name: "Back",
  29587. image: {
  29588. source: "./media/characters/juliet-a/back.svg",
  29589. extra: 1781 / 1734,
  29590. bottom: 35 / 1810,
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(10, "feet"),
  29598. default: true
  29599. },
  29600. {
  29601. name: "Dragon Form",
  29602. height: math.unit(250, "feet")
  29603. },
  29604. {
  29605. name: "Macro",
  29606. height: math.unit(1000, "feet")
  29607. },
  29608. {
  29609. name: "Megamacro",
  29610. height: math.unit(10000, "feet")
  29611. }
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29616. {
  29617. regular: {
  29618. height: math.unit(7 + 3 / 12, "feet"),
  29619. weight: math.unit(260, "lb"),
  29620. name: "Regular",
  29621. image: {
  29622. source: "./media/characters/wild/regular.svg",
  29623. extra: 97.45 / 92,
  29624. bottom: 6.8 / 104.3
  29625. }
  29626. },
  29627. biggums: {
  29628. height: math.unit(8 + 6 / 12, "feet"),
  29629. weight: math.unit(425, "lb"),
  29630. name: "Biggums",
  29631. image: {
  29632. source: "./media/characters/wild/biggums.svg",
  29633. extra: 97.45 / 92,
  29634. bottom: 7.5 / 132.34
  29635. }
  29636. },
  29637. mawRegular: {
  29638. height: math.unit(1.24, "feet"),
  29639. name: "Maw (Regular)",
  29640. image: {
  29641. source: "./media/characters/wild/maw.svg"
  29642. }
  29643. },
  29644. mawBiggums: {
  29645. height: math.unit(1.47, "feet"),
  29646. name: "Maw (Biggums)",
  29647. image: {
  29648. source: "./media/characters/wild/maw.svg"
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(7 + 3 / 12, "feet"),
  29656. default: true
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29662. {
  29663. front: {
  29664. height: math.unit(2.5, "meters"),
  29665. weight: math.unit(200, "kg"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/vidar/front.svg",
  29669. extra: 2994 / 2795,
  29670. bottom: 56 / 3061
  29671. }
  29672. },
  29673. back: {
  29674. height: math.unit(2.5, "meters"),
  29675. weight: math.unit(200, "kg"),
  29676. name: "Back",
  29677. image: {
  29678. source: "./media/characters/vidar/back.svg",
  29679. extra: 3131 / 2928,
  29680. bottom: 13.5 / 3141.5
  29681. }
  29682. },
  29683. feral: {
  29684. height: math.unit(2.5, "meters"),
  29685. weight: math.unit(2000, "kg"),
  29686. name: "Feral",
  29687. image: {
  29688. source: "./media/characters/vidar/feral.svg",
  29689. extra: 2790 / 1765,
  29690. bottom: 6 / 2796
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(2.5, "meters"),
  29698. default: true
  29699. },
  29700. {
  29701. name: "Macro",
  29702. height: math.unit(100, "meters")
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(5 + 9 / 12, "feet"),
  29711. weight: math.unit(120, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/ash/front.svg",
  29715. extra: 2189 / 1961,
  29716. bottom: 5.2 / 2194
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(5 + 9 / 12, "feet"),
  29724. default: true
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29730. {
  29731. front: {
  29732. height: math.unit(9, "feet"),
  29733. weight: math.unit(10000, "lb"),
  29734. name: "Front",
  29735. image: {
  29736. source: "./media/characters/gygabite/front.svg",
  29737. bottom: 31.7 / 537.8,
  29738. extra: 505 / 370
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Normal",
  29745. height: math.unit(9, "feet"),
  29746. default: true
  29747. },
  29748. ]
  29749. ))
  29750. characterMakers.push(() => makeCharacter(
  29751. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29752. {
  29753. front: {
  29754. height: math.unit(12, "feet"),
  29755. weight: math.unit(4000, "lb"),
  29756. name: "Front",
  29757. image: {
  29758. source: "./media/characters/p0tat0/front.svg",
  29759. extra: 1065 / 921,
  29760. bottom: 55.7 / 1121.25
  29761. }
  29762. },
  29763. },
  29764. [
  29765. {
  29766. name: "Normal",
  29767. height: math.unit(12, "feet"),
  29768. default: true
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29774. {
  29775. side: {
  29776. height: math.unit(6.5, "feet"),
  29777. weight: math.unit(800, "lb"),
  29778. name: "Side",
  29779. image: {
  29780. source: "./media/characters/dusk/side.svg",
  29781. extra: 615 / 373,
  29782. bottom: 53 / 664
  29783. }
  29784. },
  29785. sitting: {
  29786. height: math.unit(7, "feet"),
  29787. weight: math.unit(800, "lb"),
  29788. name: "Sitting",
  29789. image: {
  29790. source: "./media/characters/dusk/sitting.svg",
  29791. extra: 753 / 425,
  29792. bottom: 33 / 774
  29793. }
  29794. },
  29795. head: {
  29796. height: math.unit(6.1, "feet"),
  29797. name: "Head",
  29798. image: {
  29799. source: "./media/characters/dusk/head.svg"
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Normal",
  29806. height: math.unit(7, "feet"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(15, "feet"),
  29816. weight: math.unit(7000, "lb"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/jay-direwolf/front.svg",
  29820. extra: 1810 / 1732,
  29821. bottom: 66 / 1892
  29822. }
  29823. },
  29824. },
  29825. [
  29826. {
  29827. name: "Normal",
  29828. height: math.unit(15, "feet"),
  29829. default: true
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(4 + 9 / 12, "feet"),
  29838. weight: math.unit(130, "lb"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/anchovie/front.svg",
  29842. extra: 382 / 350,
  29843. bottom: 25 / 409
  29844. }
  29845. },
  29846. back: {
  29847. height: math.unit(4 + 9 / 12, "feet"),
  29848. weight: math.unit(130, "lb"),
  29849. name: "Back",
  29850. image: {
  29851. source: "./media/characters/anchovie/back.svg",
  29852. extra: 385 / 352,
  29853. bottom: 16.6 / 402
  29854. }
  29855. },
  29856. frontDressed: {
  29857. height: math.unit(4 + 9 / 12, "feet"),
  29858. weight: math.unit(130, "lb"),
  29859. name: "Front (Dressed)",
  29860. image: {
  29861. source: "./media/characters/anchovie/front-dressed.svg",
  29862. extra: 382 / 350,
  29863. bottom: 25 / 409
  29864. }
  29865. },
  29866. backDressed: {
  29867. height: math.unit(4 + 9 / 12, "feet"),
  29868. weight: math.unit(130, "lb"),
  29869. name: "Back (Dressed)",
  29870. image: {
  29871. source: "./media/characters/anchovie/back-dressed.svg",
  29872. extra: 385 / 352,
  29873. bottom: 16.6 / 402
  29874. }
  29875. },
  29876. },
  29877. [
  29878. {
  29879. name: "Micro",
  29880. height: math.unit(6.4, "inches")
  29881. },
  29882. {
  29883. name: "Normal",
  29884. height: math.unit(4 + 9 / 12, "feet"),
  29885. default: true
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(2, "meters"),
  29894. weight: math.unit(180, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/acidrenamon/front.svg",
  29898. extra: 987 / 890,
  29899. bottom: 22.8 / 1009
  29900. }
  29901. },
  29902. back: {
  29903. height: math.unit(2, "meters"),
  29904. weight: math.unit(180, "lb"),
  29905. name: "Back",
  29906. image: {
  29907. source: "./media/characters/acidrenamon/back.svg",
  29908. extra: 983 / 891,
  29909. bottom: 8.4 / 992
  29910. }
  29911. },
  29912. head: {
  29913. height: math.unit(1.92, "feet"),
  29914. name: "Head",
  29915. image: {
  29916. source: "./media/characters/acidrenamon/head.svg"
  29917. }
  29918. },
  29919. rump: {
  29920. height: math.unit(1.72, "feet"),
  29921. name: "Rump",
  29922. image: {
  29923. source: "./media/characters/acidrenamon/rump.svg"
  29924. }
  29925. },
  29926. tail: {
  29927. height: math.unit(4.2, "feet"),
  29928. name: "Tail",
  29929. image: {
  29930. source: "./media/characters/acidrenamon/tail.svg"
  29931. }
  29932. },
  29933. },
  29934. [
  29935. {
  29936. name: "Normal",
  29937. height: math.unit(2, "meters"),
  29938. default: true
  29939. },
  29940. {
  29941. name: "Minimacro",
  29942. height: math.unit(7, "meters")
  29943. },
  29944. {
  29945. name: "Macro",
  29946. height: math.unit(200, "meters")
  29947. },
  29948. {
  29949. name: "Gigamacro",
  29950. height: math.unit(0.2, "earths")
  29951. },
  29952. ]
  29953. ))
  29954. characterMakers.push(() => makeCharacter(
  29955. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29956. {
  29957. front: {
  29958. height: math.unit(152, "feet"),
  29959. name: "Front",
  29960. image: {
  29961. source: "./media/characters/kenzie-lee/front.svg",
  29962. extra: 1869/1774,
  29963. bottom: 128/1997
  29964. }
  29965. },
  29966. side: {
  29967. height: math.unit(86, "feet"),
  29968. name: "Side",
  29969. image: {
  29970. source: "./media/characters/kenzie-lee/side.svg",
  29971. extra: 930/815,
  29972. bottom: 177/1107
  29973. }
  29974. },
  29975. paw: {
  29976. height: math.unit(15, "feet"),
  29977. name: "Paw",
  29978. image: {
  29979. source: "./media/characters/kenzie-lee/paw.svg"
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Kenzie Flea",
  29986. height: math.unit(2, "mm"),
  29987. default: true
  29988. },
  29989. {
  29990. name: "Micro",
  29991. height: math.unit(2, "inches")
  29992. },
  29993. {
  29994. name: "Normal",
  29995. height: math.unit(152, "feet")
  29996. },
  29997. {
  29998. name: "Megamacro",
  29999. height: math.unit(7, "miles")
  30000. },
  30001. {
  30002. name: "Gigamacro",
  30003. height: math.unit(8000, "miles")
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30009. {
  30010. front: {
  30011. height: math.unit(6, "feet"),
  30012. name: "Front",
  30013. image: {
  30014. source: "./media/characters/withers/front.svg",
  30015. extra: 1935/1760,
  30016. bottom: 72/2007
  30017. }
  30018. },
  30019. back: {
  30020. height: math.unit(6, "feet"),
  30021. name: "Back",
  30022. image: {
  30023. source: "./media/characters/withers/back.svg",
  30024. extra: 1944/1792,
  30025. bottom: 12/1956
  30026. }
  30027. },
  30028. dressed: {
  30029. height: math.unit(6, "feet"),
  30030. name: "Dressed",
  30031. image: {
  30032. source: "./media/characters/withers/dressed.svg",
  30033. extra: 1937/1765,
  30034. bottom: 73/2010
  30035. }
  30036. },
  30037. phase1: {
  30038. height: math.unit(1.1, "feet"),
  30039. name: "Phase 1",
  30040. image: {
  30041. source: "./media/characters/withers/phase-1.svg",
  30042. extra: 1885/1232,
  30043. bottom: 0/1885
  30044. }
  30045. },
  30046. phase2: {
  30047. height: math.unit(1.05, "feet"),
  30048. name: "Phase 2",
  30049. image: {
  30050. source: "./media/characters/withers/phase-2.svg",
  30051. extra: 1792/1090,
  30052. bottom: 0/1792
  30053. }
  30054. },
  30055. partyWipe: {
  30056. height: math.unit(1.1, "feet"),
  30057. name: "Party Wipe",
  30058. image: {
  30059. source: "./media/characters/withers/party-wipe.svg",
  30060. extra: 1864/1207,
  30061. bottom: 0/1864
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Macro",
  30068. height: math.unit(167, "feet"),
  30069. default: true
  30070. },
  30071. {
  30072. name: "Megamacro",
  30073. height: math.unit(15, "miles")
  30074. }
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30079. {
  30080. front: {
  30081. height: math.unit(6 + 7 / 12, "feet"),
  30082. weight: math.unit(250, "lb"),
  30083. name: "Front",
  30084. image: {
  30085. source: "./media/characters/nemoskii/front.svg",
  30086. extra: 2270 / 1734,
  30087. bottom: 86 / 2354
  30088. }
  30089. },
  30090. back: {
  30091. height: math.unit(6 + 7 / 12, "feet"),
  30092. weight: math.unit(250, "lb"),
  30093. name: "Back",
  30094. image: {
  30095. source: "./media/characters/nemoskii/back.svg",
  30096. extra: 1845 / 1788,
  30097. bottom: 10.5 / 1852
  30098. }
  30099. },
  30100. head: {
  30101. height: math.unit(1.31, "feet"),
  30102. name: "Head",
  30103. image: {
  30104. source: "./media/characters/nemoskii/head.svg"
  30105. }
  30106. },
  30107. },
  30108. [
  30109. {
  30110. name: "Micro",
  30111. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30112. },
  30113. {
  30114. name: "Normal",
  30115. height: math.unit(6 + 7 / 12, "feet"),
  30116. default: true
  30117. },
  30118. {
  30119. name: "Macro",
  30120. height: math.unit((6 + 7 / 12) * 150, "feet")
  30121. },
  30122. {
  30123. name: "Macro+",
  30124. height: math.unit((6 + 7 / 12) * 500, "feet")
  30125. },
  30126. {
  30127. name: "Megamacro",
  30128. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30129. },
  30130. ]
  30131. ))
  30132. characterMakers.push(() => makeCharacter(
  30133. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30134. {
  30135. front: {
  30136. height: math.unit(1, "mile"),
  30137. weight: math.unit(265261.9, "lb"),
  30138. name: "Front",
  30139. image: {
  30140. source: "./media/characters/shui/front.svg",
  30141. extra: 1633 / 1564,
  30142. bottom: 91.5 / 1726
  30143. }
  30144. },
  30145. },
  30146. [
  30147. {
  30148. name: "Macro",
  30149. height: math.unit(1, "mile"),
  30150. default: true
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30156. {
  30157. front: {
  30158. height: math.unit(12 + 6 / 12, "feet"),
  30159. weight: math.unit(1342, "lb"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/arokh-takakura/front.svg",
  30163. extra: 1089 / 1043,
  30164. bottom: 77.4 / 1176.7
  30165. }
  30166. },
  30167. back: {
  30168. height: math.unit(12 + 6 / 12, "feet"),
  30169. weight: math.unit(1342, "lb"),
  30170. name: "Back",
  30171. image: {
  30172. source: "./media/characters/arokh-takakura/back.svg",
  30173. extra: 1046 / 1019,
  30174. bottom: 102 / 1150
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Big",
  30181. height: math.unit(12 + 6 / 12, "feet"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(5 + 6 / 12, "feet"),
  30191. weight: math.unit(150, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/theo/front.svg",
  30195. extra: 1184 / 1131,
  30196. bottom: 7.4 / 1191
  30197. }
  30198. },
  30199. },
  30200. [
  30201. {
  30202. name: "Micro",
  30203. height: math.unit(5, "inches")
  30204. },
  30205. {
  30206. name: "Normal",
  30207. height: math.unit(5 + 6 / 12, "feet"),
  30208. default: true
  30209. },
  30210. ]
  30211. ))
  30212. characterMakers.push(() => makeCharacter(
  30213. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30214. {
  30215. front: {
  30216. height: math.unit(5 + 9 / 12, "feet"),
  30217. weight: math.unit(130, "lb"),
  30218. name: "Front",
  30219. image: {
  30220. source: "./media/characters/cecelia-swift/front.svg",
  30221. extra: 502 / 484,
  30222. bottom: 23 / 523
  30223. }
  30224. },
  30225. back: {
  30226. height: math.unit(5 + 9 / 12, "feet"),
  30227. weight: math.unit(130, "lb"),
  30228. name: "Back",
  30229. image: {
  30230. source: "./media/characters/cecelia-swift/back.svg",
  30231. extra: 499 / 485,
  30232. bottom: 12 / 511
  30233. }
  30234. },
  30235. head: {
  30236. height: math.unit(0.90, "feet"),
  30237. name: "Head",
  30238. image: {
  30239. source: "./media/characters/cecelia-swift/head.svg"
  30240. }
  30241. },
  30242. rump: {
  30243. height: math.unit(1.75, "feet"),
  30244. name: "Rump",
  30245. image: {
  30246. source: "./media/characters/cecelia-swift/rump.svg"
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Normal",
  30253. height: math.unit(5 + 9 / 12, "feet"),
  30254. default: true
  30255. },
  30256. {
  30257. name: "Big",
  30258. height: math.unit(50, "feet")
  30259. },
  30260. {
  30261. name: "Macro",
  30262. height: math.unit(100, "feet")
  30263. },
  30264. {
  30265. name: "Macro+",
  30266. height: math.unit(500, "feet")
  30267. },
  30268. {
  30269. name: "Macro++",
  30270. height: math.unit(1000, "feet")
  30271. },
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(150, "lb"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/kaunan/front.svg",
  30283. extra: 2890 / 2523,
  30284. bottom: 49 / 2939
  30285. }
  30286. },
  30287. },
  30288. [
  30289. {
  30290. name: "Macro",
  30291. height: math.unit(150, "feet"),
  30292. default: true
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30298. {
  30299. dressed: {
  30300. height: math.unit(175, "cm"),
  30301. weight: math.unit(60, "kg"),
  30302. name: "Dressed",
  30303. image: {
  30304. source: "./media/characters/fei/dressed.svg",
  30305. extra: 1402/1278,
  30306. bottom: 27/1429
  30307. }
  30308. },
  30309. nude: {
  30310. height: math.unit(175, "cm"),
  30311. weight: math.unit(60, "kg"),
  30312. name: "Nude",
  30313. image: {
  30314. source: "./media/characters/fei/nude.svg",
  30315. extra: 1402/1278,
  30316. bottom: 27/1429
  30317. }
  30318. },
  30319. heels: {
  30320. height: math.unit(0.466, "feet"),
  30321. name: "Heels",
  30322. image: {
  30323. source: "./media/characters/fei/heels.svg",
  30324. extra: 156/152,
  30325. bottom: 28/184
  30326. }
  30327. },
  30328. },
  30329. [
  30330. {
  30331. name: "Mortal",
  30332. height: math.unit(175, "cm")
  30333. },
  30334. {
  30335. name: "Normal",
  30336. height: math.unit(3500, "m")
  30337. },
  30338. {
  30339. name: "Stroll",
  30340. height: math.unit(18.4, "km"),
  30341. default: true
  30342. },
  30343. {
  30344. name: "Showoff",
  30345. height: math.unit(175, "km")
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30351. {
  30352. front: {
  30353. height: math.unit(7, "feet"),
  30354. weight: math.unit(1000, "kg"),
  30355. name: "Front",
  30356. image: {
  30357. source: "./media/characters/edrax/front.svg",
  30358. extra: 2838 / 2550,
  30359. bottom: 130 / 2968
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Small",
  30366. height: math.unit(7, "feet")
  30367. },
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(1500, "meters")
  30371. },
  30372. {
  30373. name: "Mega",
  30374. height: math.unit(12000000, "km"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Megamacro",
  30379. height: math.unit(10600000, "lightyears")
  30380. },
  30381. {
  30382. name: "Hypermacro",
  30383. height: math.unit(256, "yottameters")
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(10, "feet"),
  30392. weight: math.unit(750, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/clove/front.svg",
  30396. extra: 1918/1751,
  30397. bottom: 52/1970
  30398. }
  30399. },
  30400. back: {
  30401. height: math.unit(10, "feet"),
  30402. weight: math.unit(750, "lb"),
  30403. name: "Back",
  30404. image: {
  30405. source: "./media/characters/clove/back.svg",
  30406. extra: 1912/1747,
  30407. bottom: 50/1962
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(10, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(4, "feet"),
  30424. weight: math.unit(50, "lb"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/alex-rabbit/front.svg",
  30428. extra: 507 / 458,
  30429. bottom: 18.5 / 527
  30430. }
  30431. },
  30432. back: {
  30433. height: math.unit(4, "feet"),
  30434. weight: math.unit(50, "lb"),
  30435. name: "Back",
  30436. image: {
  30437. source: "./media/characters/alex-rabbit/back.svg",
  30438. extra: 502 / 460,
  30439. bottom: 18.9 / 521
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(4, "feet"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30453. {
  30454. front: {
  30455. height: math.unit(1 + 3 / 12, "feet"),
  30456. weight: math.unit(80, "lb"),
  30457. name: "Front",
  30458. image: {
  30459. source: "./media/characters/zander-rose/front.svg",
  30460. extra: 916 / 797,
  30461. bottom: 17 / 933
  30462. }
  30463. },
  30464. back: {
  30465. height: math.unit(1 + 3 / 12, "feet"),
  30466. weight: math.unit(80, "lb"),
  30467. name: "Back",
  30468. image: {
  30469. source: "./media/characters/zander-rose/back.svg",
  30470. extra: 903 / 779,
  30471. bottom: 31 / 934
  30472. }
  30473. },
  30474. },
  30475. [
  30476. {
  30477. name: "Normal",
  30478. height: math.unit(1 + 3 / 12, "feet"),
  30479. default: true
  30480. },
  30481. ]
  30482. ))
  30483. characterMakers.push(() => makeCharacter(
  30484. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30485. {
  30486. anthro: {
  30487. height: math.unit(6, "feet"),
  30488. weight: math.unit(150, "lb"),
  30489. name: "Anthro",
  30490. image: {
  30491. source: "./media/characters/razz/anthro.svg",
  30492. extra: 1437 / 1343,
  30493. bottom: 48 / 1485
  30494. }
  30495. },
  30496. feral: {
  30497. height: math.unit(6, "feet"),
  30498. weight: math.unit(150, "lb"),
  30499. name: "Feral",
  30500. image: {
  30501. source: "./media/characters/razz/feral.svg",
  30502. extra: 2569 / 1385,
  30503. bottom: 95 / 2664
  30504. }
  30505. },
  30506. },
  30507. [
  30508. {
  30509. name: "Normal",
  30510. height: math.unit(6, "feet"),
  30511. default: true
  30512. },
  30513. ]
  30514. ))
  30515. characterMakers.push(() => makeCharacter(
  30516. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30517. {
  30518. front: {
  30519. height: math.unit(9 + 4 / 12, "feet"),
  30520. weight: math.unit(500, "lb"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/morrigan/front.svg",
  30524. extra: 2707 / 2579,
  30525. bottom: 156 / 2863
  30526. }
  30527. },
  30528. },
  30529. [
  30530. {
  30531. name: "Normal",
  30532. height: math.unit(9 + 4 / 12, "feet"),
  30533. default: true
  30534. },
  30535. ]
  30536. ))
  30537. characterMakers.push(() => makeCharacter(
  30538. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30539. {
  30540. front: {
  30541. height: math.unit(5, "stories"),
  30542. weight: math.unit(4000, "lb"),
  30543. name: "Front",
  30544. image: {
  30545. source: "./media/characters/jenene/front.svg",
  30546. extra: 1780 / 1710,
  30547. bottom: 57 / 1837
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Normal",
  30554. height: math.unit(5, "stories"),
  30555. default: true
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30561. {
  30562. taurSfw: {
  30563. height: math.unit(10, "meters"),
  30564. weight: math.unit(17500, "kg"),
  30565. name: "Taur",
  30566. image: {
  30567. source: "./media/characters/faey/taur-sfw.svg",
  30568. extra: 1200 / 968,
  30569. bottom: 41 / 1241
  30570. }
  30571. },
  30572. chestmaw: {
  30573. height: math.unit(2.01, "meters"),
  30574. name: "Chestmaw",
  30575. image: {
  30576. source: "./media/characters/faey/chestmaw.svg"
  30577. }
  30578. },
  30579. foot: {
  30580. height: math.unit(2.43, "meters"),
  30581. name: "Foot",
  30582. image: {
  30583. source: "./media/characters/faey/foot.svg"
  30584. }
  30585. },
  30586. jaws: {
  30587. height: math.unit(1.66, "meters"),
  30588. name: "Jaws",
  30589. image: {
  30590. source: "./media/characters/faey/jaws.svg"
  30591. }
  30592. },
  30593. tongues: {
  30594. height: math.unit(2.01, "meters"),
  30595. name: "Tongues",
  30596. image: {
  30597. source: "./media/characters/faey/tongues.svg"
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Small",
  30604. height: math.unit(10, "meters"),
  30605. default: true
  30606. },
  30607. {
  30608. name: "Big",
  30609. height: math.unit(500000, "km")
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(7, "feet"),
  30618. weight: math.unit(275, "lb"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/roku/front.svg",
  30622. extra: 903 / 878,
  30623. bottom: 37 / 940
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Normal",
  30630. height: math.unit(7, "feet"),
  30631. default: true
  30632. },
  30633. {
  30634. name: "Macro",
  30635. height: math.unit(500, "feet")
  30636. },
  30637. {
  30638. name: "Megamacro",
  30639. height: math.unit(200, "miles")
  30640. },
  30641. ]
  30642. ))
  30643. characterMakers.push(() => makeCharacter(
  30644. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30645. {
  30646. front: {
  30647. height: math.unit(6 + 2 / 12, "feet"),
  30648. weight: math.unit(150, "lb"),
  30649. name: "Front",
  30650. image: {
  30651. source: "./media/characters/lira/front.svg",
  30652. extra: 1727 / 1605,
  30653. bottom: 26 / 1753
  30654. }
  30655. },
  30656. back: {
  30657. height: math.unit(6 + 2 / 12, "feet"),
  30658. weight: math.unit(150, "lb"),
  30659. name: "Back",
  30660. image: {
  30661. source: "./media/characters/lira/back.svg",
  30662. extra: 1713/1621,
  30663. bottom: 20/1733
  30664. }
  30665. },
  30666. hand: {
  30667. height: math.unit(0.75, "feet"),
  30668. name: "Hand",
  30669. image: {
  30670. source: "./media/characters/lira/hand.svg"
  30671. }
  30672. },
  30673. maw: {
  30674. height: math.unit(0.65, "feet"),
  30675. name: "Maw",
  30676. image: {
  30677. source: "./media/characters/lira/maw.svg"
  30678. }
  30679. },
  30680. pawDigi: {
  30681. height: math.unit(1.6, "feet"),
  30682. name: "Paw Digi",
  30683. image: {
  30684. source: "./media/characters/lira/paw-digi.svg"
  30685. }
  30686. },
  30687. pawPlanti: {
  30688. height: math.unit(1.4, "feet"),
  30689. name: "Paw Planti",
  30690. image: {
  30691. source: "./media/characters/lira/paw-planti.svg"
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(6 + 2 / 12, "feet"),
  30699. default: true
  30700. },
  30701. {
  30702. name: "Macro",
  30703. height: math.unit(100, "feet")
  30704. },
  30705. {
  30706. name: "Macro²",
  30707. height: math.unit(1600, "feet")
  30708. },
  30709. {
  30710. name: "Planetary",
  30711. height: math.unit(20, "earths")
  30712. },
  30713. ]
  30714. ))
  30715. characterMakers.push(() => makeCharacter(
  30716. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30717. {
  30718. front: {
  30719. height: math.unit(6, "feet"),
  30720. weight: math.unit(150, "lb"),
  30721. name: "Front",
  30722. image: {
  30723. source: "./media/characters/hadjet/front.svg",
  30724. extra: 1480 / 1346,
  30725. bottom: 26 / 1506
  30726. }
  30727. },
  30728. frontNsfw: {
  30729. height: math.unit(6, "feet"),
  30730. weight: math.unit(150, "lb"),
  30731. name: "Front (NSFW)",
  30732. image: {
  30733. source: "./media/characters/hadjet/front-nsfw.svg",
  30734. extra: 1440 / 1358,
  30735. bottom: 52 / 1492
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Macro",
  30742. height: math.unit(10, "stories"),
  30743. default: true
  30744. },
  30745. {
  30746. name: "Megamacro",
  30747. height: math.unit(1.5, "miles")
  30748. },
  30749. {
  30750. name: "Megamacro+",
  30751. height: math.unit(5, "miles")
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30757. {
  30758. side: {
  30759. height: math.unit(106, "feet"),
  30760. weight: math.unit(500, "tonnes"),
  30761. name: "Side",
  30762. image: {
  30763. source: "./media/characters/kodran/side.svg",
  30764. extra: 553 / 480,
  30765. bottom: 33 / 586
  30766. }
  30767. },
  30768. front: {
  30769. height: math.unit(132, "feet"),
  30770. weight: math.unit(500, "tonnes"),
  30771. name: "Front",
  30772. image: {
  30773. source: "./media/characters/kodran/front.svg",
  30774. extra: 667 / 643,
  30775. bottom: 42 / 709
  30776. }
  30777. },
  30778. flying: {
  30779. height: math.unit(350, "feet"),
  30780. weight: math.unit(500, "tonnes"),
  30781. name: "Flying",
  30782. image: {
  30783. source: "./media/characters/kodran/flying.svg"
  30784. }
  30785. },
  30786. foot: {
  30787. height: math.unit(33, "feet"),
  30788. name: "Foot",
  30789. image: {
  30790. source: "./media/characters/kodran/foot.svg"
  30791. }
  30792. },
  30793. footFront: {
  30794. height: math.unit(19, "feet"),
  30795. name: "Foot (Front)",
  30796. image: {
  30797. source: "./media/characters/kodran/foot-front.svg",
  30798. extra: 261 / 261,
  30799. bottom: 91 / 352
  30800. }
  30801. },
  30802. headFront: {
  30803. height: math.unit(53, "feet"),
  30804. name: "Head (Front)",
  30805. image: {
  30806. source: "./media/characters/kodran/head-front.svg"
  30807. }
  30808. },
  30809. headSide: {
  30810. height: math.unit(65, "feet"),
  30811. name: "Head (Side)",
  30812. image: {
  30813. source: "./media/characters/kodran/head-side.svg"
  30814. }
  30815. },
  30816. throat: {
  30817. height: math.unit(79, "feet"),
  30818. name: "Throat",
  30819. image: {
  30820. source: "./media/characters/kodran/throat.svg"
  30821. }
  30822. },
  30823. },
  30824. [
  30825. {
  30826. name: "Large",
  30827. height: math.unit(106, "feet"),
  30828. default: true
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30834. {
  30835. side: {
  30836. height: math.unit(11, "feet"),
  30837. weight: math.unit(150, "lb"),
  30838. name: "Side",
  30839. image: {
  30840. source: "./media/characters/pyxaron/side.svg",
  30841. extra: 305 / 195,
  30842. bottom: 17 / 322
  30843. }
  30844. },
  30845. },
  30846. [
  30847. {
  30848. name: "Normal",
  30849. height: math.unit(11, "feet"),
  30850. default: true
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30856. {
  30857. front: {
  30858. height: math.unit(6, "feet"),
  30859. weight: math.unit(150, "lb"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/meep/front.svg",
  30863. extra: 88 / 80,
  30864. bottom: 6 / 94
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Fun Sized",
  30871. height: math.unit(2, "inches"),
  30872. default: true
  30873. },
  30874. {
  30875. name: "Friend Sized",
  30876. height: math.unit(8, "inches")
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(15, "feet"),
  30885. weight: math.unit(2500, "lb"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/holly-rabbit/front.svg",
  30889. extra: 1433 / 1233,
  30890. bottom: 125 / 1558
  30891. }
  30892. },
  30893. dick: {
  30894. height: math.unit(4.6, "feet"),
  30895. name: "Dick",
  30896. image: {
  30897. source: "./media/characters/holly-rabbit/dick.svg"
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(15, "feet"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "Macro",
  30909. height: math.unit(250, "feet")
  30910. },
  30911. {
  30912. name: "Macro+",
  30913. height: math.unit(2500, "feet")
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30919. {
  30920. front: {
  30921. height: math.unit(3.02, "meters"),
  30922. weight: math.unit(500, "kg"),
  30923. name: "Front",
  30924. image: {
  30925. source: "./media/characters/drena/front.svg",
  30926. extra: 282 / 243,
  30927. bottom: 8 / 290
  30928. }
  30929. },
  30930. side: {
  30931. height: math.unit(3.02, "meters"),
  30932. weight: math.unit(500, "kg"),
  30933. name: "Side",
  30934. image: {
  30935. source: "./media/characters/drena/side.svg",
  30936. extra: 280 / 245,
  30937. bottom: 10 / 290
  30938. }
  30939. },
  30940. back: {
  30941. height: math.unit(3.02, "meters"),
  30942. weight: math.unit(500, "kg"),
  30943. name: "Back",
  30944. image: {
  30945. source: "./media/characters/drena/back.svg",
  30946. extra: 278 / 243,
  30947. bottom: 2 / 280
  30948. }
  30949. },
  30950. foot: {
  30951. height: math.unit(0.75, "meters"),
  30952. name: "Foot",
  30953. image: {
  30954. source: "./media/characters/drena/foot.svg"
  30955. }
  30956. },
  30957. maw: {
  30958. height: math.unit(0.82, "meters"),
  30959. name: "Maw",
  30960. image: {
  30961. source: "./media/characters/drena/maw.svg"
  30962. }
  30963. },
  30964. eating: {
  30965. height: math.unit(0.75, "meters"),
  30966. name: "Eating",
  30967. image: {
  30968. source: "./media/characters/drena/eating.svg"
  30969. }
  30970. },
  30971. rump: {
  30972. height: math.unit(0.93, "meters"),
  30973. name: "Rump",
  30974. image: {
  30975. source: "./media/characters/drena/rump.svg"
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(3.02, "meters"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(6 + 4 / 12, "feet"),
  30992. weight: math.unit(250, "lb"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/remmyzilla/front.svg",
  30996. extra: 4033 / 3588,
  30997. bottom: 123 / 4156
  30998. }
  30999. },
  31000. back: {
  31001. height: math.unit(6 + 4 / 12, "feet"),
  31002. weight: math.unit(250, "lb"),
  31003. name: "Back",
  31004. image: {
  31005. source: "./media/characters/remmyzilla/back.svg",
  31006. extra: 1696/1602,
  31007. bottom: 63/1759
  31008. }
  31009. },
  31010. paw: {
  31011. height: math.unit(1.73, "feet"),
  31012. name: "Paw",
  31013. image: {
  31014. source: "./media/characters/remmyzilla/paw.svg"
  31015. },
  31016. extraAttributes: {
  31017. "toeSize": {
  31018. name: "Toe Size",
  31019. power: 2,
  31020. type: "area",
  31021. base: math.unit(0.0035, "m^2")
  31022. },
  31023. "padSize": {
  31024. name: "Pad Size",
  31025. power: 2,
  31026. type: "area",
  31027. base: math.unit(0.015, "m^2")
  31028. },
  31029. "pawsize": {
  31030. name: "Paw Size",
  31031. power: 2,
  31032. type: "area",
  31033. base: math.unit(0.072, "m^2")
  31034. },
  31035. }
  31036. },
  31037. maw: {
  31038. height: math.unit(1.73, "feet"),
  31039. name: "Maw",
  31040. image: {
  31041. source: "./media/characters/remmyzilla/maw.svg"
  31042. }
  31043. },
  31044. },
  31045. [
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(6 + 4 / 12, "feet")
  31049. },
  31050. {
  31051. name: "Minimacro",
  31052. height: math.unit(12 + 8 / 12, "feet")
  31053. },
  31054. {
  31055. name: "Normal",
  31056. height: math.unit(640, "feet"),
  31057. default: true
  31058. },
  31059. {
  31060. name: "Megamacro",
  31061. height: math.unit(6400, "feet")
  31062. },
  31063. {
  31064. name: "Gigamacro",
  31065. height: math.unit(64000, "miles")
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31071. {
  31072. front: {
  31073. height: math.unit(2.5, "meters"),
  31074. weight: math.unit(300, "lb"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/lawrence/front.svg",
  31078. extra: 357 / 335,
  31079. bottom: 30 / 387
  31080. }
  31081. },
  31082. back: {
  31083. height: math.unit(2.5, "meters"),
  31084. weight: math.unit(300, "lb"),
  31085. name: "Back",
  31086. image: {
  31087. source: "./media/characters/lawrence/back.svg",
  31088. extra: 357 / 338,
  31089. bottom: 16 / 373
  31090. }
  31091. },
  31092. head: {
  31093. height: math.unit(0.9, "meter"),
  31094. name: "Head",
  31095. image: {
  31096. source: "./media/characters/lawrence/head.svg"
  31097. }
  31098. },
  31099. maw: {
  31100. height: math.unit(0.7, "meter"),
  31101. name: "Maw",
  31102. image: {
  31103. source: "./media/characters/lawrence/maw.svg"
  31104. }
  31105. },
  31106. footBottom: {
  31107. height: math.unit(0.5, "meter"),
  31108. name: "Foot (Bottom)",
  31109. image: {
  31110. source: "./media/characters/lawrence/foot-bottom.svg"
  31111. }
  31112. },
  31113. footTop: {
  31114. height: math.unit(0.5, "meter"),
  31115. name: "Foot (Top)",
  31116. image: {
  31117. source: "./media/characters/lawrence/foot-top.svg"
  31118. }
  31119. },
  31120. },
  31121. [
  31122. {
  31123. name: "Normal",
  31124. height: math.unit(2.5, "meters"),
  31125. default: true
  31126. },
  31127. {
  31128. name: "Macro",
  31129. height: math.unit(95, "meters")
  31130. },
  31131. {
  31132. name: "Megamacro",
  31133. height: math.unit(150, "km")
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31139. {
  31140. front: {
  31141. height: math.unit(4.2, "meters"),
  31142. preyCapacity: math.unit(50, "m^3"),
  31143. weight: math.unit(30, "tonnes"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/sydney/front.svg",
  31147. extra: 1177/1129,
  31148. bottom: 197/1374
  31149. },
  31150. extraAttributes: {
  31151. "length": {
  31152. name: "Length",
  31153. power: 1,
  31154. type: "length",
  31155. base: math.unit(21, "meters")
  31156. },
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(4.2, "meters"),
  31164. default: true
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31170. {
  31171. back: {
  31172. height: math.unit(201, "feet"),
  31173. name: "Back",
  31174. image: {
  31175. source: "./media/characters/jessica/back.svg",
  31176. extra: 273 / 259,
  31177. bottom: 7 / 280
  31178. }
  31179. },
  31180. },
  31181. [
  31182. {
  31183. name: "Normal",
  31184. height: math.unit(201, "feet"),
  31185. default: true
  31186. },
  31187. {
  31188. name: "Megamacro",
  31189. height: math.unit(8, "miles")
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31195. {
  31196. side: {
  31197. height: math.unit(5.6, "m"),
  31198. weight: math.unit(8000, "kg"),
  31199. name: "Side",
  31200. image: {
  31201. source: "./media/characters/victoria/side.svg",
  31202. extra: 1542/1229,
  31203. bottom: 124/1666
  31204. }
  31205. },
  31206. maw: {
  31207. height: math.unit(7.14, "feet"),
  31208. name: "Maw",
  31209. image: {
  31210. source: "./media/characters/victoria/maw.svg"
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(5.6, "m"),
  31218. default: true
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31224. {
  31225. front: {
  31226. height: math.unit(5 + 6 / 12, "feet"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/cat/front.svg",
  31230. extra: 1449/1295,
  31231. bottom: 34/1483
  31232. },
  31233. form: "cat",
  31234. default: true
  31235. },
  31236. back: {
  31237. height: math.unit(5 + 6 / 12, "feet"),
  31238. name: "Back",
  31239. image: {
  31240. source: "./media/characters/cat/back.svg",
  31241. extra: 1466/1301,
  31242. bottom: 19/1485
  31243. },
  31244. form: "cat"
  31245. },
  31246. taur: {
  31247. height: math.unit(7, "feet"),
  31248. name: "Taur",
  31249. image: {
  31250. source: "./media/characters/cat/taur.svg",
  31251. extra: 1389/1233,
  31252. bottom: 83/1472
  31253. },
  31254. form: "taur",
  31255. default: true
  31256. },
  31257. lucarioFront: {
  31258. height: math.unit(4, "feet"),
  31259. name: "Lucario (Front)",
  31260. image: {
  31261. source: "./media/characters/cat/lucario-front.svg",
  31262. extra: 1149/1019,
  31263. bottom: 84/1233
  31264. },
  31265. form: "lucario",
  31266. default: true
  31267. },
  31268. lucarioBack: {
  31269. height: math.unit(4, "feet"),
  31270. name: "Lucario (Back)",
  31271. image: {
  31272. source: "./media/characters/cat/lucario-back.svg",
  31273. extra: 1190/1059,
  31274. bottom: 33/1223
  31275. },
  31276. form: "lucario"
  31277. },
  31278. megaLucario: {
  31279. height: math.unit(4, "feet"),
  31280. name: "Mega Lucario",
  31281. image: {
  31282. source: "./media/characters/cat/mega-lucario.svg",
  31283. extra: 1515 / 1319,
  31284. bottom: 63 / 1578
  31285. },
  31286. form: "lucario"
  31287. },
  31288. nickit: {
  31289. height: math.unit(2, "feet"),
  31290. name: "Nickit",
  31291. image: {
  31292. source: "./media/characters/cat/nickit.svg",
  31293. extra: 1980 / 1585,
  31294. bottom: 102 / 2082
  31295. },
  31296. form: "nickit",
  31297. default: true
  31298. },
  31299. lopunnyFront: {
  31300. height: math.unit(5, "feet"),
  31301. name: "Lopunny (Front)",
  31302. image: {
  31303. source: "./media/characters/cat/lopunny-front.svg",
  31304. extra: 1782 / 1469,
  31305. bottom: 38 / 1820
  31306. },
  31307. form: "lopunny",
  31308. default: true
  31309. },
  31310. lopunnyBack: {
  31311. height: math.unit(5, "feet"),
  31312. name: "Lopunny (Back)",
  31313. image: {
  31314. source: "./media/characters/cat/lopunny-back.svg",
  31315. extra: 1660 / 1490,
  31316. bottom: 25 / 1685
  31317. },
  31318. form: "lopunny"
  31319. },
  31320. },
  31321. [
  31322. {
  31323. name: "Really small",
  31324. height: math.unit(1, "nm")
  31325. },
  31326. {
  31327. name: "Micro",
  31328. height: math.unit(5, "inches")
  31329. },
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(5 + 6 / 12, "feet"),
  31333. default: true
  31334. },
  31335. {
  31336. name: "Macro",
  31337. height: math.unit(50, "feet")
  31338. },
  31339. {
  31340. name: "Macro+",
  31341. height: math.unit(150, "feet")
  31342. },
  31343. {
  31344. name: "Megamacro",
  31345. height: math.unit(100, "miles")
  31346. },
  31347. ]
  31348. ))
  31349. characterMakers.push(() => makeCharacter(
  31350. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31351. {
  31352. front: {
  31353. height: math.unit(63.4, "meters"),
  31354. weight: math.unit(3.28349e+6, "kilograms"),
  31355. name: "Front",
  31356. image: {
  31357. source: "./media/characters/kirina-violet/front.svg",
  31358. extra: 2812 / 2725,
  31359. bottom: 0 / 2812
  31360. }
  31361. },
  31362. back: {
  31363. height: math.unit(63.4, "meters"),
  31364. weight: math.unit(3.28349e+6, "kilograms"),
  31365. name: "Back",
  31366. image: {
  31367. source: "./media/characters/kirina-violet/back.svg",
  31368. extra: 2812 / 2725,
  31369. bottom: 0 / 2812
  31370. }
  31371. },
  31372. mouth: {
  31373. height: math.unit(4.35, "meters"),
  31374. name: "Mouth",
  31375. image: {
  31376. source: "./media/characters/kirina-violet/mouth.svg"
  31377. }
  31378. },
  31379. paw: {
  31380. height: math.unit(5.6, "meters"),
  31381. name: "Paw",
  31382. image: {
  31383. source: "./media/characters/kirina-violet/paw.svg"
  31384. }
  31385. },
  31386. tail: {
  31387. height: math.unit(18, "meters"),
  31388. name: "Tail",
  31389. image: {
  31390. source: "./media/characters/kirina-violet/tail.svg"
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Macro",
  31397. height: math.unit(63.4, "meters"),
  31398. default: true
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(75, "feet"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/cat-gigachu/front.svg",
  31410. extra: 1239/1027,
  31411. bottom: 32/1271
  31412. }
  31413. },
  31414. back: {
  31415. height: math.unit(75, "feet"),
  31416. name: "Back",
  31417. image: {
  31418. source: "./media/characters/cat-gigachu/back.svg",
  31419. extra: 1229/1030,
  31420. bottom: 9/1238
  31421. }
  31422. },
  31423. },
  31424. [
  31425. {
  31426. name: "Dynamax",
  31427. height: math.unit(75, "feet"),
  31428. default: true
  31429. },
  31430. ]
  31431. ))
  31432. characterMakers.push(() => makeCharacter(
  31433. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31434. {
  31435. front: {
  31436. height: math.unit(6, "feet"),
  31437. weight: math.unit(150, "lb"),
  31438. name: "Front",
  31439. image: {
  31440. source: "./media/characters/sfaiyan/front.svg",
  31441. extra: 999 / 978,
  31442. bottom: 5 / 1004
  31443. }
  31444. },
  31445. },
  31446. [
  31447. {
  31448. name: "Normal",
  31449. height: math.unit(1.82, "meters")
  31450. },
  31451. {
  31452. name: "Giant",
  31453. height: math.unit(2.27, "km"),
  31454. default: true
  31455. },
  31456. ]
  31457. ))
  31458. characterMakers.push(() => makeCharacter(
  31459. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31460. {
  31461. front: {
  31462. height: math.unit(179, "cm"),
  31463. weight: math.unit(100, "kg"),
  31464. name: "Front",
  31465. image: {
  31466. source: "./media/characters/raunehkeli/front.svg",
  31467. extra: 1934 / 1926,
  31468. bottom: 0 / 1934
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(179, "cm")
  31476. },
  31477. {
  31478. name: "Maximum",
  31479. height: math.unit(575, "meters"),
  31480. default: true
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31486. {
  31487. front: {
  31488. height: math.unit(6, "feet"),
  31489. weight: math.unit(150, "lb"),
  31490. name: "Front",
  31491. image: {
  31492. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31493. extra: 2625 / 2518,
  31494. bottom: 60 / 2685
  31495. }
  31496. },
  31497. },
  31498. [
  31499. {
  31500. name: "Normal",
  31501. height: math.unit(6 + 2 / 12, "feet")
  31502. },
  31503. {
  31504. name: "Macro",
  31505. height: math.unit(1180, "feet"),
  31506. default: true
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31512. {
  31513. front: {
  31514. height: math.unit(5 + 6 / 12, "feet"),
  31515. weight: math.unit(108, "lb"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/lilith-zott/front.svg",
  31519. extra: 2510 / 2238,
  31520. bottom: 100 / 2610
  31521. }
  31522. },
  31523. frontDressed: {
  31524. height: math.unit(5 + 6 / 12, "feet"),
  31525. weight: math.unit(108, "lb"),
  31526. name: "Front (Dressed)",
  31527. image: {
  31528. source: "./media/characters/lilith-zott/front-dressed.svg",
  31529. extra: 2510 / 2238,
  31530. bottom: 100 / 2610
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(5 + 6 / 12, "feet")
  31538. },
  31539. {
  31540. name: "Macro",
  31541. height: math.unit(1030, "feet"),
  31542. default: true
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31548. {
  31549. front: {
  31550. height: math.unit(6, "feet"),
  31551. weight: math.unit(150, "lb"),
  31552. name: "Front",
  31553. image: {
  31554. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31555. extra: 2567 / 2435,
  31556. bottom: 39 / 2606
  31557. }
  31558. },
  31559. frontSuper: {
  31560. height: math.unit(6, "feet"),
  31561. name: "Front (Super)",
  31562. image: {
  31563. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31564. extra: 2567 / 2435,
  31565. bottom: 39 / 2606
  31566. }
  31567. },
  31568. },
  31569. [
  31570. {
  31571. name: "Normal",
  31572. height: math.unit(5 + 10 / 12, "feet")
  31573. },
  31574. {
  31575. name: "Macro",
  31576. height: math.unit(1100, "feet"),
  31577. default: true
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31583. {
  31584. front: {
  31585. height: math.unit(100, "miles"),
  31586. name: "Front",
  31587. image: {
  31588. source: "./media/characters/sona/front.svg",
  31589. extra: 2433 / 2201,
  31590. bottom: 53 / 2486
  31591. }
  31592. },
  31593. foot: {
  31594. height: math.unit(16.1, "miles"),
  31595. name: "Foot",
  31596. image: {
  31597. source: "./media/characters/sona/foot.svg"
  31598. }
  31599. },
  31600. },
  31601. [
  31602. {
  31603. name: "Macro",
  31604. height: math.unit(100, "miles"),
  31605. default: true
  31606. },
  31607. ]
  31608. ))
  31609. characterMakers.push(() => makeCharacter(
  31610. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31611. {
  31612. front: {
  31613. height: math.unit(6, "feet"),
  31614. weight: math.unit(150, "lb"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/bailey/front.svg",
  31618. extra: 1778 / 1724,
  31619. bottom: 30 / 1808
  31620. }
  31621. },
  31622. },
  31623. [
  31624. {
  31625. name: "Micro",
  31626. height: math.unit(4, "inches")
  31627. },
  31628. {
  31629. name: "Normal",
  31630. height: math.unit(5 + 5 / 12, "feet"),
  31631. default: true
  31632. },
  31633. {
  31634. name: "Macro",
  31635. height: math.unit(250, "feet")
  31636. },
  31637. {
  31638. name: "Megamacro",
  31639. height: math.unit(100, "miles")
  31640. },
  31641. ]
  31642. ))
  31643. characterMakers.push(() => makeCharacter(
  31644. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31645. {
  31646. front: {
  31647. height: math.unit(5 + 2 / 12, "feet"),
  31648. weight: math.unit(120, "lb"),
  31649. name: "Front",
  31650. image: {
  31651. source: "./media/characters/snaps/front.svg",
  31652. extra: 2370 / 2177,
  31653. bottom: 48 / 2418
  31654. }
  31655. },
  31656. back: {
  31657. height: math.unit(5 + 2 / 12, "feet"),
  31658. weight: math.unit(120, "lb"),
  31659. name: "Back",
  31660. image: {
  31661. source: "./media/characters/snaps/back.svg",
  31662. extra: 2408 / 2258,
  31663. bottom: 15 / 2423
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Micro",
  31670. height: math.unit(9, "inches")
  31671. },
  31672. {
  31673. name: "Normal",
  31674. height: math.unit(5 + 2 / 12, "feet"),
  31675. default: true
  31676. },
  31677. {
  31678. name: "Mini Macro",
  31679. height: math.unit(10, "feet")
  31680. },
  31681. ]
  31682. ))
  31683. characterMakers.push(() => makeCharacter(
  31684. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31685. {
  31686. front: {
  31687. height: math.unit(1.8, "meters"),
  31688. weight: math.unit(85, "kg"),
  31689. name: "Front",
  31690. image: {
  31691. source: "./media/characters/azteck/front.svg",
  31692. extra: 2815 / 2625,
  31693. bottom: 89 / 2904
  31694. }
  31695. },
  31696. back: {
  31697. height: math.unit(1.8, "meters"),
  31698. weight: math.unit(85, "kg"),
  31699. name: "Back",
  31700. image: {
  31701. source: "./media/characters/azteck/back.svg",
  31702. extra: 2856 / 2648,
  31703. bottom: 85 / 2941
  31704. }
  31705. },
  31706. frontDressed: {
  31707. height: math.unit(1.8, "meters"),
  31708. weight: math.unit(85, "kg"),
  31709. name: "Front (Dressed)",
  31710. image: {
  31711. source: "./media/characters/azteck/front-dressed.svg",
  31712. extra: 2147 / 2003,
  31713. bottom: 68 / 2215
  31714. }
  31715. },
  31716. head: {
  31717. height: math.unit(0.47, "meters"),
  31718. weight: math.unit(85, "kg"),
  31719. name: "Head",
  31720. image: {
  31721. source: "./media/characters/azteck/head.svg"
  31722. }
  31723. },
  31724. },
  31725. [
  31726. {
  31727. name: "Bite sized",
  31728. height: math.unit(16, "cm")
  31729. },
  31730. {
  31731. name: "Normal",
  31732. height: math.unit(1.8, "meters"),
  31733. default: true
  31734. },
  31735. ]
  31736. ))
  31737. characterMakers.push(() => makeCharacter(
  31738. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31739. {
  31740. front: {
  31741. height: math.unit(6, "feet"),
  31742. weight: math.unit(150, "lb"),
  31743. name: "Front",
  31744. image: {
  31745. source: "./media/characters/pidge/front.svg",
  31746. extra: 1936/1820,
  31747. bottom: 0/1936
  31748. }
  31749. },
  31750. back: {
  31751. height: math.unit(6, "feet"),
  31752. weight: math.unit(150, "lb"),
  31753. name: "Back",
  31754. image: {
  31755. source: "./media/characters/pidge/back.svg",
  31756. extra: 1938/1843,
  31757. bottom: 0/1938
  31758. }
  31759. },
  31760. casual: {
  31761. height: math.unit(6, "feet"),
  31762. weight: math.unit(150, "lb"),
  31763. name: "Casual",
  31764. image: {
  31765. source: "./media/characters/pidge/casual.svg",
  31766. extra: 1936/1820,
  31767. bottom: 0/1936
  31768. }
  31769. },
  31770. tech: {
  31771. height: math.unit(6, "feet"),
  31772. weight: math.unit(150, "lb"),
  31773. name: "Tech",
  31774. image: {
  31775. source: "./media/characters/pidge/tech.svg",
  31776. extra: 1802/1682,
  31777. bottom: 0/1802
  31778. }
  31779. },
  31780. head: {
  31781. height: math.unit(1.61, "feet"),
  31782. name: "Head",
  31783. image: {
  31784. source: "./media/characters/pidge/head.svg"
  31785. }
  31786. },
  31787. collar: {
  31788. height: math.unit(0.82, "feet"),
  31789. name: "Collar",
  31790. image: {
  31791. source: "./media/characters/pidge/collar.svg"
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Macro",
  31798. height: math.unit(2, "mile"),
  31799. default: true
  31800. },
  31801. {
  31802. name: "PUPPY",
  31803. height: math.unit(20, "miles")
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31809. {
  31810. front: {
  31811. height: math.unit(6, "feet"),
  31812. weight: math.unit(150, "lb"),
  31813. name: "Front",
  31814. image: {
  31815. source: "./media/characters/en/front.svg",
  31816. extra: 1697 / 1563,
  31817. bottom: 103 / 1800
  31818. }
  31819. },
  31820. back: {
  31821. height: math.unit(6, "feet"),
  31822. weight: math.unit(150, "lb"),
  31823. name: "Back",
  31824. image: {
  31825. source: "./media/characters/en/back.svg",
  31826. extra: 1700 / 1570,
  31827. bottom: 51 / 1751
  31828. }
  31829. },
  31830. frontDressed: {
  31831. height: math.unit(6, "feet"),
  31832. weight: math.unit(150, "lb"),
  31833. name: "Front (Dressed)",
  31834. image: {
  31835. source: "./media/characters/en/front-dressed.svg",
  31836. extra: 1697 / 1563,
  31837. bottom: 103 / 1800
  31838. }
  31839. },
  31840. backDressed: {
  31841. height: math.unit(6, "feet"),
  31842. weight: math.unit(150, "lb"),
  31843. name: "Back (Dressed)",
  31844. image: {
  31845. source: "./media/characters/en/back-dressed.svg",
  31846. extra: 1700 / 1570,
  31847. bottom: 51 / 1751
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Macro",
  31854. height: math.unit(210, "feet"),
  31855. default: true
  31856. },
  31857. ]
  31858. ))
  31859. characterMakers.push(() => makeCharacter(
  31860. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31861. {
  31862. front: {
  31863. height: math.unit(6, "feet"),
  31864. weight: math.unit(150, "lb"),
  31865. name: "Front",
  31866. image: {
  31867. source: "./media/characters/haze-orris/front.svg",
  31868. extra: 3975 / 3525,
  31869. bottom: 137 / 4112
  31870. }
  31871. },
  31872. },
  31873. [
  31874. {
  31875. name: "Micro",
  31876. height: math.unit(150, "mm"),
  31877. default: true
  31878. },
  31879. ]
  31880. ))
  31881. characterMakers.push(() => makeCharacter(
  31882. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31883. {
  31884. front: {
  31885. height: math.unit(6, "feet"),
  31886. weight: math.unit(150, "lb"),
  31887. name: "Front",
  31888. image: {
  31889. source: "./media/characters/casselene-yaro/front.svg",
  31890. extra: 4721 / 4541,
  31891. bottom: 82 / 4803
  31892. }
  31893. },
  31894. back: {
  31895. height: math.unit(6, "feet"),
  31896. weight: math.unit(150, "lb"),
  31897. name: "Back",
  31898. image: {
  31899. source: "./media/characters/casselene-yaro/back.svg",
  31900. extra: 4569 / 4377,
  31901. bottom: 69 / 4638
  31902. }
  31903. },
  31904. dressed: {
  31905. height: math.unit(6, "feet"),
  31906. weight: math.unit(150, "lb"),
  31907. name: "Dressed",
  31908. image: {
  31909. source: "./media/characters/casselene-yaro/dressed.svg",
  31910. extra: 4721 / 4541,
  31911. bottom: 82 / 4803
  31912. }
  31913. },
  31914. maw: {
  31915. height: math.unit(1, "feet"),
  31916. name: "Maw",
  31917. image: {
  31918. source: "./media/characters/casselene-yaro/maw.svg"
  31919. }
  31920. },
  31921. },
  31922. [
  31923. {
  31924. name: "Macro",
  31925. height: math.unit(190, "feet"),
  31926. default: true
  31927. },
  31928. ]
  31929. ))
  31930. characterMakers.push(() => makeCharacter(
  31931. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31932. {
  31933. front: {
  31934. height: math.unit(10, "feet"),
  31935. weight: math.unit(15015, "lb"),
  31936. name: "Front",
  31937. image: {
  31938. source: "./media/characters/platine/front.svg",
  31939. extra: 1741/1650,
  31940. bottom: 84/1825
  31941. }
  31942. },
  31943. side: {
  31944. height: math.unit(10, "feet"),
  31945. weight: math.unit(15015, "lb"),
  31946. name: "Side",
  31947. image: {
  31948. source: "./media/characters/platine/side.svg",
  31949. extra: 1790/1705,
  31950. bottom: 29/1819
  31951. }
  31952. },
  31953. },
  31954. [
  31955. {
  31956. name: "Normal",
  31957. height: math.unit(10, "feet"),
  31958. default: true
  31959. },
  31960. {
  31961. name: "Macro",
  31962. height: math.unit(100, "feet")
  31963. },
  31964. {
  31965. name: "Megamacro",
  31966. height: math.unit(1000, "feet")
  31967. },
  31968. ]
  31969. ))
  31970. characterMakers.push(() => makeCharacter(
  31971. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31972. {
  31973. front: {
  31974. height: math.unit(15 + 5 / 12, "feet"),
  31975. weight: math.unit(4600, "lb"),
  31976. name: "Front",
  31977. image: {
  31978. source: "./media/characters/neapolitan-ananassa/front.svg",
  31979. extra: 2903 / 2736,
  31980. bottom: 0 / 2903
  31981. }
  31982. },
  31983. side: {
  31984. height: math.unit(15 + 5 / 12, "feet"),
  31985. weight: math.unit(4600, "lb"),
  31986. name: "Side",
  31987. image: {
  31988. source: "./media/characters/neapolitan-ananassa/side.svg",
  31989. extra: 2925 / 2719,
  31990. bottom: 0 / 2925
  31991. }
  31992. },
  31993. back: {
  31994. height: math.unit(15 + 5 / 12, "feet"),
  31995. weight: math.unit(4600, "lb"),
  31996. name: "Back",
  31997. image: {
  31998. source: "./media/characters/neapolitan-ananassa/back.svg",
  31999. extra: 2903 / 2736,
  32000. bottom: 0 / 2903
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(15 + 5 / 12, "feet"),
  32008. default: true
  32009. },
  32010. {
  32011. name: "Post-Millenium",
  32012. height: math.unit(35 + 5 / 12, "feet")
  32013. },
  32014. {
  32015. name: "Post-Era",
  32016. height: math.unit(450 + 5 / 12, "feet")
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32022. {
  32023. front: {
  32024. height: math.unit(300, "meters"),
  32025. weight: math.unit(125000, "tonnes"),
  32026. name: "Front",
  32027. image: {
  32028. source: "./media/characters/pazuzu/front.svg",
  32029. extra: 877 / 794,
  32030. bottom: 47 / 924
  32031. }
  32032. },
  32033. },
  32034. [
  32035. {
  32036. name: "Macro",
  32037. height: math.unit(300, "meters"),
  32038. default: true
  32039. },
  32040. ]
  32041. ))
  32042. characterMakers.push(() => makeCharacter(
  32043. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32044. {
  32045. side: {
  32046. height: math.unit(10 + 7 / 12, "feet"),
  32047. weight: math.unit(2.5, "tons"),
  32048. name: "Side",
  32049. image: {
  32050. source: "./media/characters/aasha/side.svg",
  32051. extra: 1345 / 1245,
  32052. bottom: 111 / 1456
  32053. }
  32054. },
  32055. back: {
  32056. height: math.unit(10 + 7 / 12, "feet"),
  32057. weight: math.unit(2.5, "tons"),
  32058. name: "Back",
  32059. image: {
  32060. source: "./media/characters/aasha/back.svg",
  32061. extra: 1133 / 1057,
  32062. bottom: 257 / 1390
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(10 + 7 / 12, "feet"),
  32070. default: true
  32071. },
  32072. ]
  32073. ))
  32074. characterMakers.push(() => makeCharacter(
  32075. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32076. {
  32077. front: {
  32078. height: math.unit(6 + 3 / 12, "feet"),
  32079. name: "Front",
  32080. image: {
  32081. source: "./media/characters/nevan/front.svg",
  32082. extra: 704 / 704,
  32083. bottom: 28 / 732
  32084. }
  32085. },
  32086. back: {
  32087. height: math.unit(6 + 3 / 12, "feet"),
  32088. name: "Back",
  32089. image: {
  32090. source: "./media/characters/nevan/back.svg",
  32091. extra: 714 / 714,
  32092. bottom: 21 / 735
  32093. }
  32094. },
  32095. frontFlaccid: {
  32096. height: math.unit(6 + 3 / 12, "feet"),
  32097. name: "Front (Flaccid)",
  32098. image: {
  32099. source: "./media/characters/nevan/front-flaccid.svg",
  32100. extra: 704 / 704,
  32101. bottom: 28 / 732
  32102. }
  32103. },
  32104. frontErect: {
  32105. height: math.unit(6 + 3 / 12, "feet"),
  32106. name: "Front (Erect)",
  32107. image: {
  32108. source: "./media/characters/nevan/front-erect.svg",
  32109. extra: 704 / 704,
  32110. bottom: 28 / 732
  32111. }
  32112. },
  32113. backFlaccid: {
  32114. height: math.unit(6 + 3 / 12, "feet"),
  32115. name: "Back (Flaccid)",
  32116. image: {
  32117. source: "./media/characters/nevan/back-flaccid.svg",
  32118. extra: 714 / 714,
  32119. bottom: 21 / 735
  32120. }
  32121. },
  32122. },
  32123. [
  32124. {
  32125. name: "Normal",
  32126. height: math.unit(6 + 3 / 12, "feet"),
  32127. default: true
  32128. },
  32129. ]
  32130. ))
  32131. characterMakers.push(() => makeCharacter(
  32132. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32133. {
  32134. front: {
  32135. height: math.unit(4, "feet"),
  32136. name: "Front",
  32137. image: {
  32138. source: "./media/characters/arhan/front.svg",
  32139. extra: 3368 / 3133,
  32140. bottom: 0 / 3368
  32141. }
  32142. },
  32143. side: {
  32144. height: math.unit(4, "feet"),
  32145. name: "Side",
  32146. image: {
  32147. source: "./media/characters/arhan/side.svg",
  32148. extra: 3347 / 3105,
  32149. bottom: 0 / 3347
  32150. }
  32151. },
  32152. tongue: {
  32153. height: math.unit(1.42, "feet"),
  32154. name: "Tongue",
  32155. image: {
  32156. source: "./media/characters/arhan/tongue.svg"
  32157. }
  32158. },
  32159. head: {
  32160. height: math.unit(0.85, "feet"),
  32161. name: "Head",
  32162. image: {
  32163. source: "./media/characters/arhan/head.svg"
  32164. }
  32165. },
  32166. },
  32167. [
  32168. {
  32169. name: "Normal",
  32170. height: math.unit(4, "feet"),
  32171. default: true
  32172. },
  32173. ]
  32174. ))
  32175. characterMakers.push(() => makeCharacter(
  32176. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32177. {
  32178. front: {
  32179. height: math.unit(5 + 7.5 / 12, "feet"),
  32180. weight: math.unit(120, "lb"),
  32181. name: "Front",
  32182. image: {
  32183. source: "./media/characters/digi-duncan/front.svg",
  32184. extra: 330 / 326,
  32185. bottom: 16 / 346
  32186. }
  32187. },
  32188. side: {
  32189. height: math.unit(5 + 7.5 / 12, "feet"),
  32190. weight: math.unit(120, "lb"),
  32191. name: "Side",
  32192. image: {
  32193. source: "./media/characters/digi-duncan/side.svg",
  32194. extra: 341 / 337,
  32195. bottom: 1 / 342
  32196. }
  32197. },
  32198. back: {
  32199. height: math.unit(5 + 7.5 / 12, "feet"),
  32200. weight: math.unit(120, "lb"),
  32201. name: "Back",
  32202. image: {
  32203. source: "./media/characters/digi-duncan/back.svg",
  32204. extra: 330 / 326,
  32205. bottom: 12 / 342
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Speck",
  32212. height: math.unit(0.25, "mm")
  32213. },
  32214. {
  32215. name: "Micro",
  32216. height: math.unit(5, "mm")
  32217. },
  32218. {
  32219. name: "Tiny",
  32220. height: math.unit(0.5, "inches"),
  32221. default: true
  32222. },
  32223. {
  32224. name: "Human",
  32225. height: math.unit(5 + 7.5 / 12, "feet")
  32226. },
  32227. {
  32228. name: "Minigiant",
  32229. height: math.unit(8 + 5.25, "feet")
  32230. },
  32231. {
  32232. name: "Giant",
  32233. height: math.unit(2000, "feet")
  32234. },
  32235. {
  32236. name: "Mega",
  32237. height: math.unit(371.1, "miles")
  32238. },
  32239. ]
  32240. ))
  32241. characterMakers.push(() => makeCharacter(
  32242. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32243. {
  32244. front: {
  32245. height: math.unit(2, "meters"),
  32246. weight: math.unit(350, "kg"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32250. extra: 898 / 838,
  32251. bottom: 9 / 907
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Micro",
  32258. height: math.unit(8, "meters")
  32259. },
  32260. {
  32261. name: "Normal",
  32262. height: math.unit(50, "meters"),
  32263. default: true
  32264. },
  32265. {
  32266. name: "Macro",
  32267. height: math.unit(500, "meters")
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(6 + 6 / 12, "feet"),
  32276. name: "Front",
  32277. image: {
  32278. source: "./media/characters/khardesh/front.svg",
  32279. extra: 1788/1596,
  32280. bottom: 66/1854
  32281. }
  32282. },
  32283. back: {
  32284. height: math.unit(6 + 6 / 12, "feet"),
  32285. name: "Back",
  32286. image: {
  32287. source: "./media/characters/khardesh/back.svg",
  32288. extra: 1781/1584,
  32289. bottom: 68/1849
  32290. }
  32291. },
  32292. },
  32293. [
  32294. {
  32295. name: "Normal",
  32296. height: math.unit(6 + 6 / 12, "feet"),
  32297. default: true
  32298. },
  32299. {
  32300. name: "Normal+",
  32301. height: math.unit(4, "meters")
  32302. },
  32303. {
  32304. name: "Macro",
  32305. height: math.unit(50, "meters")
  32306. },
  32307. {
  32308. name: "Macro+",
  32309. height: math.unit(100, "meters")
  32310. },
  32311. {
  32312. name: "Megamacro",
  32313. height: math.unit(20, "km")
  32314. },
  32315. ]
  32316. ))
  32317. characterMakers.push(() => makeCharacter(
  32318. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32319. {
  32320. front: {
  32321. height: math.unit(6, "feet"),
  32322. weight: math.unit(150, "lb"),
  32323. name: "Front",
  32324. image: {
  32325. source: "./media/characters/kosho/front.svg",
  32326. extra: 1847 / 1847,
  32327. bottom: 86 / 1933
  32328. }
  32329. },
  32330. },
  32331. [
  32332. {
  32333. name: "Second-stage micro",
  32334. height: math.unit(0.5, "inches")
  32335. },
  32336. {
  32337. name: "First-stage micro",
  32338. height: math.unit(6, "inches")
  32339. },
  32340. {
  32341. name: "Normal",
  32342. height: math.unit(6, "feet"),
  32343. default: true
  32344. },
  32345. {
  32346. name: "First-stage macro",
  32347. height: math.unit(72, "feet")
  32348. },
  32349. {
  32350. name: "Second-stage macro",
  32351. height: math.unit(864, "feet")
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32357. {
  32358. normal: {
  32359. height: math.unit(4 + 6 / 12, "feet"),
  32360. name: "Normal",
  32361. image: {
  32362. source: "./media/characters/hydra/normal.svg",
  32363. extra: 2833 / 2634,
  32364. bottom: 68 / 2901
  32365. }
  32366. },
  32367. smol: {
  32368. height: math.unit(0.705, "inches"),
  32369. name: "Smol",
  32370. image: {
  32371. source: "./media/characters/hydra/smol.svg",
  32372. extra: 2715 / 2540,
  32373. bottom: 0 / 2715
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(4 + 6 / 12, "feet"),
  32381. default: true
  32382. }
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32387. {
  32388. front: {
  32389. height: math.unit(0.6, "cm"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/daz/front.svg",
  32393. extra: 1682 / 1164,
  32394. bottom: 42 / 1724
  32395. }
  32396. },
  32397. },
  32398. [
  32399. {
  32400. name: "Normal",
  32401. height: math.unit(0.6, "cm"),
  32402. default: true
  32403. },
  32404. ]
  32405. ))
  32406. characterMakers.push(() => makeCharacter(
  32407. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32408. {
  32409. front: {
  32410. height: math.unit(6, "feet"),
  32411. weight: math.unit(235, "lb"),
  32412. name: "Front",
  32413. image: {
  32414. source: "./media/characters/theo-pangolin/front.svg",
  32415. extra: 1996 / 1969,
  32416. bottom: 115 / 2111
  32417. }
  32418. },
  32419. back: {
  32420. height: math.unit(6, "feet"),
  32421. weight: math.unit(235, "lb"),
  32422. name: "Back",
  32423. image: {
  32424. source: "./media/characters/theo-pangolin/back.svg",
  32425. extra: 1979 / 1979,
  32426. bottom: 40 / 2019
  32427. }
  32428. },
  32429. feral: {
  32430. height: math.unit(2, "feet"),
  32431. weight: math.unit(30, "lb"),
  32432. name: "Feral",
  32433. image: {
  32434. source: "./media/characters/theo-pangolin/feral.svg",
  32435. extra: 803 / 791,
  32436. bottom: 181 / 984
  32437. }
  32438. },
  32439. footFive: {
  32440. height: math.unit(1.43, "feet"),
  32441. name: "Foot (Five Toes)",
  32442. image: {
  32443. source: "./media/characters/theo-pangolin/foot-five.svg"
  32444. }
  32445. },
  32446. footFour: {
  32447. height: math.unit(1.43, "feet"),
  32448. name: "Foot (Four Toes)",
  32449. image: {
  32450. source: "./media/characters/theo-pangolin/foot-four.svg"
  32451. }
  32452. },
  32453. handFour: {
  32454. height: math.unit(0.81, "feet"),
  32455. name: "Hand (Four Fingers)",
  32456. image: {
  32457. source: "./media/characters/theo-pangolin/hand-four.svg"
  32458. }
  32459. },
  32460. handThree: {
  32461. height: math.unit(0.81, "feet"),
  32462. name: "Hand (Three Fingers)",
  32463. image: {
  32464. source: "./media/characters/theo-pangolin/hand-three.svg"
  32465. }
  32466. },
  32467. headFront: {
  32468. height: math.unit(1.37, "feet"),
  32469. name: "Head (Front)",
  32470. image: {
  32471. source: "./media/characters/theo-pangolin/head-front.svg"
  32472. }
  32473. },
  32474. headSide: {
  32475. height: math.unit(1.43, "feet"),
  32476. name: "Head (Side)",
  32477. image: {
  32478. source: "./media/characters/theo-pangolin/head-side.svg"
  32479. }
  32480. },
  32481. tongue: {
  32482. height: math.unit(2.29, "feet"),
  32483. name: "Tongue",
  32484. image: {
  32485. source: "./media/characters/theo-pangolin/tongue.svg"
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Normal",
  32492. height: math.unit(6, "feet")
  32493. },
  32494. {
  32495. name: "Macro",
  32496. height: math.unit(400, "feet"),
  32497. default: true
  32498. },
  32499. ]
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32503. {
  32504. front: {
  32505. height: math.unit(6, "inches"),
  32506. weight: math.unit(0.036, "kg"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/renée/front.svg",
  32510. extra: 900 / 886,
  32511. bottom: 8 / 908
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Nano",
  32518. height: math.unit(1, "nm")
  32519. },
  32520. {
  32521. name: "Micro",
  32522. height: math.unit(1, "mm")
  32523. },
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(6, "inches")
  32527. },
  32528. {
  32529. name: "Macro",
  32530. height: math.unit(2000, "feet"),
  32531. default: true
  32532. },
  32533. {
  32534. name: "Megamacro",
  32535. height: math.unit(2, "km")
  32536. },
  32537. {
  32538. name: "Gigamacro",
  32539. height: math.unit(2000, "km")
  32540. },
  32541. {
  32542. name: "Teramacro",
  32543. height: math.unit(250000, "km")
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(4, "meters"),
  32552. weight: math.unit(150, "kg"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/caledvwlch/front.svg",
  32556. extra: 1757/1537,
  32557. bottom: 31/1788
  32558. }
  32559. },
  32560. side: {
  32561. height: math.unit(4, "meters"),
  32562. weight: math.unit(150, "kg"),
  32563. name: "Side",
  32564. image: {
  32565. source: "./media/characters/caledvwlch/side.svg",
  32566. extra: 1605 / 1536,
  32567. bottom: 31 / 1636
  32568. }
  32569. },
  32570. back: {
  32571. height: math.unit(4, "meters"),
  32572. weight: math.unit(150, "kg"),
  32573. name: "Back",
  32574. image: {
  32575. source: "./media/characters/caledvwlch/back.svg",
  32576. extra: 1635 / 1565,
  32577. bottom: 27 / 1662
  32578. }
  32579. },
  32580. },
  32581. [
  32582. {
  32583. name: "\"Incognito\"",
  32584. height: math.unit(4, "meters")
  32585. },
  32586. {
  32587. name: "Small rampage",
  32588. height: math.unit(600, "meters")
  32589. },
  32590. {
  32591. name: "Mega",
  32592. height: math.unit(30, "km")
  32593. },
  32594. {
  32595. name: "Home-size",
  32596. height: math.unit(50, "km"),
  32597. default: true
  32598. },
  32599. {
  32600. name: "Giga",
  32601. height: math.unit(300, "km")
  32602. },
  32603. {
  32604. name: "Lounging",
  32605. height: math.unit(11000, "km")
  32606. },
  32607. {
  32608. name: "Planet snacking",
  32609. height: math.unit(2000000, "km")
  32610. },
  32611. ]
  32612. ))
  32613. characterMakers.push(() => makeCharacter(
  32614. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32615. {
  32616. front: {
  32617. height: math.unit(6, "feet"),
  32618. weight: math.unit(215, "lb"),
  32619. name: "Front",
  32620. image: {
  32621. source: "./media/characters/sapphire-svell/front.svg",
  32622. extra: 495 / 455,
  32623. bottom: 20 / 515
  32624. }
  32625. },
  32626. back: {
  32627. height: math.unit(6, "feet"),
  32628. weight: math.unit(216, "lb"),
  32629. name: "Back",
  32630. image: {
  32631. source: "./media/characters/sapphire-svell/back.svg",
  32632. extra: 497 / 477,
  32633. bottom: 7 / 504
  32634. }
  32635. },
  32636. maw: {
  32637. height: math.unit(1.57, "feet"),
  32638. name: "Maw",
  32639. image: {
  32640. source: "./media/characters/sapphire-svell/maw.svg"
  32641. }
  32642. },
  32643. foot: {
  32644. height: math.unit(1.07, "feet"),
  32645. name: "Foot",
  32646. image: {
  32647. source: "./media/characters/sapphire-svell/foot.svg"
  32648. }
  32649. },
  32650. toering: {
  32651. height: math.unit(1.7, "inch"),
  32652. name: "Toering",
  32653. image: {
  32654. source: "./media/characters/sapphire-svell/toering.svg"
  32655. }
  32656. },
  32657. },
  32658. [
  32659. {
  32660. name: "Normal",
  32661. height: math.unit(300, "feet"),
  32662. default: true
  32663. },
  32664. {
  32665. name: "Augmented",
  32666. height: math.unit(1250, "feet")
  32667. },
  32668. {
  32669. name: "Unleashed",
  32670. height: math.unit(3000, "feet")
  32671. },
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32676. {
  32677. side: {
  32678. height: math.unit(2 + 3 / 12, "feet"),
  32679. weight: math.unit(110, "lb"),
  32680. name: "Side",
  32681. image: {
  32682. source: "./media/characters/glitch-flux/side.svg",
  32683. extra: 997 / 805,
  32684. bottom: 20 / 1017
  32685. }
  32686. },
  32687. },
  32688. [
  32689. {
  32690. name: "Normal",
  32691. height: math.unit(2 + 3 / 12, "feet"),
  32692. default: true
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32698. {
  32699. front: {
  32700. height: math.unit(4, "meters"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/mid/front.svg",
  32704. extra: 507 / 476,
  32705. bottom: 17 / 524
  32706. }
  32707. },
  32708. back: {
  32709. height: math.unit(4, "meters"),
  32710. name: "Back",
  32711. image: {
  32712. source: "./media/characters/mid/back.svg",
  32713. extra: 519 / 487,
  32714. bottom: 7 / 526
  32715. }
  32716. },
  32717. stuck: {
  32718. height: math.unit(2.2, "meters"),
  32719. name: "Stuck",
  32720. image: {
  32721. source: "./media/characters/mid/stuck.svg",
  32722. extra: 1951 / 1869,
  32723. bottom: 88 / 2039
  32724. }
  32725. }
  32726. },
  32727. [
  32728. {
  32729. name: "Normal",
  32730. height: math.unit(4, "meters"),
  32731. default: true
  32732. },
  32733. {
  32734. name: "Big",
  32735. height: math.unit(10, "meters")
  32736. },
  32737. {
  32738. name: "Macro",
  32739. height: math.unit(800, "meters")
  32740. },
  32741. {
  32742. name: "Megamacro",
  32743. height: math.unit(100, "km")
  32744. },
  32745. {
  32746. name: "Overgrown",
  32747. height: math.unit(1, "parsec")
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32753. {
  32754. front: {
  32755. height: math.unit(2.5, "meters"),
  32756. weight: math.unit(225, "kg"),
  32757. name: "Front",
  32758. image: {
  32759. source: "./media/characters/iris/front.svg",
  32760. extra: 3348 / 3251,
  32761. bottom: 205 / 3553
  32762. }
  32763. },
  32764. maw: {
  32765. height: math.unit(0.56, "meter"),
  32766. name: "Maw",
  32767. image: {
  32768. source: "./media/characters/iris/maw.svg"
  32769. }
  32770. },
  32771. },
  32772. [
  32773. {
  32774. name: "Mewter cat",
  32775. height: math.unit(1.2, "meters")
  32776. },
  32777. {
  32778. name: "Normal",
  32779. height: math.unit(2.5, "meters"),
  32780. default: true
  32781. },
  32782. {
  32783. name: "Minimacro",
  32784. height: math.unit(18, "feet")
  32785. },
  32786. {
  32787. name: "Macro",
  32788. height: math.unit(140, "feet")
  32789. },
  32790. {
  32791. name: "Macro+",
  32792. height: math.unit(180, "meters")
  32793. },
  32794. {
  32795. name: "Megamacro",
  32796. height: math.unit(2746, "meters")
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32802. {
  32803. front: {
  32804. height: math.unit(6, "feet"),
  32805. weight: math.unit(135, "lb"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/axel/front.svg",
  32809. extra: 908 / 908,
  32810. bottom: 58 / 966
  32811. }
  32812. },
  32813. side: {
  32814. height: math.unit(6, "feet"),
  32815. weight: math.unit(135, "lb"),
  32816. name: "Side",
  32817. image: {
  32818. source: "./media/characters/axel/side.svg",
  32819. extra: 958 / 958,
  32820. bottom: 11 / 969
  32821. }
  32822. },
  32823. back: {
  32824. height: math.unit(6, "feet"),
  32825. weight: math.unit(135, "lb"),
  32826. name: "Back",
  32827. image: {
  32828. source: "./media/characters/axel/back.svg",
  32829. extra: 887 / 887,
  32830. bottom: 34 / 921
  32831. }
  32832. },
  32833. head: {
  32834. height: math.unit(1.07, "feet"),
  32835. name: "Head",
  32836. image: {
  32837. source: "./media/characters/axel/head.svg"
  32838. }
  32839. },
  32840. beak: {
  32841. height: math.unit(1.4, "feet"),
  32842. name: "Beak",
  32843. image: {
  32844. source: "./media/characters/axel/beak.svg"
  32845. }
  32846. },
  32847. beakSide: {
  32848. height: math.unit(1.4, "feet"),
  32849. name: "Beak Side",
  32850. image: {
  32851. source: "./media/characters/axel/beak-side.svg"
  32852. }
  32853. },
  32854. sheath: {
  32855. height: math.unit(0.5, "feet"),
  32856. name: "Sheath",
  32857. image: {
  32858. source: "./media/characters/axel/sheath.svg"
  32859. }
  32860. },
  32861. dick: {
  32862. height: math.unit(0.98, "feet"),
  32863. name: "Dick",
  32864. image: {
  32865. source: "./media/characters/axel/dick.svg"
  32866. }
  32867. },
  32868. },
  32869. [
  32870. {
  32871. name: "Macro",
  32872. height: math.unit(68, "meters"),
  32873. default: true
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32879. {
  32880. front: {
  32881. height: math.unit(3.5, "meters"),
  32882. weight: math.unit(1200, "kg"),
  32883. name: "Front",
  32884. image: {
  32885. source: "./media/characters/joanna/front.svg",
  32886. extra: 1596 / 1488,
  32887. bottom: 29 / 1625
  32888. }
  32889. },
  32890. back: {
  32891. height: math.unit(3.5, "meters"),
  32892. weight: math.unit(1200, "kg"),
  32893. name: "Back",
  32894. image: {
  32895. source: "./media/characters/joanna/back.svg",
  32896. extra: 1594 / 1495,
  32897. bottom: 26 / 1620
  32898. }
  32899. },
  32900. frontShorts: {
  32901. height: math.unit(3.5, "meters"),
  32902. weight: math.unit(1200, "kg"),
  32903. name: "Front (Shorts)",
  32904. image: {
  32905. source: "./media/characters/joanna/front-shorts.svg",
  32906. extra: 1596 / 1488,
  32907. bottom: 29 / 1625
  32908. }
  32909. },
  32910. frontBiker: {
  32911. height: math.unit(3.5, "meters"),
  32912. weight: math.unit(1200, "kg"),
  32913. name: "Front (Biker)",
  32914. image: {
  32915. source: "./media/characters/joanna/front-biker.svg",
  32916. extra: 1596 / 1488,
  32917. bottom: 29 / 1625
  32918. }
  32919. },
  32920. backBiker: {
  32921. height: math.unit(3.5, "meters"),
  32922. weight: math.unit(1200, "kg"),
  32923. name: "Back (Biker)",
  32924. image: {
  32925. source: "./media/characters/joanna/back-biker.svg",
  32926. extra: 1594 / 1495,
  32927. bottom: 88 / 1682
  32928. }
  32929. },
  32930. bikeLeft: {
  32931. height: math.unit(2.4, "meters"),
  32932. weight: math.unit(1600, "kg"),
  32933. name: "Bike (Left)",
  32934. image: {
  32935. source: "./media/characters/joanna/bike-left.svg",
  32936. extra: 720 / 720,
  32937. bottom: 8 / 728
  32938. }
  32939. },
  32940. bikeRight: {
  32941. height: math.unit(2.4, "meters"),
  32942. weight: math.unit(1600, "kg"),
  32943. name: "Bike (Right)",
  32944. image: {
  32945. source: "./media/characters/joanna/bike-right.svg",
  32946. extra: 720 / 720,
  32947. bottom: 8 / 728
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Incognito",
  32954. height: math.unit(3.5, "meters")
  32955. },
  32956. {
  32957. name: "Casual Big",
  32958. height: math.unit(200, "meters")
  32959. },
  32960. {
  32961. name: "Macro",
  32962. height: math.unit(600, "meters")
  32963. },
  32964. {
  32965. name: "Original",
  32966. height: math.unit(20, "km"),
  32967. default: true
  32968. },
  32969. {
  32970. name: "Giga",
  32971. height: math.unit(400, "km")
  32972. },
  32973. {
  32974. name: "Lounging",
  32975. height: math.unit(1500, "km")
  32976. },
  32977. {
  32978. name: "Planetary",
  32979. height: math.unit(200000, "km")
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32985. {
  32986. front: {
  32987. height: math.unit(6, "feet"),
  32988. weight: math.unit(150, "lb"),
  32989. name: "Front",
  32990. image: {
  32991. source: "./media/characters/hugo-sigil/front.svg",
  32992. extra: 522 / 500,
  32993. bottom: 2 / 524
  32994. }
  32995. },
  32996. back: {
  32997. height: math.unit(6, "feet"),
  32998. weight: math.unit(150, "lb"),
  32999. name: "Back",
  33000. image: {
  33001. source: "./media/characters/hugo-sigil/back.svg",
  33002. extra: 519 / 495,
  33003. bottom: 5 / 524
  33004. }
  33005. },
  33006. maw: {
  33007. height: math.unit(1.4, "feet"),
  33008. weight: math.unit(150, "lb"),
  33009. name: "Maw",
  33010. image: {
  33011. source: "./media/characters/hugo-sigil/maw.svg"
  33012. }
  33013. },
  33014. feet: {
  33015. height: math.unit(1.56, "feet"),
  33016. weight: math.unit(150, "lb"),
  33017. name: "Feet",
  33018. image: {
  33019. source: "./media/characters/hugo-sigil/feet.svg",
  33020. extra: 177 / 177,
  33021. bottom: 12 / 189
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(6, "feet")
  33029. },
  33030. {
  33031. name: "Macro",
  33032. height: math.unit(200, "feet"),
  33033. default: true
  33034. },
  33035. ]
  33036. ))
  33037. characterMakers.push(() => makeCharacter(
  33038. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33039. {
  33040. front: {
  33041. height: math.unit(6, "feet"),
  33042. weight: math.unit(150, "lb"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/peri/front.svg",
  33046. extra: 2354 / 2233,
  33047. bottom: 49 / 2403
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Really Small",
  33054. height: math.unit(1, "nm")
  33055. },
  33056. {
  33057. name: "Micro",
  33058. height: math.unit(4, "inches")
  33059. },
  33060. {
  33061. name: "Normal",
  33062. height: math.unit(7, "inches"),
  33063. default: true
  33064. },
  33065. {
  33066. name: "Macro",
  33067. height: math.unit(400, "feet")
  33068. },
  33069. {
  33070. name: "Megamacro",
  33071. height: math.unit(100, "miles")
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33077. {
  33078. frontSlim: {
  33079. height: math.unit(7, "feet"),
  33080. name: "Front (Slim)",
  33081. image: {
  33082. source: "./media/characters/issilora/front-slim.svg",
  33083. extra: 529 / 449,
  33084. bottom: 53 / 582
  33085. }
  33086. },
  33087. sideSlim: {
  33088. height: math.unit(7, "feet"),
  33089. name: "Side (Slim)",
  33090. image: {
  33091. source: "./media/characters/issilora/side-slim.svg",
  33092. extra: 570 / 480,
  33093. bottom: 30 / 600
  33094. }
  33095. },
  33096. backSlim: {
  33097. height: math.unit(7, "feet"),
  33098. name: "Back (Slim)",
  33099. image: {
  33100. source: "./media/characters/issilora/back-slim.svg",
  33101. extra: 537 / 455,
  33102. bottom: 46 / 583
  33103. }
  33104. },
  33105. frontBuff: {
  33106. height: math.unit(7, "feet"),
  33107. name: "Front (Buff)",
  33108. image: {
  33109. source: "./media/characters/issilora/front-buff.svg",
  33110. extra: 2310 / 2035,
  33111. bottom: 335 / 2645
  33112. }
  33113. },
  33114. head: {
  33115. height: math.unit(1.94, "feet"),
  33116. name: "Head",
  33117. image: {
  33118. source: "./media/characters/issilora/head.svg"
  33119. }
  33120. },
  33121. },
  33122. [
  33123. {
  33124. name: "Minimum",
  33125. height: math.unit(7, "feet")
  33126. },
  33127. {
  33128. name: "Comfortable",
  33129. height: math.unit(17, "feet")
  33130. },
  33131. {
  33132. name: "Fun Size",
  33133. height: math.unit(47, "feet")
  33134. },
  33135. {
  33136. name: "Natural Macro",
  33137. height: math.unit(137, "feet"),
  33138. default: true
  33139. },
  33140. {
  33141. name: "Maximum Kaiju",
  33142. height: math.unit(397, "feet")
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33148. {
  33149. front: {
  33150. height: math.unit(50 + 9/12, "feet"),
  33151. weight: math.unit(32.8, "tons"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/irb'iiritaahn/front.svg",
  33155. extra: 1878/1826,
  33156. bottom: 326/2204
  33157. }
  33158. },
  33159. back: {
  33160. height: math.unit(50 + 9/12, "feet"),
  33161. weight: math.unit(32.8, "tons"),
  33162. name: "Back",
  33163. image: {
  33164. source: "./media/characters/irb'iiritaahn/back.svg",
  33165. extra: 2052/2018,
  33166. bottom: 152/2204
  33167. }
  33168. },
  33169. head: {
  33170. height: math.unit(12.86, "feet"),
  33171. name: "Head",
  33172. image: {
  33173. source: "./media/characters/irb'iiritaahn/head.svg"
  33174. }
  33175. },
  33176. maw: {
  33177. height: math.unit(9.66, "feet"),
  33178. name: "Maw",
  33179. image: {
  33180. source: "./media/characters/irb'iiritaahn/maw.svg"
  33181. }
  33182. },
  33183. frontDick: {
  33184. height: math.unit(8.78461, "feet"),
  33185. name: "Front Dick",
  33186. image: {
  33187. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33188. }
  33189. },
  33190. rearDick: {
  33191. height: math.unit(8.78461, "feet"),
  33192. name: "Rear Dick",
  33193. image: {
  33194. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33195. }
  33196. },
  33197. rearDickUnfolded: {
  33198. height: math.unit(8.78, "feet"),
  33199. name: "Rear Dick (Unfolded)",
  33200. image: {
  33201. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33202. }
  33203. },
  33204. wings: {
  33205. height: math.unit(43, "feet"),
  33206. name: "Wings",
  33207. image: {
  33208. source: "./media/characters/irb'iiritaahn/wings.svg"
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Macro",
  33215. height: math.unit(50 + 9/12, "feet"),
  33216. default: true
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(205, "cm"),
  33225. weight: math.unit(102, "kg"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/irbisgreif/front.svg",
  33229. extra: 785/706,
  33230. bottom: 13/798
  33231. }
  33232. },
  33233. back: {
  33234. height: math.unit(205, "cm"),
  33235. weight: math.unit(102, "kg"),
  33236. name: "Back",
  33237. image: {
  33238. source: "./media/characters/irbisgreif/back.svg",
  33239. extra: 713/701,
  33240. bottom: 26/739
  33241. }
  33242. },
  33243. frontDressed: {
  33244. height: math.unit(216, "cm"),
  33245. weight: math.unit(102, "kg"),
  33246. name: "Front-dressed",
  33247. image: {
  33248. source: "./media/characters/irbisgreif/front-dressed.svg",
  33249. extra: 902/776,
  33250. bottom: 14/916
  33251. }
  33252. },
  33253. sideDressed: {
  33254. height: math.unit(195, "cm"),
  33255. weight: math.unit(102, "kg"),
  33256. name: "Side-dressed",
  33257. image: {
  33258. source: "./media/characters/irbisgreif/side-dressed.svg",
  33259. extra: 788/688,
  33260. bottom: 21/809
  33261. }
  33262. },
  33263. backDressed: {
  33264. height: math.unit(216, "cm"),
  33265. weight: math.unit(102, "kg"),
  33266. name: "Back-dressed",
  33267. image: {
  33268. source: "./media/characters/irbisgreif/back-dressed.svg",
  33269. extra: 901/783,
  33270. bottom: 10/911
  33271. }
  33272. },
  33273. dick: {
  33274. height: math.unit(0.49, "feet"),
  33275. name: "Dick",
  33276. image: {
  33277. source: "./media/characters/irbisgreif/dick.svg"
  33278. }
  33279. },
  33280. wingTop: {
  33281. height: math.unit(1.93 , "feet"),
  33282. name: "Wing-top",
  33283. image: {
  33284. source: "./media/characters/irbisgreif/wing-top.svg"
  33285. }
  33286. },
  33287. wingBottom: {
  33288. height: math.unit(1.93 , "feet"),
  33289. name: "Wing-bottom",
  33290. image: {
  33291. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(216, "cm"),
  33299. default: true
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(6, "feet"),
  33308. weight: math.unit(150, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/pride/front.svg",
  33312. extra: 1299/1230,
  33313. bottom: 18/1317
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(7, "feet")
  33321. },
  33322. {
  33323. name: "Mini-macro",
  33324. height: math.unit(11, "feet")
  33325. },
  33326. {
  33327. name: "Macro",
  33328. height: math.unit(15, "meters"),
  33329. default: true
  33330. },
  33331. {
  33332. name: "Macro+",
  33333. height: math.unit(40, "meters")
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33339. {
  33340. front: {
  33341. height: math.unit(4 + 2 / 12, "feet"),
  33342. weight: math.unit(95, "lb"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/vaelophis-nyx/front.svg",
  33346. extra: 2532/2330,
  33347. bottom: 0/2532
  33348. }
  33349. },
  33350. back: {
  33351. height: math.unit(4 + 2 / 12, "feet"),
  33352. weight: math.unit(95, "lb"),
  33353. name: "Back",
  33354. image: {
  33355. source: "./media/characters/vaelophis-nyx/back.svg",
  33356. extra: 2484/2361,
  33357. bottom: 0/2484
  33358. }
  33359. },
  33360. feralSide: {
  33361. height: math.unit(2 + 1/12, "feet"),
  33362. weight: math.unit(20, "lb"),
  33363. name: "Feral (Side)",
  33364. image: {
  33365. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33366. extra: 1721/1581,
  33367. bottom: 70/1791
  33368. }
  33369. },
  33370. feralLazing: {
  33371. height: math.unit(1.08, "feet"),
  33372. weight: math.unit(20, "lb"),
  33373. name: "Feral (Lazing)",
  33374. image: {
  33375. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33376. extra: 822/822,
  33377. bottom: 248/1070
  33378. }
  33379. },
  33380. ear: {
  33381. height: math.unit(0.416, "feet"),
  33382. name: "Ear",
  33383. image: {
  33384. source: "./media/characters/vaelophis-nyx/ear.svg"
  33385. }
  33386. },
  33387. eye: {
  33388. height: math.unit(0.0748, "feet"),
  33389. name: "Eye",
  33390. image: {
  33391. source: "./media/characters/vaelophis-nyx/eye.svg"
  33392. }
  33393. },
  33394. mouth: {
  33395. height: math.unit(0.378, "feet"),
  33396. name: "Mouth",
  33397. image: {
  33398. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33399. }
  33400. },
  33401. spade: {
  33402. height: math.unit(0.55, "feet"),
  33403. name: "Spade",
  33404. image: {
  33405. source: "./media/characters/vaelophis-nyx/spade.svg"
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(4 + 2/12, "feet"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33419. {
  33420. front: {
  33421. height: math.unit(7, "feet"),
  33422. weight: math.unit(231, "lb"),
  33423. name: "Front",
  33424. image: {
  33425. source: "./media/characters/flux/front.svg",
  33426. extra: 919/871,
  33427. bottom: 0/919
  33428. }
  33429. },
  33430. back: {
  33431. height: math.unit(7, "feet"),
  33432. weight: math.unit(231, "lb"),
  33433. name: "Back",
  33434. image: {
  33435. source: "./media/characters/flux/back.svg",
  33436. extra: 1040/992,
  33437. bottom: 0/1040
  33438. }
  33439. },
  33440. frontDressed: {
  33441. height: math.unit(7, "feet"),
  33442. weight: math.unit(231, "lb"),
  33443. name: "Front (Dressed)",
  33444. image: {
  33445. source: "./media/characters/flux/front-dressed.svg",
  33446. extra: 919/871,
  33447. bottom: 0/919
  33448. }
  33449. },
  33450. feralSide: {
  33451. height: math.unit(5, "feet"),
  33452. weight: math.unit(150, "lb"),
  33453. name: "Feral (Side)",
  33454. image: {
  33455. source: "./media/characters/flux/feral-side.svg",
  33456. extra: 598/528,
  33457. bottom: 28/626
  33458. }
  33459. },
  33460. head: {
  33461. height: math.unit(1.585, "feet"),
  33462. name: "Head",
  33463. image: {
  33464. source: "./media/characters/flux/head.svg"
  33465. }
  33466. },
  33467. headSide: {
  33468. height: math.unit(1.74, "feet"),
  33469. name: "Head (Side)",
  33470. image: {
  33471. source: "./media/characters/flux/head-side.svg"
  33472. }
  33473. },
  33474. headSideFire: {
  33475. height: math.unit(1.76, "feet"),
  33476. name: "Head (Side, Fire)",
  33477. image: {
  33478. source: "./media/characters/flux/head-side-fire.svg"
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(7, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(9, "feet"),
  33495. weight: math.unit(1012, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/ulfra-lupae/front.svg",
  33499. extra: 1083/1011,
  33500. bottom: 67/1150
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Micro",
  33507. height: math.unit(6, "inches")
  33508. },
  33509. {
  33510. name: "Socializing",
  33511. height: math.unit(6 + 5/12, "feet")
  33512. },
  33513. {
  33514. name: "Normal",
  33515. height: math.unit(9, "feet"),
  33516. default: true
  33517. },
  33518. {
  33519. name: "Macro",
  33520. height: math.unit(150, "feet")
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33526. {
  33527. front: {
  33528. height: math.unit(5 + 2/12, "feet"),
  33529. weight: math.unit(120, "lb"),
  33530. name: "Front",
  33531. image: {
  33532. source: "./media/characters/timber/front.svg",
  33533. extra: 2814/2705,
  33534. bottom: 181/2995
  33535. }
  33536. },
  33537. },
  33538. [
  33539. {
  33540. name: "Normal",
  33541. height: math.unit(5 + 2/12, "feet"),
  33542. default: true
  33543. },
  33544. ]
  33545. ))
  33546. characterMakers.push(() => makeCharacter(
  33547. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33548. {
  33549. front: {
  33550. height: math.unit(9, "feet"),
  33551. name: "Front",
  33552. image: {
  33553. source: "./media/characters/nicki/front.svg",
  33554. extra: 1240/990,
  33555. bottom: 45/1285
  33556. },
  33557. form: "anthro",
  33558. default: true
  33559. },
  33560. side: {
  33561. height: math.unit(9, "feet"),
  33562. name: "Side",
  33563. image: {
  33564. source: "./media/characters/nicki/side.svg",
  33565. extra: 1047/973,
  33566. bottom: 61/1108
  33567. },
  33568. form: "anthro"
  33569. },
  33570. back: {
  33571. height: math.unit(9, "feet"),
  33572. name: "Back",
  33573. image: {
  33574. source: "./media/characters/nicki/back.svg",
  33575. extra: 1006/965,
  33576. bottom: 39/1045
  33577. },
  33578. form: "anthro"
  33579. },
  33580. taur: {
  33581. height: math.unit(15, "feet"),
  33582. name: "Taur",
  33583. image: {
  33584. source: "./media/characters/nicki/taur.svg",
  33585. extra: 1592/1347,
  33586. bottom: 0/1592
  33587. },
  33588. form: "taur",
  33589. default: true
  33590. },
  33591. },
  33592. [
  33593. {
  33594. name: "Normal",
  33595. height: math.unit(9, "feet"),
  33596. form: "anthro",
  33597. default: true
  33598. },
  33599. {
  33600. name: "Normal",
  33601. height: math.unit(15, "feet"),
  33602. form: "taur",
  33603. default: true
  33604. }
  33605. ],
  33606. {
  33607. "anthro": {
  33608. name: "Anthro",
  33609. default: true
  33610. },
  33611. "taur": {
  33612. name: "Taur"
  33613. }
  33614. }
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33618. {
  33619. front: {
  33620. height: math.unit(7 + 10/12, "feet"),
  33621. weight: math.unit(3.5, "tons"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/lee/front.svg",
  33625. extra: 1773/1615,
  33626. bottom: 86/1859
  33627. }
  33628. },
  33629. hand: {
  33630. height: math.unit(1.78, "feet"),
  33631. name: "Hand",
  33632. image: {
  33633. source: "./media/characters/lee/hand.svg"
  33634. }
  33635. },
  33636. maw: {
  33637. height: math.unit(1.18, "feet"),
  33638. name: "Maw",
  33639. image: {
  33640. source: "./media/characters/lee/maw.svg"
  33641. }
  33642. },
  33643. },
  33644. [
  33645. {
  33646. name: "Normal",
  33647. height: math.unit(7 + 10/12, "feet"),
  33648. default: true
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33654. {
  33655. front: {
  33656. height: math.unit(9, "feet"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/guti/front.svg",
  33660. extra: 4551/4355,
  33661. bottom: 123/4674
  33662. }
  33663. },
  33664. tongue: {
  33665. height: math.unit(1, "feet"),
  33666. name: "Tongue",
  33667. image: {
  33668. source: "./media/characters/guti/tongue.svg"
  33669. }
  33670. },
  33671. paw: {
  33672. height: math.unit(1.18, "feet"),
  33673. name: "Paw",
  33674. image: {
  33675. source: "./media/characters/guti/paw.svg"
  33676. }
  33677. },
  33678. },
  33679. [
  33680. {
  33681. name: "Normal",
  33682. height: math.unit(9, "feet"),
  33683. default: true
  33684. },
  33685. ]
  33686. ))
  33687. characterMakers.push(() => makeCharacter(
  33688. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33689. {
  33690. side: {
  33691. height: math.unit(5, "meters"),
  33692. name: "Side",
  33693. image: {
  33694. source: "./media/characters/vesper/side.svg",
  33695. extra: 1605/1518,
  33696. bottom: 0/1605
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Small",
  33703. height: math.unit(5, "meters")
  33704. },
  33705. {
  33706. name: "Sage",
  33707. height: math.unit(100, "meters"),
  33708. default: true
  33709. },
  33710. {
  33711. name: "Fun Size",
  33712. height: math.unit(600, "meters")
  33713. },
  33714. {
  33715. name: "Goddess",
  33716. height: math.unit(20000, "km")
  33717. },
  33718. {
  33719. name: "Maximum",
  33720. height: math.unit(5, "galaxies")
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33726. {
  33727. front: {
  33728. height: math.unit(6 + 3/12, "feet"),
  33729. weight: math.unit(190, "lb"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/gawain/front.svg",
  33733. extra: 2222/2139,
  33734. bottom: 90/2312
  33735. }
  33736. },
  33737. back: {
  33738. height: math.unit(6 + 3/12, "feet"),
  33739. weight: math.unit(190, "lb"),
  33740. name: "Back",
  33741. image: {
  33742. source: "./media/characters/gawain/back.svg",
  33743. extra: 2199/2111,
  33744. bottom: 73/2272
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Normal",
  33751. height: math.unit(6 + 3/12, "feet"),
  33752. default: true
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33758. {
  33759. side: {
  33760. height: math.unit(3.5, "meters"),
  33761. weight: math.unit(16000, "lb"),
  33762. name: "Side",
  33763. image: {
  33764. source: "./media/characters/dascalti/side.svg",
  33765. extra: 392/273,
  33766. bottom: 47/439
  33767. }
  33768. },
  33769. breath: {
  33770. height: math.unit(7.4, "feet"),
  33771. name: "Breath",
  33772. image: {
  33773. source: "./media/characters/dascalti/breath.svg"
  33774. }
  33775. },
  33776. fed: {
  33777. height: math.unit(3.6, "meters"),
  33778. weight: math.unit(16000, "lb"),
  33779. name: "Fed",
  33780. image: {
  33781. source: "./media/characters/dascalti/fed.svg",
  33782. extra: 1419/820,
  33783. bottom: 95/1514
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Normal",
  33790. height: math.unit(3.5, "meters"),
  33791. default: true
  33792. },
  33793. ]
  33794. ))
  33795. characterMakers.push(() => makeCharacter(
  33796. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33797. {
  33798. front: {
  33799. height: math.unit(3 + 5/12, "feet"),
  33800. name: "Front",
  33801. image: {
  33802. source: "./media/characters/mauve/front.svg",
  33803. extra: 1126/1033,
  33804. bottom: 65/1191
  33805. }
  33806. },
  33807. side: {
  33808. height: math.unit(3 + 5/12, "feet"),
  33809. name: "Side",
  33810. image: {
  33811. source: "./media/characters/mauve/side.svg",
  33812. extra: 1089/1001,
  33813. bottom: 29/1118
  33814. }
  33815. },
  33816. back: {
  33817. height: math.unit(3 + 5/12, "feet"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/mauve/back.svg",
  33821. extra: 1173/1053,
  33822. bottom: 109/1282
  33823. }
  33824. },
  33825. },
  33826. [
  33827. {
  33828. name: "Normal",
  33829. height: math.unit(3 + 5/12, "feet"),
  33830. default: true
  33831. },
  33832. ]
  33833. ))
  33834. characterMakers.push(() => makeCharacter(
  33835. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33836. {
  33837. front: {
  33838. height: math.unit(6 + 3/12, "feet"),
  33839. weight: math.unit(430, "lb"),
  33840. name: "Front",
  33841. image: {
  33842. source: "./media/characters/carlos/front.svg",
  33843. extra: 1964/1913,
  33844. bottom: 70/2034
  33845. }
  33846. },
  33847. },
  33848. [
  33849. {
  33850. name: "Normal",
  33851. height: math.unit(6 + 3/12, "feet"),
  33852. default: true
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33858. {
  33859. back: {
  33860. height: math.unit(5 + 10/12, "feet"),
  33861. weight: math.unit(200, "lb"),
  33862. name: "Back",
  33863. image: {
  33864. source: "./media/characters/jax/back.svg",
  33865. extra: 764/739,
  33866. bottom: 25/789
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(5 + 10/12, "feet"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(8, "feet"),
  33883. weight: math.unit(250, "lb"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/eikthynir/front.svg",
  33887. extra: 1332/1166,
  33888. bottom: 82/1414
  33889. }
  33890. },
  33891. back: {
  33892. height: math.unit(8, "feet"),
  33893. weight: math.unit(250, "lb"),
  33894. name: "Back",
  33895. image: {
  33896. source: "./media/characters/eikthynir/back.svg",
  33897. extra: 1342/1190,
  33898. bottom: 19/1361
  33899. }
  33900. },
  33901. dick: {
  33902. height: math.unit(2.35, "feet"),
  33903. name: "Dick",
  33904. image: {
  33905. source: "./media/characters/eikthynir/dick.svg"
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Normal",
  33912. height: math.unit(8, "feet"),
  33913. default: true
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33919. {
  33920. front: {
  33921. height: math.unit(99, "meters"),
  33922. weight: math.unit(13000, "tons"),
  33923. name: "Front",
  33924. image: {
  33925. source: "./media/characters/zlmos/front.svg",
  33926. extra: 2202/1992,
  33927. bottom: 315/2517
  33928. }
  33929. },
  33930. },
  33931. [
  33932. {
  33933. name: "Macro",
  33934. height: math.unit(99, "meters"),
  33935. default: true
  33936. },
  33937. ]
  33938. ))
  33939. characterMakers.push(() => makeCharacter(
  33940. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33941. {
  33942. front: {
  33943. height: math.unit(6 + 5/12, "feet"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/purri/front.svg",
  33947. extra: 1698/1610,
  33948. bottom: 32/1730
  33949. }
  33950. },
  33951. frontAlt: {
  33952. height: math.unit(6 + 5/12, "feet"),
  33953. name: "Front (Alt)",
  33954. image: {
  33955. source: "./media/characters/purri/front-alt.svg",
  33956. extra: 450/420,
  33957. bottom: 26/476
  33958. }
  33959. },
  33960. boots: {
  33961. height: math.unit(5.5, "feet"),
  33962. name: "Boots",
  33963. image: {
  33964. source: "./media/characters/purri/boots.svg",
  33965. extra: 905/853,
  33966. bottom: 18/923
  33967. },
  33968. extraAttributes: {
  33969. "shoeSize": {
  33970. name: "Shoe Size",
  33971. power: 1,
  33972. type: "length",
  33973. base: math.unit(12, "ShoeSizeMensUS")
  33974. },
  33975. "platformHeight": {
  33976. name: "Platform Height",
  33977. power: 1,
  33978. type: "length",
  33979. base: math.unit(2, "inches")
  33980. },
  33981. }
  33982. },
  33983. lying: {
  33984. height: math.unit(2, "feet"),
  33985. name: "Lying",
  33986. image: {
  33987. source: "./media/characters/purri/lying.svg",
  33988. extra: 940/843,
  33989. bottom: 146/1086
  33990. }
  33991. },
  33992. devious: {
  33993. height: math.unit(1.77, "feet"),
  33994. name: "Devious",
  33995. image: {
  33996. source: "./media/characters/purri/devious.svg",
  33997. extra: 1440/1155,
  33998. bottom: 147/1587
  33999. }
  34000. },
  34001. bean: {
  34002. height: math.unit(1.94, "feet"),
  34003. name: "Bean",
  34004. image: {
  34005. source: "./media/characters/purri/bean.svg"
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Micro",
  34012. height: math.unit(1, "mm")
  34013. },
  34014. {
  34015. name: "Normal",
  34016. height: math.unit(6 + 5/12, "feet"),
  34017. default: true
  34018. },
  34019. {
  34020. name: "Macro :3c",
  34021. height: math.unit(2, "miles")
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34027. {
  34028. front: {
  34029. height: math.unit(6 + 2/12, "feet"),
  34030. weight: math.unit(250, "lb"),
  34031. name: "Front",
  34032. image: {
  34033. source: "./media/characters/moonlight/front.svg",
  34034. extra: 1044/908,
  34035. bottom: 56/1100
  34036. }
  34037. },
  34038. feral: {
  34039. height: math.unit(3 + 1/12, "feet"),
  34040. weight: math.unit(50, "kg"),
  34041. name: "Feral",
  34042. image: {
  34043. source: "./media/characters/moonlight/feral.svg",
  34044. extra: 3705/2791,
  34045. bottom: 145/3850
  34046. }
  34047. },
  34048. paw: {
  34049. height: math.unit(1, "feet"),
  34050. name: "Paw",
  34051. image: {
  34052. source: "./media/characters/moonlight/paw.svg"
  34053. }
  34054. },
  34055. paws: {
  34056. height: math.unit(0.98, "feet"),
  34057. name: "Paws",
  34058. image: {
  34059. source: "./media/characters/moonlight/paws.svg",
  34060. extra: 939/939,
  34061. bottom: 50/989
  34062. }
  34063. },
  34064. mouth: {
  34065. height: math.unit(0.48, "feet"),
  34066. name: "Mouth",
  34067. image: {
  34068. source: "./media/characters/moonlight/mouth.svg"
  34069. }
  34070. },
  34071. dick: {
  34072. height: math.unit(1.46, "feet"),
  34073. name: "Dick",
  34074. image: {
  34075. source: "./media/characters/moonlight/dick.svg"
  34076. }
  34077. },
  34078. },
  34079. [
  34080. {
  34081. name: "Normal",
  34082. height: math.unit(6 + 2/12, "feet"),
  34083. default: true
  34084. },
  34085. {
  34086. name: "Macro",
  34087. height: math.unit(300, "feet")
  34088. },
  34089. {
  34090. name: "Macro+",
  34091. height: math.unit(1, "mile")
  34092. },
  34093. {
  34094. name: "Mt. Moon",
  34095. height: math.unit(5, "miles")
  34096. },
  34097. {
  34098. name: "Megamacro",
  34099. height: math.unit(15, "miles")
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34105. {
  34106. back: {
  34107. height: math.unit(6, "feet"),
  34108. weight: math.unit(150, "lb"),
  34109. name: "Back",
  34110. image: {
  34111. source: "./media/characters/sylen/back.svg",
  34112. extra: 1335/1273,
  34113. bottom: 107/1442
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(5 + 5/12, "feet")
  34121. },
  34122. {
  34123. name: "Megamacro",
  34124. height: math.unit(3, "miles"),
  34125. default: true
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(6, "feet"),
  34134. weight: math.unit(190, "lb"),
  34135. name: "Front",
  34136. image: {
  34137. source: "./media/characters/huttser/front.svg",
  34138. extra: 1152/1058,
  34139. bottom: 23/1175
  34140. }
  34141. },
  34142. side: {
  34143. height: math.unit(6, "feet"),
  34144. weight: math.unit(190, "lb"),
  34145. name: "Side",
  34146. image: {
  34147. source: "./media/characters/huttser/side.svg",
  34148. extra: 1174/1065,
  34149. bottom: 18/1192
  34150. }
  34151. },
  34152. back: {
  34153. height: math.unit(6, "feet"),
  34154. weight: math.unit(190, "lb"),
  34155. name: "Back",
  34156. image: {
  34157. source: "./media/characters/huttser/back.svg",
  34158. extra: 1158/1056,
  34159. bottom: 12/1170
  34160. }
  34161. },
  34162. },
  34163. [
  34164. ]
  34165. ))
  34166. characterMakers.push(() => makeCharacter(
  34167. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34168. {
  34169. side: {
  34170. height: math.unit(12 + 9/12, "feet"),
  34171. weight: math.unit(15000, "lb"),
  34172. name: "Side",
  34173. image: {
  34174. source: "./media/characters/faan/side.svg",
  34175. extra: 2747/2697,
  34176. bottom: 0/2747
  34177. }
  34178. },
  34179. front: {
  34180. height: math.unit(12 + 9/12, "feet"),
  34181. weight: math.unit(15000, "lb"),
  34182. name: "Front",
  34183. image: {
  34184. source: "./media/characters/faan/front.svg",
  34185. extra: 607/571,
  34186. bottom: 24/631
  34187. }
  34188. },
  34189. head: {
  34190. height: math.unit(2.85, "feet"),
  34191. name: "Head",
  34192. image: {
  34193. source: "./media/characters/faan/head.svg"
  34194. }
  34195. },
  34196. headAlt: {
  34197. height: math.unit(3.13, "feet"),
  34198. name: "Head-alt",
  34199. image: {
  34200. source: "./media/characters/faan/head-alt.svg"
  34201. }
  34202. },
  34203. },
  34204. [
  34205. {
  34206. name: "Normal",
  34207. height: math.unit(12 + 9/12, "feet"),
  34208. default: true
  34209. },
  34210. ]
  34211. ))
  34212. characterMakers.push(() => makeCharacter(
  34213. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34214. {
  34215. front: {
  34216. height: math.unit(6, "feet"),
  34217. weight: math.unit(300, "lb"),
  34218. name: "Front",
  34219. image: {
  34220. source: "./media/characters/tanio/front.svg",
  34221. extra: 711/673,
  34222. bottom: 25/736
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(6, "feet"),
  34230. default: true
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34236. {
  34237. front: {
  34238. height: math.unit(3, "inches"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/noboru/front.svg",
  34242. extra: 1039/932,
  34243. bottom: 18/1057
  34244. }
  34245. },
  34246. },
  34247. [
  34248. {
  34249. name: "Micro",
  34250. height: math.unit(3, "inches"),
  34251. default: true
  34252. },
  34253. ]
  34254. ))
  34255. characterMakers.push(() => makeCharacter(
  34256. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34257. {
  34258. front: {
  34259. height: math.unit(1.85, "meters"),
  34260. weight: math.unit(80, "kg"),
  34261. name: "Front",
  34262. image: {
  34263. source: "./media/characters/daniel-barrett/front.svg",
  34264. extra: 355/337,
  34265. bottom: 9/364
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Pico",
  34272. height: math.unit(0.0433, "mm")
  34273. },
  34274. {
  34275. name: "Nano",
  34276. height: math.unit(1.5, "mm")
  34277. },
  34278. {
  34279. name: "Micro",
  34280. height: math.unit(5.3, "cm"),
  34281. default: true
  34282. },
  34283. {
  34284. name: "Normal",
  34285. height: math.unit(1.85, "meters")
  34286. },
  34287. {
  34288. name: "Macro",
  34289. height: math.unit(64.7, "meters")
  34290. },
  34291. {
  34292. name: "Megamacro",
  34293. height: math.unit(2.26, "km")
  34294. },
  34295. {
  34296. name: "Gigamacro",
  34297. height: math.unit(79, "km")
  34298. },
  34299. {
  34300. name: "Teramacro",
  34301. height: math.unit(2765, "km")
  34302. },
  34303. {
  34304. name: "Petamacro",
  34305. height: math.unit(96678, "km")
  34306. },
  34307. ]
  34308. ))
  34309. characterMakers.push(() => makeCharacter(
  34310. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34311. {
  34312. front: {
  34313. height: math.unit(30, "meters"),
  34314. weight: math.unit(400, "tons"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/zeel/front.svg",
  34318. extra: 2599/2599,
  34319. bottom: 226/2825
  34320. }
  34321. },
  34322. },
  34323. [
  34324. {
  34325. name: "Macro",
  34326. height: math.unit(30, "meters"),
  34327. default: true
  34328. },
  34329. ]
  34330. ))
  34331. characterMakers.push(() => makeCharacter(
  34332. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34333. {
  34334. front: {
  34335. height: math.unit(6 + 7/12, "feet"),
  34336. weight: math.unit(210, "lb"),
  34337. name: "Front",
  34338. image: {
  34339. source: "./media/characters/tarn/front.svg",
  34340. extra: 3517/3220,
  34341. bottom: 91/3608
  34342. }
  34343. },
  34344. back: {
  34345. height: math.unit(6 + 7/12, "feet"),
  34346. weight: math.unit(210, "lb"),
  34347. name: "Back",
  34348. image: {
  34349. source: "./media/characters/tarn/back.svg",
  34350. extra: 3566/3241,
  34351. bottom: 34/3600
  34352. }
  34353. },
  34354. dick: {
  34355. height: math.unit(1.65, "feet"),
  34356. name: "Dick",
  34357. image: {
  34358. source: "./media/characters/tarn/dick.svg"
  34359. }
  34360. },
  34361. paw: {
  34362. height: math.unit(1.80, "feet"),
  34363. name: "Paw",
  34364. image: {
  34365. source: "./media/characters/tarn/paw.svg"
  34366. }
  34367. },
  34368. tongue: {
  34369. height: math.unit(0.97, "feet"),
  34370. name: "Tongue",
  34371. image: {
  34372. source: "./media/characters/tarn/tongue.svg"
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Micro",
  34379. height: math.unit(4, "inches")
  34380. },
  34381. {
  34382. name: "Normal",
  34383. height: math.unit(6 + 7/12, "feet"),
  34384. default: true
  34385. },
  34386. {
  34387. name: "Macro",
  34388. height: math.unit(300, "feet")
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(5 + 7/12, "feet"),
  34397. weight: math.unit(80, "kg"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34401. extra: 3023/2865,
  34402. bottom: 33/3056
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(5 + 7/12, "feet"),
  34407. weight: math.unit(80, "kg"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34411. extra: 3020/2886,
  34412. bottom: 30/3050
  34413. }
  34414. },
  34415. dick: {
  34416. height: math.unit(0.98, "feet"),
  34417. name: "Dick",
  34418. image: {
  34419. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34420. }
  34421. },
  34422. anatomy: {
  34423. height: math.unit(2.86, "feet"),
  34424. name: "Anatomy",
  34425. image: {
  34426. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34427. }
  34428. },
  34429. },
  34430. [
  34431. {
  34432. name: "Really Small",
  34433. height: math.unit(2, "inches")
  34434. },
  34435. {
  34436. name: "Micro",
  34437. height: math.unit(5.583, "inches")
  34438. },
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(5 + 7/12, "feet"),
  34442. default: true
  34443. },
  34444. {
  34445. name: "Macro",
  34446. height: math.unit(67, "feet")
  34447. },
  34448. {
  34449. name: "Megamacro",
  34450. height: math.unit(134, "feet")
  34451. },
  34452. ]
  34453. ))
  34454. characterMakers.push(() => makeCharacter(
  34455. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34456. {
  34457. front: {
  34458. height: math.unit(9, "feet"),
  34459. weight: math.unit(120, "lb"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/sally/front.svg",
  34463. extra: 1506/1349,
  34464. bottom: 66/1572
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Normal",
  34471. height: math.unit(9, "feet"),
  34472. default: true
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34478. {
  34479. front: {
  34480. height: math.unit(8, "feet"),
  34481. weight: math.unit(900, "lb"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/owen/front.svg",
  34485. extra: 1761/1657,
  34486. bottom: 74/1835
  34487. }
  34488. },
  34489. side: {
  34490. height: math.unit(8, "feet"),
  34491. weight: math.unit(900, "lb"),
  34492. name: "Side",
  34493. image: {
  34494. source: "./media/characters/owen/side.svg",
  34495. extra: 1797/1734,
  34496. bottom: 30/1827
  34497. }
  34498. },
  34499. back: {
  34500. height: math.unit(8, "feet"),
  34501. weight: math.unit(900, "lb"),
  34502. name: "Back",
  34503. image: {
  34504. source: "./media/characters/owen/back.svg",
  34505. extra: 1796/1706,
  34506. bottom: 59/1855
  34507. }
  34508. },
  34509. maw: {
  34510. height: math.unit(1.76, "feet"),
  34511. name: "Maw",
  34512. image: {
  34513. source: "./media/characters/owen/maw.svg"
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Normal",
  34520. height: math.unit(8, "feet"),
  34521. default: true
  34522. },
  34523. ]
  34524. ))
  34525. characterMakers.push(() => makeCharacter(
  34526. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34527. {
  34528. front: {
  34529. height: math.unit(4, "feet"),
  34530. weight: math.unit(400, "lb"),
  34531. name: "Front",
  34532. image: {
  34533. source: "./media/characters/ryth/front.svg",
  34534. extra: 1920/1748,
  34535. bottom: 42/1962
  34536. }
  34537. },
  34538. back: {
  34539. height: math.unit(4, "feet"),
  34540. weight: math.unit(400, "lb"),
  34541. name: "Back",
  34542. image: {
  34543. source: "./media/characters/ryth/back.svg",
  34544. extra: 1897/1690,
  34545. bottom: 89/1986
  34546. }
  34547. },
  34548. mouth: {
  34549. height: math.unit(1.39, "feet"),
  34550. name: "Mouth",
  34551. image: {
  34552. source: "./media/characters/ryth/mouth.svg"
  34553. }
  34554. },
  34555. tailmaw: {
  34556. height: math.unit(1.23, "feet"),
  34557. name: "Tailmaw",
  34558. image: {
  34559. source: "./media/characters/ryth/tailmaw.svg"
  34560. }
  34561. },
  34562. goia: {
  34563. height: math.unit(4, "meters"),
  34564. weight: math.unit(10800, "lb"),
  34565. name: "Goia",
  34566. image: {
  34567. source: "./media/characters/ryth/goia.svg",
  34568. extra: 745/640,
  34569. bottom: 107/852
  34570. }
  34571. },
  34572. goiaFront: {
  34573. height: math.unit(4, "meters"),
  34574. weight: math.unit(10800, "lb"),
  34575. name: "Goia (Front)",
  34576. image: {
  34577. source: "./media/characters/ryth/goia-front.svg",
  34578. extra: 750/586,
  34579. bottom: 114/864
  34580. }
  34581. },
  34582. goiaMaw: {
  34583. height: math.unit(5.55, "feet"),
  34584. name: "Goia Maw",
  34585. image: {
  34586. source: "./media/characters/ryth/goia-maw.svg"
  34587. }
  34588. },
  34589. goiaForepaw: {
  34590. height: math.unit(3.5, "feet"),
  34591. name: "Goia Forepaw",
  34592. image: {
  34593. source: "./media/characters/ryth/goia-forepaw.svg"
  34594. }
  34595. },
  34596. goiaHindpaw: {
  34597. height: math.unit(5.55, "feet"),
  34598. name: "Goia Hindpaw",
  34599. image: {
  34600. source: "./media/characters/ryth/goia-hindpaw.svg"
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(4, "feet"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(7, "feet"),
  34617. weight: math.unit(180, "lb"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/necrolance/front.svg",
  34621. extra: 1062/947,
  34622. bottom: 41/1103
  34623. }
  34624. },
  34625. back: {
  34626. height: math.unit(7, "feet"),
  34627. weight: math.unit(180, "lb"),
  34628. name: "Back",
  34629. image: {
  34630. source: "./media/characters/necrolance/back.svg",
  34631. extra: 1045/984,
  34632. bottom: 14/1059
  34633. }
  34634. },
  34635. wing: {
  34636. height: math.unit(2.67, "feet"),
  34637. name: "Wing",
  34638. image: {
  34639. source: "./media/characters/necrolance/wing.svg"
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(7, "feet"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34653. {
  34654. front: {
  34655. height: math.unit(76, "meters"),
  34656. weight: math.unit(30000, "tons"),
  34657. name: "Front",
  34658. image: {
  34659. source: "./media/characters/tyler/front.svg",
  34660. extra: 1640/1640,
  34661. bottom: 114/1754
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Macro",
  34668. height: math.unit(76, "meters"),
  34669. default: true
  34670. },
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34675. {
  34676. front: {
  34677. height: math.unit(4 + 11/12, "feet"),
  34678. weight: math.unit(132, "lb"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/icey/front.svg",
  34682. extra: 2750/2550,
  34683. bottom: 33/2783
  34684. }
  34685. },
  34686. back: {
  34687. height: math.unit(4 + 11/12, "feet"),
  34688. weight: math.unit(132, "lb"),
  34689. name: "Back",
  34690. image: {
  34691. source: "./media/characters/icey/back.svg",
  34692. extra: 2624/2481,
  34693. bottom: 35/2659
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(4 + 11/12, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(100, "feet"),
  34710. weight: math.unit(0, "lb"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/smile/front.svg",
  34714. extra: 2983/2912,
  34715. bottom: 162/3145
  34716. }
  34717. },
  34718. back: {
  34719. height: math.unit(100, "feet"),
  34720. weight: math.unit(0, "lb"),
  34721. name: "Back",
  34722. image: {
  34723. source: "./media/characters/smile/back.svg",
  34724. extra: 3143/3031,
  34725. bottom: 91/3234
  34726. }
  34727. },
  34728. head: {
  34729. height: math.unit(26.3, "feet"),
  34730. weight: math.unit(0, "lb"),
  34731. name: "Head",
  34732. image: {
  34733. source: "./media/characters/smile/head.svg"
  34734. }
  34735. },
  34736. collar: {
  34737. height: math.unit(5.3, "feet"),
  34738. weight: math.unit(0, "lb"),
  34739. name: "Collar",
  34740. image: {
  34741. source: "./media/characters/smile/collar.svg"
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Macro",
  34748. height: math.unit(100, "feet"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34755. {
  34756. dragon: {
  34757. height: math.unit(26, "feet"),
  34758. weight: math.unit(36, "tons"),
  34759. name: "Dragon",
  34760. image: {
  34761. source: "./media/characters/arimphae/dragon.svg",
  34762. extra: 1574/983,
  34763. bottom: 357/1931
  34764. }
  34765. },
  34766. drake: {
  34767. height: math.unit(9, "feet"),
  34768. weight: math.unit(1.5, "tons"),
  34769. name: "Drake",
  34770. image: {
  34771. source: "./media/characters/arimphae/drake.svg",
  34772. extra: 1120/925,
  34773. bottom: 435/1555
  34774. }
  34775. },
  34776. },
  34777. [
  34778. {
  34779. name: "Small",
  34780. height: math.unit(26*5/9, "feet")
  34781. },
  34782. {
  34783. name: "Normal",
  34784. height: math.unit(26, "feet"),
  34785. default: true
  34786. },
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34791. {
  34792. front: {
  34793. height: math.unit(8 + 9/12, "feet"),
  34794. name: "Front",
  34795. image: {
  34796. source: "./media/characters/xander/front.svg",
  34797. extra: 1237/974,
  34798. bottom: 94/1331
  34799. }
  34800. },
  34801. },
  34802. [
  34803. {
  34804. name: "Normal",
  34805. height: math.unit(8 + 9/12, "feet"),
  34806. default: true
  34807. },
  34808. {
  34809. name: "Gaze Grabber",
  34810. height: math.unit(13 + 8/12, "feet")
  34811. },
  34812. {
  34813. name: "Jaw Dropper",
  34814. height: math.unit(27, "feet")
  34815. },
  34816. {
  34817. name: "Show Stopper",
  34818. height: math.unit(136, "feet")
  34819. },
  34820. {
  34821. name: "Superstar",
  34822. height: math.unit(1.9e6, "miles")
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34828. {
  34829. side: {
  34830. height: math.unit(2100, "feet"),
  34831. name: "Side",
  34832. image: {
  34833. source: "./media/characters/osiris/side.svg",
  34834. extra: 1105/939,
  34835. bottom: 167/1272
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Macro",
  34842. height: math.unit(2100, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(6 + 8/12, "feet"),
  34852. weight: math.unit(225, "lb"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/rhys-londe/front.svg",
  34856. extra: 2258/2141,
  34857. bottom: 188/2446
  34858. }
  34859. },
  34860. back: {
  34861. height: math.unit(6 + 8/12, "feet"),
  34862. weight: math.unit(225, "lb"),
  34863. name: "Back",
  34864. image: {
  34865. source: "./media/characters/rhys-londe/back.svg",
  34866. extra: 2237/2137,
  34867. bottom: 63/2300
  34868. }
  34869. },
  34870. frontNsfw: {
  34871. height: math.unit(6 + 8/12, "feet"),
  34872. weight: math.unit(225, "lb"),
  34873. name: "Front (NSFW)",
  34874. image: {
  34875. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34876. extra: 2258/2141,
  34877. bottom: 188/2446
  34878. }
  34879. },
  34880. backNsfw: {
  34881. height: math.unit(6 + 8/12, "feet"),
  34882. weight: math.unit(225, "lb"),
  34883. name: "Back (NSFW)",
  34884. image: {
  34885. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34886. extra: 2237/2137,
  34887. bottom: 63/2300
  34888. }
  34889. },
  34890. dick: {
  34891. height: math.unit(30, "inches"),
  34892. name: "Dick",
  34893. image: {
  34894. source: "./media/characters/rhys-londe/dick.svg"
  34895. }
  34896. },
  34897. maw: {
  34898. height: math.unit(1.6, "feet"),
  34899. name: "Maw",
  34900. image: {
  34901. source: "./media/characters/rhys-londe/maw.svg"
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(6 + 8/12, "feet"),
  34909. default: true
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34915. {
  34916. front: {
  34917. height: math.unit(3 + 10/12, "feet"),
  34918. weight: math.unit(90, "lb"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/taivas-ensim/front.svg",
  34922. extra: 1327/1216,
  34923. bottom: 96/1423
  34924. }
  34925. },
  34926. back: {
  34927. height: math.unit(3 + 10/12, "feet"),
  34928. weight: math.unit(90, "lb"),
  34929. name: "Back",
  34930. image: {
  34931. source: "./media/characters/taivas-ensim/back.svg",
  34932. extra: 1355/1247,
  34933. bottom: 11/1366
  34934. }
  34935. },
  34936. frontNsfw: {
  34937. height: math.unit(3 + 10/12, "feet"),
  34938. weight: math.unit(90, "lb"),
  34939. name: "Front (NSFW)",
  34940. image: {
  34941. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34942. extra: 1327/1216,
  34943. bottom: 96/1423
  34944. }
  34945. },
  34946. backNsfw: {
  34947. height: math.unit(3 + 10/12, "feet"),
  34948. weight: math.unit(90, "lb"),
  34949. name: "Back (NSFW)",
  34950. image: {
  34951. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34952. extra: 1355/1247,
  34953. bottom: 11/1366
  34954. }
  34955. },
  34956. },
  34957. [
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(3 + 10/12, "feet"),
  34961. default: true
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(9 + 6/12, "feet"),
  34970. weight: math.unit(940, "lb"),
  34971. name: "Front",
  34972. image: {
  34973. source: "./media/characters/byliss/front.svg",
  34974. extra: 1327/1290,
  34975. bottom: 82/1409
  34976. }
  34977. },
  34978. back: {
  34979. height: math.unit(9 + 6/12, "feet"),
  34980. weight: math.unit(940, "lb"),
  34981. name: "Back",
  34982. image: {
  34983. source: "./media/characters/byliss/back.svg",
  34984. extra: 1376/1349,
  34985. bottom: 9/1385
  34986. }
  34987. },
  34988. frontNsfw: {
  34989. height: math.unit(9 + 6/12, "feet"),
  34990. weight: math.unit(940, "lb"),
  34991. name: "Front (NSFW)",
  34992. image: {
  34993. source: "./media/characters/byliss/front-nsfw.svg",
  34994. extra: 1327/1290,
  34995. bottom: 82/1409
  34996. }
  34997. },
  34998. backNsfw: {
  34999. height: math.unit(9 + 6/12, "feet"),
  35000. weight: math.unit(940, "lb"),
  35001. name: "Back (NSFW)",
  35002. image: {
  35003. source: "./media/characters/byliss/back-nsfw.svg",
  35004. extra: 1376/1349,
  35005. bottom: 9/1385
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(9 + 6/12, "feet"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35019. {
  35020. front: {
  35021. height: math.unit(5 + 2/12, "feet"),
  35022. weight: math.unit(200, "lb"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/noraly/front.svg",
  35026. extra: 4985/4773,
  35027. bottom: 150/5135
  35028. }
  35029. },
  35030. full: {
  35031. height: math.unit(5 + 2/12, "feet"),
  35032. weight: math.unit(164, "lb"),
  35033. name: "Full",
  35034. image: {
  35035. source: "./media/characters/noraly/full.svg",
  35036. extra: 1114/1059,
  35037. bottom: 35/1149
  35038. }
  35039. },
  35040. fuller: {
  35041. height: math.unit(5 + 2/12, "feet"),
  35042. weight: math.unit(230, "lb"),
  35043. name: "Fuller",
  35044. image: {
  35045. source: "./media/characters/noraly/fuller.svg",
  35046. extra: 1114/1059,
  35047. bottom: 35/1149
  35048. }
  35049. },
  35050. fullest: {
  35051. height: math.unit(5 + 2/12, "feet"),
  35052. weight: math.unit(300, "lb"),
  35053. name: "Fullest",
  35054. image: {
  35055. source: "./media/characters/noraly/fullest.svg",
  35056. extra: 1114/1059,
  35057. bottom: 35/1149
  35058. }
  35059. },
  35060. },
  35061. [
  35062. {
  35063. name: "Normal",
  35064. height: math.unit(5 + 2/12, "feet"),
  35065. default: true
  35066. },
  35067. ]
  35068. ))
  35069. characterMakers.push(() => makeCharacter(
  35070. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35071. {
  35072. front: {
  35073. height: math.unit(5 + 2/12, "feet"),
  35074. weight: math.unit(210, "lb"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/pera/front.svg",
  35078. extra: 1560/1531,
  35079. bottom: 165/1725
  35080. }
  35081. },
  35082. back: {
  35083. height: math.unit(5 + 2/12, "feet"),
  35084. weight: math.unit(210, "lb"),
  35085. name: "Back",
  35086. image: {
  35087. source: "./media/characters/pera/back.svg",
  35088. extra: 1523/1493,
  35089. bottom: 152/1675
  35090. }
  35091. },
  35092. dick: {
  35093. height: math.unit(2.4, "feet"),
  35094. name: "Dick",
  35095. image: {
  35096. source: "./media/characters/pera/dick.svg"
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(5 + 2/12, "feet"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35110. {
  35111. front: {
  35112. height: math.unit(12, "feet"),
  35113. weight: math.unit(3200, "lb"),
  35114. name: "Front",
  35115. image: {
  35116. source: "./media/characters/julian/front.svg",
  35117. extra: 2962/2701,
  35118. bottom: 184/3146
  35119. }
  35120. },
  35121. maw: {
  35122. height: math.unit(5.35, "feet"),
  35123. name: "Maw",
  35124. image: {
  35125. source: "./media/characters/julian/maw.svg"
  35126. }
  35127. },
  35128. paw: {
  35129. height: math.unit(3.07, "feet"),
  35130. name: "Paw",
  35131. image: {
  35132. source: "./media/characters/julian/paw.svg"
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Default",
  35139. height: math.unit(12, "feet"),
  35140. default: true
  35141. },
  35142. {
  35143. name: "Big",
  35144. height: math.unit(50, "feet")
  35145. },
  35146. {
  35147. name: "Really Big",
  35148. height: math.unit(1, "mile")
  35149. },
  35150. {
  35151. name: "Extremely Big",
  35152. height: math.unit(100, "miles")
  35153. },
  35154. {
  35155. name: "Planet Hugger",
  35156. height: math.unit(200, "megameters")
  35157. },
  35158. {
  35159. name: "Unreasonably Big",
  35160. height: math.unit(1e300, "meters")
  35161. },
  35162. ]
  35163. ))
  35164. characterMakers.push(() => makeCharacter(
  35165. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35166. {
  35167. solgooleo: {
  35168. height: math.unit(4, "meters"),
  35169. weight: math.unit(6000*1.5, "kg"),
  35170. volume: math.unit(6000, "liters"),
  35171. name: "Solgooleo",
  35172. image: {
  35173. source: "./media/characters/pi/solgooleo.svg",
  35174. extra: 388/331,
  35175. bottom: 29/417
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(4, "meters"),
  35183. default: true
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35189. {
  35190. front: {
  35191. height: math.unit(8, "feet"),
  35192. weight: math.unit(4, "tons"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/shaun/front.svg",
  35196. extra: 503/495,
  35197. bottom: 20/523
  35198. }
  35199. },
  35200. back: {
  35201. height: math.unit(8, "feet"),
  35202. weight: math.unit(4, "tons"),
  35203. name: "Back",
  35204. image: {
  35205. source: "./media/characters/shaun/back.svg",
  35206. extra: 487/480,
  35207. bottom: 20/507
  35208. }
  35209. },
  35210. },
  35211. [
  35212. {
  35213. name: "Lorg",
  35214. height: math.unit(8, "feet"),
  35215. default: true
  35216. },
  35217. ]
  35218. ))
  35219. characterMakers.push(() => makeCharacter(
  35220. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35221. {
  35222. frontAnthro: {
  35223. height: math.unit(7, "feet"),
  35224. name: "Front",
  35225. image: {
  35226. source: "./media/characters/sini/front-anthro.svg",
  35227. extra: 726/678,
  35228. bottom: 35/761
  35229. },
  35230. form: "anthro",
  35231. default: true
  35232. },
  35233. backAnthro: {
  35234. height: math.unit(7, "feet"),
  35235. name: "Back",
  35236. image: {
  35237. source: "./media/characters/sini/back-anthro.svg",
  35238. extra: 743/701,
  35239. bottom: 12/755
  35240. },
  35241. form: "anthro",
  35242. },
  35243. frontAnthroNsfw: {
  35244. height: math.unit(7, "feet"),
  35245. name: "Front (NSFW)",
  35246. image: {
  35247. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35248. extra: 726/678,
  35249. bottom: 35/761
  35250. },
  35251. form: "anthro"
  35252. },
  35253. backAnthroNsfw: {
  35254. height: math.unit(7, "feet"),
  35255. name: "Back (NSFW)",
  35256. image: {
  35257. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35258. extra: 743/701,
  35259. bottom: 12/755
  35260. },
  35261. form: "anthro",
  35262. },
  35263. mawAnthro: {
  35264. height: math.unit(2.14, "feet"),
  35265. name: "Maw",
  35266. image: {
  35267. source: "./media/characters/sini/maw-anthro.svg"
  35268. },
  35269. form: "anthro"
  35270. },
  35271. dick: {
  35272. height: math.unit(1.45, "feet"),
  35273. name: "Dick",
  35274. image: {
  35275. source: "./media/characters/sini/dick-anthro.svg"
  35276. },
  35277. form: "anthro"
  35278. },
  35279. feral: {
  35280. height: math.unit(16, "feet"),
  35281. name: "Feral",
  35282. image: {
  35283. source: "./media/characters/sini/feral.svg",
  35284. extra: 814/605,
  35285. bottom: 11/825
  35286. },
  35287. form: "feral",
  35288. default: true
  35289. },
  35290. feralNsfw: {
  35291. height: math.unit(16, "feet"),
  35292. name: "Feral (NSFW)",
  35293. image: {
  35294. source: "./media/characters/sini/feral-nsfw.svg",
  35295. extra: 814/605,
  35296. bottom: 11/825
  35297. },
  35298. form: "feral"
  35299. },
  35300. mawFeral: {
  35301. height: math.unit(5.66, "feet"),
  35302. name: "Maw",
  35303. image: {
  35304. source: "./media/characters/sini/maw-feral.svg"
  35305. },
  35306. form: "feral",
  35307. },
  35308. pawFeral: {
  35309. height: math.unit(5.17, "feet"),
  35310. name: "Paw",
  35311. image: {
  35312. source: "./media/characters/sini/paw-feral.svg"
  35313. },
  35314. form: "feral",
  35315. },
  35316. rumpFeral: {
  35317. height: math.unit(13.11, "feet"),
  35318. name: "Rump",
  35319. image: {
  35320. source: "./media/characters/sini/rump-feral.svg"
  35321. },
  35322. form: "feral",
  35323. },
  35324. dickFeral: {
  35325. height: math.unit(1, "feet"),
  35326. name: "Dick",
  35327. image: {
  35328. source: "./media/characters/sini/dick-feral.svg"
  35329. },
  35330. form: "feral",
  35331. },
  35332. eyeFeral: {
  35333. height: math.unit(1.23, "feet"),
  35334. name: "Eye",
  35335. image: {
  35336. source: "./media/characters/sini/eye-feral.svg"
  35337. },
  35338. form: "feral",
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(7, "feet"),
  35345. default: true,
  35346. form: "anthro"
  35347. },
  35348. {
  35349. name: "Normal",
  35350. height: math.unit(16, "feet"),
  35351. default: true,
  35352. form: "feral"
  35353. },
  35354. ],
  35355. {
  35356. "anthro": {
  35357. name: "Anthro",
  35358. default: true
  35359. },
  35360. "feral": {
  35361. name: "Feral",
  35362. }
  35363. }
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35367. {
  35368. side: {
  35369. height: math.unit(47.2, "meters"),
  35370. weight: math.unit(10000, "tons"),
  35371. name: "Side",
  35372. image: {
  35373. source: "./media/characters/raylldo/side.svg",
  35374. extra: 2363/642,
  35375. bottom: 221/2584
  35376. }
  35377. },
  35378. top: {
  35379. height: math.unit(240, "meters"),
  35380. weight: math.unit(10000, "tons"),
  35381. name: "Top",
  35382. image: {
  35383. source: "./media/characters/raylldo/top.svg"
  35384. }
  35385. },
  35386. bottom: {
  35387. height: math.unit(240, "meters"),
  35388. weight: math.unit(10000, "tons"),
  35389. name: "Bottom",
  35390. image: {
  35391. source: "./media/characters/raylldo/bottom.svg"
  35392. }
  35393. },
  35394. head: {
  35395. height: math.unit(38.6, "meters"),
  35396. name: "Head",
  35397. image: {
  35398. source: "./media/characters/raylldo/head.svg",
  35399. extra: 1335/1112,
  35400. bottom: 0/1335
  35401. }
  35402. },
  35403. maw: {
  35404. height: math.unit(16.37, "meters"),
  35405. name: "Maw",
  35406. image: {
  35407. source: "./media/characters/raylldo/maw.svg",
  35408. extra: 883/660,
  35409. bottom: 0/883
  35410. },
  35411. extraAttributes: {
  35412. preyCapacity: {
  35413. name: "Capacity",
  35414. power: 3,
  35415. type: "volume",
  35416. base: math.unit(1000, "people")
  35417. },
  35418. tongueSize: {
  35419. name: "Tongue Size",
  35420. power: 2,
  35421. type: "area",
  35422. base: math.unit(21, "m^2")
  35423. }
  35424. }
  35425. },
  35426. forepaw: {
  35427. height: math.unit(18, "meters"),
  35428. name: "Forepaw",
  35429. image: {
  35430. source: "./media/characters/raylldo/forepaw.svg"
  35431. }
  35432. },
  35433. hindpaw: {
  35434. height: math.unit(23, "meters"),
  35435. name: "Hindpaw",
  35436. image: {
  35437. source: "./media/characters/raylldo/hindpaw.svg"
  35438. }
  35439. },
  35440. genitals: {
  35441. height: math.unit(42, "meters"),
  35442. name: "Genitals",
  35443. image: {
  35444. source: "./media/characters/raylldo/genitals.svg"
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(47.2, "meters"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35458. {
  35459. anthroFront: {
  35460. height: math.unit(9, "feet"),
  35461. weight: math.unit(600, "lb"),
  35462. name: "Anthro (Front)",
  35463. image: {
  35464. source: "./media/characters/glint/anthro-front.svg",
  35465. extra: 1097/1018,
  35466. bottom: 28/1125
  35467. }
  35468. },
  35469. anthroBack: {
  35470. height: math.unit(9, "feet"),
  35471. weight: math.unit(600, "lb"),
  35472. name: "Anthro (Back)",
  35473. image: {
  35474. source: "./media/characters/glint/anthro-back.svg",
  35475. extra: 1154/997,
  35476. bottom: 36/1190
  35477. }
  35478. },
  35479. feral: {
  35480. height: math.unit(11, "feet"),
  35481. weight: math.unit(50000, "lb"),
  35482. name: "Feral",
  35483. image: {
  35484. source: "./media/characters/glint/feral.svg",
  35485. extra: 3035/1585,
  35486. bottom: 1169/4204
  35487. }
  35488. },
  35489. dickAnthro: {
  35490. height: math.unit(0.7, "meters"),
  35491. name: "Dick (Anthro)",
  35492. image: {
  35493. source: "./media/characters/glint/dick-anthro.svg"
  35494. }
  35495. },
  35496. dickFeral: {
  35497. height: math.unit(2.65, "meters"),
  35498. name: "Dick (Feral)",
  35499. image: {
  35500. source: "./media/characters/glint/dick-feral.svg"
  35501. }
  35502. },
  35503. slitHidden: {
  35504. height: math.unit(5.85, "meters"),
  35505. name: "Slit (Hidden)",
  35506. image: {
  35507. source: "./media/characters/glint/slit-hidden.svg"
  35508. }
  35509. },
  35510. slitErect: {
  35511. height: math.unit(5.85, "meters"),
  35512. name: "Slit (Erect)",
  35513. image: {
  35514. source: "./media/characters/glint/slit-erect.svg"
  35515. }
  35516. },
  35517. mawAnthro: {
  35518. height: math.unit(0.63, "meters"),
  35519. name: "Maw (Anthro)",
  35520. image: {
  35521. source: "./media/characters/glint/maw.svg"
  35522. }
  35523. },
  35524. mawFeral: {
  35525. height: math.unit(2.89, "meters"),
  35526. name: "Maw (Feral)",
  35527. image: {
  35528. source: "./media/characters/glint/maw.svg"
  35529. }
  35530. },
  35531. },
  35532. [
  35533. {
  35534. name: "Normal",
  35535. height: math.unit(9, "feet"),
  35536. default: true
  35537. },
  35538. ]
  35539. ))
  35540. characterMakers.push(() => makeCharacter(
  35541. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35542. {
  35543. side: {
  35544. height: math.unit(15, "feet"),
  35545. weight: math.unit(5000, "kg"),
  35546. name: "Side",
  35547. image: {
  35548. source: "./media/characters/kairne/side.svg",
  35549. extra: 979/811,
  35550. bottom: 13/992
  35551. }
  35552. },
  35553. front: {
  35554. height: math.unit(15, "feet"),
  35555. weight: math.unit(5000, "kg"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/kairne/front.svg",
  35559. extra: 908/814,
  35560. bottom: 26/934
  35561. }
  35562. },
  35563. sideNsfw: {
  35564. height: math.unit(15, "feet"),
  35565. weight: math.unit(5000, "kg"),
  35566. name: "Side (NSFW)",
  35567. image: {
  35568. source: "./media/characters/kairne/side-nsfw.svg",
  35569. extra: 979/811,
  35570. bottom: 13/992
  35571. }
  35572. },
  35573. frontNsfw: {
  35574. height: math.unit(15, "feet"),
  35575. weight: math.unit(5000, "kg"),
  35576. name: "Front (NSFW)",
  35577. image: {
  35578. source: "./media/characters/kairne/front-nsfw.svg",
  35579. extra: 908/814,
  35580. bottom: 26/934
  35581. }
  35582. },
  35583. dickCaged: {
  35584. height: math.unit(0.65, "meters"),
  35585. name: "Dick-caged",
  35586. image: {
  35587. source: "./media/characters/kairne/dick-caged.svg"
  35588. }
  35589. },
  35590. dick: {
  35591. height: math.unit(0.79, "meters"),
  35592. name: "Dick",
  35593. image: {
  35594. source: "./media/characters/kairne/dick.svg"
  35595. }
  35596. },
  35597. genitals: {
  35598. height: math.unit(1.29, "meters"),
  35599. name: "Genitals",
  35600. image: {
  35601. source: "./media/characters/kairne/genitals.svg"
  35602. }
  35603. },
  35604. maw: {
  35605. height: math.unit(1.73, "meters"),
  35606. name: "Maw",
  35607. image: {
  35608. source: "./media/characters/kairne/maw.svg"
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(15, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(5 + 8/12, "feet"),
  35625. weight: math.unit(139, "lb"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/biscuit-jackal/front.svg",
  35629. extra: 2106/1961,
  35630. bottom: 58/2164
  35631. }
  35632. },
  35633. back: {
  35634. height: math.unit(5 + 8/12, "feet"),
  35635. weight: math.unit(139, "lb"),
  35636. name: "Back",
  35637. image: {
  35638. source: "./media/characters/biscuit-jackal/back.svg",
  35639. extra: 2132/1976,
  35640. bottom: 57/2189
  35641. }
  35642. },
  35643. werejackal: {
  35644. height: math.unit(6 + 3/12, "feet"),
  35645. weight: math.unit(188, "lb"),
  35646. name: "Werejackal",
  35647. image: {
  35648. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35649. extra: 2373/2178,
  35650. bottom: 53/2426
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(5 + 8/12, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(140, "cm"),
  35667. weight: math.unit(45, "kg"),
  35668. name: "Front",
  35669. image: {
  35670. source: "./media/characters/tayra-white/front.svg",
  35671. extra: 2229/2192,
  35672. bottom: 75/2304
  35673. }
  35674. },
  35675. },
  35676. [
  35677. {
  35678. name: "Normal",
  35679. height: math.unit(140, "cm"),
  35680. default: true
  35681. },
  35682. ]
  35683. ))
  35684. characterMakers.push(() => makeCharacter(
  35685. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35686. {
  35687. front: {
  35688. height: math.unit(4 + 5/12, "feet"),
  35689. name: "Front",
  35690. image: {
  35691. source: "./media/characters/scoop/front.svg",
  35692. extra: 1257/1136,
  35693. bottom: 69/1326
  35694. }
  35695. },
  35696. back: {
  35697. height: math.unit(4 + 5/12, "feet"),
  35698. name: "Back",
  35699. image: {
  35700. source: "./media/characters/scoop/back.svg",
  35701. extra: 1321/1152,
  35702. bottom: 32/1353
  35703. }
  35704. },
  35705. maw: {
  35706. height: math.unit(0.68, "feet"),
  35707. name: "Maw",
  35708. image: {
  35709. source: "./media/characters/scoop/maw.svg"
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Really Small",
  35716. height: math.unit(1, "mm")
  35717. },
  35718. {
  35719. name: "Micro",
  35720. height: math.unit(1, "inch")
  35721. },
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(4 + 5/12, "feet"),
  35725. default: true
  35726. },
  35727. {
  35728. name: "Macro",
  35729. height: math.unit(200, "feet")
  35730. },
  35731. {
  35732. name: "Megamacro",
  35733. height: math.unit(3240, "feet")
  35734. },
  35735. {
  35736. name: "Teramacro",
  35737. height: math.unit(2500, "miles")
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35743. {
  35744. front: {
  35745. height: math.unit(15 + 7/12, "feet"),
  35746. weight: math.unit(1150, "tons"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/saphinara/front.svg",
  35750. extra: 1837/1643,
  35751. bottom: 84/1921
  35752. },
  35753. form: "normal",
  35754. default: true
  35755. },
  35756. side: {
  35757. height: math.unit(15 + 7/12, "feet"),
  35758. weight: math.unit(1150, "tons"),
  35759. name: "Side",
  35760. image: {
  35761. source: "./media/characters/saphinara/side.svg",
  35762. extra: 605/547,
  35763. bottom: 6/611
  35764. },
  35765. form: "normal"
  35766. },
  35767. back: {
  35768. height: math.unit(15 + 7/12, "feet"),
  35769. weight: math.unit(1150, "tons"),
  35770. name: "Back",
  35771. image: {
  35772. source: "./media/characters/saphinara/back.svg",
  35773. extra: 591/531,
  35774. bottom: 13/604
  35775. },
  35776. form: "normal"
  35777. },
  35778. frontTail: {
  35779. height: math.unit(15 + 7/12, "feet"),
  35780. weight: math.unit(1150, "tons"),
  35781. name: "Front (Full Tail)",
  35782. image: {
  35783. source: "./media/characters/saphinara/front-tail.svg",
  35784. extra: 2256/1630,
  35785. bottom: 261/2517
  35786. },
  35787. form: "normal"
  35788. },
  35789. insides: {
  35790. height: math.unit(11.92, "feet"),
  35791. name: "Insides",
  35792. image: {
  35793. source: "./media/characters/saphinara/insides.svg"
  35794. },
  35795. form: "normal"
  35796. },
  35797. head: {
  35798. height: math.unit(4.17, "feet"),
  35799. name: "Head",
  35800. image: {
  35801. source: "./media/characters/saphinara/head.svg"
  35802. },
  35803. form: "normal"
  35804. },
  35805. tongue: {
  35806. height: math.unit(4.60, "feet"),
  35807. name: "Tongue",
  35808. image: {
  35809. source: "./media/characters/saphinara/tongue.svg"
  35810. },
  35811. form: "normal"
  35812. },
  35813. headEnraged: {
  35814. height: math.unit(5.55, "feet"),
  35815. name: "Head (Enraged)",
  35816. image: {
  35817. source: "./media/characters/saphinara/head-enraged.svg"
  35818. },
  35819. form: "normal"
  35820. },
  35821. wings: {
  35822. height: math.unit(11.95, "feet"),
  35823. name: "Wings",
  35824. image: {
  35825. source: "./media/characters/saphinara/wings.svg"
  35826. },
  35827. form: "normal"
  35828. },
  35829. feathers: {
  35830. height: math.unit(8.92, "feet"),
  35831. name: "Feathers",
  35832. image: {
  35833. source: "./media/characters/saphinara/feathers.svg"
  35834. },
  35835. form: "normal"
  35836. },
  35837. shackles: {
  35838. height: math.unit(2, "feet"),
  35839. name: "Shackles",
  35840. image: {
  35841. source: "./media/characters/saphinara/shackles.svg"
  35842. },
  35843. form: "normal"
  35844. },
  35845. eyes: {
  35846. height: math.unit(1.331, "feet"),
  35847. name: "Eyes",
  35848. image: {
  35849. source: "./media/characters/saphinara/eyes.svg"
  35850. },
  35851. form: "normal"
  35852. },
  35853. eyesEnraged: {
  35854. height: math.unit(1.331, "feet"),
  35855. name: "Eyes (Enraged)",
  35856. image: {
  35857. source: "./media/characters/saphinara/eyes-enraged.svg"
  35858. },
  35859. form: "normal"
  35860. },
  35861. trueFormSide: {
  35862. height: math.unit(200, "feet"),
  35863. weight: math.unit(1e7, "tons"),
  35864. name: "Side",
  35865. image: {
  35866. source: "./media/characters/saphinara/true-form-side.svg",
  35867. extra: 1399/770,
  35868. bottom: 97/1496
  35869. },
  35870. form: "true-form",
  35871. default: true
  35872. },
  35873. trueFormMaw: {
  35874. height: math.unit(71.5, "feet"),
  35875. name: "Maw",
  35876. image: {
  35877. source: "./media/characters/saphinara/true-form-maw.svg",
  35878. extra: 2302/1453,
  35879. bottom: 0/2302
  35880. },
  35881. form: "true-form"
  35882. },
  35883. meowberusSide: {
  35884. height: math.unit(75, "feet"),
  35885. weight: math.unit(180000, "kg"),
  35886. preyCapacity: math.unit(50000, "people"),
  35887. name: "Side",
  35888. image: {
  35889. source: "./media/characters/saphinara/meowberus-side.svg",
  35890. extra: 1400/711,
  35891. bottom: 126/1526
  35892. },
  35893. form: "meowberus",
  35894. extraAttributes: {
  35895. "pawArea": {
  35896. name: "Paw Size",
  35897. power: 2,
  35898. type: "area",
  35899. base: math.unit(35, "m^2")
  35900. }
  35901. }
  35902. },
  35903. },
  35904. [
  35905. {
  35906. name: "Normal",
  35907. height: math.unit(15 + 7/12, "feet"),
  35908. default: true,
  35909. form: "normal"
  35910. },
  35911. {
  35912. name: "Angry",
  35913. height: math.unit(30 + 6/12, "feet"),
  35914. form: "normal"
  35915. },
  35916. {
  35917. name: "Enraged",
  35918. height: math.unit(102 + 1/12, "feet"),
  35919. form: "normal"
  35920. },
  35921. {
  35922. name: "True",
  35923. height: math.unit(200, "feet"),
  35924. default: true,
  35925. form: "true-form"
  35926. },
  35927. {
  35928. name: "Normal",
  35929. height: math.unit(75, "feet"),
  35930. default: true,
  35931. form: "meowberus"
  35932. },
  35933. ],
  35934. {
  35935. "normal": {
  35936. name: "Normal",
  35937. default: true
  35938. },
  35939. "true-form": {
  35940. name: "True Form"
  35941. },
  35942. "meowberus": {
  35943. name: "Meowberus",
  35944. },
  35945. }
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35949. {
  35950. front: {
  35951. height: math.unit(6 + 8/12, "feet"),
  35952. weight: math.unit(300, "lb"),
  35953. name: "Front",
  35954. image: {
  35955. source: "./media/characters/jrain/front.svg",
  35956. extra: 3039/2865,
  35957. bottom: 399/3438
  35958. }
  35959. },
  35960. back: {
  35961. height: math.unit(6 + 8/12, "feet"),
  35962. weight: math.unit(300, "lb"),
  35963. name: "Back",
  35964. image: {
  35965. source: "./media/characters/jrain/back.svg",
  35966. extra: 3089/2938,
  35967. bottom: 172/3261
  35968. }
  35969. },
  35970. head: {
  35971. height: math.unit(2.14, "feet"),
  35972. name: "Head",
  35973. image: {
  35974. source: "./media/characters/jrain/head.svg"
  35975. }
  35976. },
  35977. maw: {
  35978. height: math.unit(1.77, "feet"),
  35979. name: "Maw",
  35980. image: {
  35981. source: "./media/characters/jrain/maw.svg"
  35982. }
  35983. },
  35984. leftHand: {
  35985. height: math.unit(1.1, "feet"),
  35986. name: "Left Hand",
  35987. image: {
  35988. source: "./media/characters/jrain/left-hand.svg"
  35989. }
  35990. },
  35991. rightHand: {
  35992. height: math.unit(1.1, "feet"),
  35993. name: "Right Hand",
  35994. image: {
  35995. source: "./media/characters/jrain/right-hand.svg"
  35996. }
  35997. },
  35998. eye: {
  35999. height: math.unit(0.35, "feet"),
  36000. name: "Eye",
  36001. image: {
  36002. source: "./media/characters/jrain/eye.svg"
  36003. }
  36004. },
  36005. },
  36006. [
  36007. {
  36008. name: "Normal",
  36009. height: math.unit(6 + 8/12, "feet"),
  36010. default: true
  36011. },
  36012. {
  36013. name: "Casually Large",
  36014. height: math.unit(25, "feet")
  36015. },
  36016. {
  36017. name: "Giant",
  36018. height: math.unit(100, "feet")
  36019. },
  36020. {
  36021. name: "Kaiju",
  36022. height: math.unit(300, "feet")
  36023. },
  36024. ]
  36025. ))
  36026. characterMakers.push(() => makeCharacter(
  36027. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36028. {
  36029. dragon: {
  36030. height: math.unit(5, "meters"),
  36031. name: "Dragon",
  36032. image: {
  36033. source: "./media/characters/sabrina/dragon.svg",
  36034. extra: 3670 / 2365,
  36035. bottom: 333 / 4003
  36036. }
  36037. },
  36038. gryphon: {
  36039. height: math.unit(3, "meters"),
  36040. name: "Gryphon",
  36041. image: {
  36042. source: "./media/characters/sabrina/gryphon.svg",
  36043. extra: 1576 / 945,
  36044. bottom: 71 / 1647
  36045. }
  36046. },
  36047. snake: {
  36048. height: math.unit(12, "meters"),
  36049. name: "Snake",
  36050. image: {
  36051. source: "./media/characters/sabrina/snake.svg",
  36052. extra: 1758 / 1320,
  36053. bottom: 186 / 1944
  36054. }
  36055. },
  36056. collar: {
  36057. height: math.unit(1.86, "meters"),
  36058. name: "Collar",
  36059. image: {
  36060. source: "./media/characters/sabrina/collar.svg"
  36061. }
  36062. },
  36063. eye: {
  36064. height: math.unit(0.53, "meters"),
  36065. name: "Eye",
  36066. image: {
  36067. source: "./media/characters/sabrina/eye.svg"
  36068. }
  36069. },
  36070. foot: {
  36071. height: math.unit(1.86, "meters"),
  36072. name: "Foot",
  36073. image: {
  36074. source: "./media/characters/sabrina/foot.svg"
  36075. }
  36076. },
  36077. hand: {
  36078. height: math.unit(1.32, "meters"),
  36079. name: "Hand",
  36080. image: {
  36081. source: "./media/characters/sabrina/hand.svg"
  36082. }
  36083. },
  36084. head: {
  36085. height: math.unit(2.44, "meters"),
  36086. name: "Head",
  36087. image: {
  36088. source: "./media/characters/sabrina/head.svg"
  36089. }
  36090. },
  36091. headAngry: {
  36092. height: math.unit(2.44, "meters"),
  36093. name: "Head (Angry))",
  36094. image: {
  36095. source: "./media/characters/sabrina/head-angry.svg"
  36096. }
  36097. },
  36098. maw: {
  36099. height: math.unit(1.65, "meters"),
  36100. name: "Maw",
  36101. image: {
  36102. source: "./media/characters/sabrina/maw.svg"
  36103. }
  36104. },
  36105. spikes: {
  36106. height: math.unit(1.69, "meters"),
  36107. name: "Spikes",
  36108. image: {
  36109. source: "./media/characters/sabrina/spikes.svg"
  36110. }
  36111. },
  36112. stomach: {
  36113. height: math.unit(1.15, "meters"),
  36114. name: "Stomach",
  36115. image: {
  36116. source: "./media/characters/sabrina/stomach.svg"
  36117. }
  36118. },
  36119. tongue: {
  36120. height: math.unit(1.27, "meters"),
  36121. name: "Tongue",
  36122. image: {
  36123. source: "./media/characters/sabrina/tongue.svg"
  36124. }
  36125. },
  36126. wingDorsal: {
  36127. height: math.unit(4.85, "meters"),
  36128. name: "Wing (Dorsal)",
  36129. image: {
  36130. source: "./media/characters/sabrina/wing-dorsal.svg"
  36131. }
  36132. },
  36133. wingVentral: {
  36134. height: math.unit(4.85, "meters"),
  36135. name: "Wing (Ventral)",
  36136. image: {
  36137. source: "./media/characters/sabrina/wing-ventral.svg"
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(5, "meters"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36151. {
  36152. frontMaid: {
  36153. height: math.unit(5 + 5/12, "feet"),
  36154. weight: math.unit(130, "lb"),
  36155. name: "Front (Maid)",
  36156. image: {
  36157. source: "./media/characters/midnight-tales/front-maid.svg",
  36158. extra: 489/454,
  36159. bottom: 61/550
  36160. }
  36161. },
  36162. frontFormal: {
  36163. height: math.unit(5 + 5/12, "feet"),
  36164. weight: math.unit(130, "lb"),
  36165. name: "Front (Formal)",
  36166. image: {
  36167. source: "./media/characters/midnight-tales/front-formal.svg",
  36168. extra: 489/454,
  36169. bottom: 61/550
  36170. }
  36171. },
  36172. back: {
  36173. height: math.unit(5 + 5/12, "feet"),
  36174. weight: math.unit(130, "lb"),
  36175. name: "Back",
  36176. image: {
  36177. source: "./media/characters/midnight-tales/back.svg",
  36178. extra: 498/456,
  36179. bottom: 33/531
  36180. }
  36181. },
  36182. frontBeast: {
  36183. height: math.unit(40, "feet"),
  36184. weight: math.unit(64000, "lb"),
  36185. name: "Front (Beast)",
  36186. image: {
  36187. source: "./media/characters/midnight-tales/front-beast.svg",
  36188. extra: 927/860,
  36189. bottom: 53/980
  36190. }
  36191. },
  36192. backBeast: {
  36193. height: math.unit(40, "feet"),
  36194. weight: math.unit(64000, "lb"),
  36195. name: "Back (Beast)",
  36196. image: {
  36197. source: "./media/characters/midnight-tales/back-beast.svg",
  36198. extra: 929/855,
  36199. bottom: 16/945
  36200. }
  36201. },
  36202. footBeast: {
  36203. height: math.unit(6.7, "feet"),
  36204. name: "Foot (Beast)",
  36205. image: {
  36206. source: "./media/characters/midnight-tales/foot-beast.svg"
  36207. }
  36208. },
  36209. headBeast: {
  36210. height: math.unit(8, "feet"),
  36211. name: "Head (Beast)",
  36212. image: {
  36213. source: "./media/characters/midnight-tales/head-beast.svg"
  36214. }
  36215. },
  36216. },
  36217. [
  36218. {
  36219. name: "Normal",
  36220. height: math.unit(5 + 5 / 12, "feet"),
  36221. default: true
  36222. },
  36223. {
  36224. name: "Macro",
  36225. height: math.unit(25, "feet")
  36226. },
  36227. ]
  36228. ))
  36229. characterMakers.push(() => makeCharacter(
  36230. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36231. {
  36232. front: {
  36233. height: math.unit(5 + 10/12, "feet"),
  36234. name: "Front",
  36235. image: {
  36236. source: "./media/characters/argon/front.svg",
  36237. extra: 2009/1935,
  36238. bottom: 118/2127
  36239. }
  36240. },
  36241. back: {
  36242. height: math.unit(5 + 10/12, "feet"),
  36243. name: "Back",
  36244. image: {
  36245. source: "./media/characters/argon/back.svg",
  36246. extra: 2047/1992,
  36247. bottom: 20/2067
  36248. }
  36249. },
  36250. frontDressed: {
  36251. height: math.unit(5 + 10/12, "feet"),
  36252. name: "Front (Dressed)",
  36253. image: {
  36254. source: "./media/characters/argon/front-dressed.svg",
  36255. extra: 2009/1935,
  36256. bottom: 118/2127
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Normal",
  36263. height: math.unit(5 + 10/12, "feet"),
  36264. default: true
  36265. },
  36266. ]
  36267. ))
  36268. characterMakers.push(() => makeCharacter(
  36269. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36270. {
  36271. front: {
  36272. height: math.unit(8 + 6/12, "feet"),
  36273. weight: math.unit(1150, "lb"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/kichi/front.svg",
  36277. extra: 1267/1164,
  36278. bottom: 61/1328
  36279. }
  36280. },
  36281. back: {
  36282. height: math.unit(8 + 6/12, "feet"),
  36283. weight: math.unit(1150, "lb"),
  36284. name: "Back",
  36285. image: {
  36286. source: "./media/characters/kichi/back.svg",
  36287. extra: 1273/1166,
  36288. bottom: 33/1306
  36289. }
  36290. },
  36291. },
  36292. [
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(8 + 6/12, "feet"),
  36296. default: true
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(6, "feet"),
  36305. weight: math.unit(210, "lb"),
  36306. name: "Front",
  36307. image: {
  36308. source: "./media/characters/manetel-greyscale/front.svg",
  36309. extra: 350/312,
  36310. bottom: 8/358
  36311. }
  36312. },
  36313. },
  36314. [
  36315. {
  36316. name: "Micro",
  36317. height: math.unit(2, "inches")
  36318. },
  36319. {
  36320. name: "Normal",
  36321. height: math.unit(6, "feet"),
  36322. default: true
  36323. },
  36324. {
  36325. name: "Minimacro",
  36326. height: math.unit(17, "feet")
  36327. },
  36328. {
  36329. name: "Macro",
  36330. height: math.unit(117, "feet")
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36336. {
  36337. side: {
  36338. height: math.unit(5 + 1/12, "feet"),
  36339. weight: math.unit(418, "lb"),
  36340. name: "Side",
  36341. image: {
  36342. source: "./media/characters/softpurr/side.svg",
  36343. extra: 1993/1945,
  36344. bottom: 134/2127
  36345. }
  36346. },
  36347. front: {
  36348. height: math.unit(5 + 1/12, "feet"),
  36349. weight: math.unit(418, "lb"),
  36350. name: "Front",
  36351. image: {
  36352. source: "./media/characters/softpurr/front.svg",
  36353. extra: 1950/1856,
  36354. bottom: 174/2124
  36355. }
  36356. },
  36357. paw: {
  36358. height: math.unit(1, "feet"),
  36359. name: "Paw",
  36360. image: {
  36361. source: "./media/characters/softpurr/paw.svg"
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "Normal",
  36368. height: math.unit(5 + 1/12, "feet"),
  36369. default: true
  36370. },
  36371. ]
  36372. ))
  36373. characterMakers.push(() => makeCharacter(
  36374. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36375. {
  36376. front: {
  36377. height: math.unit(260, "meters"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/anahita/front.svg",
  36381. extra: 665/635,
  36382. bottom: 89/754
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Macro",
  36389. height: math.unit(260, "meters"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(4 + 10/12, "feet"),
  36399. weight: math.unit(160, "lb"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/chip-mouse/front.svg",
  36403. extra: 3528/3408,
  36404. bottom: 0/3528
  36405. }
  36406. },
  36407. frontNsfw: {
  36408. height: math.unit(4 + 10/12, "feet"),
  36409. weight: math.unit(160, "lb"),
  36410. name: "Front (NSFW)",
  36411. image: {
  36412. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36413. extra: 3528/3408,
  36414. bottom: 0/3528
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(4 + 10/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36428. {
  36429. side: {
  36430. height: math.unit(10, "feet"),
  36431. weight: math.unit(14000, "lb"),
  36432. name: "Side",
  36433. image: {
  36434. source: "./media/characters/kremm/side.svg",
  36435. extra: 1390/1053,
  36436. bottom: 90/1480
  36437. }
  36438. },
  36439. gut: {
  36440. height: math.unit(5.8, "feet"),
  36441. name: "Gut",
  36442. image: {
  36443. source: "./media/characters/kremm/gut.svg"
  36444. }
  36445. },
  36446. ass: {
  36447. height: math.unit(6.1, "feet"),
  36448. name: "Ass",
  36449. image: {
  36450. source: "./media/characters/kremm/ass.svg"
  36451. }
  36452. },
  36453. jaws: {
  36454. height: math.unit(2.2, "feet"),
  36455. name: "Jaws",
  36456. image: {
  36457. source: "./media/characters/kremm/jaws.svg"
  36458. }
  36459. },
  36460. dick: {
  36461. height: math.unit(4.26, "feet"),
  36462. name: "Dick",
  36463. image: {
  36464. source: "./media/characters/kremm/dick.svg"
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(10, "feet"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(30, "stories"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/kai/front.svg",
  36484. extra: 1892/1718,
  36485. bottom: 162/2054
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Macro",
  36492. height: math.unit(30, "stories"),
  36493. default: true
  36494. },
  36495. ]
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(6 + 4/12, "feet"),
  36502. weight: math.unit(145, "lb"),
  36503. name: "Front",
  36504. image: {
  36505. source: "./media/characters/sykes/front.svg",
  36506. extra: 1321 / 1187,
  36507. bottom: 66 / 1387
  36508. }
  36509. },
  36510. back: {
  36511. height: math.unit(6 + 4/12, "feet"),
  36512. weight: math.unit(145, "lb"),
  36513. name: "Back",
  36514. image: {
  36515. source: "./media/characters/sykes/back.svg",
  36516. extra: 1326/1181,
  36517. bottom: 31/1357
  36518. }
  36519. },
  36520. traditionalOutfit: {
  36521. height: math.unit(6 + 4/12, "feet"),
  36522. weight: math.unit(145, "lb"),
  36523. name: "Traditional Outfit",
  36524. image: {
  36525. source: "./media/characters/sykes/traditional-outfit.svg",
  36526. extra: 1321 / 1187,
  36527. bottom: 66 / 1387
  36528. }
  36529. },
  36530. adventureOutfit: {
  36531. height: math.unit(6 + 4/12, "feet"),
  36532. weight: math.unit(145, "lb"),
  36533. name: "Adventure Outfit",
  36534. image: {
  36535. source: "./media/characters/sykes/adventure-outfit.svg",
  36536. extra: 1321 / 1187,
  36537. bottom: 66 / 1387
  36538. }
  36539. },
  36540. handLeft: {
  36541. height: math.unit(0.9, "feet"),
  36542. name: "Hand (Left)",
  36543. image: {
  36544. source: "./media/characters/sykes/hand-left.svg"
  36545. }
  36546. },
  36547. handRight: {
  36548. height: math.unit(0.839, "feet"),
  36549. name: "Hand (Right)",
  36550. image: {
  36551. source: "./media/characters/sykes/hand-right.svg"
  36552. }
  36553. },
  36554. leftFoot: {
  36555. height: math.unit(1.2, "feet"),
  36556. name: "Foot (Left)",
  36557. image: {
  36558. source: "./media/characters/sykes/foot-left.svg"
  36559. }
  36560. },
  36561. rightFoot: {
  36562. height: math.unit(1.2, "feet"),
  36563. name: "Foot (Right)",
  36564. image: {
  36565. source: "./media/characters/sykes/foot-right.svg"
  36566. }
  36567. },
  36568. maw: {
  36569. height: math.unit(1.93, "feet"),
  36570. name: "Maw",
  36571. image: {
  36572. source: "./media/characters/sykes/maw.svg"
  36573. }
  36574. },
  36575. teeth: {
  36576. height: math.unit(0.51, "feet"),
  36577. name: "Teeth",
  36578. image: {
  36579. source: "./media/characters/sykes/teeth.svg"
  36580. }
  36581. },
  36582. tongue: {
  36583. height: math.unit(2.13, "feet"),
  36584. name: "Tongue",
  36585. image: {
  36586. source: "./media/characters/sykes/tongue.svg"
  36587. }
  36588. },
  36589. uvula: {
  36590. height: math.unit(0.16, "feet"),
  36591. name: "Uvula",
  36592. image: {
  36593. source: "./media/characters/sykes/uvula.svg"
  36594. }
  36595. },
  36596. collar: {
  36597. height: math.unit(0.287, "feet"),
  36598. name: "Collar",
  36599. image: {
  36600. source: "./media/characters/sykes/collar.svg"
  36601. }
  36602. },
  36603. tail: {
  36604. height: math.unit(3.8, "feet"),
  36605. name: "Tail",
  36606. image: {
  36607. source: "./media/characters/sykes/tail.svg"
  36608. }
  36609. },
  36610. },
  36611. [
  36612. {
  36613. name: "Shrunken",
  36614. height: math.unit(5, "inches")
  36615. },
  36616. {
  36617. name: "Normal",
  36618. height: math.unit(6 + 4 / 12, "feet"),
  36619. default: true
  36620. },
  36621. {
  36622. name: "Big",
  36623. height: math.unit(15, "feet")
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(5 + 8/12, "feet"),
  36632. weight: math.unit(190, "lb"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/oven-otter/front.svg",
  36636. extra: 1809/1740,
  36637. bottom: 181/1990
  36638. }
  36639. },
  36640. back: {
  36641. height: math.unit(5 + 8/12, "feet"),
  36642. weight: math.unit(190, "lb"),
  36643. name: "Back",
  36644. image: {
  36645. source: "./media/characters/oven-otter/back.svg",
  36646. extra: 1709/1635,
  36647. bottom: 118/1827
  36648. }
  36649. },
  36650. hand: {
  36651. height: math.unit(1.07, "feet"),
  36652. name: "Hand",
  36653. image: {
  36654. source: "./media/characters/oven-otter/hand.svg"
  36655. }
  36656. },
  36657. beans: {
  36658. height: math.unit(1.74, "feet"),
  36659. name: "Beans",
  36660. image: {
  36661. source: "./media/characters/oven-otter/beans.svg"
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Micro",
  36668. height: math.unit(0.5, "inches")
  36669. },
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(5 + 8/12, "feet"),
  36673. default: true
  36674. },
  36675. {
  36676. name: "Macro",
  36677. height: math.unit(250, "feet")
  36678. },
  36679. {
  36680. name: "Really High",
  36681. height: math.unit(420, "feet")
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36687. {
  36688. front: {
  36689. height: math.unit(5, "meters"),
  36690. weight: math.unit(292000000000000, "kg"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/devourer/front.svg",
  36694. extra: 1800/1733,
  36695. bottom: 211/2011
  36696. }
  36697. },
  36698. maw: {
  36699. height: math.unit(1.1, "meter"),
  36700. name: "Maw",
  36701. image: {
  36702. source: "./media/characters/devourer/maw.svg"
  36703. }
  36704. },
  36705. },
  36706. [
  36707. {
  36708. name: "Small",
  36709. height: math.unit(3, "meters")
  36710. },
  36711. {
  36712. name: "Large",
  36713. height: math.unit(5, "meters"),
  36714. default: true
  36715. },
  36716. ]
  36717. ))
  36718. characterMakers.push(() => makeCharacter(
  36719. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36720. {
  36721. front: {
  36722. height: math.unit(6, "feet"),
  36723. weight: math.unit(400, "lb"),
  36724. name: "Front",
  36725. image: {
  36726. source: "./media/characters/ellarby/front.svg",
  36727. extra: 1909/1763,
  36728. bottom: 80/1989
  36729. }
  36730. },
  36731. back: {
  36732. height: math.unit(6, "feet"),
  36733. weight: math.unit(400, "lb"),
  36734. name: "Back",
  36735. image: {
  36736. source: "./media/characters/ellarby/back.svg",
  36737. extra: 1914/1784,
  36738. bottom: 172/2086
  36739. }
  36740. },
  36741. },
  36742. [
  36743. {
  36744. name: "Mischief",
  36745. height: math.unit(18, "inches")
  36746. },
  36747. {
  36748. name: "Trouble",
  36749. height: math.unit(12, "feet")
  36750. },
  36751. {
  36752. name: "Havoc",
  36753. height: math.unit(200, "feet"),
  36754. default: true
  36755. },
  36756. {
  36757. name: "Pandemonium",
  36758. height: math.unit(1, "mile")
  36759. },
  36760. {
  36761. name: "Catastrophe",
  36762. height: math.unit(100, "miles")
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36768. {
  36769. front: {
  36770. height: math.unit(4.7, "meters"),
  36771. weight: math.unit(6500, "kg"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/vex/front.svg",
  36775. extra: 1288/1140,
  36776. bottom: 100/1388
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(4.7, "meters"),
  36784. default: true
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36790. {
  36791. normal: {
  36792. height: math.unit(6, "feet"),
  36793. weight: math.unit(350, "lb"),
  36794. name: "Normal",
  36795. image: {
  36796. source: "./media/characters/teshy/normal.svg",
  36797. extra: 1795/1735,
  36798. bottom: 16/1811
  36799. }
  36800. },
  36801. monsterFront: {
  36802. height: math.unit(12, "feet"),
  36803. weight: math.unit(4700, "lb"),
  36804. name: "Monster (Front)",
  36805. image: {
  36806. source: "./media/characters/teshy/monster-front.svg",
  36807. extra: 2042/2034,
  36808. bottom: 128/2170
  36809. }
  36810. },
  36811. monsterSide: {
  36812. height: math.unit(12, "feet"),
  36813. weight: math.unit(4700, "lb"),
  36814. name: "Monster (Side)",
  36815. image: {
  36816. source: "./media/characters/teshy/monster-side.svg",
  36817. extra: 2067/2056,
  36818. bottom: 70/2137
  36819. }
  36820. },
  36821. monsterBack: {
  36822. height: math.unit(12, "feet"),
  36823. weight: math.unit(4700, "lb"),
  36824. name: "Monster (Back)",
  36825. image: {
  36826. source: "./media/characters/teshy/monster-back.svg",
  36827. extra: 1921/1914,
  36828. bottom: 171/2092
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(6, "feet"),
  36836. default: true
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(6, "feet"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/ramey/front.svg",
  36848. extra: 790/787,
  36849. bottom: 27/817
  36850. }
  36851. },
  36852. },
  36853. [
  36854. {
  36855. name: "Normal",
  36856. height: math.unit(6, "feet"),
  36857. default: true
  36858. },
  36859. ]
  36860. ))
  36861. characterMakers.push(() => makeCharacter(
  36862. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36863. {
  36864. front: {
  36865. height: math.unit(5 + 5/12, "feet"),
  36866. weight: math.unit(120, "lb"),
  36867. name: "Front",
  36868. image: {
  36869. source: "./media/characters/phirae/front.svg",
  36870. extra: 2491/2436,
  36871. bottom: 38/2529
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(5 + 5/12, "feet"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36885. {
  36886. front: {
  36887. height: math.unit(5 + 3/12, "feet"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/stagglas/front.svg",
  36891. extra: 962/882,
  36892. bottom: 53/1015
  36893. }
  36894. },
  36895. feral: {
  36896. height: math.unit(335, "cm"),
  36897. name: "Feral",
  36898. image: {
  36899. source: "./media/characters/stagglas/feral.svg",
  36900. extra: 1732/1090,
  36901. bottom: 48/1780
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(5 + 3/12, "feet"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36915. {
  36916. front: {
  36917. height: math.unit(5 + 4/12, "feet"),
  36918. weight: math.unit(145, "lb"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/starra/front.svg",
  36922. extra: 1790/1691,
  36923. bottom: 91/1881
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(5 + 4/12, "feet"),
  36931. default: true
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36937. {
  36938. front: {
  36939. height: math.unit(3.5, "meters"),
  36940. name: "Front",
  36941. image: {
  36942. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36943. extra: 1248/972,
  36944. bottom: 38/1286
  36945. }
  36946. },
  36947. },
  36948. [
  36949. {
  36950. name: "Normal",
  36951. height: math.unit(3.5, "meters"),
  36952. default: true
  36953. },
  36954. ]
  36955. ))
  36956. characterMakers.push(() => makeCharacter(
  36957. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36958. {
  36959. side: {
  36960. height: math.unit(8 + 2/12, "feet"),
  36961. weight: math.unit(1240, "lb"),
  36962. name: "Side",
  36963. image: {
  36964. source: "./media/characters/mika-valentine/side.svg",
  36965. extra: 2670/2501,
  36966. bottom: 250/2920
  36967. }
  36968. },
  36969. },
  36970. [
  36971. {
  36972. name: "Normal",
  36973. height: math.unit(8 + 2/12, "feet"),
  36974. default: true
  36975. },
  36976. ]
  36977. ))
  36978. characterMakers.push(() => makeCharacter(
  36979. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36980. {
  36981. front: {
  36982. height: math.unit(7 + 2/12, "feet"),
  36983. name: "Front",
  36984. image: {
  36985. source: "./media/characters/xoltol/front.svg",
  36986. extra: 2212/2124,
  36987. bottom: 84/2296
  36988. }
  36989. },
  36990. side: {
  36991. height: math.unit(7 + 2/12, "feet"),
  36992. name: "Side",
  36993. image: {
  36994. source: "./media/characters/xoltol/side.svg",
  36995. extra: 2273/2197,
  36996. bottom: 26/2299
  36997. }
  36998. },
  36999. hand: {
  37000. height: math.unit(2.5, "feet"),
  37001. name: "Hand",
  37002. image: {
  37003. source: "./media/characters/xoltol/hand.svg"
  37004. }
  37005. },
  37006. },
  37007. [
  37008. {
  37009. name: "Small-ish",
  37010. height: math.unit(5 + 11/12, "feet")
  37011. },
  37012. {
  37013. name: "Normal",
  37014. height: math.unit(7 + 2/12, "feet")
  37015. },
  37016. {
  37017. name: "\"Macro\"",
  37018. height: math.unit(14 + 9/12, "feet"),
  37019. default: true
  37020. },
  37021. {
  37022. name: "Alternate Height",
  37023. height: math.unit(20, "feet")
  37024. },
  37025. {
  37026. name: "Actually Macro",
  37027. height: math.unit(100, "feet")
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37033. {
  37034. front: {
  37035. height: math.unit(5 + 2/12, "feet"),
  37036. weight: math.unit(75, "kg"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/kotetsu-redwood/front.svg",
  37040. extra: 1053/942,
  37041. bottom: 60/1113
  37042. }
  37043. },
  37044. },
  37045. [
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(5 + 2/12, "feet"),
  37049. default: true
  37050. },
  37051. ]
  37052. ))
  37053. characterMakers.push(() => makeCharacter(
  37054. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37055. {
  37056. front: {
  37057. height: math.unit(2.4, "meters"),
  37058. weight: math.unit(125, "kg"),
  37059. name: "Front",
  37060. image: {
  37061. source: "./media/characters/lilith/front.svg",
  37062. extra: 1590/1513,
  37063. bottom: 203/1793
  37064. }
  37065. },
  37066. },
  37067. [
  37068. {
  37069. name: "Humanoid",
  37070. height: math.unit(2.4, "meters")
  37071. },
  37072. {
  37073. name: "Normal",
  37074. height: math.unit(6, "meters"),
  37075. default: true
  37076. },
  37077. {
  37078. name: "Largest",
  37079. height: math.unit(55, "meters")
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(8 + 4/12, "feet"),
  37088. weight: math.unit(535, "lb"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/beh'kah-bolger/front.svg",
  37092. extra: 1660/1603,
  37093. bottom: 37/1697
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(8 + 4/12, "feet"),
  37101. default: true
  37102. },
  37103. {
  37104. name: "Kaiju",
  37105. height: math.unit(250, "feet")
  37106. },
  37107. {
  37108. name: "Still Growing",
  37109. height: math.unit(10, "miles")
  37110. },
  37111. {
  37112. name: "Continental",
  37113. height: math.unit(5000, "miles")
  37114. },
  37115. {
  37116. name: "Final Form",
  37117. height: math.unit(2500000, "miles")
  37118. },
  37119. ]
  37120. ))
  37121. characterMakers.push(() => makeCharacter(
  37122. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37123. {
  37124. front: {
  37125. height: math.unit(7 + 2/12, "feet"),
  37126. weight: math.unit(230, "kg"),
  37127. name: "Front",
  37128. image: {
  37129. source: "./media/characters/tatyana-milewska/front.svg",
  37130. extra: 1199/1150,
  37131. bottom: 86/1285
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(7 + 2/12, "feet"),
  37139. default: true
  37140. },
  37141. {
  37142. name: "Big",
  37143. height: math.unit(12, "feet")
  37144. },
  37145. {
  37146. name: "Minimacro",
  37147. height: math.unit(20, "feet")
  37148. },
  37149. {
  37150. name: "Macro",
  37151. height: math.unit(120, "feet")
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(7 + 8/12, "feet"),
  37160. weight: math.unit(152, "kg"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/helen-arri/front.svg",
  37164. extra: 440/423,
  37165. bottom: 14/454
  37166. }
  37167. },
  37168. back: {
  37169. height: math.unit(7 + 8/12, "feet"),
  37170. weight: math.unit(152, "kg"),
  37171. name: "Back",
  37172. image: {
  37173. source: "./media/characters/helen-arri/back.svg",
  37174. extra: 443/426,
  37175. bottom: 8/451
  37176. }
  37177. },
  37178. },
  37179. [
  37180. {
  37181. name: "Normal",
  37182. height: math.unit(7 + 8/12, "feet"),
  37183. default: true
  37184. },
  37185. {
  37186. name: "Big",
  37187. height: math.unit(14, "feet")
  37188. },
  37189. {
  37190. name: "Minimacro",
  37191. height: math.unit(24, "feet")
  37192. },
  37193. {
  37194. name: "Macro",
  37195. height: math.unit(140, "feet")
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37201. {
  37202. front: {
  37203. height: math.unit(6, "meters"),
  37204. name: "Front",
  37205. image: {
  37206. source: "./media/characters/ehanu-rehu/front.svg",
  37207. extra: 1800/1800,
  37208. bottom: 59/1859
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(6, "meters"),
  37216. default: true
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(7 + 3/12, "feet"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/renholder/front.svg",
  37228. extra: 3096/2960,
  37229. bottom: 250/3346
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Normal Bat",
  37236. height: math.unit(7 + 3/12, "feet"),
  37237. default: true
  37238. },
  37239. {
  37240. name: "Slightly Tall Bat",
  37241. height: math.unit(100, "feet")
  37242. },
  37243. {
  37244. name: "Big Bat",
  37245. height: math.unit(1000, "feet")
  37246. },
  37247. {
  37248. name: "City-Sized Bat",
  37249. height: math.unit(200000, "feet")
  37250. },
  37251. {
  37252. name: "Bigger Bat",
  37253. height: math.unit(10000, "miles")
  37254. },
  37255. {
  37256. name: "Solar Sized Bat",
  37257. height: math.unit(100, "AU")
  37258. },
  37259. {
  37260. name: "Galactic Bat",
  37261. height: math.unit(200000, "lightyears")
  37262. },
  37263. {
  37264. name: "Universally Known Bat",
  37265. height: math.unit(1, "universe")
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(6 + 11/12, "feet"),
  37274. weight: math.unit(250, "lb"),
  37275. name: "Front",
  37276. image: {
  37277. source: "./media/characters/cookiecat/front.svg",
  37278. extra: 893/827,
  37279. bottom: 14/907
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Micro",
  37286. height: math.unit(3, "inches")
  37287. },
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(6 + 11/12, "feet"),
  37291. default: true
  37292. },
  37293. {
  37294. name: "Macro",
  37295. height: math.unit(100, "feet")
  37296. },
  37297. {
  37298. name: "Macro+",
  37299. height: math.unit(404, "feet")
  37300. },
  37301. {
  37302. name: "Megamacro",
  37303. height: math.unit(165, "miles")
  37304. },
  37305. {
  37306. name: "Planetary",
  37307. height: math.unit(4600, "miles")
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(10 + 3/12, "feet"),
  37316. weight: math.unit(1500, "lb"),
  37317. name: "Front",
  37318. image: {
  37319. source: "./media/characters/tux-kusanagi/front.svg",
  37320. extra: 944/840,
  37321. bottom: 39/983
  37322. }
  37323. },
  37324. back: {
  37325. height: math.unit(10 + 3/12, "feet"),
  37326. weight: math.unit(1500, "lb"),
  37327. name: "Back",
  37328. image: {
  37329. source: "./media/characters/tux-kusanagi/back.svg",
  37330. extra: 941/842,
  37331. bottom: 28/969
  37332. }
  37333. },
  37334. rump: {
  37335. height: math.unit(5.25, "feet"),
  37336. name: "Rump",
  37337. image: {
  37338. source: "./media/characters/tux-kusanagi/rump.svg"
  37339. }
  37340. },
  37341. beak: {
  37342. height: math.unit(1.54, "feet"),
  37343. name: "Beak",
  37344. image: {
  37345. source: "./media/characters/tux-kusanagi/beak.svg"
  37346. }
  37347. },
  37348. },
  37349. [
  37350. {
  37351. name: "Normal",
  37352. height: math.unit(10 + 3/12, "feet"),
  37353. default: true
  37354. },
  37355. ]
  37356. ))
  37357. characterMakers.push(() => makeCharacter(
  37358. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37359. {
  37360. front: {
  37361. height: math.unit(58, "feet"),
  37362. weight: math.unit(200, "tons"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/uzarmazari/front.svg",
  37366. extra: 1575/1455,
  37367. bottom: 152/1727
  37368. }
  37369. },
  37370. back: {
  37371. height: math.unit(58, "feet"),
  37372. weight: math.unit(200, "tons"),
  37373. name: "Back",
  37374. image: {
  37375. source: "./media/characters/uzarmazari/back.svg",
  37376. extra: 1585/1510,
  37377. bottom: 157/1742
  37378. }
  37379. },
  37380. head: {
  37381. height: math.unit(26, "feet"),
  37382. name: "Head",
  37383. image: {
  37384. source: "./media/characters/uzarmazari/head.svg"
  37385. }
  37386. },
  37387. },
  37388. [
  37389. {
  37390. name: "Normal",
  37391. height: math.unit(58, "feet"),
  37392. default: true
  37393. },
  37394. ]
  37395. ))
  37396. characterMakers.push(() => makeCharacter(
  37397. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37398. {
  37399. side: {
  37400. height: math.unit(15, "feet"),
  37401. name: "Side",
  37402. image: {
  37403. source: "./media/characters/akitu/side.svg",
  37404. extra: 1421/1321,
  37405. bottom: 157/1578
  37406. }
  37407. },
  37408. front: {
  37409. height: math.unit(15, "feet"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/akitu/front.svg",
  37413. extra: 1435/1326,
  37414. bottom: 232/1667
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Normal",
  37421. height: math.unit(15, "feet"),
  37422. default: true
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37428. {
  37429. front: {
  37430. height: math.unit(10 + 8/12, "feet"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/azalie-croixland/front.svg",
  37434. extra: 1972/1856,
  37435. bottom: 31/2003
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Original Height",
  37442. height: math.unit(5 + 4/12, "feet")
  37443. },
  37444. {
  37445. name: "Normal Height",
  37446. height: math.unit(10 + 8/12, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37453. {
  37454. side: {
  37455. height: math.unit(7 + 1/12, "feet"),
  37456. weight: math.unit(245, "lb"),
  37457. name: "Side",
  37458. image: {
  37459. source: "./media/characters/kavus-kazian/side.svg",
  37460. extra: 349/342,
  37461. bottom: 15/364
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(7 + 1/12, "feet"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37475. {
  37476. normalFront: {
  37477. height: math.unit(5 + 11/12, "feet"),
  37478. name: "Front",
  37479. image: {
  37480. source: "./media/characters/moonlight-rose/normal-front.svg",
  37481. extra: 1980/1825,
  37482. bottom: 18/1998
  37483. },
  37484. form: "normal",
  37485. default: true
  37486. },
  37487. normalBack: {
  37488. height: math.unit(5 + 11/12, "feet"),
  37489. name: "Back",
  37490. image: {
  37491. source: "./media/characters/moonlight-rose/normal-back.svg",
  37492. extra: 2010/1839,
  37493. bottom: 10/2020
  37494. },
  37495. form: "normal"
  37496. },
  37497. demonFront: {
  37498. height: math.unit(1.5, "earths"),
  37499. name: "Front",
  37500. image: {
  37501. source: "./media/characters/moonlight-rose/demon.svg",
  37502. extra: 1400/1294,
  37503. bottom: 45/1445
  37504. },
  37505. form: "demon",
  37506. default: true
  37507. },
  37508. terraFront: {
  37509. height: math.unit(1.5, "earths"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/moonlight-rose/terra.svg"
  37513. },
  37514. form: "terra",
  37515. default: true
  37516. },
  37517. jupiterFront: {
  37518. height: math.unit(69911*2, "km"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37522. extra: 1367/1286,
  37523. bottom: 55/1422
  37524. },
  37525. form: "jupiter",
  37526. default: true
  37527. },
  37528. neptuneFront: {
  37529. height: math.unit(24622*2, "feet"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37533. extra: 1851/1712,
  37534. bottom: 0/1851
  37535. },
  37536. form: "neptune",
  37537. default: true
  37538. },
  37539. },
  37540. [
  37541. {
  37542. name: "\"Natural\" Height",
  37543. height: math.unit(5 + 11/12, "feet"),
  37544. form: "normal"
  37545. },
  37546. {
  37547. name: "Smallest comfortable size",
  37548. height: math.unit(40, "meters"),
  37549. form: "normal"
  37550. },
  37551. {
  37552. name: "Common size",
  37553. height: math.unit(50, "km"),
  37554. form: "normal",
  37555. default: true
  37556. },
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(1.5, "earths"),
  37560. form: "demon",
  37561. default: true
  37562. },
  37563. {
  37564. name: "Universal",
  37565. height: math.unit(15, "universes"),
  37566. form: "demon"
  37567. },
  37568. {
  37569. name: "Earth",
  37570. height: math.unit(1.5, "earths"),
  37571. form: "terra",
  37572. default: true
  37573. },
  37574. {
  37575. name: "Super Earth",
  37576. height: math.unit(67.5, "earths"),
  37577. form: "terra"
  37578. },
  37579. {
  37580. name: "Doesn't fit in a solar system...",
  37581. height: math.unit(1, "galaxy"),
  37582. form: "terra"
  37583. },
  37584. {
  37585. name: "Saturn",
  37586. height: math.unit(58232*2, "km"),
  37587. form: "jupiter"
  37588. },
  37589. {
  37590. name: "Jupiter",
  37591. height: math.unit(69911*2, "km"),
  37592. form: "jupiter",
  37593. default: true
  37594. },
  37595. {
  37596. name: "HD 100546 b",
  37597. height: math.unit(482938, "km"),
  37598. form: "jupiter"
  37599. },
  37600. {
  37601. name: "Enceladus",
  37602. height: math.unit(513*2, "km"),
  37603. form: "neptune"
  37604. },
  37605. {
  37606. name: "Europe",
  37607. height: math.unit(1560*2, "km"),
  37608. form: "neptune"
  37609. },
  37610. {
  37611. name: "Neptune",
  37612. height: math.unit(24622*2, "km"),
  37613. form: "neptune",
  37614. default: true
  37615. },
  37616. {
  37617. name: "CoRoT-9b",
  37618. height: math.unit(75067*2, "km"),
  37619. form: "neptune"
  37620. },
  37621. ],
  37622. {
  37623. "normal": {
  37624. name: "Normal",
  37625. default: true
  37626. },
  37627. "demon": {
  37628. name: "Demon"
  37629. },
  37630. "terra": {
  37631. name: "Terra"
  37632. },
  37633. "jupiter": {
  37634. name: "Jupiter"
  37635. },
  37636. "neptune": {
  37637. name: "Neptune"
  37638. }
  37639. }
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37643. {
  37644. front: {
  37645. height: math.unit(16, "feet"),
  37646. weight: math.unit(610, "kg"),
  37647. name: "Front",
  37648. image: {
  37649. source: "./media/characters/huckle/front.svg",
  37650. extra: 1731/1625,
  37651. bottom: 33/1764
  37652. }
  37653. },
  37654. back: {
  37655. height: math.unit(16, "feet"),
  37656. weight: math.unit(610, "kg"),
  37657. name: "Back",
  37658. image: {
  37659. source: "./media/characters/huckle/back.svg",
  37660. extra: 1738/1651,
  37661. bottom: 37/1775
  37662. }
  37663. },
  37664. laughing: {
  37665. height: math.unit(3.75, "feet"),
  37666. name: "Laughing",
  37667. image: {
  37668. source: "./media/characters/huckle/laughing.svg"
  37669. }
  37670. },
  37671. angry: {
  37672. height: math.unit(4.15, "feet"),
  37673. name: "Angry",
  37674. image: {
  37675. source: "./media/characters/huckle/angry.svg"
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Normal",
  37682. height: math.unit(16, "feet"),
  37683. default: true
  37684. },
  37685. {
  37686. name: "Mini Macro",
  37687. height: math.unit(463, "feet")
  37688. },
  37689. {
  37690. name: "Macro",
  37691. height: math.unit(1680, "meters")
  37692. },
  37693. {
  37694. name: "Mega Macro",
  37695. height: math.unit(175, "km")
  37696. },
  37697. {
  37698. name: "Terra Macro",
  37699. height: math.unit(32, "gigameters")
  37700. },
  37701. {
  37702. name: "Multiverse+",
  37703. height: math.unit(2.56e23, "yottameters")
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37709. {
  37710. front: {
  37711. height: math.unit(6 + 9/12, "feet"),
  37712. weight: math.unit(280, "lb"),
  37713. name: "Front",
  37714. image: {
  37715. source: "./media/characters/candy/front.svg",
  37716. extra: 234/217,
  37717. bottom: 11/245
  37718. }
  37719. },
  37720. },
  37721. [
  37722. {
  37723. name: "Really Small",
  37724. height: math.unit(0.1, "nm")
  37725. },
  37726. {
  37727. name: "Micro",
  37728. height: math.unit(2, "inches")
  37729. },
  37730. {
  37731. name: "Normal",
  37732. height: math.unit(6 + 9/12, "feet"),
  37733. default: true
  37734. },
  37735. {
  37736. name: "Small Macro",
  37737. height: math.unit(69, "feet")
  37738. },
  37739. {
  37740. name: "Macro",
  37741. height: math.unit(160, "feet")
  37742. },
  37743. {
  37744. name: "Megamacro",
  37745. height: math.unit(22000, "miles")
  37746. },
  37747. {
  37748. name: "Gigamacro",
  37749. height: math.unit(50000, "miles")
  37750. },
  37751. ]
  37752. ))
  37753. characterMakers.push(() => makeCharacter(
  37754. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37755. {
  37756. front: {
  37757. height: math.unit(4, "feet"),
  37758. weight: math.unit(90, "lb"),
  37759. name: "Front",
  37760. image: {
  37761. source: "./media/characters/joey-mcdonald/front.svg",
  37762. extra: 1059/852,
  37763. bottom: 33/1092
  37764. }
  37765. },
  37766. back: {
  37767. height: math.unit(4, "feet"),
  37768. weight: math.unit(90, "lb"),
  37769. name: "Back",
  37770. image: {
  37771. source: "./media/characters/joey-mcdonald/back.svg",
  37772. extra: 1077/879,
  37773. bottom: 5/1082
  37774. }
  37775. },
  37776. frontKobold: {
  37777. height: math.unit(4, "feet"),
  37778. weight: math.unit(100, "lb"),
  37779. name: "Front-kobold",
  37780. image: {
  37781. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37782. extra: 1480/1367,
  37783. bottom: 0/1480
  37784. }
  37785. },
  37786. backKobold: {
  37787. height: math.unit(4, "feet"),
  37788. weight: math.unit(100, "lb"),
  37789. name: "Back-kobold",
  37790. image: {
  37791. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37792. extra: 1449/1361,
  37793. bottom: 0/1449
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(4, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(12 + 6/12, "feet"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/kass-lockheed/front.svg",
  37813. extra: 354/343,
  37814. bottom: 9/363
  37815. }
  37816. },
  37817. back: {
  37818. height: math.unit(12 + 6/12, "feet"),
  37819. name: "Back",
  37820. image: {
  37821. source: "./media/characters/kass-lockheed/back.svg",
  37822. extra: 364/352,
  37823. bottom: 3/367
  37824. }
  37825. },
  37826. dick: {
  37827. height: math.unit(3.12, "feet"),
  37828. name: "Dick",
  37829. image: {
  37830. source: "./media/characters/kass-lockheed/dick.svg"
  37831. }
  37832. },
  37833. head: {
  37834. height: math.unit(2.6, "feet"),
  37835. name: "Head",
  37836. image: {
  37837. source: "./media/characters/kass-lockheed/head.svg"
  37838. }
  37839. },
  37840. bleh: {
  37841. height: math.unit(2.85, "feet"),
  37842. name: "Bleh",
  37843. image: {
  37844. source: "./media/characters/kass-lockheed/bleh.svg"
  37845. }
  37846. },
  37847. smug: {
  37848. height: math.unit(2.85, "feet"),
  37849. name: "Smug",
  37850. image: {
  37851. source: "./media/characters/kass-lockheed/smug.svg"
  37852. }
  37853. },
  37854. },
  37855. [
  37856. {
  37857. name: "Normal",
  37858. height: math.unit(12 + 6/12, "feet"),
  37859. default: true
  37860. },
  37861. ]
  37862. ))
  37863. characterMakers.push(() => makeCharacter(
  37864. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37865. {
  37866. front: {
  37867. height: math.unit(6 + 2/12, "feet"),
  37868. name: "Front",
  37869. image: {
  37870. source: "./media/characters/taylor/front.svg",
  37871. extra: 639/495,
  37872. bottom: 12/651
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Normal",
  37879. height: math.unit(6 + 2/12, "feet"),
  37880. default: true
  37881. },
  37882. {
  37883. name: "Big",
  37884. height: math.unit(15, "feet")
  37885. },
  37886. {
  37887. name: "Lorg",
  37888. height: math.unit(80, "feet")
  37889. },
  37890. {
  37891. name: "Too Lorg",
  37892. height: math.unit(120, "feet")
  37893. },
  37894. ]
  37895. ))
  37896. characterMakers.push(() => makeCharacter(
  37897. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37898. {
  37899. front: {
  37900. height: math.unit(15, "feet"),
  37901. name: "Front",
  37902. image: {
  37903. source: "./media/characters/kaizer/front.svg",
  37904. extra: 1612/1436,
  37905. bottom: 43/1655
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Normal",
  37912. height: math.unit(15, "feet"),
  37913. default: true
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(2, "feet"),
  37922. weight: math.unit(30, "lb"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/sandy/front.svg",
  37926. extra: 1439/1307,
  37927. bottom: 194/1633
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(2, "feet"),
  37935. default: true
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(3, "feet"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/mellvi/front.svg",
  37947. extra: 1831/1630,
  37948. bottom: 58/1889
  37949. }
  37950. },
  37951. },
  37952. [
  37953. {
  37954. name: "Normal",
  37955. height: math.unit(3, "feet"),
  37956. default: true
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37962. {
  37963. front: {
  37964. height: math.unit(5 + 11/12, "feet"),
  37965. weight: math.unit(200, "lb"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/shirou/front.svg",
  37969. extra: 2491/2383,
  37970. bottom: 189/2680
  37971. }
  37972. },
  37973. back: {
  37974. height: math.unit(5 + 11/12, "feet"),
  37975. weight: math.unit(200, "lb"),
  37976. name: "Back",
  37977. image: {
  37978. source: "./media/characters/shirou/back.svg",
  37979. extra: 2554/2450,
  37980. bottom: 76/2630
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(5 + 11/12, "feet"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37994. {
  37995. front: {
  37996. height: math.unit(6 + 3/12, "feet"),
  37997. weight: math.unit(177, "lb"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/noryu/front.svg",
  38001. extra: 973/885,
  38002. bottom: 10/983
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(6 + 3/12, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38016. {
  38017. front: {
  38018. height: math.unit(5 + 6/12, "feet"),
  38019. weight: math.unit(170, "lb"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/mevolas-rubenido/front.svg",
  38023. extra: 2109/1901,
  38024. bottom: 96/2205
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Normal",
  38031. height: math.unit(5 + 6/12, "feet"),
  38032. default: true
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(100, "feet"),
  38041. name: "Front",
  38042. image: {
  38043. source: "./media/characters/dee/front.svg",
  38044. extra: 2153/2036,
  38045. bottom: 59/2212
  38046. }
  38047. },
  38048. back: {
  38049. height: math.unit(100, "feet"),
  38050. name: "Back",
  38051. image: {
  38052. source: "./media/characters/dee/back.svg",
  38053. extra: 2183/2058,
  38054. bottom: 75/2258
  38055. }
  38056. },
  38057. foot: {
  38058. height: math.unit(19.43, "feet"),
  38059. name: "Foot",
  38060. image: {
  38061. source: "./media/characters/dee/foot.svg"
  38062. }
  38063. },
  38064. hoof: {
  38065. height: math.unit(20.6, "feet"),
  38066. name: "Hoof",
  38067. image: {
  38068. source: "./media/characters/dee/hoof.svg"
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Macro",
  38075. height: math.unit(100, "feet"),
  38076. default: true
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(5 + 6/12, "feet"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/teh/front.svg",
  38088. extra: 1002/847,
  38089. bottom: 62/1064
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(5 + 6/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38103. {
  38104. side: {
  38105. height: math.unit(6 + 1/12, "feet"),
  38106. weight: math.unit(204, "lb"),
  38107. name: "Side",
  38108. image: {
  38109. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38110. extra: 974/775,
  38111. bottom: 169/1143
  38112. }
  38113. },
  38114. sitting: {
  38115. height: math.unit(6 + 2/12, "feet"),
  38116. weight: math.unit(204, "lb"),
  38117. name: "Sitting",
  38118. image: {
  38119. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38120. extra: 1175/964,
  38121. bottom: 378/1553
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(6 + 1/12, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(6, "inches"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/tululi/front.svg",
  38141. extra: 1997/1876,
  38142. bottom: 20/2017
  38143. }
  38144. },
  38145. },
  38146. [
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(6, "inches"),
  38150. default: true
  38151. },
  38152. ]
  38153. ))
  38154. characterMakers.push(() => makeCharacter(
  38155. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38156. {
  38157. front: {
  38158. height: math.unit(4 + 1/12, "feet"),
  38159. name: "Front",
  38160. image: {
  38161. source: "./media/characters/star/front.svg",
  38162. extra: 1493/1189,
  38163. bottom: 48/1541
  38164. }
  38165. },
  38166. },
  38167. [
  38168. {
  38169. name: "Normal",
  38170. height: math.unit(4 + 1/12, "feet"),
  38171. default: true
  38172. },
  38173. ]
  38174. ))
  38175. characterMakers.push(() => makeCharacter(
  38176. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38177. {
  38178. front: {
  38179. height: math.unit(6 + 3/12, "feet"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/comet/front.svg",
  38183. extra: 1681/1462,
  38184. bottom: 26/1707
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(6 + 3/12, "feet"),
  38192. default: true
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(950, "feet"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/vortex/front.svg",
  38204. extra: 1497/1434,
  38205. bottom: 56/1553
  38206. }
  38207. },
  38208. maw: {
  38209. height: math.unit(285, "feet"),
  38210. name: "Maw",
  38211. image: {
  38212. source: "./media/characters/vortex/maw.svg"
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Macro",
  38219. height: math.unit(950, "feet"),
  38220. default: true
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(600, "feet"),
  38229. weight: math.unit(0.02, "grams"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/doodle/front.svg",
  38233. extra: 1578/1413,
  38234. bottom: 37/1615
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Macro",
  38241. height: math.unit(600, "feet"),
  38242. default: true
  38243. },
  38244. ]
  38245. ))
  38246. characterMakers.push(() => makeCharacter(
  38247. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38248. {
  38249. front: {
  38250. height: math.unit(6 + 6/12, "feet"),
  38251. name: "Front",
  38252. image: {
  38253. source: "./media/characters/jai/front.svg",
  38254. extra: 1645/1534,
  38255. bottom: 115/1760
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(6 + 6/12, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(6 + 8/12, "feet"),
  38272. name: "Front",
  38273. image: {
  38274. source: "./media/characters/pixel/front.svg",
  38275. extra: 1900/1735,
  38276. bottom: 63/1963
  38277. }
  38278. },
  38279. },
  38280. [
  38281. {
  38282. name: "Normal",
  38283. height: math.unit(6 + 8/12, "feet"),
  38284. default: true
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38290. {
  38291. back: {
  38292. height: math.unit(4 + 1/12, "feet"),
  38293. weight: math.unit(75, "lb"),
  38294. name: "Back",
  38295. image: {
  38296. source: "./media/characters/rhett/back.svg",
  38297. extra: 930/878,
  38298. bottom: 25/955
  38299. }
  38300. },
  38301. front: {
  38302. height: math.unit(4 + 1/12, "feet"),
  38303. weight: math.unit(75, "lb"),
  38304. name: "Front",
  38305. image: {
  38306. source: "./media/characters/rhett/front.svg",
  38307. extra: 1682/1586,
  38308. bottom: 92/1774
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Micro",
  38315. height: math.unit(8, "inches")
  38316. },
  38317. {
  38318. name: "Tiny",
  38319. height: math.unit(2, "feet")
  38320. },
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(4 + 1/12, "feet"),
  38324. default: true
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(3 + 3/12, "feet"),
  38333. name: "Front",
  38334. image: {
  38335. source: "./media/characters/penny/front.svg",
  38336. extra: 1406/1311,
  38337. bottom: 26/1432
  38338. }
  38339. },
  38340. },
  38341. [
  38342. {
  38343. name: "Normal",
  38344. height: math.unit(3 + 3/12, "feet"),
  38345. default: true
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(4 + 11/12, "feet"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/monty/front.svg",
  38357. extra: 1479/1209,
  38358. bottom: 0/1479
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(4 + 11/12, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(8 + 4/12, "feet"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/sterling/front.svg",
  38378. extra: 1420/1236,
  38379. bottom: 27/1447
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(8 + 4/12, "feet"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(15, "feet"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/marble/front.svg",
  38399. extra: 973/937,
  38400. bottom: 32/1005
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(15, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38414. {
  38415. front: {
  38416. height: math.unit(3, "inches"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/powder/front.svg",
  38420. extra: 1504/1334,
  38421. bottom: 518/2022
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(3, "inches"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(4 + 5/12, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/joey-raccoon/front.svg",
  38441. extra: 1273/1197,
  38442. bottom: 0/1273
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(4 + 5/12, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38456. {
  38457. front: {
  38458. height: math.unit(8 + 4/12, "feet"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/vick/front.svg",
  38462. extra: 2187/2118,
  38463. bottom: 47/2234
  38464. }
  38465. },
  38466. },
  38467. [
  38468. {
  38469. name: "Normal",
  38470. height: math.unit(8 + 4/12, "feet"),
  38471. default: true
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(5 + 5/12, "feet"),
  38480. name: "Front",
  38481. image: {
  38482. source: "./media/characters/mitsy/front.svg",
  38483. extra: 1842/1695,
  38484. bottom: 0/1842
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(5 + 5/12, "feet"),
  38492. default: true
  38493. },
  38494. ]
  38495. ))
  38496. characterMakers.push(() => makeCharacter(
  38497. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38498. {
  38499. front: {
  38500. height: math.unit(6 + 3/12, "feet"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/silvy/front.svg",
  38504. extra: 1995/1836,
  38505. bottom: 225/2220
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(6 + 3/12, "feet"),
  38513. default: true
  38514. },
  38515. ]
  38516. ))
  38517. characterMakers.push(() => makeCharacter(
  38518. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38519. {
  38520. front: {
  38521. height: math.unit(3 + 8/12, "feet"),
  38522. name: "Front",
  38523. image: {
  38524. source: "./media/characters/rodney/front.svg",
  38525. extra: 1956/1747,
  38526. bottom: 31/1987
  38527. }
  38528. },
  38529. frontDressed: {
  38530. height: math.unit(2.9, "feet"),
  38531. name: "Front (Dressed)",
  38532. image: {
  38533. source: "./media/characters/rodney/front-dressed.svg",
  38534. extra: 1382/1241,
  38535. bottom: 385/1767
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(3 + 8/12, "feet"),
  38543. default: true
  38544. },
  38545. ]
  38546. ))
  38547. characterMakers.push(() => makeCharacter(
  38548. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38549. {
  38550. front: {
  38551. height: math.unit(5 + 9/12, "feet"),
  38552. weight: math.unit(194, "lbs"),
  38553. name: "Front",
  38554. image: {
  38555. source: "./media/characters/zakail-sudekai/front.svg",
  38556. extra: 2696/2533,
  38557. bottom: 248/2944
  38558. }
  38559. },
  38560. maw: {
  38561. height: math.unit(1.35, "feet"),
  38562. name: "Maw",
  38563. image: {
  38564. source: "./media/characters/zakail-sudekai/maw.svg"
  38565. }
  38566. },
  38567. },
  38568. [
  38569. {
  38570. name: "Normal",
  38571. height: math.unit(5 + 9/12, "feet"),
  38572. default: true
  38573. },
  38574. ]
  38575. ))
  38576. characterMakers.push(() => makeCharacter(
  38577. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38578. {
  38579. front: {
  38580. height: math.unit(8 + 4/12, "feet"),
  38581. weight: math.unit(1200, "lb"),
  38582. name: "Front",
  38583. image: {
  38584. source: "./media/characters/eleanor/front.svg",
  38585. extra: 1226/1192,
  38586. bottom: 52/1278
  38587. }
  38588. },
  38589. back: {
  38590. height: math.unit(8 + 4/12, "feet"),
  38591. weight: math.unit(1200, "lb"),
  38592. name: "Back",
  38593. image: {
  38594. source: "./media/characters/eleanor/back.svg",
  38595. extra: 1242/1184,
  38596. bottom: 60/1302
  38597. }
  38598. },
  38599. head: {
  38600. height: math.unit(2.62, "feet"),
  38601. name: "Head",
  38602. image: {
  38603. source: "./media/characters/eleanor/head.svg"
  38604. }
  38605. },
  38606. },
  38607. [
  38608. {
  38609. name: "Normal",
  38610. height: math.unit(8 + 4/12, "feet"),
  38611. default: true
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(8 + 4/12, "feet"),
  38620. weight: math.unit(750, "lb"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/tanya/front.svg",
  38624. extra: 1749/1615,
  38625. bottom: 33/1782
  38626. }
  38627. },
  38628. },
  38629. [
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(8 + 4/12, "feet"),
  38633. default: true
  38634. },
  38635. ]
  38636. ))
  38637. characterMakers.push(() => makeCharacter(
  38638. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38639. {
  38640. front: {
  38641. height: math.unit(5, "feet"),
  38642. weight: math.unit(225, "lb"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/cindy/front.svg",
  38646. extra: 1320/1250,
  38647. bottom: 42/1362
  38648. }
  38649. },
  38650. frontDressed: {
  38651. height: math.unit(5, "feet"),
  38652. weight: math.unit(225, "lb"),
  38653. name: "Front (Dressed)",
  38654. image: {
  38655. source: "./media/characters/cindy/front-dressed.svg",
  38656. extra: 1320/1250,
  38657. bottom: 42/1362
  38658. }
  38659. },
  38660. back: {
  38661. height: math.unit(5, "feet"),
  38662. weight: math.unit(225, "lb"),
  38663. name: "Back",
  38664. image: {
  38665. source: "./media/characters/cindy/back.svg",
  38666. extra: 1384/1346,
  38667. bottom: 14/1398
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(5, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(6 + 9/12, "feet"),
  38684. weight: math.unit(440, "lb"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/wilbur-owen/front.svg",
  38688. extra: 1575/1448,
  38689. bottom: 72/1647
  38690. }
  38691. },
  38692. back: {
  38693. height: math.unit(6 + 9/12, "feet"),
  38694. weight: math.unit(440, "lb"),
  38695. name: "Back",
  38696. image: {
  38697. source: "./media/characters/wilbur-owen/back.svg",
  38698. extra: 1578/1445,
  38699. bottom: 36/1614
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Normal",
  38706. height: math.unit(6 + 9/12, "feet"),
  38707. default: true
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(6 + 5/12, "feet"),
  38716. weight: math.unit(650, "lb"),
  38717. name: "Front",
  38718. image: {
  38719. source: "./media/characters/keegan/front.svg",
  38720. extra: 2387/2198,
  38721. bottom: 33/2420
  38722. }
  38723. },
  38724. side: {
  38725. height: math.unit(6 + 5/12, "feet"),
  38726. weight: math.unit(650, "lb"),
  38727. name: "Side",
  38728. image: {
  38729. source: "./media/characters/keegan/side.svg",
  38730. extra: 2390/2202,
  38731. bottom: 47/2437
  38732. }
  38733. },
  38734. back: {
  38735. height: math.unit(6 + 5/12, "feet"),
  38736. weight: math.unit(650, "lb"),
  38737. name: "Back",
  38738. image: {
  38739. source: "./media/characters/keegan/back.svg",
  38740. extra: 2418/2268,
  38741. bottom: 15/2433
  38742. }
  38743. },
  38744. frontSfw: {
  38745. height: math.unit(6 + 5/12, "feet"),
  38746. weight: math.unit(650, "lb"),
  38747. name: "Front (SFW)",
  38748. image: {
  38749. source: "./media/characters/keegan/front-sfw.svg",
  38750. extra: 2387/2198,
  38751. bottom: 33/2420
  38752. }
  38753. },
  38754. beans: {
  38755. height: math.unit(1.85, "feet"),
  38756. name: "Beans",
  38757. image: {
  38758. source: "./media/characters/keegan/beans.svg"
  38759. }
  38760. },
  38761. },
  38762. [
  38763. {
  38764. name: "Normal",
  38765. height: math.unit(6 + 5/12, "feet"),
  38766. default: true
  38767. },
  38768. ]
  38769. ))
  38770. characterMakers.push(() => makeCharacter(
  38771. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38772. {
  38773. front: {
  38774. height: math.unit(9, "feet"),
  38775. name: "Front",
  38776. image: {
  38777. source: "./media/characters/colton/front.svg",
  38778. extra: 1589/1326,
  38779. bottom: 139/1728
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(9, "feet"),
  38787. default: true
  38788. },
  38789. ]
  38790. ))
  38791. characterMakers.push(() => makeCharacter(
  38792. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38793. {
  38794. front: {
  38795. height: math.unit(2 + 9/12, "feet"),
  38796. name: "Front",
  38797. image: {
  38798. source: "./media/characters/bora/front.svg",
  38799. extra: 1265/1250,
  38800. bottom: 24/1289
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(2 + 9/12, "feet"),
  38808. default: true
  38809. },
  38810. ]
  38811. ))
  38812. characterMakers.push(() => makeCharacter(
  38813. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38814. {
  38815. front: {
  38816. height: math.unit(8, "feet"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/myu-myu/front.svg",
  38820. extra: 1949/1857,
  38821. bottom: 90/2039
  38822. }
  38823. },
  38824. },
  38825. [
  38826. {
  38827. name: "Normal",
  38828. height: math.unit(8, "feet"),
  38829. default: true
  38830. },
  38831. {
  38832. name: "Big",
  38833. height: math.unit(15, "feet")
  38834. },
  38835. {
  38836. name: "BIG",
  38837. height: math.unit(25, "feet")
  38838. },
  38839. ]
  38840. ))
  38841. characterMakers.push(() => makeCharacter(
  38842. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38843. {
  38844. side: {
  38845. height: math.unit(7 + 5/12, "feet"),
  38846. weight: math.unit(2800, "lb"),
  38847. name: "Side",
  38848. image: {
  38849. source: "./media/characters/haloren/side.svg",
  38850. extra: 1793/409,
  38851. bottom: 59/1852
  38852. }
  38853. },
  38854. frontPaw: {
  38855. height: math.unit(2.36, "feet"),
  38856. name: "Front paw",
  38857. image: {
  38858. source: "./media/characters/haloren/front-paw.svg"
  38859. }
  38860. },
  38861. hindPaw: {
  38862. height: math.unit(3.18, "feet"),
  38863. name: "Hind paw",
  38864. image: {
  38865. source: "./media/characters/haloren/hind-paw.svg"
  38866. }
  38867. },
  38868. maw: {
  38869. height: math.unit(5.05, "feet"),
  38870. name: "Maw",
  38871. image: {
  38872. source: "./media/characters/haloren/maw.svg"
  38873. }
  38874. },
  38875. dick: {
  38876. height: math.unit(2.90, "feet"),
  38877. name: "Dick",
  38878. image: {
  38879. source: "./media/characters/haloren/dick.svg"
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(7 + 5/12, "feet"),
  38887. default: true
  38888. },
  38889. {
  38890. name: "Enhanced",
  38891. height: math.unit(14 + 3/12, "feet")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(171, "cm"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/kimmy/front.svg",
  38903. extra: 1491/1435,
  38904. bottom: 53/1544
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Small",
  38911. height: math.unit(9, "cm")
  38912. },
  38913. {
  38914. name: "Normal",
  38915. height: math.unit(171, "cm"),
  38916. default: true
  38917. },
  38918. ]
  38919. ))
  38920. characterMakers.push(() => makeCharacter(
  38921. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38922. {
  38923. front: {
  38924. height: math.unit(8, "feet"),
  38925. weight: math.unit(300, "lb"),
  38926. name: "Front",
  38927. image: {
  38928. source: "./media/characters/galeboomer/front.svg",
  38929. extra: 4651/4415,
  38930. bottom: 162/4813
  38931. }
  38932. },
  38933. back: {
  38934. height: math.unit(8, "feet"),
  38935. weight: math.unit(300, "lb"),
  38936. name: "Back",
  38937. image: {
  38938. source: "./media/characters/galeboomer/back.svg",
  38939. extra: 4544/4314,
  38940. bottom: 16/4560
  38941. }
  38942. },
  38943. frontAlt: {
  38944. height: math.unit(8, "feet"),
  38945. weight: math.unit(300, "lb"),
  38946. name: "Front (Alt)",
  38947. image: {
  38948. source: "./media/characters/galeboomer/front-alt.svg",
  38949. extra: 4458/4228,
  38950. bottom: 68/4526
  38951. }
  38952. },
  38953. maw: {
  38954. height: math.unit(1.2, "feet"),
  38955. name: "Maw",
  38956. image: {
  38957. source: "./media/characters/galeboomer/maw.svg"
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(8, "feet"),
  38965. default: true
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38971. {
  38972. front: {
  38973. height: math.unit(5 + 9/12, "feet"),
  38974. weight: math.unit(120, "lb"),
  38975. name: "Front",
  38976. image: {
  38977. source: "./media/characters/chyr/front.svg",
  38978. extra: 1323/1254,
  38979. bottom: 63/1386
  38980. }
  38981. },
  38982. back: {
  38983. height: math.unit(5 + 9/12, "feet"),
  38984. weight: math.unit(120, "lb"),
  38985. name: "Back",
  38986. image: {
  38987. source: "./media/characters/chyr/back.svg",
  38988. extra: 1323/1252,
  38989. bottom: 48/1371
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Normal",
  38996. height: math.unit(5 + 9/12, "feet"),
  38997. default: true
  38998. },
  38999. ]
  39000. ))
  39001. characterMakers.push(() => makeCharacter(
  39002. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39003. {
  39004. front: {
  39005. height: math.unit(7, "feet"),
  39006. weight: math.unit(310, "lb"),
  39007. name: "Front",
  39008. image: {
  39009. source: "./media/characters/solarus/front.svg",
  39010. extra: 2415/2021,
  39011. bottom: 103/2518
  39012. }
  39013. },
  39014. back: {
  39015. height: math.unit(7, "feet"),
  39016. weight: math.unit(310, "lb"),
  39017. name: "Back",
  39018. image: {
  39019. source: "./media/characters/solarus/back.svg",
  39020. extra: 2463/2089,
  39021. bottom: 79/2542
  39022. }
  39023. },
  39024. },
  39025. [
  39026. {
  39027. name: "Normal",
  39028. height: math.unit(7, "feet"),
  39029. default: true
  39030. },
  39031. ]
  39032. ))
  39033. characterMakers.push(() => makeCharacter(
  39034. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39035. {
  39036. front: {
  39037. height: math.unit(16, "feet"),
  39038. name: "Front",
  39039. image: {
  39040. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39041. extra: 1844/1780,
  39042. bottom: 58/1902
  39043. }
  39044. },
  39045. winterCoat: {
  39046. height: math.unit(16, "feet"),
  39047. name: "Winter Coat",
  39048. image: {
  39049. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39050. extra: 1807/1775,
  39051. bottom: 69/1876
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Normal",
  39058. height: math.unit(16, "feet"),
  39059. default: true
  39060. },
  39061. {
  39062. name: "Chicago Size",
  39063. height: math.unit(560, "feet")
  39064. },
  39065. ]
  39066. ))
  39067. characterMakers.push(() => makeCharacter(
  39068. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39069. {
  39070. front: {
  39071. height: math.unit(11 + 6/12, "feet"),
  39072. weight: math.unit(1366, "lb"),
  39073. name: "Front",
  39074. image: {
  39075. source: "./media/characters/lexor/front.svg",
  39076. extra: 1560/1481,
  39077. bottom: 211/1771
  39078. }
  39079. },
  39080. back: {
  39081. height: math.unit(11 + 6/12, "feet"),
  39082. weight: math.unit(1366, "lb"),
  39083. name: "Back",
  39084. image: {
  39085. source: "./media/characters/lexor/back.svg",
  39086. extra: 1614/1533,
  39087. bottom: 76/1690
  39088. }
  39089. },
  39090. maw: {
  39091. height: math.unit(3, "feet"),
  39092. name: "Maw",
  39093. image: {
  39094. source: "./media/characters/lexor/maw.svg"
  39095. }
  39096. },
  39097. dick: {
  39098. height: math.unit(2.59, "feet"),
  39099. name: "Dick",
  39100. image: {
  39101. source: "./media/characters/lexor/dick.svg"
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(11 + 6/12, "feet"),
  39109. default: true
  39110. },
  39111. ]
  39112. ))
  39113. characterMakers.push(() => makeCharacter(
  39114. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39115. {
  39116. front: {
  39117. height: math.unit(5 + 8/12, "feet"),
  39118. name: "Front",
  39119. image: {
  39120. source: "./media/characters/magnum/front.svg",
  39121. extra: 942/855,
  39122. bottom: 26/968
  39123. }
  39124. },
  39125. },
  39126. [
  39127. {
  39128. name: "Normal",
  39129. height: math.unit(5 + 8/12, "feet"),
  39130. default: true
  39131. },
  39132. ]
  39133. ))
  39134. characterMakers.push(() => makeCharacter(
  39135. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39136. {
  39137. front: {
  39138. height: math.unit(18 + 4/12, "feet"),
  39139. weight: math.unit(1500, "kg"),
  39140. name: "Front",
  39141. image: {
  39142. source: "./media/characters/solas-sharpsman/front.svg",
  39143. extra: 1698/1589,
  39144. bottom: 0/1698
  39145. }
  39146. },
  39147. },
  39148. [
  39149. {
  39150. name: "Normal",
  39151. height: math.unit(18 + 4/12, "feet"),
  39152. default: true
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(5 + 5/12, "feet"),
  39161. weight: math.unit(180, "lb"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/october/front.svg",
  39165. extra: 1800/1650,
  39166. bottom: 0/1800
  39167. }
  39168. },
  39169. frontNsfw: {
  39170. height: math.unit(5 + 5/12, "feet"),
  39171. weight: math.unit(180, "lb"),
  39172. name: "Front (NSFW)",
  39173. image: {
  39174. source: "./media/characters/october/front-nsfw.svg",
  39175. extra: 1392/1307,
  39176. bottom: 42/1434
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(5 + 5/12, "feet"),
  39184. default: true
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39190. {
  39191. front: {
  39192. height: math.unit(8 + 6/12, "feet"),
  39193. name: "Front",
  39194. image: {
  39195. source: "./media/characters/essynkardi/front.svg",
  39196. extra: 1541/1457,
  39197. bottom: 47/1588
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(8 + 6/12, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(6 + 6/12, "feet"),
  39214. weight: math.unit(7, "lb"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/icky/front.svg",
  39218. extra: 813/782,
  39219. bottom: 66/879
  39220. }
  39221. },
  39222. back: {
  39223. height: math.unit(6 + 6/12, "feet"),
  39224. weight: math.unit(7, "lb"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/icky/back.svg",
  39228. extra: 754/735,
  39229. bottom: 56/810
  39230. }
  39231. },
  39232. },
  39233. [
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(6 + 6/12, "feet"),
  39237. default: true
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(15, "feet"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/rojas/front.svg",
  39249. extra: 1462/1408,
  39250. bottom: 95/1557
  39251. }
  39252. },
  39253. back: {
  39254. height: math.unit(15, "feet"),
  39255. name: "Back",
  39256. image: {
  39257. source: "./media/characters/rojas/back.svg",
  39258. extra: 1023/954,
  39259. bottom: 28/1051
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(15, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39273. {
  39274. frontHuman: {
  39275. height: math.unit(5 + 7/12, "feet"),
  39276. name: "Front (Human)",
  39277. image: {
  39278. source: "./media/characters/alek-dryagan/front-human.svg",
  39279. extra: 1687/1667,
  39280. bottom: 69/1756
  39281. }
  39282. },
  39283. backHuman: {
  39284. height: math.unit(5 + 7/12, "feet"),
  39285. name: "Back (Human)",
  39286. image: {
  39287. source: "./media/characters/alek-dryagan/back-human.svg",
  39288. extra: 1670/1649,
  39289. bottom: 65/1735
  39290. }
  39291. },
  39292. frontDemi: {
  39293. height: math.unit(65, "feet"),
  39294. name: "Front (Demi)",
  39295. image: {
  39296. source: "./media/characters/alek-dryagan/front-demi.svg",
  39297. extra: 1669/1642,
  39298. bottom: 49/1718
  39299. }
  39300. },
  39301. backDemi: {
  39302. height: math.unit(65, "feet"),
  39303. name: "Back (Demi)",
  39304. image: {
  39305. source: "./media/characters/alek-dryagan/back-demi.svg",
  39306. extra: 1658/1637,
  39307. bottom: 40/1698
  39308. }
  39309. },
  39310. mawHuman: {
  39311. height: math.unit(0.3, "feet"),
  39312. name: "Maw (Human)",
  39313. image: {
  39314. source: "./media/characters/alek-dryagan/maw-human.svg"
  39315. }
  39316. },
  39317. mawDemi: {
  39318. height: math.unit(3.8, "feet"),
  39319. name: "Maw (Demi)",
  39320. image: {
  39321. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(5 + 7/12, "feet"),
  39329. default: true
  39330. },
  39331. ]
  39332. ))
  39333. characterMakers.push(() => makeCharacter(
  39334. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39335. {
  39336. frontHuman: {
  39337. height: math.unit(5 + 2/12, "feet"),
  39338. name: "Front (Human)",
  39339. image: {
  39340. source: "./media/characters/gen/front-human.svg",
  39341. extra: 1627/1538,
  39342. bottom: 71/1698
  39343. }
  39344. },
  39345. backHuman: {
  39346. height: math.unit(5 + 2/12, "feet"),
  39347. name: "Back (Human)",
  39348. image: {
  39349. source: "./media/characters/gen/back-human.svg",
  39350. extra: 1638/1548,
  39351. bottom: 69/1707
  39352. }
  39353. },
  39354. frontDemi: {
  39355. height: math.unit(5 + 2/12, "feet"),
  39356. name: "Front (Demi)",
  39357. image: {
  39358. source: "./media/characters/gen/front-demi.svg",
  39359. extra: 1627/1538,
  39360. bottom: 71/1698
  39361. }
  39362. },
  39363. backDemi: {
  39364. height: math.unit(5 + 2/12, "feet"),
  39365. name: "Back (Demi)",
  39366. image: {
  39367. source: "./media/characters/gen/back-demi.svg",
  39368. extra: 1638/1548,
  39369. bottom: 69/1707
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Normal",
  39376. height: math.unit(5 + 2/12, "feet"),
  39377. default: true
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39383. {
  39384. frontImp: {
  39385. height: math.unit(1 + 11/12, "feet"),
  39386. name: "Front (Imp)",
  39387. image: {
  39388. source: "./media/characters/max-kobold/front-imp.svg",
  39389. extra: 1238/1134,
  39390. bottom: 81/1319
  39391. }
  39392. },
  39393. backImp: {
  39394. height: math.unit(1 + 11/12, "feet"),
  39395. name: "Back (Imp)",
  39396. image: {
  39397. source: "./media/characters/max-kobold/back-imp.svg",
  39398. extra: 1334/1175,
  39399. bottom: 34/1368
  39400. }
  39401. },
  39402. frontDemi: {
  39403. height: math.unit(5 + 9/12, "feet"),
  39404. name: "Front (Demi)",
  39405. image: {
  39406. source: "./media/characters/max-kobold/front-demi.svg",
  39407. extra: 1715/1685,
  39408. bottom: 54/1769
  39409. }
  39410. },
  39411. backDemi: {
  39412. height: math.unit(5 + 9/12, "feet"),
  39413. name: "Back (Demi)",
  39414. image: {
  39415. source: "./media/characters/max-kobold/back-demi.svg",
  39416. extra: 1752/1729,
  39417. bottom: 41/1793
  39418. }
  39419. },
  39420. handImp: {
  39421. height: math.unit(0.45, "feet"),
  39422. name: "Hand (Imp)",
  39423. image: {
  39424. source: "./media/characters/max-kobold/hand.svg"
  39425. }
  39426. },
  39427. pawImp: {
  39428. height: math.unit(0.46, "feet"),
  39429. name: "Paw (Imp)",
  39430. image: {
  39431. source: "./media/characters/max-kobold/paw.svg"
  39432. }
  39433. },
  39434. handDemi: {
  39435. height: math.unit(0.80, "feet"),
  39436. name: "Hand (Demi)",
  39437. image: {
  39438. source: "./media/characters/max-kobold/hand.svg"
  39439. }
  39440. },
  39441. pawDemi: {
  39442. height: math.unit(1.1, "feet"),
  39443. name: "Paw (Demi)",
  39444. image: {
  39445. source: "./media/characters/max-kobold/paw.svg"
  39446. }
  39447. },
  39448. headImp: {
  39449. height: math.unit(1.33, "feet"),
  39450. name: "Head (Imp)",
  39451. image: {
  39452. source: "./media/characters/max-kobold/head-imp.svg"
  39453. }
  39454. },
  39455. mawImp: {
  39456. height: math.unit(0.75, "feet"),
  39457. name: "Maw (Imp)",
  39458. image: {
  39459. source: "./media/characters/max-kobold/maw-imp.svg"
  39460. }
  39461. },
  39462. mawDemi: {
  39463. height: math.unit(0.42, "feet"),
  39464. name: "Maw (Demi)",
  39465. image: {
  39466. source: "./media/characters/max-kobold/maw-demi.svg"
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Normal",
  39473. height: math.unit(1 + 11/12, "feet"),
  39474. default: true
  39475. },
  39476. ]
  39477. ))
  39478. characterMakers.push(() => makeCharacter(
  39479. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39480. {
  39481. front: {
  39482. height: math.unit(7 + 5/12, "feet"),
  39483. name: "Front",
  39484. image: {
  39485. source: "./media/characters/carbon/front.svg",
  39486. extra: 1754/1689,
  39487. bottom: 65/1819
  39488. }
  39489. },
  39490. back: {
  39491. height: math.unit(7 + 5/12, "feet"),
  39492. name: "Back",
  39493. image: {
  39494. source: "./media/characters/carbon/back.svg",
  39495. extra: 1762/1695,
  39496. bottom: 24/1786
  39497. }
  39498. },
  39499. frontGigantamax: {
  39500. height: math.unit(150, "feet"),
  39501. name: "Front (Gigantamax)",
  39502. image: {
  39503. source: "./media/characters/carbon/front-gigantamax.svg",
  39504. extra: 1826/1669,
  39505. bottom: 59/1885
  39506. }
  39507. },
  39508. backGigantamax: {
  39509. height: math.unit(150, "feet"),
  39510. name: "Back (Gigantamax)",
  39511. image: {
  39512. source: "./media/characters/carbon/back-gigantamax.svg",
  39513. extra: 1796/1653,
  39514. bottom: 53/1849
  39515. }
  39516. },
  39517. maw: {
  39518. height: math.unit(0.48, "feet"),
  39519. name: "Maw",
  39520. image: {
  39521. source: "./media/characters/carbon/maw.svg"
  39522. }
  39523. },
  39524. mawGigantamax: {
  39525. height: math.unit(7.5, "feet"),
  39526. name: "Maw (Gigantamax)",
  39527. image: {
  39528. source: "./media/characters/carbon/maw-gigantamax.svg"
  39529. }
  39530. },
  39531. },
  39532. [
  39533. {
  39534. name: "Normal",
  39535. height: math.unit(7 + 5/12, "feet"),
  39536. default: true
  39537. },
  39538. ]
  39539. ))
  39540. characterMakers.push(() => makeCharacter(
  39541. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39542. {
  39543. front: {
  39544. height: math.unit(6, "feet"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/maverick/front.svg",
  39548. extra: 1672/1661,
  39549. bottom: 85/1757
  39550. }
  39551. },
  39552. back: {
  39553. height: math.unit(6, "feet"),
  39554. name: "Back",
  39555. image: {
  39556. source: "./media/characters/maverick/back.svg",
  39557. extra: 1642/1631,
  39558. bottom: 38/1680
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Normal",
  39565. height: math.unit(6, "feet"),
  39566. default: true
  39567. },
  39568. ]
  39569. ))
  39570. characterMakers.push(() => makeCharacter(
  39571. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39572. {
  39573. front: {
  39574. height: math.unit(15, "feet"),
  39575. weight: math.unit(615, "lb"),
  39576. name: "Front",
  39577. image: {
  39578. source: "./media/characters/grockle/front.svg",
  39579. extra: 1535/1427,
  39580. bottom: 56/1591
  39581. }
  39582. },
  39583. },
  39584. [
  39585. {
  39586. name: "Normal",
  39587. height: math.unit(15, "feet"),
  39588. default: true
  39589. },
  39590. {
  39591. name: "Large",
  39592. height: math.unit(150, "feet")
  39593. },
  39594. {
  39595. name: "Macro",
  39596. height: math.unit(1876, "feet")
  39597. },
  39598. {
  39599. name: "Mega Macro",
  39600. height: math.unit(121940, "feet")
  39601. },
  39602. {
  39603. name: "Giga Macro",
  39604. height: math.unit(750, "km")
  39605. },
  39606. {
  39607. name: "Tera Macro",
  39608. height: math.unit(750000, "km")
  39609. },
  39610. {
  39611. name: "Galactic",
  39612. height: math.unit(1.4e5, "km")
  39613. },
  39614. {
  39615. name: "Godlike",
  39616. height: math.unit(9.8e280, "galaxies")
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(11, "meters"),
  39625. weight: math.unit(20, "tonnes"),
  39626. name: "Front",
  39627. image: {
  39628. source: "./media/characters/alistair/front.svg",
  39629. extra: 1265/1009,
  39630. bottom: 93/1358
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Normal",
  39637. height: math.unit(11, "meters"),
  39638. default: true
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(5 + 8/12, "feet"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/haruka/front.svg",
  39650. extra: 2012/1952,
  39651. bottom: 0/2012
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(5 + 8/12, "feet"),
  39659. default: true
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39665. {
  39666. back: {
  39667. height: math.unit(9, "feet"),
  39668. name: "Back",
  39669. image: {
  39670. source: "./media/characters/vivian-sylveon/back.svg",
  39671. extra: 1853/1714,
  39672. bottom: 0/1853
  39673. }
  39674. },
  39675. hyper: {
  39676. height: math.unit(5.58, "feet"),
  39677. name: "Hyper",
  39678. preyCapacity: math.unit(2.80616218797, "m^3"),
  39679. image: {
  39680. source: "./media/characters/vivian-sylveon/hyper.svg",
  39681. extra: 999/676,
  39682. bottom: 697/1696
  39683. },
  39684. },
  39685. paw: {
  39686. height: math.unit(1.8, "feet"),
  39687. name: "Paw",
  39688. image: {
  39689. source: "./media/characters/vivian-sylveon/paw.svg"
  39690. }
  39691. },
  39692. danger: {
  39693. height: math.unit(7.5, "feet"),
  39694. name: "DANGER",
  39695. image: {
  39696. source: "./media/characters/vivian-sylveon/danger.svg"
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Normal",
  39703. height: math.unit(9, "feet"),
  39704. default: true
  39705. },
  39706. {
  39707. name: "Macro",
  39708. height: math.unit(500, "feet")
  39709. },
  39710. {
  39711. name: "Megamacro",
  39712. height: math.unit(600, "miles")
  39713. },
  39714. {
  39715. name: "Gigamacro",
  39716. height: math.unit(30000, "miles")
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39722. {
  39723. anthro: {
  39724. height: math.unit(5 + 10/12, "feet"),
  39725. weight: math.unit(100, "lb"),
  39726. name: "Anthro",
  39727. image: {
  39728. source: "./media/characters/daiki/anthro.svg",
  39729. extra: 1115/1027,
  39730. bottom: 69/1184
  39731. }
  39732. },
  39733. feral: {
  39734. height: math.unit(200, "feet"),
  39735. name: "Feral",
  39736. image: {
  39737. source: "./media/characters/daiki/feral.svg",
  39738. extra: 1256/313,
  39739. bottom: 39/1295
  39740. }
  39741. },
  39742. feralHead: {
  39743. height: math.unit(171, "feet"),
  39744. name: "Feral Head",
  39745. image: {
  39746. source: "./media/characters/daiki/feral-head.svg"
  39747. }
  39748. },
  39749. manaDragon: {
  39750. height: math.unit(170, "meters"),
  39751. name: "Mana-dragon",
  39752. image: {
  39753. source: "./media/characters/daiki/mana-dragon.svg",
  39754. extra: 763/420,
  39755. bottom: 97/860
  39756. }
  39757. },
  39758. },
  39759. [
  39760. {
  39761. name: "Normal",
  39762. height: math.unit(5 + 10/12, "feet"),
  39763. default: true
  39764. },
  39765. ]
  39766. ))
  39767. characterMakers.push(() => makeCharacter(
  39768. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39769. {
  39770. fullyEquippedFront: {
  39771. height: math.unit(3 + 1/12, "feet"),
  39772. weight: math.unit(24, "lb"),
  39773. name: "Fully Equipped (Front)",
  39774. image: {
  39775. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39776. extra: 687/605,
  39777. bottom: 18/705
  39778. }
  39779. },
  39780. fullyEquippedBack: {
  39781. height: math.unit(3 + 1/12, "feet"),
  39782. weight: math.unit(24, "lb"),
  39783. name: "Fully Equipped (Back)",
  39784. image: {
  39785. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39786. extra: 689/590,
  39787. bottom: 18/707
  39788. }
  39789. },
  39790. dailyWear: {
  39791. height: math.unit(3 + 1/12, "feet"),
  39792. weight: math.unit(24, "lb"),
  39793. name: "Daily Wear",
  39794. image: {
  39795. source: "./media/characters/tea-spot/daily-wear.svg",
  39796. extra: 701/620,
  39797. bottom: 21/722
  39798. }
  39799. },
  39800. maidWork: {
  39801. height: math.unit(3 + 1/12, "feet"),
  39802. weight: math.unit(24, "lb"),
  39803. name: "Maid Work",
  39804. image: {
  39805. source: "./media/characters/tea-spot/maid-work.svg",
  39806. extra: 693/609,
  39807. bottom: 15/708
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Normal",
  39814. height: math.unit(3 + 1/12, "feet"),
  39815. default: true
  39816. },
  39817. ]
  39818. ))
  39819. characterMakers.push(() => makeCharacter(
  39820. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39821. {
  39822. front: {
  39823. height: math.unit(175, "cm"),
  39824. weight: math.unit(75, "kg"),
  39825. name: "Front",
  39826. image: {
  39827. source: "./media/characters/chee/front.svg",
  39828. extra: 1796/1740,
  39829. bottom: 40/1836
  39830. }
  39831. },
  39832. },
  39833. [
  39834. {
  39835. name: "Micro-Micro",
  39836. height: math.unit(1, "nm")
  39837. },
  39838. {
  39839. name: "Micro-erst",
  39840. height: math.unit(1, "micrometer")
  39841. },
  39842. {
  39843. name: "Micro-er",
  39844. height: math.unit(1, "cm")
  39845. },
  39846. {
  39847. name: "Normal",
  39848. height: math.unit(175, "cm"),
  39849. default: true
  39850. },
  39851. {
  39852. name: "Macro",
  39853. height: math.unit(100, "m")
  39854. },
  39855. {
  39856. name: "Macro-er",
  39857. height: math.unit(1, "km")
  39858. },
  39859. {
  39860. name: "Macro-erst",
  39861. height: math.unit(10, "km")
  39862. },
  39863. {
  39864. name: "Macro-Macro",
  39865. height: math.unit(100, "km")
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39871. {
  39872. front: {
  39873. height: math.unit(11 + 9/12, "feet"),
  39874. weight: math.unit(935, "lb"),
  39875. name: "Front",
  39876. image: {
  39877. source: "./media/characters/kingsley/front.svg",
  39878. extra: 1803/1674,
  39879. bottom: 127/1930
  39880. }
  39881. },
  39882. frontNude: {
  39883. height: math.unit(11 + 9/12, "feet"),
  39884. weight: math.unit(935, "lb"),
  39885. name: "Front (Nude)",
  39886. image: {
  39887. source: "./media/characters/kingsley/front-nude.svg",
  39888. extra: 1803/1674,
  39889. bottom: 127/1930
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Normal",
  39896. height: math.unit(11 + 9/12, "feet"),
  39897. default: true
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39903. {
  39904. side: {
  39905. height: math.unit(9, "feet"),
  39906. name: "Side",
  39907. image: {
  39908. source: "./media/characters/rymel/side.svg",
  39909. extra: 792/469,
  39910. bottom: 121/913
  39911. }
  39912. },
  39913. maw: {
  39914. height: math.unit(2.4, "meters"),
  39915. name: "Maw",
  39916. image: {
  39917. source: "./media/characters/rymel/maw.svg"
  39918. }
  39919. },
  39920. },
  39921. [
  39922. {
  39923. name: "House Drake",
  39924. height: math.unit(2, "feet")
  39925. },
  39926. {
  39927. name: "Reduced",
  39928. height: math.unit(4.5, "feet")
  39929. },
  39930. {
  39931. name: "Normal",
  39932. height: math.unit(9, "feet"),
  39933. default: true
  39934. },
  39935. ]
  39936. ))
  39937. characterMakers.push(() => makeCharacter(
  39938. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39939. {
  39940. front: {
  39941. height: math.unit(1.74, "meters"),
  39942. weight: math.unit(55, "kg"),
  39943. name: "Front",
  39944. image: {
  39945. source: "./media/characters/rubus/front.svg",
  39946. extra: 1894/1742,
  39947. bottom: 44/1938
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Normal",
  39954. height: math.unit(1.74, "meters"),
  39955. default: true
  39956. },
  39957. ]
  39958. ))
  39959. characterMakers.push(() => makeCharacter(
  39960. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39961. {
  39962. front: {
  39963. height: math.unit(5 + 2/12, "feet"),
  39964. weight: math.unit(112, "lb"),
  39965. name: "Front",
  39966. image: {
  39967. source: "./media/characters/cassie-kingston/front.svg",
  39968. extra: 1438/1390,
  39969. bottom: 47/1485
  39970. }
  39971. },
  39972. },
  39973. [
  39974. {
  39975. name: "Normal",
  39976. height: math.unit(5 + 2/12, "feet"),
  39977. default: true
  39978. },
  39979. {
  39980. name: "Macro",
  39981. height: math.unit(128, "feet")
  39982. },
  39983. {
  39984. name: "Megamacro",
  39985. height: math.unit(2.56, "miles")
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39991. {
  39992. front: {
  39993. height: math.unit(7, "feet"),
  39994. name: "Front",
  39995. image: {
  39996. source: "./media/characters/fox/front.svg",
  39997. extra: 1798/1703,
  39998. bottom: 55/1853
  39999. }
  40000. },
  40001. back: {
  40002. height: math.unit(7, "feet"),
  40003. name: "Back",
  40004. image: {
  40005. source: "./media/characters/fox/back.svg",
  40006. extra: 1748/1649,
  40007. bottom: 32/1780
  40008. }
  40009. },
  40010. head: {
  40011. height: math.unit(1.95, "feet"),
  40012. name: "Head",
  40013. image: {
  40014. source: "./media/characters/fox/head.svg"
  40015. }
  40016. },
  40017. dick: {
  40018. height: math.unit(1.33, "feet"),
  40019. name: "Dick",
  40020. image: {
  40021. source: "./media/characters/fox/dick.svg"
  40022. }
  40023. },
  40024. foot: {
  40025. height: math.unit(1, "feet"),
  40026. name: "Foot",
  40027. image: {
  40028. source: "./media/characters/fox/foot.svg"
  40029. }
  40030. },
  40031. paw: {
  40032. height: math.unit(0.92, "feet"),
  40033. name: "Paw",
  40034. image: {
  40035. source: "./media/characters/fox/paw.svg"
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Small",
  40042. height: math.unit(3, "inches")
  40043. },
  40044. {
  40045. name: "\"Realistic\"",
  40046. height: math.unit(7, "feet")
  40047. },
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(150, "feet"),
  40051. default: true
  40052. },
  40053. {
  40054. name: "BIG",
  40055. height: math.unit(1200, "feet")
  40056. },
  40057. {
  40058. name: "👀",
  40059. height: math.unit(5, "miles")
  40060. },
  40061. {
  40062. name: "👀👀👀",
  40063. height: math.unit(64, "miles")
  40064. },
  40065. ]
  40066. ))
  40067. characterMakers.push(() => makeCharacter(
  40068. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40069. {
  40070. front: {
  40071. height: math.unit(625, "feet"),
  40072. name: "Front",
  40073. image: {
  40074. source: "./media/characters/asonja-rossa/front.svg",
  40075. extra: 1833/1686,
  40076. bottom: 24/1857
  40077. }
  40078. },
  40079. back: {
  40080. height: math.unit(625, "feet"),
  40081. name: "Back",
  40082. image: {
  40083. source: "./media/characters/asonja-rossa/back.svg",
  40084. extra: 1852/1753,
  40085. bottom: 26/1878
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Macro",
  40092. height: math.unit(625, "feet"),
  40093. default: true
  40094. },
  40095. ]
  40096. ))
  40097. characterMakers.push(() => makeCharacter(
  40098. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40099. {
  40100. side: {
  40101. height: math.unit(8, "feet"),
  40102. name: "Side",
  40103. image: {
  40104. source: "./media/characters/rezukii/side.svg",
  40105. extra: 979/542,
  40106. bottom: 87/1066
  40107. }
  40108. },
  40109. sitting: {
  40110. height: math.unit(14.6, "feet"),
  40111. name: "Sitting",
  40112. image: {
  40113. source: "./media/characters/rezukii/sitting.svg",
  40114. extra: 1023/813,
  40115. bottom: 45/1068
  40116. }
  40117. },
  40118. },
  40119. [
  40120. {
  40121. name: "Tiny",
  40122. height: math.unit(2, "feet")
  40123. },
  40124. {
  40125. name: "Smol",
  40126. height: math.unit(4, "feet")
  40127. },
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(8, "feet"),
  40131. default: true
  40132. },
  40133. {
  40134. name: "Big",
  40135. height: math.unit(12, "feet")
  40136. },
  40137. {
  40138. name: "Macro",
  40139. height: math.unit(30, "feet")
  40140. },
  40141. ]
  40142. ))
  40143. characterMakers.push(() => makeCharacter(
  40144. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40145. {
  40146. front: {
  40147. height: math.unit(14, "feet"),
  40148. weight: math.unit(9.5, "tonnes"),
  40149. name: "Front",
  40150. image: {
  40151. source: "./media/characters/dawnheart/front.svg",
  40152. extra: 2792/2675,
  40153. bottom: 64/2856
  40154. }
  40155. },
  40156. },
  40157. [
  40158. {
  40159. name: "Normal",
  40160. height: math.unit(14, "feet"),
  40161. default: true
  40162. },
  40163. ]
  40164. ))
  40165. characterMakers.push(() => makeCharacter(
  40166. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40167. {
  40168. front: {
  40169. height: math.unit(1.7, "m"),
  40170. name: "Front",
  40171. image: {
  40172. source: "./media/characters/gladi/front.svg",
  40173. extra: 1460/1362,
  40174. bottom: 19/1479
  40175. }
  40176. },
  40177. back: {
  40178. height: math.unit(1.7, "m"),
  40179. name: "Back",
  40180. image: {
  40181. source: "./media/characters/gladi/back.svg",
  40182. extra: 1459/1357,
  40183. bottom: 12/1471
  40184. }
  40185. },
  40186. feral: {
  40187. height: math.unit(2.05, "m"),
  40188. name: "Feral",
  40189. image: {
  40190. source: "./media/characters/gladi/feral.svg",
  40191. extra: 821/557,
  40192. bottom: 91/912
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Shortest",
  40199. height: math.unit(70, "cm")
  40200. },
  40201. {
  40202. name: "Normal",
  40203. height: math.unit(1.7, "m")
  40204. },
  40205. {
  40206. name: "Macro",
  40207. height: math.unit(10, "m"),
  40208. default: true
  40209. },
  40210. {
  40211. name: "Tallest",
  40212. height: math.unit(200, "m")
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40218. {
  40219. front: {
  40220. height: math.unit(5 + 7/12, "feet"),
  40221. weight: math.unit(2, "tons"),
  40222. name: "Front",
  40223. image: {
  40224. source: "./media/characters/erdno/front.svg",
  40225. extra: 1234/1129,
  40226. bottom: 35/1269
  40227. }
  40228. },
  40229. angled: {
  40230. height: math.unit(5 + 7/12, "feet"),
  40231. weight: math.unit(2, "tons"),
  40232. name: "Angled",
  40233. image: {
  40234. source: "./media/characters/erdno/angled.svg",
  40235. extra: 1185/1139,
  40236. bottom: 36/1221
  40237. }
  40238. },
  40239. side: {
  40240. height: math.unit(5 + 7/12, "feet"),
  40241. weight: math.unit(2, "tons"),
  40242. name: "Side",
  40243. image: {
  40244. source: "./media/characters/erdno/side.svg",
  40245. extra: 1191/1144,
  40246. bottom: 40/1231
  40247. }
  40248. },
  40249. back: {
  40250. height: math.unit(5 + 7/12, "feet"),
  40251. weight: math.unit(2, "tons"),
  40252. name: "Back",
  40253. image: {
  40254. source: "./media/characters/erdno/back.svg",
  40255. extra: 1202/1146,
  40256. bottom: 17/1219
  40257. }
  40258. },
  40259. frontNsfw: {
  40260. height: math.unit(5 + 7/12, "feet"),
  40261. weight: math.unit(2, "tons"),
  40262. name: "Front (NSFW)",
  40263. image: {
  40264. source: "./media/characters/erdno/front-nsfw.svg",
  40265. extra: 1234/1129,
  40266. bottom: 35/1269
  40267. }
  40268. },
  40269. angledNsfw: {
  40270. height: math.unit(5 + 7/12, "feet"),
  40271. weight: math.unit(2, "tons"),
  40272. name: "Angled (NSFW)",
  40273. image: {
  40274. source: "./media/characters/erdno/angled-nsfw.svg",
  40275. extra: 1185/1139,
  40276. bottom: 36/1221
  40277. }
  40278. },
  40279. sideNsfw: {
  40280. height: math.unit(5 + 7/12, "feet"),
  40281. weight: math.unit(2, "tons"),
  40282. name: "Side (NSFW)",
  40283. image: {
  40284. source: "./media/characters/erdno/side-nsfw.svg",
  40285. extra: 1191/1144,
  40286. bottom: 40/1231
  40287. }
  40288. },
  40289. backNsfw: {
  40290. height: math.unit(5 + 7/12, "feet"),
  40291. weight: math.unit(2, "tons"),
  40292. name: "Back (NSFW)",
  40293. image: {
  40294. source: "./media/characters/erdno/back-nsfw.svg",
  40295. extra: 1202/1146,
  40296. bottom: 17/1219
  40297. }
  40298. },
  40299. frontHyper: {
  40300. height: math.unit(5 + 7/12, "feet"),
  40301. weight: math.unit(2, "tons"),
  40302. name: "Front (Hyper)",
  40303. image: {
  40304. source: "./media/characters/erdno/front-hyper.svg",
  40305. extra: 1298/1136,
  40306. bottom: 35/1333
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Normal",
  40313. height: math.unit(5 + 7/12, "feet"),
  40314. default: true
  40315. },
  40316. {
  40317. name: "Big",
  40318. height: math.unit(5.7, "meters")
  40319. },
  40320. {
  40321. name: "Macro",
  40322. height: math.unit(5.7, "kilometers")
  40323. },
  40324. {
  40325. name: "Megamacro",
  40326. height: math.unit(5.7, "earths")
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(5 + 10/12, "feet"),
  40335. weight: math.unit(150, "lb"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/jamie/front.svg",
  40339. extra: 1908/1768,
  40340. bottom: 19/1927
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Minimum",
  40347. height: math.unit(2, "cm")
  40348. },
  40349. {
  40350. name: "Micro",
  40351. height: math.unit(3, "inches")
  40352. },
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(5 + 10/12, "feet"),
  40356. default: true
  40357. },
  40358. {
  40359. name: "Macro",
  40360. height: math.unit(150, "feet")
  40361. },
  40362. {
  40363. name: "Megamacro",
  40364. height: math.unit(10000, "m")
  40365. },
  40366. ]
  40367. ))
  40368. characterMakers.push(() => makeCharacter(
  40369. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40370. {
  40371. front: {
  40372. height: math.unit(2, "meters"),
  40373. weight: math.unit(100, "kg"),
  40374. name: "Front",
  40375. image: {
  40376. source: "./media/characters/shiron/front.svg",
  40377. extra: 2103/1985,
  40378. bottom: 98/2201
  40379. }
  40380. },
  40381. back: {
  40382. height: math.unit(2, "meters"),
  40383. weight: math.unit(100, "kg"),
  40384. name: "Back",
  40385. image: {
  40386. source: "./media/characters/shiron/back.svg",
  40387. extra: 2110/2015,
  40388. bottom: 89/2199
  40389. }
  40390. },
  40391. hand: {
  40392. height: math.unit(0.96, "feet"),
  40393. name: "Hand",
  40394. image: {
  40395. source: "./media/characters/shiron/hand.svg"
  40396. }
  40397. },
  40398. foot: {
  40399. height: math.unit(1.464, "feet"),
  40400. name: "Foot",
  40401. image: {
  40402. source: "./media/characters/shiron/foot.svg"
  40403. }
  40404. },
  40405. },
  40406. [
  40407. {
  40408. name: "Normal",
  40409. height: math.unit(2, "meters")
  40410. },
  40411. {
  40412. name: "Macro",
  40413. height: math.unit(500, "meters"),
  40414. default: true
  40415. },
  40416. {
  40417. name: "Megamacro",
  40418. height: math.unit(20, "km")
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(6, "feet"),
  40427. name: "Front",
  40428. image: {
  40429. source: "./media/characters/sam/front.svg",
  40430. extra: 849/826,
  40431. bottom: 19/868
  40432. }
  40433. },
  40434. },
  40435. [
  40436. {
  40437. name: "Normal",
  40438. height: math.unit(6, "feet"),
  40439. default: true
  40440. },
  40441. ]
  40442. ))
  40443. characterMakers.push(() => makeCharacter(
  40444. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40445. {
  40446. front: {
  40447. height: math.unit(8 + 4/12, "feet"),
  40448. weight: math.unit(122, "kg"),
  40449. name: "Front",
  40450. image: {
  40451. source: "./media/characters/namori-kurogawa/front.svg",
  40452. extra: 1894/1576,
  40453. bottom: 34/1928
  40454. }
  40455. },
  40456. },
  40457. [
  40458. {
  40459. name: "Normal",
  40460. height: math.unit(8 + 4/12, "feet"),
  40461. default: true
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(9, "feet"),
  40470. weight: math.unit(621, "lb"),
  40471. name: "Front",
  40472. image: {
  40473. source: "./media/characters/unmru/front.svg",
  40474. extra: 1853/1747,
  40475. bottom: 73/1926
  40476. }
  40477. },
  40478. side: {
  40479. height: math.unit(9, "feet"),
  40480. weight: math.unit(621, "lb"),
  40481. name: "Side",
  40482. image: {
  40483. source: "./media/characters/unmru/side.svg",
  40484. extra: 1781/1671,
  40485. bottom: 127/1908
  40486. }
  40487. },
  40488. back: {
  40489. height: math.unit(9, "feet"),
  40490. weight: math.unit(621, "lb"),
  40491. name: "Back",
  40492. image: {
  40493. source: "./media/characters/unmru/back.svg",
  40494. extra: 1894/1765,
  40495. bottom: 75/1969
  40496. }
  40497. },
  40498. dick: {
  40499. height: math.unit(3, "feet"),
  40500. weight: math.unit(35, "lb"),
  40501. name: "Dick",
  40502. image: {
  40503. source: "./media/characters/unmru/dick.svg"
  40504. }
  40505. },
  40506. },
  40507. [
  40508. {
  40509. name: "Normal",
  40510. height: math.unit(9, "feet")
  40511. },
  40512. {
  40513. name: "Natural",
  40514. height: math.unit(27, "feet"),
  40515. default: true
  40516. },
  40517. {
  40518. name: "Giant",
  40519. height: math.unit(90, "feet")
  40520. },
  40521. {
  40522. name: "Kaiju",
  40523. height: math.unit(270, "feet")
  40524. },
  40525. {
  40526. name: "Macro",
  40527. height: math.unit(900, "feet")
  40528. },
  40529. {
  40530. name: "Macro+",
  40531. height: math.unit(2700, "feet")
  40532. },
  40533. {
  40534. name: "Megamacro",
  40535. height: math.unit(9000, "feet")
  40536. },
  40537. {
  40538. name: "City-Crushing",
  40539. height: math.unit(27000, "feet")
  40540. },
  40541. {
  40542. name: "Mountain-Mashing",
  40543. height: math.unit(90000, "feet")
  40544. },
  40545. {
  40546. name: "Earth-Eclipsing",
  40547. height: math.unit(2.7e8, "feet")
  40548. },
  40549. {
  40550. name: "Sol-Swallowing",
  40551. height: math.unit(9e10, "feet")
  40552. },
  40553. {
  40554. name: "Majoris-Munching",
  40555. height: math.unit(2.7e13, "feet")
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40561. {
  40562. front: {
  40563. height: math.unit(1, "inch"),
  40564. name: "Front",
  40565. image: {
  40566. source: "./media/characters/squeaks-mouse/front.svg",
  40567. extra: 352/308,
  40568. bottom: 25/377
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Micro",
  40575. height: math.unit(1, "inch"),
  40576. default: true
  40577. },
  40578. ]
  40579. ))
  40580. characterMakers.push(() => makeCharacter(
  40581. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40582. {
  40583. side: {
  40584. height: math.unit(35, "feet"),
  40585. name: "Side",
  40586. image: {
  40587. source: "./media/characters/sayko/side.svg",
  40588. extra: 1697/1021,
  40589. bottom: 82/1779
  40590. }
  40591. },
  40592. head: {
  40593. height: math.unit(16, "feet"),
  40594. name: "Head",
  40595. image: {
  40596. source: "./media/characters/sayko/head.svg"
  40597. }
  40598. },
  40599. forepaw: {
  40600. height: math.unit(7.85, "feet"),
  40601. name: "Forepaw",
  40602. image: {
  40603. source: "./media/characters/sayko/forepaw.svg"
  40604. }
  40605. },
  40606. hindpaw: {
  40607. height: math.unit(8.8, "feet"),
  40608. name: "Hindpaw",
  40609. image: {
  40610. source: "./media/characters/sayko/hindpaw.svg"
  40611. }
  40612. },
  40613. },
  40614. [
  40615. {
  40616. name: "Normal",
  40617. height: math.unit(35, "feet"),
  40618. default: true
  40619. },
  40620. {
  40621. name: "Colossus",
  40622. height: math.unit(100, "meters")
  40623. },
  40624. {
  40625. name: "\"Small\" Deity",
  40626. height: math.unit(1, "km")
  40627. },
  40628. {
  40629. name: "\"Large\" Deity",
  40630. height: math.unit(15, "km")
  40631. },
  40632. ]
  40633. ))
  40634. characterMakers.push(() => makeCharacter(
  40635. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40636. {
  40637. front: {
  40638. height: math.unit(6, "feet"),
  40639. weight: math.unit(250, "lb"),
  40640. name: "Front",
  40641. image: {
  40642. source: "./media/characters/mukiro/front.svg",
  40643. extra: 1368/1310,
  40644. bottom: 34/1402
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Normal",
  40651. height: math.unit(6, "feet"),
  40652. default: true
  40653. },
  40654. ]
  40655. ))
  40656. characterMakers.push(() => makeCharacter(
  40657. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40658. {
  40659. front: {
  40660. height: math.unit(12 + 4/12, "feet"),
  40661. name: "Front",
  40662. image: {
  40663. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40664. extra: 1346/1311,
  40665. bottom: 65/1411
  40666. }
  40667. },
  40668. },
  40669. [
  40670. {
  40671. name: "Base",
  40672. height: math.unit(12 + 4/12, "feet"),
  40673. default: true
  40674. },
  40675. {
  40676. name: "Macro",
  40677. height: math.unit(150, "feet")
  40678. },
  40679. {
  40680. name: "Mega",
  40681. height: math.unit(2, "miles")
  40682. },
  40683. {
  40684. name: "Demi God",
  40685. height: math.unit(4, "AU")
  40686. },
  40687. {
  40688. name: "God Size",
  40689. height: math.unit(1, "universe")
  40690. },
  40691. ]
  40692. ))
  40693. characterMakers.push(() => makeCharacter(
  40694. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40695. {
  40696. front: {
  40697. height: math.unit(3 + 3/12, "feet"),
  40698. weight: math.unit(88, "lb"),
  40699. name: "Front",
  40700. image: {
  40701. source: "./media/characters/trey/front.svg",
  40702. extra: 1815/1509,
  40703. bottom: 60/1875
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Normal",
  40710. height: math.unit(3 + 3/12, "feet"),
  40711. default: true
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40717. {
  40718. front: {
  40719. height: math.unit(4, "meters"),
  40720. name: "Front",
  40721. image: {
  40722. source: "./media/characters/adelonda/front.svg",
  40723. extra: 1077/982,
  40724. bottom: 39/1116
  40725. }
  40726. },
  40727. back: {
  40728. height: math.unit(4, "meters"),
  40729. name: "Back",
  40730. image: {
  40731. source: "./media/characters/adelonda/back.svg",
  40732. extra: 1105/1003,
  40733. bottom: 25/1130
  40734. }
  40735. },
  40736. feral: {
  40737. height: math.unit(40/1.5, "meters"),
  40738. name: "Feral",
  40739. image: {
  40740. source: "./media/characters/adelonda/feral.svg",
  40741. extra: 597/271,
  40742. bottom: 387/984
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Normal",
  40749. height: math.unit(4, "meters"),
  40750. default: true
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40756. {
  40757. front: {
  40758. height: math.unit(8 + 4/12, "feet"),
  40759. weight: math.unit(670, "lb"),
  40760. name: "Front",
  40761. image: {
  40762. source: "./media/characters/acadiel/front.svg",
  40763. extra: 1901/1595,
  40764. bottom: 142/2043
  40765. }
  40766. },
  40767. },
  40768. [
  40769. {
  40770. name: "Normal",
  40771. height: math.unit(8 + 4/12, "feet"),
  40772. default: true
  40773. },
  40774. {
  40775. name: "Macro",
  40776. height: math.unit(200, "feet")
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(6 + 2/12, "feet"),
  40785. weight: math.unit(185, "lb"),
  40786. name: "Front",
  40787. image: {
  40788. source: "./media/characters/kayne-ein/front.svg",
  40789. extra: 1780/1560,
  40790. bottom: 81/1861
  40791. }
  40792. },
  40793. },
  40794. [
  40795. {
  40796. name: "Normal",
  40797. height: math.unit(6 + 2/12, "feet"),
  40798. default: true
  40799. },
  40800. {
  40801. name: "Transformation Stage",
  40802. height: math.unit(15, "feet")
  40803. },
  40804. {
  40805. name: "Macro",
  40806. height: math.unit(150, "feet")
  40807. },
  40808. {
  40809. name: "Earth's Shadow",
  40810. height: math.unit(6200, "miles")
  40811. },
  40812. {
  40813. name: "Universal Demon",
  40814. height: math.unit(28e9, "parsecs")
  40815. },
  40816. {
  40817. name: "Multiverse God",
  40818. height: math.unit(3, "multiverses")
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(5 + 5/12, "feet"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/fawn/front.svg",
  40830. extra: 1873/1731,
  40831. bottom: 95/1968
  40832. }
  40833. },
  40834. back: {
  40835. height: math.unit(5 + 5/12, "feet"),
  40836. name: "Back",
  40837. image: {
  40838. source: "./media/characters/fawn/back.svg",
  40839. extra: 1813/1700,
  40840. bottom: 14/1827
  40841. }
  40842. },
  40843. hoof: {
  40844. height: math.unit(1.45, "feet"),
  40845. name: "Hoof",
  40846. image: {
  40847. source: "./media/characters/fawn/hoof.svg"
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(5 + 5/12, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(2 + 5/12, "feet"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/orion/front.svg",
  40867. extra: 1366/1304,
  40868. bottom: 43/1409
  40869. }
  40870. },
  40871. paw: {
  40872. height: math.unit(0.52, "feet"),
  40873. name: "Paw",
  40874. image: {
  40875. source: "./media/characters/orion/paw.svg"
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Normal",
  40882. height: math.unit(2 + 5/12, "feet"),
  40883. default: true
  40884. },
  40885. ]
  40886. ))
  40887. characterMakers.push(() => makeCharacter(
  40888. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40889. {
  40890. front: {
  40891. height: math.unit(5 + 10/12, "feet"),
  40892. name: "Front",
  40893. image: {
  40894. source: "./media/characters/vera/front.svg",
  40895. extra: 1680/1575,
  40896. bottom: 49/1729
  40897. }
  40898. },
  40899. back: {
  40900. height: math.unit(5 + 10/12, "feet"),
  40901. name: "Back",
  40902. image: {
  40903. source: "./media/characters/vera/back.svg",
  40904. extra: 1700/1588,
  40905. bottom: 18/1718
  40906. }
  40907. },
  40908. arcanine: {
  40909. height: math.unit(6 + 8/12, "feet"),
  40910. name: "Arcanine",
  40911. image: {
  40912. source: "./media/characters/vera/arcanine.svg",
  40913. extra: 1590/1511,
  40914. bottom: 71/1661
  40915. }
  40916. },
  40917. maw: {
  40918. height: math.unit(0.82, "feet"),
  40919. name: "Maw",
  40920. image: {
  40921. source: "./media/characters/vera/maw.svg"
  40922. }
  40923. },
  40924. mawArcanine: {
  40925. height: math.unit(0.97, "feet"),
  40926. name: "Maw (Arcanine)",
  40927. image: {
  40928. source: "./media/characters/vera/maw-arcanine.svg"
  40929. }
  40930. },
  40931. paw: {
  40932. height: math.unit(0.75, "feet"),
  40933. name: "Paw",
  40934. image: {
  40935. source: "./media/characters/vera/paw.svg"
  40936. }
  40937. },
  40938. pawprint: {
  40939. height: math.unit(0.52, "feet"),
  40940. name: "Pawprint",
  40941. image: {
  40942. source: "./media/characters/vera/pawprint.svg"
  40943. }
  40944. },
  40945. },
  40946. [
  40947. {
  40948. name: "Normal",
  40949. height: math.unit(5 + 10/12, "feet"),
  40950. default: true
  40951. },
  40952. {
  40953. name: "Macro",
  40954. height: math.unit(75, "feet")
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40960. {
  40961. front: {
  40962. height: math.unit(4, "feet"),
  40963. weight: math.unit(40, "lb"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/orvan-rabbit/front.svg",
  40967. extra: 1896/1642,
  40968. bottom: 29/1925
  40969. }
  40970. },
  40971. },
  40972. [
  40973. {
  40974. name: "Normal",
  40975. height: math.unit(4, "feet"),
  40976. default: true
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40982. {
  40983. front: {
  40984. height: math.unit(6, "feet"),
  40985. weight: math.unit(168, "lb"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/lisa/front.svg",
  40989. extra: 2065/1867,
  40990. bottom: 46/2111
  40991. }
  40992. },
  40993. back: {
  40994. height: math.unit(6, "feet"),
  40995. weight: math.unit(168, "lb"),
  40996. name: "Back",
  40997. image: {
  40998. source: "./media/characters/lisa/back.svg",
  40999. extra: 1982/1838,
  41000. bottom: 29/2011
  41001. }
  41002. },
  41003. maw: {
  41004. height: math.unit(0.81, "feet"),
  41005. name: "Maw",
  41006. image: {
  41007. source: "./media/characters/lisa/maw.svg"
  41008. }
  41009. },
  41010. paw: {
  41011. height: math.unit(0.9, "feet"),
  41012. name: "Paw",
  41013. image: {
  41014. source: "./media/characters/lisa/paw.svg"
  41015. }
  41016. },
  41017. caribousune: {
  41018. height: math.unit(7 + 2/12, "feet"),
  41019. weight: math.unit(268, "lb"),
  41020. name: "Caribousune",
  41021. image: {
  41022. source: "./media/characters/lisa/caribousune.svg",
  41023. extra: 1843/1633,
  41024. bottom: 29/1872
  41025. }
  41026. },
  41027. frontCaribousune: {
  41028. height: math.unit(7 + 2/12, "feet"),
  41029. weight: math.unit(268, "lb"),
  41030. name: "Front (Caribousune)",
  41031. image: {
  41032. source: "./media/characters/lisa/front-caribousune.svg",
  41033. extra: 1818/1638,
  41034. bottom: 52/1870
  41035. }
  41036. },
  41037. sideCaribousune: {
  41038. height: math.unit(7 + 2/12, "feet"),
  41039. weight: math.unit(268, "lb"),
  41040. name: "Side (Caribousune)",
  41041. image: {
  41042. source: "./media/characters/lisa/side-caribousune.svg",
  41043. extra: 1851/1635,
  41044. bottom: 16/1867
  41045. }
  41046. },
  41047. backCaribousune: {
  41048. height: math.unit(7 + 2/12, "feet"),
  41049. weight: math.unit(268, "lb"),
  41050. name: "Back (Caribousune)",
  41051. image: {
  41052. source: "./media/characters/lisa/back-caribousune.svg",
  41053. extra: 1801/1604,
  41054. bottom: 44/1845
  41055. }
  41056. },
  41057. caribou: {
  41058. height: math.unit(7 + 2/12, "feet"),
  41059. weight: math.unit(268, "lb"),
  41060. name: "Caribou",
  41061. image: {
  41062. source: "./media/characters/lisa/caribou.svg",
  41063. extra: 1843/1633,
  41064. bottom: 29/1872
  41065. }
  41066. },
  41067. frontCaribou: {
  41068. height: math.unit(7 + 2/12, "feet"),
  41069. weight: math.unit(268, "lb"),
  41070. name: "Front (Caribou)",
  41071. image: {
  41072. source: "./media/characters/lisa/front-caribou.svg",
  41073. extra: 1818/1638,
  41074. bottom: 52/1870
  41075. }
  41076. },
  41077. sideCaribou: {
  41078. height: math.unit(7 + 2/12, "feet"),
  41079. weight: math.unit(268, "lb"),
  41080. name: "Side (Caribou)",
  41081. image: {
  41082. source: "./media/characters/lisa/side-caribou.svg",
  41083. extra: 1851/1635,
  41084. bottom: 16/1867
  41085. }
  41086. },
  41087. backCaribou: {
  41088. height: math.unit(7 + 2/12, "feet"),
  41089. weight: math.unit(268, "lb"),
  41090. name: "Back (Caribou)",
  41091. image: {
  41092. source: "./media/characters/lisa/back-caribou.svg",
  41093. extra: 1801/1604,
  41094. bottom: 44/1845
  41095. }
  41096. },
  41097. mawCaribou: {
  41098. height: math.unit(1.45, "feet"),
  41099. name: "Maw (Caribou)",
  41100. image: {
  41101. source: "./media/characters/lisa/maw-caribou.svg"
  41102. }
  41103. },
  41104. mawCaribousune: {
  41105. height: math.unit(1.45, "feet"),
  41106. name: "Maw (Caribousune)",
  41107. image: {
  41108. source: "./media/characters/lisa/maw-caribousune.svg"
  41109. }
  41110. },
  41111. pawCaribousune: {
  41112. height: math.unit(1.61, "feet"),
  41113. name: "Paw (Caribou)",
  41114. image: {
  41115. source: "./media/characters/lisa/paw-caribousune.svg"
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Normal",
  41122. height: math.unit(6, "feet")
  41123. },
  41124. {
  41125. name: "God Size",
  41126. height: math.unit(72, "feet"),
  41127. default: true
  41128. },
  41129. {
  41130. name: "Towering",
  41131. height: math.unit(288, "feet")
  41132. },
  41133. {
  41134. name: "City Size",
  41135. height: math.unit(48384, "feet")
  41136. },
  41137. {
  41138. name: "Continental",
  41139. height: math.unit(4200, "miles")
  41140. },
  41141. {
  41142. name: "Planet Eater",
  41143. height: math.unit(42, "earths")
  41144. },
  41145. {
  41146. name: "Star Swallower",
  41147. height: math.unit(42, "solarradii")
  41148. },
  41149. {
  41150. name: "System Swallower",
  41151. height: math.unit(84000, "AU")
  41152. },
  41153. {
  41154. name: "Galaxy Gobbler",
  41155. height: math.unit(42, "galaxies")
  41156. },
  41157. {
  41158. name: "Universe Devourer",
  41159. height: math.unit(42, "universes")
  41160. },
  41161. {
  41162. name: "Multiverse Muncher",
  41163. height: math.unit(42, "multiverses")
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(36, "feet"),
  41172. name: "Front",
  41173. image: {
  41174. source: "./media/characters/shadow-rat/front.svg",
  41175. extra: 1845/1758,
  41176. bottom: 83/1928
  41177. }
  41178. },
  41179. },
  41180. [
  41181. {
  41182. name: "Macro",
  41183. height: math.unit(36, "feet"),
  41184. default: true
  41185. },
  41186. ]
  41187. ))
  41188. characterMakers.push(() => makeCharacter(
  41189. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41190. {
  41191. side: {
  41192. height: math.unit(8, "feet"),
  41193. weight: math.unit(2630, "lb"),
  41194. name: "Side",
  41195. image: {
  41196. source: "./media/characters/torallia/side.svg",
  41197. extra: 2164/2021,
  41198. bottom: 371/2535
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Mortal Interaction",
  41205. height: math.unit(8, "feet")
  41206. },
  41207. {
  41208. name: "Natural",
  41209. height: math.unit(24, "feet"),
  41210. default: true
  41211. },
  41212. {
  41213. name: "Giant",
  41214. height: math.unit(80, "feet")
  41215. },
  41216. {
  41217. name: "Kaiju",
  41218. height: math.unit(240, "feet")
  41219. },
  41220. {
  41221. name: "Macro",
  41222. height: math.unit(800, "feet")
  41223. },
  41224. {
  41225. name: "Macro+",
  41226. height: math.unit(2400, "feet")
  41227. },
  41228. {
  41229. name: "Macro++",
  41230. height: math.unit(8000, "feet")
  41231. },
  41232. {
  41233. name: "City-Crushing",
  41234. height: math.unit(24000, "feet")
  41235. },
  41236. {
  41237. name: "Mountain-Mashing",
  41238. height: math.unit(80000, "feet")
  41239. },
  41240. {
  41241. name: "District Demolisher",
  41242. height: math.unit(240000, "feet")
  41243. },
  41244. {
  41245. name: "Tri-County Terror",
  41246. height: math.unit(800000, "feet")
  41247. },
  41248. {
  41249. name: "State Smasher",
  41250. height: math.unit(2.4e6, "feet")
  41251. },
  41252. {
  41253. name: "Nation Nemesis",
  41254. height: math.unit(8e6, "feet")
  41255. },
  41256. {
  41257. name: "Continent Cracker",
  41258. height: math.unit(2.4e7, "feet")
  41259. },
  41260. {
  41261. name: "Planet-Pillaging",
  41262. height: math.unit(8e7, "feet")
  41263. },
  41264. {
  41265. name: "Earth-Eclipsing",
  41266. height: math.unit(2.4e8, "feet")
  41267. },
  41268. {
  41269. name: "Jovian-Jostling",
  41270. height: math.unit(8e8, "feet")
  41271. },
  41272. {
  41273. name: "Gas Giant Gulper",
  41274. height: math.unit(2.4e9, "feet")
  41275. },
  41276. {
  41277. name: "Astral Annihilator",
  41278. height: math.unit(8e9, "feet")
  41279. },
  41280. {
  41281. name: "Celestial Conqueror",
  41282. height: math.unit(2.4e10, "feet")
  41283. },
  41284. {
  41285. name: "Sol-Swallowing",
  41286. height: math.unit(8e10, "feet")
  41287. },
  41288. {
  41289. name: "Hunter of the Heavens",
  41290. height: math.unit(2.4e13, "feet")
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(6 + 8/12, "feet"),
  41299. weight: math.unit(250, "kilograms"),
  41300. volume: math.unit(28, "liters"),
  41301. name: "Front",
  41302. image: {
  41303. source: "./media/characters/rebecca-pawlson/front.svg",
  41304. extra: 1737/1596,
  41305. bottom: 107/1844
  41306. }
  41307. },
  41308. back: {
  41309. height: math.unit(6 + 8/12, "feet"),
  41310. weight: math.unit(250, "kilograms"),
  41311. volume: math.unit(28, "liters"),
  41312. name: "Back",
  41313. image: {
  41314. source: "./media/characters/rebecca-pawlson/back.svg",
  41315. extra: 1702/1523,
  41316. bottom: 86/1788
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Normal",
  41323. height: math.unit(6 + 8/12, "feet")
  41324. },
  41325. {
  41326. name: "Mini Macro",
  41327. height: math.unit(10, "feet"),
  41328. default: true
  41329. },
  41330. {
  41331. name: "Macro",
  41332. height: math.unit(100, "feet")
  41333. },
  41334. {
  41335. name: "Mega Macro",
  41336. height: math.unit(2500, "feet")
  41337. },
  41338. {
  41339. name: "Giga Macro",
  41340. height: math.unit(50, "miles")
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(7 + 6/12, "feet"),
  41349. weight: math.unit(600, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/moxie-nova/front.svg",
  41353. extra: 1734/1652,
  41354. bottom: 41/1775
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(7 + 6/12, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41368. {
  41369. goat: {
  41370. height: math.unit(4, "feet"),
  41371. weight: math.unit(180, "lb"),
  41372. name: "Goat",
  41373. image: {
  41374. source: "./media/characters/tiffany/goat.svg",
  41375. extra: 1845/1595,
  41376. bottom: 106/1951
  41377. }
  41378. },
  41379. front: {
  41380. height: math.unit(5, "feet"),
  41381. weight: math.unit(150, "lb"),
  41382. name: "Foxcoon",
  41383. image: {
  41384. source: "./media/characters/tiffany/foxcoon.svg",
  41385. extra: 1941/1845,
  41386. bottom: 58/1999
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(5, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41400. {
  41401. front: {
  41402. height: math.unit(8, "feet"),
  41403. weight: math.unit(300, "lb"),
  41404. name: "Front",
  41405. image: {
  41406. source: "./media/characters/raxinath/front.svg",
  41407. extra: 1407/1309,
  41408. bottom: 39/1446
  41409. }
  41410. },
  41411. back: {
  41412. height: math.unit(8, "feet"),
  41413. weight: math.unit(300, "lb"),
  41414. name: "Back",
  41415. image: {
  41416. source: "./media/characters/raxinath/back.svg",
  41417. extra: 1405/1315,
  41418. bottom: 9/1414
  41419. }
  41420. },
  41421. },
  41422. [
  41423. {
  41424. name: "Speck",
  41425. height: math.unit(0.5, "nm")
  41426. },
  41427. {
  41428. name: "Micro",
  41429. height: math.unit(3, "inches")
  41430. },
  41431. {
  41432. name: "Kobold",
  41433. height: math.unit(3, "feet")
  41434. },
  41435. {
  41436. name: "Normal",
  41437. height: math.unit(8, "feet"),
  41438. default: true
  41439. },
  41440. {
  41441. name: "Giant",
  41442. height: math.unit(50, "feet")
  41443. },
  41444. {
  41445. name: "Macro",
  41446. height: math.unit(1000, "feet")
  41447. },
  41448. {
  41449. name: "Megamacro",
  41450. height: math.unit(1, "mile")
  41451. },
  41452. ]
  41453. ))
  41454. characterMakers.push(() => makeCharacter(
  41455. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41456. {
  41457. front: {
  41458. height: math.unit(10, "feet"),
  41459. weight: math.unit(1442, "lb"),
  41460. name: "Front",
  41461. image: {
  41462. source: "./media/characters/mal-dragon/front.svg",
  41463. extra: 1515/1444,
  41464. bottom: 113/1628
  41465. }
  41466. },
  41467. back: {
  41468. height: math.unit(10, "feet"),
  41469. weight: math.unit(1442, "lb"),
  41470. name: "Back",
  41471. image: {
  41472. source: "./media/characters/mal-dragon/back.svg",
  41473. extra: 1527/1434,
  41474. bottom: 25/1552
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Mortal Interaction",
  41481. height: math.unit(10, "feet"),
  41482. default: true
  41483. },
  41484. {
  41485. name: "Large",
  41486. height: math.unit(30, "feet")
  41487. },
  41488. {
  41489. name: "Kaiju",
  41490. height: math.unit(300, "feet")
  41491. },
  41492. {
  41493. name: "Megamacro",
  41494. height: math.unit(10000, "feet")
  41495. },
  41496. {
  41497. name: "Continent Cracker",
  41498. height: math.unit(30000000, "feet")
  41499. },
  41500. {
  41501. name: "Sol-Swallowing",
  41502. height: math.unit(1e11, "feet")
  41503. },
  41504. {
  41505. name: "Light Universal",
  41506. height: math.unit(5, "universes")
  41507. },
  41508. {
  41509. name: "Universe Atoms",
  41510. height: math.unit(1.829e9, "universes")
  41511. },
  41512. {
  41513. name: "Light Multiversal",
  41514. height: math.unit(5, "multiverses")
  41515. },
  41516. {
  41517. name: "Multiverse Atoms",
  41518. height: math.unit(1.829e9, "multiverses")
  41519. },
  41520. {
  41521. name: "Fabric of Time",
  41522. height: math.unit(1e262, "multiverses")
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41528. {
  41529. front: {
  41530. height: math.unit(9, "feet"),
  41531. weight: math.unit(1050, "lb"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/tabitha/front.svg",
  41535. extra: 2083/1994,
  41536. bottom: 68/2151
  41537. }
  41538. },
  41539. },
  41540. [
  41541. {
  41542. name: "Baseline",
  41543. height: math.unit(9, "feet"),
  41544. default: true
  41545. },
  41546. {
  41547. name: "Giant",
  41548. height: math.unit(90, "feet")
  41549. },
  41550. {
  41551. name: "Macro",
  41552. height: math.unit(900, "feet")
  41553. },
  41554. {
  41555. name: "Megamacro",
  41556. height: math.unit(9000, "feet")
  41557. },
  41558. {
  41559. name: "City-Crushing",
  41560. height: math.unit(27000, "feet")
  41561. },
  41562. {
  41563. name: "Mountain-Mashing",
  41564. height: math.unit(90000, "feet")
  41565. },
  41566. {
  41567. name: "Nation Nemesis",
  41568. height: math.unit(9e6, "feet")
  41569. },
  41570. {
  41571. name: "Continent Cracker",
  41572. height: math.unit(27e6, "feet")
  41573. },
  41574. {
  41575. name: "Earth-Eclipsing",
  41576. height: math.unit(2.7e8, "feet")
  41577. },
  41578. {
  41579. name: "Gas Giant Gulper",
  41580. height: math.unit(2.7e9, "feet")
  41581. },
  41582. {
  41583. name: "Sol-Swallowing",
  41584. height: math.unit(9e10, "feet")
  41585. },
  41586. {
  41587. name: "Galaxy Gulper",
  41588. height: math.unit(9, "galaxies")
  41589. },
  41590. {
  41591. name: "Cosmos Churner",
  41592. height: math.unit(9, "universes")
  41593. },
  41594. ]
  41595. ))
  41596. characterMakers.push(() => makeCharacter(
  41597. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41598. {
  41599. front: {
  41600. height: math.unit(160, "cm"),
  41601. weight: math.unit(55, "kg"),
  41602. name: "Front",
  41603. image: {
  41604. source: "./media/characters/tow/front.svg",
  41605. extra: 1751/1722,
  41606. bottom: 74/1825
  41607. }
  41608. },
  41609. },
  41610. [
  41611. {
  41612. name: "Norm",
  41613. height: math.unit(160, "cm")
  41614. },
  41615. {
  41616. name: "Casual",
  41617. height: math.unit(3200, "m"),
  41618. default: true
  41619. },
  41620. {
  41621. name: "Show-Off",
  41622. height: math.unit(160, "km")
  41623. },
  41624. ]
  41625. ))
  41626. characterMakers.push(() => makeCharacter(
  41627. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41628. {
  41629. front: {
  41630. height: math.unit(7 + 11/12, "feet"),
  41631. weight: math.unit(342.8, "lb"),
  41632. name: "Front",
  41633. image: {
  41634. source: "./media/characters/vivian-orca-dragon/front.svg",
  41635. extra: 1890/1865,
  41636. bottom: 28/1918
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Micro",
  41643. height: math.unit(5, "inches")
  41644. },
  41645. {
  41646. name: "Normal",
  41647. height: math.unit(7 + 11/12, "feet"),
  41648. default: true
  41649. },
  41650. {
  41651. name: "Macro",
  41652. height: math.unit(395 + 7/12, "feet")
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41658. {
  41659. side: {
  41660. height: math.unit(10, "feet"),
  41661. weight: math.unit(1442, "lb"),
  41662. name: "Side",
  41663. image: {
  41664. source: "./media/characters/lotherakon/side.svg",
  41665. extra: 1604/1497,
  41666. bottom: 89/1693
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Mortal Interaction",
  41673. height: math.unit(10, "feet")
  41674. },
  41675. {
  41676. name: "Large",
  41677. height: math.unit(30, "feet"),
  41678. default: true
  41679. },
  41680. {
  41681. name: "Giant",
  41682. height: math.unit(100, "feet")
  41683. },
  41684. {
  41685. name: "Kaiju",
  41686. height: math.unit(300, "feet")
  41687. },
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(1000, "feet")
  41691. },
  41692. {
  41693. name: "Macro+",
  41694. height: math.unit(3000, "feet")
  41695. },
  41696. {
  41697. name: "Megamacro",
  41698. height: math.unit(10000, "feet")
  41699. },
  41700. {
  41701. name: "City-Crushing",
  41702. height: math.unit(30000, "feet")
  41703. },
  41704. {
  41705. name: "Continent Cracker",
  41706. height: math.unit(30e6, "feet")
  41707. },
  41708. {
  41709. name: "Earth Eclipsing",
  41710. height: math.unit(3e8, "feet")
  41711. },
  41712. {
  41713. name: "Gas Giant Gulper",
  41714. height: math.unit(3e9, "feet")
  41715. },
  41716. {
  41717. name: "Sol-Swallowing",
  41718. height: math.unit(1e11, "feet")
  41719. },
  41720. {
  41721. name: "System Swallower",
  41722. height: math.unit(3e14, "feet")
  41723. },
  41724. {
  41725. name: "Galaxy Gulper",
  41726. height: math.unit(10, "galaxies")
  41727. },
  41728. {
  41729. name: "Light Universal",
  41730. height: math.unit(5, "universes")
  41731. },
  41732. {
  41733. name: "Universe Palm",
  41734. height: math.unit(20, "universes")
  41735. },
  41736. {
  41737. name: "Light Multiversal",
  41738. height: math.unit(5, "multiverses")
  41739. },
  41740. {
  41741. name: "Multiverse Palm",
  41742. height: math.unit(20, "multiverses")
  41743. },
  41744. {
  41745. name: "Inferno Incarnate",
  41746. height: math.unit(1e7, "multiverses")
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(8, "feet"),
  41755. weight: math.unit(1200, "lb"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/malithee/front.svg",
  41759. extra: 1675/1640,
  41760. bottom: 162/1837
  41761. }
  41762. },
  41763. },
  41764. [
  41765. {
  41766. name: "Mortal Interaction",
  41767. height: math.unit(8, "feet"),
  41768. default: true
  41769. },
  41770. {
  41771. name: "Large",
  41772. height: math.unit(24, "feet")
  41773. },
  41774. {
  41775. name: "Kaiju",
  41776. height: math.unit(240, "feet")
  41777. },
  41778. {
  41779. name: "Megamacro",
  41780. height: math.unit(8000, "feet")
  41781. },
  41782. {
  41783. name: "Continent Cracker",
  41784. height: math.unit(24e6, "feet")
  41785. },
  41786. {
  41787. name: "Earth-Eclipsing",
  41788. height: math.unit(2.4e8, "feet")
  41789. },
  41790. {
  41791. name: "Sol-Swallowing",
  41792. height: math.unit(8e10, "feet")
  41793. },
  41794. {
  41795. name: "Galaxy Gulper",
  41796. height: math.unit(8, "galaxies")
  41797. },
  41798. {
  41799. name: "Light Universal",
  41800. height: math.unit(4, "universes")
  41801. },
  41802. {
  41803. name: "Universe Atoms",
  41804. height: math.unit(1.829e9, "universes")
  41805. },
  41806. {
  41807. name: "Light Multiversal",
  41808. height: math.unit(4, "multiverses")
  41809. },
  41810. {
  41811. name: "Multiverse Atoms",
  41812. height: math.unit(1.829e9, "multiverses")
  41813. },
  41814. {
  41815. name: "Nigh-Omnipresence",
  41816. height: math.unit(8e261, "multiverses")
  41817. },
  41818. ]
  41819. ))
  41820. characterMakers.push(() => makeCharacter(
  41821. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41822. {
  41823. front: {
  41824. height: math.unit(10, "feet"),
  41825. weight: math.unit(1500, "lb"),
  41826. name: "Front",
  41827. image: {
  41828. source: "./media/characters/miles-thestia/front.svg",
  41829. extra: 1812/1727,
  41830. bottom: 86/1898
  41831. }
  41832. },
  41833. back: {
  41834. height: math.unit(10, "feet"),
  41835. weight: math.unit(1500, "lb"),
  41836. name: "Back",
  41837. image: {
  41838. source: "./media/characters/miles-thestia/back.svg",
  41839. extra: 1799/1690,
  41840. bottom: 47/1846
  41841. }
  41842. },
  41843. frontNsfw: {
  41844. height: math.unit(10, "feet"),
  41845. weight: math.unit(1500, "lb"),
  41846. name: "Front (NSFW)",
  41847. image: {
  41848. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41849. extra: 1812/1727,
  41850. bottom: 86/1898
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Mini-Macro",
  41857. height: math.unit(10, "feet"),
  41858. default: true
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(25, "feet"),
  41867. name: "Front",
  41868. image: {
  41869. source: "./media/characters/titan-s-wulf/front.svg",
  41870. extra: 1560/1484,
  41871. bottom: 76/1636
  41872. }
  41873. },
  41874. },
  41875. [
  41876. {
  41877. name: "Smallest",
  41878. height: math.unit(25, "feet"),
  41879. default: true
  41880. },
  41881. {
  41882. name: "Normal",
  41883. height: math.unit(200, "feet")
  41884. },
  41885. {
  41886. name: "Macro",
  41887. height: math.unit(200000, "feet")
  41888. },
  41889. {
  41890. name: "Multiversal Original",
  41891. height: math.unit(10000, "multiverses")
  41892. },
  41893. ]
  41894. ))
  41895. characterMakers.push(() => makeCharacter(
  41896. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41897. {
  41898. front: {
  41899. height: math.unit(8, "feet"),
  41900. weight: math.unit(553, "lb"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/tawendeh/front.svg",
  41904. extra: 2365/2268,
  41905. bottom: 83/2448
  41906. }
  41907. },
  41908. frontClothed: {
  41909. height: math.unit(8, "feet"),
  41910. weight: math.unit(553, "lb"),
  41911. name: "Front (Clothed)",
  41912. image: {
  41913. source: "./media/characters/tawendeh/front-clothed.svg",
  41914. extra: 2365/2268,
  41915. bottom: 83/2448
  41916. }
  41917. },
  41918. back: {
  41919. height: math.unit(8, "feet"),
  41920. weight: math.unit(553, "lb"),
  41921. name: "Back",
  41922. image: {
  41923. source: "./media/characters/tawendeh/back.svg",
  41924. extra: 2397/2294,
  41925. bottom: 42/2439
  41926. }
  41927. },
  41928. },
  41929. [
  41930. {
  41931. name: "Mortal Interaction",
  41932. height: math.unit(8, "feet"),
  41933. default: true
  41934. },
  41935. {
  41936. name: "Giant",
  41937. height: math.unit(80, "feet")
  41938. },
  41939. {
  41940. name: "Macro",
  41941. height: math.unit(800, "feet")
  41942. },
  41943. {
  41944. name: "Megamacro",
  41945. height: math.unit(8000, "feet")
  41946. },
  41947. {
  41948. name: "City-Crushing",
  41949. height: math.unit(24000, "feet")
  41950. },
  41951. {
  41952. name: "Mountain-Mashing",
  41953. height: math.unit(80000, "feet")
  41954. },
  41955. {
  41956. name: "Nation Nemesis",
  41957. height: math.unit(8e6, "feet")
  41958. },
  41959. {
  41960. name: "Continent Cracker",
  41961. height: math.unit(24e6, "feet")
  41962. },
  41963. {
  41964. name: "Earth-Eclipsing",
  41965. height: math.unit(2.4e8, "feet")
  41966. },
  41967. {
  41968. name: "Gas Giant Gulper",
  41969. height: math.unit(2.4e9, "feet")
  41970. },
  41971. {
  41972. name: "Sol-Swallowing",
  41973. height: math.unit(8e10, "feet")
  41974. },
  41975. {
  41976. name: "Galaxy Gulper",
  41977. height: math.unit(8, "galaxies")
  41978. },
  41979. {
  41980. name: "Cosmos Churner",
  41981. height: math.unit(8, "universes")
  41982. },
  41983. {
  41984. name: "Omnipotent Otter",
  41985. height: math.unit(80, "universes")
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41991. {
  41992. front: {
  41993. height: math.unit(2.6, "meters"),
  41994. weight: math.unit(900, "kg"),
  41995. name: "Front",
  41996. image: {
  41997. source: "./media/characters/neesha/front.svg",
  41998. extra: 1803/1653,
  41999. bottom: 128/1931
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Normal",
  42006. height: math.unit(2.6, "meters"),
  42007. default: true
  42008. },
  42009. {
  42010. name: "Macro",
  42011. height: math.unit(50, "meters")
  42012. },
  42013. ]
  42014. ))
  42015. characterMakers.push(() => makeCharacter(
  42016. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42017. {
  42018. front: {
  42019. height: math.unit(5, "feet"),
  42020. weight: math.unit(185, "lb"),
  42021. name: "Front",
  42022. image: {
  42023. source: "./media/characters/kyera/front.svg",
  42024. extra: 1875/1790,
  42025. bottom: 96/1971
  42026. }
  42027. },
  42028. },
  42029. [
  42030. {
  42031. name: "Normal",
  42032. height: math.unit(5, "feet"),
  42033. default: true
  42034. },
  42035. ]
  42036. ))
  42037. characterMakers.push(() => makeCharacter(
  42038. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42039. {
  42040. front: {
  42041. height: math.unit(7 + 6/12, "feet"),
  42042. weight: math.unit(540, "lb"),
  42043. name: "Front",
  42044. image: {
  42045. source: "./media/characters/yuko/front.svg",
  42046. extra: 1282/1222,
  42047. bottom: 101/1383
  42048. }
  42049. },
  42050. frontClothed: {
  42051. height: math.unit(7 + 6/12, "feet"),
  42052. weight: math.unit(540, "lb"),
  42053. name: "Front (Clothed)",
  42054. image: {
  42055. source: "./media/characters/yuko/front-clothed.svg",
  42056. extra: 1282/1222,
  42057. bottom: 101/1383
  42058. }
  42059. },
  42060. },
  42061. [
  42062. {
  42063. name: "Normal",
  42064. height: math.unit(7 + 6/12, "feet"),
  42065. default: true
  42066. },
  42067. {
  42068. name: "Macro",
  42069. height: math.unit(26 + 9/12, "feet")
  42070. },
  42071. {
  42072. name: "Megamacro",
  42073. height: math.unit(300, "feet")
  42074. },
  42075. {
  42076. name: "Gigamacro",
  42077. height: math.unit(5000, "feet")
  42078. },
  42079. {
  42080. name: "Planetary",
  42081. height: math.unit(10000, "miles")
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42087. {
  42088. front: {
  42089. height: math.unit(8 + 2/12, "feet"),
  42090. weight: math.unit(600, "lb"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/deam-nitrel/front.svg",
  42094. extra: 1308/1234,
  42095. bottom: 125/1433
  42096. }
  42097. },
  42098. },
  42099. [
  42100. {
  42101. name: "Normal",
  42102. height: math.unit(8 + 2/12, "feet"),
  42103. default: true
  42104. },
  42105. ]
  42106. ))
  42107. characterMakers.push(() => makeCharacter(
  42108. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42109. {
  42110. front: {
  42111. height: math.unit(6.1, "feet"),
  42112. weight: math.unit(180, "lb"),
  42113. name: "Front",
  42114. image: {
  42115. source: "./media/characters/skyress/front.svg",
  42116. extra: 1045/915,
  42117. bottom: 28/1073
  42118. }
  42119. },
  42120. maw: {
  42121. height: math.unit(1, "feet"),
  42122. name: "Maw",
  42123. image: {
  42124. source: "./media/characters/skyress/maw.svg"
  42125. }
  42126. },
  42127. },
  42128. [
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(6.1, "feet"),
  42132. default: true
  42133. },
  42134. {
  42135. name: "Macro",
  42136. height: math.unit(200, "feet")
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42142. {
  42143. front: {
  42144. height: math.unit(4 + 2/12, "feet"),
  42145. weight: math.unit(40, "kg"),
  42146. name: "Front",
  42147. image: {
  42148. source: "./media/characters/amethyst-jones/front.svg",
  42149. extra: 1220/1150,
  42150. bottom: 101/1321
  42151. }
  42152. },
  42153. },
  42154. [
  42155. {
  42156. name: "Normal",
  42157. height: math.unit(4 + 2/12, "feet"),
  42158. default: true
  42159. },
  42160. ]
  42161. ))
  42162. characterMakers.push(() => makeCharacter(
  42163. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42164. {
  42165. front: {
  42166. height: math.unit(1.7, "m"),
  42167. weight: math.unit(135, "lb"),
  42168. name: "Front",
  42169. image: {
  42170. source: "./media/characters/jade/front.svg",
  42171. extra: 1818/1767,
  42172. bottom: 32/1850
  42173. }
  42174. },
  42175. back: {
  42176. height: math.unit(1.7, "m"),
  42177. weight: math.unit(135, "lb"),
  42178. name: "Back",
  42179. image: {
  42180. source: "./media/characters/jade/back.svg",
  42181. extra: 1869/1809,
  42182. bottom: 35/1904
  42183. }
  42184. },
  42185. hand: {
  42186. height: math.unit(0.24, "m"),
  42187. name: "Hand",
  42188. image: {
  42189. source: "./media/characters/jade/hand.svg"
  42190. }
  42191. },
  42192. foot: {
  42193. height: math.unit(0.263, "m"),
  42194. name: "Foot",
  42195. image: {
  42196. source: "./media/characters/jade/foot.svg"
  42197. }
  42198. },
  42199. dick: {
  42200. height: math.unit(0.47, "m"),
  42201. name: "Dick",
  42202. image: {
  42203. source: "./media/characters/jade/dick.svg"
  42204. }
  42205. },
  42206. },
  42207. [
  42208. {
  42209. name: "Micro",
  42210. height: math.unit(22, "cm")
  42211. },
  42212. {
  42213. name: "Normal",
  42214. height: math.unit(1.7, "m"),
  42215. default: true
  42216. },
  42217. {
  42218. name: "Macro",
  42219. height: math.unit(152, "m")
  42220. },
  42221. ]
  42222. ))
  42223. characterMakers.push(() => makeCharacter(
  42224. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42225. {
  42226. front: {
  42227. height: math.unit(100, "miles"),
  42228. weight: math.unit(20000, "tons"),
  42229. name: "Front",
  42230. image: {
  42231. source: "./media/characters/cookie/front.svg",
  42232. extra: 1125/1070,
  42233. bottom: 30/1155
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Big",
  42240. height: math.unit(50, "feet")
  42241. },
  42242. {
  42243. name: "Macro",
  42244. height: math.unit(100, "miles"),
  42245. default: true
  42246. },
  42247. {
  42248. name: "Megamacro",
  42249. height: math.unit(90000, "miles")
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42255. {
  42256. front: {
  42257. height: math.unit(6, "feet"),
  42258. weight: math.unit(145, "lb"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/farzian/front.svg",
  42262. extra: 1902/1693,
  42263. bottom: 108/2010
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Macro",
  42270. height: math.unit(500, "feet"),
  42271. default: true
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(3 + 6/12, "feet"),
  42280. weight: math.unit(50, "lb"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/kimberly-tilson/front.svg",
  42284. extra: 1400/1322,
  42285. bottom: 36/1436
  42286. }
  42287. },
  42288. back: {
  42289. height: math.unit(3 + 6/12, "feet"),
  42290. weight: math.unit(50, "lb"),
  42291. name: "Back",
  42292. image: {
  42293. source: "./media/characters/kimberly-tilson/back.svg",
  42294. extra: 1370/1307,
  42295. bottom: 20/1390
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(3 + 6/12, "feet"),
  42303. default: true
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(1148, "feet"),
  42312. weight: math.unit(34057, "lb"),
  42313. name: "Front",
  42314. image: {
  42315. source: "./media/characters/harthos/front.svg",
  42316. extra: 1391/1339,
  42317. bottom: 13/1404
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Macro",
  42324. height: math.unit(1148, "feet"),
  42325. default: true
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42331. {
  42332. front: {
  42333. height: math.unit(15, "feet"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/hypatia/front.svg",
  42337. extra: 1653/1591,
  42338. bottom: 79/1732
  42339. }
  42340. },
  42341. },
  42342. [
  42343. {
  42344. name: "Normal",
  42345. height: math.unit(15, "feet")
  42346. },
  42347. {
  42348. name: "Small",
  42349. height: math.unit(300, "feet")
  42350. },
  42351. {
  42352. name: "Macro",
  42353. height: math.unit(2500, "feet"),
  42354. default: true
  42355. },
  42356. {
  42357. name: "Mega Macro",
  42358. height: math.unit(1500, "miles")
  42359. },
  42360. {
  42361. name: "Giga Macro",
  42362. height: math.unit(1.5e6, "miles")
  42363. },
  42364. ]
  42365. ))
  42366. characterMakers.push(() => makeCharacter(
  42367. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42368. {
  42369. front: {
  42370. height: math.unit(6, "feet"),
  42371. weight: math.unit(200, "lb"),
  42372. name: "Front",
  42373. image: {
  42374. source: "./media/characters/wulver/front.svg",
  42375. extra: 1724/1632,
  42376. bottom: 130/1854
  42377. }
  42378. },
  42379. frontNsfw: {
  42380. height: math.unit(6, "feet"),
  42381. weight: math.unit(200, "lb"),
  42382. name: "Front (NSFW)",
  42383. image: {
  42384. source: "./media/characters/wulver/front-nsfw.svg",
  42385. extra: 1724/1632,
  42386. bottom: 130/1854
  42387. }
  42388. },
  42389. },
  42390. [
  42391. {
  42392. name: "Human-Sized",
  42393. height: math.unit(6, "feet")
  42394. },
  42395. {
  42396. name: "Normal",
  42397. height: math.unit(4, "meters"),
  42398. default: true
  42399. },
  42400. {
  42401. name: "Large",
  42402. height: math.unit(6, "m")
  42403. },
  42404. ]
  42405. ))
  42406. characterMakers.push(() => makeCharacter(
  42407. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42408. {
  42409. front: {
  42410. height: math.unit(7, "feet"),
  42411. name: "Front",
  42412. image: {
  42413. source: "./media/characters/maru/front.svg",
  42414. extra: 1595/1570,
  42415. bottom: 0/1595
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(7, "feet"),
  42423. default: true
  42424. },
  42425. {
  42426. name: "Macro",
  42427. height: math.unit(700, "feet")
  42428. },
  42429. {
  42430. name: "Mega Macro",
  42431. height: math.unit(25, "miles")
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(6, "feet"),
  42440. weight: math.unit(170, "lb"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/xenon/front.svg",
  42444. extra: 1376/1305,
  42445. bottom: 56/1432
  42446. }
  42447. },
  42448. back: {
  42449. height: math.unit(6, "feet"),
  42450. weight: math.unit(170, "lb"),
  42451. name: "Back",
  42452. image: {
  42453. source: "./media/characters/xenon/back.svg",
  42454. extra: 1328/1259,
  42455. bottom: 95/1423
  42456. }
  42457. },
  42458. maw: {
  42459. height: math.unit(0.52, "feet"),
  42460. name: "Maw",
  42461. image: {
  42462. source: "./media/characters/xenon/maw.svg"
  42463. }
  42464. },
  42465. handLeft: {
  42466. height: math.unit(0.82 * 169 / 153, "feet"),
  42467. name: "Hand (Left)",
  42468. image: {
  42469. source: "./media/characters/xenon/hand-left.svg"
  42470. }
  42471. },
  42472. handRight: {
  42473. height: math.unit(0.82, "feet"),
  42474. name: "Hand (Right)",
  42475. image: {
  42476. source: "./media/characters/xenon/hand-right.svg"
  42477. }
  42478. },
  42479. footLeft: {
  42480. height: math.unit(1.13, "feet"),
  42481. name: "Foot (Left)",
  42482. image: {
  42483. source: "./media/characters/xenon/foot-left.svg"
  42484. }
  42485. },
  42486. footRight: {
  42487. height: math.unit(1.13 * 194 / 196, "feet"),
  42488. name: "Foot (Right)",
  42489. image: {
  42490. source: "./media/characters/xenon/foot-right.svg"
  42491. }
  42492. },
  42493. },
  42494. [
  42495. {
  42496. name: "Micro",
  42497. height: math.unit(0.8, "inches")
  42498. },
  42499. {
  42500. name: "Normal",
  42501. height: math.unit(6, "feet")
  42502. },
  42503. {
  42504. name: "Macro",
  42505. height: math.unit(50, "feet"),
  42506. default: true
  42507. },
  42508. {
  42509. name: "Macro+",
  42510. height: math.unit(250, "feet")
  42511. },
  42512. {
  42513. name: "Megamacro",
  42514. height: math.unit(1500, "feet")
  42515. },
  42516. ]
  42517. ))
  42518. characterMakers.push(() => makeCharacter(
  42519. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42520. {
  42521. front: {
  42522. height: math.unit(7 + 5/12, "feet"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/zane/front.svg",
  42526. extra: 1260/1203,
  42527. bottom: 94/1354
  42528. }
  42529. },
  42530. back: {
  42531. height: math.unit(5.05, "feet"),
  42532. name: "Back",
  42533. image: {
  42534. source: "./media/characters/zane/back.svg",
  42535. extra: 893/829,
  42536. bottom: 30/923
  42537. }
  42538. },
  42539. werewolf: {
  42540. height: math.unit(11, "feet"),
  42541. name: "Werewolf",
  42542. image: {
  42543. source: "./media/characters/zane/werewolf.svg",
  42544. extra: 1383/1323,
  42545. bottom: 89/1472
  42546. }
  42547. },
  42548. foot: {
  42549. height: math.unit(1.46, "feet"),
  42550. name: "Foot",
  42551. image: {
  42552. source: "./media/characters/zane/foot.svg"
  42553. }
  42554. },
  42555. footFront: {
  42556. height: math.unit(0.784, "feet"),
  42557. name: "Foot (Front)",
  42558. image: {
  42559. source: "./media/characters/zane/foot-front.svg"
  42560. }
  42561. },
  42562. dick: {
  42563. height: math.unit(1.95, "feet"),
  42564. name: "Dick",
  42565. image: {
  42566. source: "./media/characters/zane/dick.svg"
  42567. }
  42568. },
  42569. dickWerewolf: {
  42570. height: math.unit(3.77, "feet"),
  42571. name: "Dick (Werewolf)",
  42572. image: {
  42573. source: "./media/characters/zane/dick.svg"
  42574. }
  42575. },
  42576. },
  42577. [
  42578. {
  42579. name: "Normal",
  42580. height: math.unit(7 + 5/12, "feet"),
  42581. default: true
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42587. {
  42588. front: {
  42589. height: math.unit(6 + 2/12, "feet"),
  42590. weight: math.unit(284, "lb"),
  42591. name: "Front",
  42592. image: {
  42593. source: "./media/characters/benni-desparque/front.svg",
  42594. extra: 1353/1126,
  42595. bottom: 69/1422
  42596. }
  42597. },
  42598. },
  42599. [
  42600. {
  42601. name: "Civilian",
  42602. height: math.unit(6 + 2/12, "feet")
  42603. },
  42604. {
  42605. name: "Normal",
  42606. height: math.unit(98, "feet"),
  42607. default: true
  42608. },
  42609. {
  42610. name: "Kaiju Fighter",
  42611. height: math.unit(268, "feet")
  42612. },
  42613. ]
  42614. ))
  42615. characterMakers.push(() => makeCharacter(
  42616. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42617. {
  42618. front: {
  42619. height: math.unit(5, "feet"),
  42620. weight: math.unit(105, "lb"),
  42621. name: "Front",
  42622. image: {
  42623. source: "./media/characters/maxine/front.svg",
  42624. extra: 1386/1250,
  42625. bottom: 71/1457
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Normal",
  42632. height: math.unit(5, "feet"),
  42633. default: true
  42634. },
  42635. ]
  42636. ))
  42637. characterMakers.push(() => makeCharacter(
  42638. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42639. {
  42640. front: {
  42641. height: math.unit(11 + 7/12, "feet"),
  42642. weight: math.unit(9576, "lb"),
  42643. name: "Front",
  42644. image: {
  42645. source: "./media/characters/scaly/front.svg",
  42646. extra: 888/867,
  42647. bottom: 36/924
  42648. }
  42649. },
  42650. },
  42651. [
  42652. {
  42653. name: "Normal",
  42654. height: math.unit(11 + 7/12, "feet"),
  42655. default: true
  42656. },
  42657. ]
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42661. {
  42662. front: {
  42663. height: math.unit(6 + 3/12, "feet"),
  42664. name: "Front",
  42665. image: {
  42666. source: "./media/characters/saelria/front.svg",
  42667. extra: 1243/1138,
  42668. bottom: 46/1289
  42669. }
  42670. },
  42671. },
  42672. [
  42673. {
  42674. name: "Micro",
  42675. height: math.unit(6, "inches"),
  42676. },
  42677. {
  42678. name: "Normal",
  42679. height: math.unit(6 + 3/12, "feet"),
  42680. default: true
  42681. },
  42682. {
  42683. name: "Macro",
  42684. height: math.unit(25, "feet")
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(80, "meters"),
  42693. weight: math.unit(7000, "tonnes"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/tef/front.svg",
  42697. extra: 2036/1991,
  42698. bottom: 54/2090
  42699. }
  42700. },
  42701. back: {
  42702. height: math.unit(80, "meters"),
  42703. weight: math.unit(7000, "tonnes"),
  42704. name: "Back",
  42705. image: {
  42706. source: "./media/characters/tef/back.svg",
  42707. extra: 2036/1991,
  42708. bottom: 54/2090
  42709. }
  42710. },
  42711. },
  42712. [
  42713. {
  42714. name: "Macro",
  42715. height: math.unit(80, "meters"),
  42716. default: true
  42717. },
  42718. ]
  42719. ))
  42720. characterMakers.push(() => makeCharacter(
  42721. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42722. {
  42723. front: {
  42724. height: math.unit(13, "feet"),
  42725. weight: math.unit(6, "tons"),
  42726. name: "Front",
  42727. image: {
  42728. source: "./media/characters/rover/front.svg",
  42729. extra: 1233/1156,
  42730. bottom: 50/1283
  42731. }
  42732. },
  42733. back: {
  42734. height: math.unit(13, "feet"),
  42735. weight: math.unit(6, "tons"),
  42736. name: "Back",
  42737. image: {
  42738. source: "./media/characters/rover/back.svg",
  42739. extra: 1327/1258,
  42740. bottom: 39/1366
  42741. }
  42742. },
  42743. },
  42744. [
  42745. {
  42746. name: "Normal",
  42747. height: math.unit(13, "feet"),
  42748. default: true
  42749. },
  42750. {
  42751. name: "Macro",
  42752. height: math.unit(1300, "feet")
  42753. },
  42754. {
  42755. name: "Megamacro",
  42756. height: math.unit(1300, "miles")
  42757. },
  42758. {
  42759. name: "Gigamacro",
  42760. height: math.unit(1300000, "miles")
  42761. },
  42762. ]
  42763. ))
  42764. characterMakers.push(() => makeCharacter(
  42765. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42766. {
  42767. front: {
  42768. height: math.unit(6, "feet"),
  42769. weight: math.unit(150, "lb"),
  42770. name: "Front",
  42771. image: {
  42772. source: "./media/characters/ariz/front.svg",
  42773. extra: 1401/1346,
  42774. bottom: 5/1406
  42775. }
  42776. },
  42777. },
  42778. [
  42779. {
  42780. name: "Normal",
  42781. height: math.unit(10, "feet"),
  42782. default: true
  42783. },
  42784. ]
  42785. ))
  42786. characterMakers.push(() => makeCharacter(
  42787. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42788. {
  42789. front: {
  42790. height: math.unit(6, "feet"),
  42791. weight: math.unit(140, "lb"),
  42792. name: "Front",
  42793. image: {
  42794. source: "./media/characters/sigrun/front.svg",
  42795. extra: 1418/1359,
  42796. bottom: 27/1445
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Macro",
  42803. height: math.unit(35, "feet"),
  42804. default: true
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(6, "feet"),
  42813. weight: math.unit(150, "lb"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/numin/front.svg",
  42817. extra: 1433/1388,
  42818. bottom: 12/1445
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Macro",
  42825. height: math.unit(21.5, "km"),
  42826. default: true
  42827. },
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42832. {
  42833. front: {
  42834. height: math.unit(6, "feet"),
  42835. weight: math.unit(463, "lb"),
  42836. name: "Front",
  42837. image: {
  42838. source: "./media/characters/melwa/front.svg",
  42839. extra: 1307/1248,
  42840. bottom: 93/1400
  42841. }
  42842. },
  42843. },
  42844. [
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(50, "meters"),
  42848. default: true
  42849. },
  42850. ]
  42851. ))
  42852. characterMakers.push(() => makeCharacter(
  42853. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42854. {
  42855. front: {
  42856. height: math.unit(325, "feet"),
  42857. name: "Front",
  42858. image: {
  42859. source: "./media/characters/zorkaiju/front.svg",
  42860. extra: 1955/1814,
  42861. bottom: 40/1995
  42862. }
  42863. },
  42864. frontExtended: {
  42865. height: math.unit(325, "feet"),
  42866. name: "Front (Extended)",
  42867. image: {
  42868. source: "./media/characters/zorkaiju/front-extended.svg",
  42869. extra: 1955/1814,
  42870. bottom: 40/1995
  42871. }
  42872. },
  42873. side: {
  42874. height: math.unit(325, "feet"),
  42875. name: "Side",
  42876. image: {
  42877. source: "./media/characters/zorkaiju/side.svg",
  42878. extra: 1495/1396,
  42879. bottom: 17/1512
  42880. }
  42881. },
  42882. sideExtended: {
  42883. height: math.unit(325, "feet"),
  42884. name: "Side (Extended)",
  42885. image: {
  42886. source: "./media/characters/zorkaiju/side-extended.svg",
  42887. extra: 1495/1396,
  42888. bottom: 17/1512
  42889. }
  42890. },
  42891. back: {
  42892. height: math.unit(325, "feet"),
  42893. name: "Back",
  42894. image: {
  42895. source: "./media/characters/zorkaiju/back.svg",
  42896. extra: 1959/1821,
  42897. bottom: 31/1990
  42898. }
  42899. },
  42900. backExtended: {
  42901. height: math.unit(325, "feet"),
  42902. name: "Back (Extended)",
  42903. image: {
  42904. source: "./media/characters/zorkaiju/back-extended.svg",
  42905. extra: 1959/1821,
  42906. bottom: 31/1990
  42907. }
  42908. },
  42909. hand: {
  42910. height: math.unit(58.4, "feet"),
  42911. name: "Hand",
  42912. image: {
  42913. source: "./media/characters/zorkaiju/hand.svg"
  42914. }
  42915. },
  42916. handExtended: {
  42917. height: math.unit(61.4, "feet"),
  42918. name: "Hand (Extended)",
  42919. image: {
  42920. source: "./media/characters/zorkaiju/hand-extended.svg"
  42921. }
  42922. },
  42923. foot: {
  42924. height: math.unit(95, "feet"),
  42925. name: "Foot",
  42926. image: {
  42927. source: "./media/characters/zorkaiju/foot.svg"
  42928. }
  42929. },
  42930. leftArm: {
  42931. height: math.unit(59, "feet"),
  42932. name: "Left Arm",
  42933. image: {
  42934. source: "./media/characters/zorkaiju/left-arm.svg"
  42935. }
  42936. },
  42937. rightArm: {
  42938. height: math.unit(59, "feet"),
  42939. name: "Right Arm",
  42940. image: {
  42941. source: "./media/characters/zorkaiju/right-arm.svg"
  42942. }
  42943. },
  42944. leftArmExtended: {
  42945. height: math.unit(59 * 1.033546, "feet"),
  42946. name: "Left Arm (Extended)",
  42947. image: {
  42948. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42949. }
  42950. },
  42951. rightArmExtended: {
  42952. height: math.unit(59 * 1.0496, "feet"),
  42953. name: "Right Arm (Extended)",
  42954. image: {
  42955. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42956. }
  42957. },
  42958. tail: {
  42959. height: math.unit(104, "feet"),
  42960. name: "Tail",
  42961. image: {
  42962. source: "./media/characters/zorkaiju/tail.svg"
  42963. }
  42964. },
  42965. tailExtended: {
  42966. height: math.unit(104, "feet"),
  42967. name: "Tail (Extended)",
  42968. image: {
  42969. source: "./media/characters/zorkaiju/tail-extended.svg"
  42970. }
  42971. },
  42972. tailBottom: {
  42973. height: math.unit(104, "feet"),
  42974. name: "Tail Bottom",
  42975. image: {
  42976. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42977. }
  42978. },
  42979. crystal: {
  42980. height: math.unit(27.54, "feet"),
  42981. name: "Crystal",
  42982. image: {
  42983. source: "./media/characters/zorkaiju/crystal.svg"
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Kaiju",
  42990. height: math.unit(325, "feet"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(6 + 1/12, "feet"),
  43000. weight: math.unit(115, "lb"),
  43001. name: "Front",
  43002. image: {
  43003. source: "./media/characters/bailey-belfry/front.svg",
  43004. extra: 1240/1121,
  43005. bottom: 101/1341
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Normal",
  43012. height: math.unit(6 + 1/12, "feet"),
  43013. default: true
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43019. {
  43020. side: {
  43021. height: math.unit(4, "meters"),
  43022. weight: math.unit(250, "kg"),
  43023. name: "Side",
  43024. image: {
  43025. source: "./media/characters/blacky/side.svg",
  43026. extra: 1027/919,
  43027. bottom: 43/1070
  43028. }
  43029. },
  43030. maw: {
  43031. height: math.unit(1, "meters"),
  43032. name: "Maw",
  43033. image: {
  43034. source: "./media/characters/blacky/maw.svg"
  43035. }
  43036. },
  43037. paw: {
  43038. height: math.unit(1, "meters"),
  43039. name: "Paw",
  43040. image: {
  43041. source: "./media/characters/blacky/paw.svg"
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Normal",
  43048. height: math.unit(4, "meters"),
  43049. default: true
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(170, "cm"),
  43058. weight: math.unit(66, "kg"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/thux-ei/front.svg",
  43062. extra: 1109/1011,
  43063. bottom: 8/1117
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(170, "cm"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43077. {
  43078. front: {
  43079. height: math.unit(5, "feet"),
  43080. weight: math.unit(120, "lb"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/roxanne-voltaire/front.svg",
  43084. extra: 1901/1779,
  43085. bottom: 53/1954
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(5, "feet"),
  43093. default: true
  43094. },
  43095. {
  43096. name: "Giant",
  43097. height: math.unit(50, "feet")
  43098. },
  43099. {
  43100. name: "Titan",
  43101. height: math.unit(500, "feet")
  43102. },
  43103. {
  43104. name: "Macro",
  43105. height: math.unit(5000, "feet")
  43106. },
  43107. {
  43108. name: "Megamacro",
  43109. height: math.unit(50000, "feet")
  43110. },
  43111. {
  43112. name: "Gigamacro",
  43113. height: math.unit(500000, "feet")
  43114. },
  43115. {
  43116. name: "Teramacro",
  43117. height: math.unit(5e6, "feet")
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(6 + 2/12, "feet"),
  43126. name: "Front",
  43127. image: {
  43128. source: "./media/characters/squeaks/front.svg",
  43129. extra: 1823/1768,
  43130. bottom: 138/1961
  43131. }
  43132. },
  43133. },
  43134. [
  43135. {
  43136. name: "Micro",
  43137. height: math.unit(0.5, "inches")
  43138. },
  43139. {
  43140. name: "Normal",
  43141. height: math.unit(6 + 2/12, "feet"),
  43142. default: true
  43143. },
  43144. {
  43145. name: "Macro",
  43146. height: math.unit(600, "feet")
  43147. },
  43148. ]
  43149. ))
  43150. characterMakers.push(() => makeCharacter(
  43151. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43152. {
  43153. front: {
  43154. height: math.unit(1.72, "meters"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/archinger/front.svg",
  43158. extra: 1861/1675,
  43159. bottom: 125/1986
  43160. }
  43161. },
  43162. back: {
  43163. height: math.unit(1.72, "meters"),
  43164. name: "Back",
  43165. image: {
  43166. source: "./media/characters/archinger/back.svg",
  43167. extra: 1844/1701,
  43168. bottom: 104/1948
  43169. }
  43170. },
  43171. cock: {
  43172. height: math.unit(0.59, "feet"),
  43173. name: "Cock",
  43174. image: {
  43175. source: "./media/characters/archinger/cock.svg"
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Normal",
  43182. height: math.unit(1.72, "meters"),
  43183. default: true
  43184. },
  43185. {
  43186. name: "Macro",
  43187. height: math.unit(84, "meters")
  43188. },
  43189. {
  43190. name: "Macro+",
  43191. height: math.unit(112, "meters")
  43192. },
  43193. {
  43194. name: "Macro++",
  43195. height: math.unit(960, "meters")
  43196. },
  43197. {
  43198. name: "Macro+++",
  43199. height: math.unit(4, "km")
  43200. },
  43201. {
  43202. name: "Macro++++",
  43203. height: math.unit(48, "km")
  43204. },
  43205. {
  43206. name: "Macro+++++",
  43207. height: math.unit(4500, "km")
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43213. {
  43214. front: {
  43215. height: math.unit(5 + 5/12, "feet"),
  43216. name: "Front",
  43217. image: {
  43218. source: "./media/characters/alsnapz/front.svg",
  43219. extra: 1157/1065,
  43220. bottom: 42/1199
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "Normal",
  43227. height: math.unit(5 + 5/12, "feet"),
  43228. default: true
  43229. },
  43230. ]
  43231. ))
  43232. characterMakers.push(() => makeCharacter(
  43233. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43234. {
  43235. side: {
  43236. height: math.unit(3.2, "earths"),
  43237. name: "Side",
  43238. image: {
  43239. source: "./media/characters/mag/side.svg",
  43240. extra: 1331/1008,
  43241. bottom: 52/1383
  43242. }
  43243. },
  43244. wing: {
  43245. height: math.unit(1.94, "earths"),
  43246. name: "Wing",
  43247. image: {
  43248. source: "./media/characters/mag/wing.svg"
  43249. }
  43250. },
  43251. dick: {
  43252. height: math.unit(1.8, "earths"),
  43253. name: "Dick",
  43254. image: {
  43255. source: "./media/characters/mag/dick.svg"
  43256. }
  43257. },
  43258. ass: {
  43259. height: math.unit(1.33, "earths"),
  43260. name: "Ass",
  43261. image: {
  43262. source: "./media/characters/mag/ass.svg"
  43263. }
  43264. },
  43265. head: {
  43266. height: math.unit(1.1, "earths"),
  43267. name: "Head",
  43268. image: {
  43269. source: "./media/characters/mag/head.svg"
  43270. }
  43271. },
  43272. maw: {
  43273. height: math.unit(1.62, "earths"),
  43274. name: "Maw",
  43275. image: {
  43276. source: "./media/characters/mag/maw.svg"
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Small",
  43283. height: math.unit(162, "feet")
  43284. },
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(3.2, "earths"),
  43288. default: true
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43294. {
  43295. front: {
  43296. height: math.unit(512, "feet"),
  43297. weight: math.unit(63509, "tonnes"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/vorrel-harroc/front.svg",
  43301. extra: 1075/1063,
  43302. bottom: 62/1137
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(10, "feet")
  43310. },
  43311. {
  43312. name: "Macro",
  43313. height: math.unit(512, "feet"),
  43314. default: true
  43315. },
  43316. {
  43317. name: "Megamacro",
  43318. height: math.unit(256, "miles")
  43319. },
  43320. {
  43321. name: "Gigamacro",
  43322. height: math.unit(4096, "miles")
  43323. },
  43324. ]
  43325. ))
  43326. characterMakers.push(() => makeCharacter(
  43327. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43328. {
  43329. side: {
  43330. height: math.unit(50, "feet"),
  43331. name: "Side",
  43332. image: {
  43333. source: "./media/characters/froimar/side.svg",
  43334. extra: 855/638,
  43335. bottom: 99/954
  43336. }
  43337. },
  43338. },
  43339. [
  43340. {
  43341. name: "Macro",
  43342. height: math.unit(50, "feet"),
  43343. default: true
  43344. },
  43345. ]
  43346. ))
  43347. characterMakers.push(() => makeCharacter(
  43348. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43349. {
  43350. front: {
  43351. height: math.unit(210, "miles"),
  43352. name: "Front",
  43353. image: {
  43354. source: "./media/characters/timothy/front.svg",
  43355. extra: 1007/943,
  43356. bottom: 62/1069
  43357. }
  43358. },
  43359. frontSkirt: {
  43360. height: math.unit(210, "miles"),
  43361. name: "Front (Skirt)",
  43362. image: {
  43363. source: "./media/characters/timothy/front-skirt.svg",
  43364. extra: 1007/943,
  43365. bottom: 62/1069
  43366. }
  43367. },
  43368. frontCoat: {
  43369. height: math.unit(210, "miles"),
  43370. name: "Front (Coat)",
  43371. image: {
  43372. source: "./media/characters/timothy/front-coat.svg",
  43373. extra: 1007/943,
  43374. bottom: 62/1069
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Macro",
  43381. height: math.unit(210, "miles"),
  43382. default: true
  43383. },
  43384. {
  43385. name: "Megamacro",
  43386. height: math.unit(210000, "miles")
  43387. },
  43388. ]
  43389. ))
  43390. characterMakers.push(() => makeCharacter(
  43391. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43392. {
  43393. front: {
  43394. height: math.unit(188, "feet"),
  43395. name: "Front",
  43396. image: {
  43397. source: "./media/characters/pyotr/front.svg",
  43398. extra: 1912/1826,
  43399. bottom: 18/1930
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Macro",
  43406. height: math.unit(188, "feet"),
  43407. default: true
  43408. },
  43409. {
  43410. name: "Megamacro",
  43411. height: math.unit(8, "miles")
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43417. {
  43418. side: {
  43419. height: math.unit(10, "feet"),
  43420. weight: math.unit(4500, "lb"),
  43421. name: "Side",
  43422. image: {
  43423. source: "./media/characters/ackart/side.svg",
  43424. extra: 1776/1668,
  43425. bottom: 116/1892
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(10, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43439. {
  43440. side: {
  43441. height: math.unit(21, "feet"),
  43442. name: "Side",
  43443. image: {
  43444. source: "./media/characters/nolow/side.svg",
  43445. extra: 1484/1434,
  43446. bottom: 85/1569
  43447. }
  43448. },
  43449. sideErect: {
  43450. height: math.unit(21, "feet"),
  43451. name: "Side-erect",
  43452. image: {
  43453. source: "./media/characters/nolow/side-erect.svg",
  43454. extra: 1484/1434,
  43455. bottom: 85/1569
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Regular",
  43462. height: math.unit(12, "feet")
  43463. },
  43464. {
  43465. name: "Big Chee",
  43466. height: math.unit(21, "feet"),
  43467. default: true
  43468. },
  43469. ]
  43470. ))
  43471. characterMakers.push(() => makeCharacter(
  43472. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43473. {
  43474. front: {
  43475. height: math.unit(7, "feet"),
  43476. weight: math.unit(250, "lb"),
  43477. name: "Front",
  43478. image: {
  43479. source: "./media/characters/nines/front.svg",
  43480. extra: 1741/1607,
  43481. bottom: 41/1782
  43482. }
  43483. },
  43484. side: {
  43485. height: math.unit(7, "feet"),
  43486. weight: math.unit(250, "lb"),
  43487. name: "Side",
  43488. image: {
  43489. source: "./media/characters/nines/side.svg",
  43490. extra: 1854/1735,
  43491. bottom: 93/1947
  43492. }
  43493. },
  43494. back: {
  43495. height: math.unit(7, "feet"),
  43496. weight: math.unit(250, "lb"),
  43497. name: "Back",
  43498. image: {
  43499. source: "./media/characters/nines/back.svg",
  43500. extra: 1748/1615,
  43501. bottom: 20/1768
  43502. }
  43503. },
  43504. },
  43505. [
  43506. {
  43507. name: "Megamacro",
  43508. height: math.unit(99, "km"),
  43509. default: true
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(5 + 10/12, "feet"),
  43518. weight: math.unit(210, "lb"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/zenith/front.svg",
  43522. extra: 1531/1452,
  43523. bottom: 198/1729
  43524. }
  43525. },
  43526. back: {
  43527. height: math.unit(5 + 10/12, "feet"),
  43528. weight: math.unit(210, "lb"),
  43529. name: "Back",
  43530. image: {
  43531. source: "./media/characters/zenith/back.svg",
  43532. extra: 1571/1487,
  43533. bottom: 75/1646
  43534. }
  43535. },
  43536. },
  43537. [
  43538. {
  43539. name: "Normal",
  43540. height: math.unit(5 + 10/12, "feet"),
  43541. default: true
  43542. }
  43543. ]
  43544. ))
  43545. characterMakers.push(() => makeCharacter(
  43546. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43547. {
  43548. front: {
  43549. height: math.unit(4, "feet"),
  43550. weight: math.unit(60, "lb"),
  43551. name: "Front",
  43552. image: {
  43553. source: "./media/characters/jasper/front.svg",
  43554. extra: 1450/1379,
  43555. bottom: 19/1469
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(4, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(6 + 5/12, "feet"),
  43572. weight: math.unit(290, "lb"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/tiberius-thyben/front.svg",
  43576. extra: 757/739,
  43577. bottom: 39/796
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Micro",
  43584. height: math.unit(1.5, "inches")
  43585. },
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(6 + 5/12, "feet"),
  43589. default: true
  43590. },
  43591. {
  43592. name: "Macro",
  43593. height: math.unit(300, "feet")
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43599. {
  43600. front: {
  43601. height: math.unit(5 + 6/12, "feet"),
  43602. weight: math.unit(60, "kg"),
  43603. name: "Front",
  43604. image: {
  43605. source: "./media/characters/sabre/front.svg",
  43606. extra: 738/671,
  43607. bottom: 27/765
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Teeny",
  43614. height: math.unit(2, "inches")
  43615. },
  43616. {
  43617. name: "Smol",
  43618. height: math.unit(8, "inches")
  43619. },
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(5 + 6/12, "feet"),
  43623. default: true
  43624. },
  43625. {
  43626. name: "Mini-Macro",
  43627. height: math.unit(15, "feet")
  43628. },
  43629. {
  43630. name: "Macro",
  43631. height: math.unit(50, "feet")
  43632. },
  43633. ]
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43637. {
  43638. front: {
  43639. height: math.unit(6 + 4/12, "feet"),
  43640. weight: math.unit(170, "lb"),
  43641. name: "Front",
  43642. image: {
  43643. source: "./media/characters/charlie/front.svg",
  43644. extra: 1348/1228,
  43645. bottom: 15/1363
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Macro",
  43652. height: math.unit(1700, "meters"),
  43653. default: true
  43654. },
  43655. {
  43656. name: "MegaMacro",
  43657. height: math.unit(20400, "meters")
  43658. },
  43659. ]
  43660. ))
  43661. characterMakers.push(() => makeCharacter(
  43662. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43663. {
  43664. front: {
  43665. height: math.unit(6 + 3/12, "feet"),
  43666. weight: math.unit(185, "lb"),
  43667. name: "Front",
  43668. image: {
  43669. source: "./media/characters/susan-grant/front.svg",
  43670. extra: 1351/1327,
  43671. bottom: 26/1377
  43672. }
  43673. },
  43674. },
  43675. [
  43676. {
  43677. name: "Normal",
  43678. height: math.unit(6 + 3/12, "feet"),
  43679. default: true
  43680. },
  43681. {
  43682. name: "Macro",
  43683. height: math.unit(225, "feet")
  43684. },
  43685. {
  43686. name: "Macro+",
  43687. height: math.unit(900, "feet")
  43688. },
  43689. {
  43690. name: "MegaMacro",
  43691. height: math.unit(14400, "feet")
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(5 + 4/12, "feet"),
  43700. weight: math.unit(110, "lb"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/axel-isanov/front.svg",
  43704. extra: 1096/1065,
  43705. bottom: 13/1109
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Normal",
  43712. height: math.unit(5 + 4/12, "feet"),
  43713. default: true
  43714. },
  43715. ]
  43716. ))
  43717. characterMakers.push(() => makeCharacter(
  43718. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43719. {
  43720. front: {
  43721. height: math.unit(9, "feet"),
  43722. weight: math.unit(467, "lb"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/necahual/front.svg",
  43726. extra: 920/873,
  43727. bottom: 26/946
  43728. }
  43729. },
  43730. back: {
  43731. height: math.unit(9, "feet"),
  43732. weight: math.unit(467, "lb"),
  43733. name: "Back",
  43734. image: {
  43735. source: "./media/characters/necahual/back.svg",
  43736. extra: 930/884,
  43737. bottom: 16/946
  43738. }
  43739. },
  43740. frontUnderwear: {
  43741. height: math.unit(9, "feet"),
  43742. weight: math.unit(467, "lb"),
  43743. name: "Front (Underwear)",
  43744. image: {
  43745. source: "./media/characters/necahual/front-underwear.svg",
  43746. extra: 920/873,
  43747. bottom: 26/946
  43748. }
  43749. },
  43750. frontDressed: {
  43751. height: math.unit(9, "feet"),
  43752. weight: math.unit(467, "lb"),
  43753. name: "Front (Dressed)",
  43754. image: {
  43755. source: "./media/characters/necahual/front-dressed.svg",
  43756. extra: 920/873,
  43757. bottom: 26/946
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Comprsesed",
  43764. height: math.unit(9, "feet")
  43765. },
  43766. {
  43767. name: "Natural",
  43768. height: math.unit(15, "feet"),
  43769. default: true
  43770. },
  43771. {
  43772. name: "Boosted",
  43773. height: math.unit(50, "feet")
  43774. },
  43775. {
  43776. name: "Boosted+",
  43777. height: math.unit(150, "feet")
  43778. },
  43779. {
  43780. name: "Max",
  43781. height: math.unit(500, "feet")
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43787. {
  43788. front: {
  43789. height: math.unit(22 + 1/12, "feet"),
  43790. weight: math.unit(3200, "lb"),
  43791. name: "Front",
  43792. image: {
  43793. source: "./media/characters/theo-acacia/front.svg",
  43794. extra: 1796/1741,
  43795. bottom: 83/1879
  43796. }
  43797. },
  43798. frontUnderwear: {
  43799. height: math.unit(22 + 1/12, "feet"),
  43800. weight: math.unit(3200, "lb"),
  43801. name: "Front (Underwear)",
  43802. image: {
  43803. source: "./media/characters/theo-acacia/front-underwear.svg",
  43804. extra: 1796/1741,
  43805. bottom: 83/1879
  43806. }
  43807. },
  43808. frontNude: {
  43809. height: math.unit(22 + 1/12, "feet"),
  43810. weight: math.unit(3200, "lb"),
  43811. name: "Front (Nude)",
  43812. image: {
  43813. source: "./media/characters/theo-acacia/front-nude.svg",
  43814. extra: 1796/1741,
  43815. bottom: 83/1879
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(22 + 1/12, "feet"),
  43823. default: true
  43824. },
  43825. ]
  43826. ))
  43827. characterMakers.push(() => makeCharacter(
  43828. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43829. {
  43830. front: {
  43831. height: math.unit(20, "feet"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/astra/front.svg",
  43835. extra: 1850/1714,
  43836. bottom: 106/1956
  43837. }
  43838. },
  43839. frontUndressed: {
  43840. height: math.unit(20, "feet"),
  43841. name: "Front (Undressed)",
  43842. image: {
  43843. source: "./media/characters/astra/front-undressed.svg",
  43844. extra: 1926/1749,
  43845. bottom: 0/1926
  43846. }
  43847. },
  43848. hand: {
  43849. height: math.unit(1.53, "feet"),
  43850. name: "Hand",
  43851. image: {
  43852. source: "./media/characters/astra/hand.svg"
  43853. }
  43854. },
  43855. paw: {
  43856. height: math.unit(1.53, "feet"),
  43857. name: "Paw",
  43858. image: {
  43859. source: "./media/characters/astra/paw.svg"
  43860. }
  43861. },
  43862. },
  43863. [
  43864. {
  43865. name: "Smallest",
  43866. height: math.unit(20, "feet")
  43867. },
  43868. {
  43869. name: "Normal",
  43870. height: math.unit(1e9, "miles"),
  43871. default: true
  43872. },
  43873. {
  43874. name: "Larger",
  43875. height: math.unit(5, "multiverses")
  43876. },
  43877. {
  43878. name: "Largest",
  43879. height: math.unit(1e9, "multiverses")
  43880. },
  43881. ]
  43882. ))
  43883. characterMakers.push(() => makeCharacter(
  43884. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43885. {
  43886. front: {
  43887. height: math.unit(8, "feet"),
  43888. name: "Front",
  43889. image: {
  43890. source: "./media/characters/breanna/front.svg",
  43891. extra: 1912/1632,
  43892. bottom: 33/1945
  43893. }
  43894. },
  43895. },
  43896. [
  43897. {
  43898. name: "Smallest",
  43899. height: math.unit(8, "feet")
  43900. },
  43901. {
  43902. name: "Normal",
  43903. height: math.unit(1, "mile"),
  43904. default: true
  43905. },
  43906. {
  43907. name: "Maximum",
  43908. height: math.unit(1500000000000, "lightyears")
  43909. },
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43914. {
  43915. front: {
  43916. height: math.unit(5 + 11/12, "feet"),
  43917. weight: math.unit(155, "lb"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/cai/front.svg",
  43921. extra: 1823/1702,
  43922. bottom: 32/1855
  43923. }
  43924. },
  43925. back: {
  43926. height: math.unit(5 + 11/12, "feet"),
  43927. weight: math.unit(155, "lb"),
  43928. name: "Back",
  43929. image: {
  43930. source: "./media/characters/cai/back.svg",
  43931. extra: 1809/1708,
  43932. bottom: 31/1840
  43933. }
  43934. },
  43935. },
  43936. [
  43937. {
  43938. name: "Normal",
  43939. height: math.unit(5 + 11/12, "feet"),
  43940. default: true
  43941. },
  43942. {
  43943. name: "Big",
  43944. height: math.unit(15, "feet")
  43945. },
  43946. {
  43947. name: "Macro",
  43948. height: math.unit(200, "feet")
  43949. },
  43950. ]
  43951. ))
  43952. characterMakers.push(() => makeCharacter(
  43953. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43954. {
  43955. front: {
  43956. height: math.unit(5 + 6/12, "feet"),
  43957. weight: math.unit(160, "lb"),
  43958. name: "Front",
  43959. image: {
  43960. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43961. extra: 1227/1174,
  43962. bottom: 37/1264
  43963. }
  43964. },
  43965. },
  43966. [
  43967. {
  43968. name: "Macro",
  43969. height: math.unit(444, "meters"),
  43970. default: true
  43971. },
  43972. ]
  43973. ))
  43974. characterMakers.push(() => makeCharacter(
  43975. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43976. {
  43977. front: {
  43978. height: math.unit(18 + 7/12, "feet"),
  43979. name: "Front",
  43980. image: {
  43981. source: "./media/characters/rex/front.svg",
  43982. extra: 1941/1807,
  43983. bottom: 66/2007
  43984. }
  43985. },
  43986. back: {
  43987. height: math.unit(18 + 7/12, "feet"),
  43988. name: "Back",
  43989. image: {
  43990. source: "./media/characters/rex/back.svg",
  43991. extra: 1937/1822,
  43992. bottom: 42/1979
  43993. }
  43994. },
  43995. boot: {
  43996. height: math.unit(3.45, "feet"),
  43997. name: "Boot",
  43998. image: {
  43999. source: "./media/characters/rex/boot.svg"
  44000. }
  44001. },
  44002. paw: {
  44003. height: math.unit(4.17, "feet"),
  44004. name: "Paw",
  44005. image: {
  44006. source: "./media/characters/rex/paw.svg"
  44007. }
  44008. },
  44009. head: {
  44010. height: math.unit(6.728, "feet"),
  44011. name: "Head",
  44012. image: {
  44013. source: "./media/characters/rex/head.svg"
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Nano",
  44020. height: math.unit(18 + 7/12, "feet")
  44021. },
  44022. {
  44023. name: "Micro",
  44024. height: math.unit(1.5, "megameters")
  44025. },
  44026. {
  44027. name: "Normal",
  44028. height: math.unit(440, "megameters"),
  44029. default: true
  44030. },
  44031. {
  44032. name: "Macro",
  44033. height: math.unit(2.5, "gigameters")
  44034. },
  44035. {
  44036. name: "Gigamacro",
  44037. height: math.unit(2, "galaxies")
  44038. },
  44039. ]
  44040. ))
  44041. characterMakers.push(() => makeCharacter(
  44042. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44043. {
  44044. side: {
  44045. height: math.unit(32, "feet"),
  44046. weight: math.unit(250000, "lb"),
  44047. name: "Side",
  44048. image: {
  44049. source: "./media/characters/silverwing/side.svg",
  44050. extra: 1100/1019,
  44051. bottom: 204/1304
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Normal",
  44058. height: math.unit(32, "feet"),
  44059. default: true
  44060. },
  44061. ]
  44062. ))
  44063. characterMakers.push(() => makeCharacter(
  44064. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44065. {
  44066. front: {
  44067. height: math.unit(6 + 6/12, "feet"),
  44068. weight: math.unit(350, "lb"),
  44069. name: "Front",
  44070. image: {
  44071. source: "./media/characters/tristan-hawthorne/front.svg",
  44072. extra: 1159/1124,
  44073. bottom: 37/1196
  44074. },
  44075. form: "labrador",
  44076. default: true
  44077. },
  44078. skunkFront: {
  44079. height: math.unit(4 + 6/12, "feet"),
  44080. weight: math.unit(120, "lb"),
  44081. name: "Front",
  44082. image: {
  44083. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44084. extra: 1609/1551,
  44085. bottom: 169/1778
  44086. },
  44087. form: "skunk",
  44088. default: true
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Normal",
  44094. height: math.unit(6 + 6/12, "feet"),
  44095. form: "labrador",
  44096. default: true
  44097. },
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(4 + 6/12, "feet"),
  44101. form: "skunk",
  44102. default: true
  44103. },
  44104. ],
  44105. {
  44106. "labrador": {
  44107. name: "Labrador",
  44108. default: true
  44109. },
  44110. "skunk": {
  44111. name: "Skunk"
  44112. }
  44113. }
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44117. {
  44118. front: {
  44119. height: math.unit(5 + 11/12, "feet"),
  44120. weight: math.unit(190, "lb"),
  44121. name: "Front",
  44122. image: {
  44123. source: "./media/characters/mizu/front.svg",
  44124. extra: 1988/1788,
  44125. bottom: 14/2002
  44126. }
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Normal",
  44132. height: math.unit(5 + 11/12, "feet"),
  44133. default: true
  44134. },
  44135. ]
  44136. ))
  44137. characterMakers.push(() => makeCharacter(
  44138. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44139. {
  44140. front: {
  44141. height: math.unit(1.7, "feet"),
  44142. weight: math.unit(50, "lb"),
  44143. name: "Front",
  44144. image: {
  44145. source: "./media/characters/dechroma/front.svg",
  44146. extra: 1095/859,
  44147. bottom: 64/1159
  44148. }
  44149. },
  44150. },
  44151. [
  44152. {
  44153. name: "Normal",
  44154. height: math.unit(1.7, "feet"),
  44155. default: true
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44161. {
  44162. side: {
  44163. height: math.unit(30, "feet"),
  44164. name: "Side",
  44165. image: {
  44166. source: "./media/characters/veluren-thanazel/side.svg",
  44167. extra: 1611/633,
  44168. bottom: 118/1729
  44169. }
  44170. },
  44171. front: {
  44172. height: math.unit(30, "feet"),
  44173. name: "Front",
  44174. image: {
  44175. source: "./media/characters/veluren-thanazel/front.svg",
  44176. extra: 1486/636,
  44177. bottom: 238/1724
  44178. }
  44179. },
  44180. head: {
  44181. height: math.unit(21.4, "feet"),
  44182. name: "Head",
  44183. image: {
  44184. source: "./media/characters/veluren-thanazel/head.svg"
  44185. }
  44186. },
  44187. genitals: {
  44188. height: math.unit(19.4, "feet"),
  44189. name: "Genitals",
  44190. image: {
  44191. source: "./media/characters/veluren-thanazel/genitals.svg"
  44192. }
  44193. },
  44194. },
  44195. [
  44196. {
  44197. name: "Social",
  44198. height: math.unit(6, "feet")
  44199. },
  44200. {
  44201. name: "Play",
  44202. height: math.unit(12, "feet")
  44203. },
  44204. {
  44205. name: "True",
  44206. height: math.unit(30, "feet"),
  44207. default: true
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44213. {
  44214. front: {
  44215. height: math.unit(7 + 6/12, "feet"),
  44216. weight: math.unit(500, "kg"),
  44217. name: "Front",
  44218. image: {
  44219. source: "./media/characters/arcturas/front.svg",
  44220. extra: 1700/1500,
  44221. bottom: 145/1845
  44222. }
  44223. },
  44224. },
  44225. [
  44226. {
  44227. name: "Normal",
  44228. height: math.unit(7 + 6/12, "feet"),
  44229. default: true
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44235. {
  44236. side: {
  44237. height: math.unit(6, "feet"),
  44238. weight: math.unit(2, "tons"),
  44239. name: "Side",
  44240. image: {
  44241. source: "./media/characters/vitaen/side.svg",
  44242. extra: 1157/617,
  44243. bottom: 122/1279
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Normal",
  44250. height: math.unit(6, "feet"),
  44251. default: true
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(19, "feet"),
  44260. name: "Front",
  44261. image: {
  44262. source: "./media/characters/fia-dreamweaver/front.svg",
  44263. extra: 1630/1504,
  44264. bottom: 25/1655
  44265. }
  44266. },
  44267. },
  44268. [
  44269. {
  44270. name: "Normal",
  44271. height: math.unit(19, "feet"),
  44272. default: true
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44278. {
  44279. front: {
  44280. height: math.unit(5 + 4/12, "feet"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/artan/front.svg",
  44284. extra: 1618/1535,
  44285. bottom: 46/1664
  44286. }
  44287. },
  44288. back: {
  44289. height: math.unit(5 + 4/12, "feet"),
  44290. name: "Back",
  44291. image: {
  44292. source: "./media/characters/artan/back.svg",
  44293. extra: 1618/1543,
  44294. bottom: 31/1649
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Normal",
  44301. height: math.unit(5 + 4/12, "feet"),
  44302. default: true
  44303. },
  44304. ]
  44305. ))
  44306. characterMakers.push(() => makeCharacter(
  44307. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44308. {
  44309. side: {
  44310. height: math.unit(182, "cm"),
  44311. weight: math.unit(1000, "lb"),
  44312. name: "Side",
  44313. image: {
  44314. source: "./media/characters/silver-dragon/side.svg",
  44315. extra: 710/287,
  44316. bottom: 88/798
  44317. }
  44318. },
  44319. },
  44320. [
  44321. {
  44322. name: "Normal",
  44323. height: math.unit(182, "cm"),
  44324. default: true
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44330. {
  44331. side: {
  44332. height: math.unit(6 + 6/12, "feet"),
  44333. weight: math.unit(1.5, "tons"),
  44334. name: "Side",
  44335. image: {
  44336. source: "./media/characters/zephyr/side.svg",
  44337. extra: 1433/586,
  44338. bottom: 109/1542
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(6 + 6/12, "feet"),
  44346. default: true
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44352. {
  44353. side: {
  44354. height: math.unit(1, "feet"),
  44355. name: "Side",
  44356. image: {
  44357. source: "./media/characters/vixye/side.svg",
  44358. extra: 632/541,
  44359. bottom: 0/632
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(1, "feet"),
  44367. default: true
  44368. },
  44369. {
  44370. name: "True",
  44371. height: math.unit(1e15, "multiverses")
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44377. {
  44378. front: {
  44379. height: math.unit(8 + 2/12, "feet"),
  44380. weight: math.unit(650, "lb"),
  44381. name: "Front",
  44382. image: {
  44383. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44384. extra: 1174/1137,
  44385. bottom: 82/1256
  44386. }
  44387. },
  44388. back: {
  44389. height: math.unit(8 + 2/12, "feet"),
  44390. weight: math.unit(650, "lb"),
  44391. name: "Back",
  44392. image: {
  44393. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44394. extra: 1204/1157,
  44395. bottom: 46/1250
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Wildform",
  44402. height: math.unit(8 + 2/12, "feet"),
  44403. default: true
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44409. {
  44410. front: {
  44411. height: math.unit(18, "feet"),
  44412. name: "Front",
  44413. image: {
  44414. source: "./media/characters/cyphin/front.svg",
  44415. extra: 970/886,
  44416. bottom: 42/1012
  44417. }
  44418. },
  44419. back: {
  44420. height: math.unit(18, "feet"),
  44421. name: "Back",
  44422. image: {
  44423. source: "./media/characters/cyphin/back.svg",
  44424. extra: 1009/894,
  44425. bottom: 24/1033
  44426. }
  44427. },
  44428. head: {
  44429. height: math.unit(5.05, "feet"),
  44430. name: "Head",
  44431. image: {
  44432. source: "./media/characters/cyphin/head.svg"
  44433. }
  44434. },
  44435. tailbud: {
  44436. height: math.unit(5, "feet"),
  44437. name: "Tailbud",
  44438. image: {
  44439. source: "./media/characters/cyphin/tailbud.svg"
  44440. }
  44441. },
  44442. },
  44443. [
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44448. {
  44449. side: {
  44450. height: math.unit(10, "feet"),
  44451. weight: math.unit(6, "tons"),
  44452. name: "Side",
  44453. image: {
  44454. source: "./media/characters/raijin/side.svg",
  44455. extra: 1529/613,
  44456. bottom: 337/1866
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Normal",
  44463. height: math.unit(10, "feet"),
  44464. default: true
  44465. },
  44466. ]
  44467. ))
  44468. characterMakers.push(() => makeCharacter(
  44469. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44470. {
  44471. side: {
  44472. height: math.unit(9, "feet"),
  44473. name: "Side",
  44474. image: {
  44475. source: "./media/characters/nilghais/side.svg",
  44476. extra: 1047/744,
  44477. bottom: 91/1138
  44478. }
  44479. },
  44480. head: {
  44481. height: math.unit(3.14, "feet"),
  44482. name: "Head",
  44483. image: {
  44484. source: "./media/characters/nilghais/head.svg"
  44485. }
  44486. },
  44487. mouth: {
  44488. height: math.unit(4.6, "feet"),
  44489. name: "Mouth",
  44490. image: {
  44491. source: "./media/characters/nilghais/mouth.svg"
  44492. }
  44493. },
  44494. wings: {
  44495. height: math.unit(24, "feet"),
  44496. name: "Wings",
  44497. image: {
  44498. source: "./media/characters/nilghais/wings.svg"
  44499. }
  44500. },
  44501. ass: {
  44502. height: math.unit(6.12, "feet"),
  44503. name: "Ass",
  44504. image: {
  44505. source: "./media/characters/nilghais/ass.svg"
  44506. }
  44507. },
  44508. },
  44509. [
  44510. {
  44511. name: "Normal",
  44512. height: math.unit(9, "feet"),
  44513. default: true
  44514. },
  44515. ]
  44516. ))
  44517. characterMakers.push(() => makeCharacter(
  44518. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44519. {
  44520. regular: {
  44521. height: math.unit(16 + 2/12, "feet"),
  44522. weight: math.unit(2300, "lb"),
  44523. name: "Regular",
  44524. image: {
  44525. source: "./media/characters/zolgar/regular.svg",
  44526. extra: 1246/1004,
  44527. bottom: 124/1370
  44528. }
  44529. },
  44530. boxers: {
  44531. height: math.unit(16 + 2/12, "feet"),
  44532. weight: math.unit(2300, "lb"),
  44533. name: "Boxers",
  44534. image: {
  44535. source: "./media/characters/zolgar/boxers.svg",
  44536. extra: 1246/1004,
  44537. bottom: 124/1370
  44538. }
  44539. },
  44540. armored: {
  44541. height: math.unit(16 + 2/12, "feet"),
  44542. weight: math.unit(2300, "lb"),
  44543. name: "Armored",
  44544. image: {
  44545. source: "./media/characters/zolgar/armored.svg",
  44546. extra: 1246/1004,
  44547. bottom: 124/1370
  44548. }
  44549. },
  44550. goth: {
  44551. height: math.unit(16 + 2/12, "feet"),
  44552. weight: math.unit(2300, "lb"),
  44553. name: "Goth",
  44554. image: {
  44555. source: "./media/characters/zolgar/goth.svg",
  44556. extra: 1246/1004,
  44557. bottom: 124/1370
  44558. }
  44559. },
  44560. },
  44561. [
  44562. {
  44563. name: "Shrunken Down",
  44564. height: math.unit(9 + 2/12, "feet")
  44565. },
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(16 + 2/12, "feet"),
  44569. default: true
  44570. },
  44571. ]
  44572. ))
  44573. characterMakers.push(() => makeCharacter(
  44574. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44575. {
  44576. front: {
  44577. height: math.unit(6, "feet"),
  44578. weight: math.unit(168, "lb"),
  44579. name: "Front",
  44580. image: {
  44581. source: "./media/characters/luca/front.svg",
  44582. extra: 841/667,
  44583. bottom: 102/943
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Normal",
  44590. height: math.unit(6, "feet"),
  44591. default: true
  44592. },
  44593. ]
  44594. ))
  44595. characterMakers.push(() => makeCharacter(
  44596. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44597. {
  44598. side: {
  44599. height: math.unit(7 + 3/12, "feet"),
  44600. weight: math.unit(312, "lb"),
  44601. name: "Side",
  44602. image: {
  44603. source: "./media/characters/zezo/side.svg",
  44604. extra: 1192/1067,
  44605. bottom: 63/1255
  44606. }
  44607. },
  44608. },
  44609. [
  44610. {
  44611. name: "Normal",
  44612. height: math.unit(7 + 3/12, "feet"),
  44613. default: true
  44614. },
  44615. ]
  44616. ))
  44617. characterMakers.push(() => makeCharacter(
  44618. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44619. {
  44620. front: {
  44621. height: math.unit(5 + 5/12, "feet"),
  44622. weight: math.unit(170, "lb"),
  44623. name: "Front",
  44624. image: {
  44625. source: "./media/characters/mayso/front.svg",
  44626. extra: 1215/1108,
  44627. bottom: 16/1231
  44628. }
  44629. },
  44630. },
  44631. [
  44632. {
  44633. name: "Normal",
  44634. height: math.unit(5 + 5/12, "feet"),
  44635. default: true
  44636. },
  44637. ]
  44638. ))
  44639. characterMakers.push(() => makeCharacter(
  44640. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44641. {
  44642. front: {
  44643. height: math.unit(4 + 3/12, "feet"),
  44644. weight: math.unit(80, "lb"),
  44645. name: "Front",
  44646. image: {
  44647. source: "./media/characters/hess/front.svg",
  44648. extra: 1200/1123,
  44649. bottom: 16/1216
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Normal",
  44656. height: math.unit(4 + 3/12, "feet"),
  44657. default: true
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44663. {
  44664. front: {
  44665. height: math.unit(1.9, "meters"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/ashgar/front.svg",
  44669. extra: 1177/1146,
  44670. bottom: 99/1276
  44671. }
  44672. },
  44673. back: {
  44674. height: math.unit(1.9, "meters"),
  44675. name: "Back",
  44676. image: {
  44677. source: "./media/characters/ashgar/back.svg",
  44678. extra: 1201/1183,
  44679. bottom: 53/1254
  44680. }
  44681. },
  44682. feral: {
  44683. height: math.unit(1.4, "meters"),
  44684. name: "Feral",
  44685. image: {
  44686. source: "./media/characters/ashgar/feral.svg",
  44687. extra: 370/345,
  44688. bottom: 45/415
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "Normal",
  44695. height: math.unit(1.9, "meters"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44702. {
  44703. regular: {
  44704. height: math.unit(6, "feet"),
  44705. weight: math.unit(220, "lb"),
  44706. name: "Regular",
  44707. image: {
  44708. source: "./media/characters/phillip/regular.svg",
  44709. extra: 1373/1277,
  44710. bottom: 75/1448
  44711. }
  44712. },
  44713. dressed: {
  44714. height: math.unit(6, "feet"),
  44715. weight: math.unit(220, "lb"),
  44716. name: "Dressed",
  44717. image: {
  44718. source: "./media/characters/phillip/dressed.svg",
  44719. extra: 1373/1277,
  44720. bottom: 75/1448
  44721. }
  44722. },
  44723. paw: {
  44724. height: math.unit(1.44, "feet"),
  44725. name: "Paw",
  44726. image: {
  44727. source: "./media/characters/phillip/paw.svg"
  44728. }
  44729. },
  44730. },
  44731. [
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(6, "feet"),
  44735. default: true
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44741. {
  44742. side: {
  44743. height: math.unit(42, "feet"),
  44744. name: "Side",
  44745. image: {
  44746. source: "./media/characters/uvula/side.svg",
  44747. extra: 683/586,
  44748. bottom: 60/743
  44749. }
  44750. },
  44751. front: {
  44752. height: math.unit(42, "feet"),
  44753. name: "Front",
  44754. image: {
  44755. source: "./media/characters/uvula/front.svg",
  44756. extra: 705/613,
  44757. bottom: 54/759
  44758. }
  44759. },
  44760. maw: {
  44761. height: math.unit(23.5, "feet"),
  44762. name: "Maw",
  44763. image: {
  44764. source: "./media/characters/uvula/maw.svg"
  44765. }
  44766. },
  44767. },
  44768. [
  44769. {
  44770. name: "Original Size",
  44771. height: math.unit(14, "inches")
  44772. },
  44773. {
  44774. name: "Human Size",
  44775. height: math.unit(6, "feet")
  44776. },
  44777. {
  44778. name: "Big",
  44779. height: math.unit(42, "feet"),
  44780. default: true
  44781. },
  44782. {
  44783. name: "Bigger",
  44784. height: math.unit(100, "feet")
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44790. {
  44791. front: {
  44792. height: math.unit(5 + 11/12, "feet"),
  44793. name: "Front",
  44794. image: {
  44795. source: "./media/characters/lannah/front.svg",
  44796. extra: 1208/1113,
  44797. bottom: 97/1305
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(5 + 11/12, "feet"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44811. {
  44812. front: {
  44813. height: math.unit(6 + 3/12, "feet"),
  44814. weight: math.unit(3.5, "tons"),
  44815. name: "Front",
  44816. image: {
  44817. source: "./media/characters/emberflame/front.svg",
  44818. extra: 1198/672,
  44819. bottom: 82/1280
  44820. }
  44821. },
  44822. side: {
  44823. height: math.unit(6 + 3/12, "feet"),
  44824. weight: math.unit(3.5, "tons"),
  44825. name: "Side",
  44826. image: {
  44827. source: "./media/characters/emberflame/side.svg",
  44828. extra: 938/527,
  44829. bottom: 56/994
  44830. }
  44831. },
  44832. },
  44833. [
  44834. {
  44835. name: "Normal",
  44836. height: math.unit(6 + 3/12, "feet"),
  44837. default: true
  44838. },
  44839. ]
  44840. ))
  44841. characterMakers.push(() => makeCharacter(
  44842. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44843. {
  44844. side: {
  44845. height: math.unit(17.5, "feet"),
  44846. weight: math.unit(35, "tons"),
  44847. name: "Side",
  44848. image: {
  44849. source: "./media/characters/sophie-ambrose/side.svg",
  44850. extra: 1573/1242,
  44851. bottom: 71/1644
  44852. }
  44853. },
  44854. maw: {
  44855. height: math.unit(7.4, "feet"),
  44856. name: "Maw",
  44857. image: {
  44858. source: "./media/characters/sophie-ambrose/maw.svg"
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Normal",
  44865. height: math.unit(17.5, "feet"),
  44866. default: true
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(280, "feet"),
  44875. weight: math.unit(550, "tons"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/king-mugi/front.svg",
  44879. extra: 1102/947,
  44880. bottom: 104/1206
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "King Mugi",
  44887. height: math.unit(280, "feet"),
  44888. default: true
  44889. },
  44890. ]
  44891. ))
  44892. characterMakers.push(() => makeCharacter(
  44893. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44894. {
  44895. front: {
  44896. height: math.unit(64, "meters"),
  44897. name: "Front",
  44898. image: {
  44899. source: "./media/characters/nova-fox/front.svg",
  44900. extra: 1310/1246,
  44901. bottom: 65/1375
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Macro",
  44908. height: math.unit(64, "meters"),
  44909. default: true
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(6 + 3/12, "feet"),
  44918. weight: math.unit(170, "lb"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/sam-bat/front.svg",
  44922. extra: 1601/1411,
  44923. bottom: 125/1726
  44924. }
  44925. },
  44926. back: {
  44927. height: math.unit(6 + 3/12, "feet"),
  44928. weight: math.unit(170, "lb"),
  44929. name: "Back",
  44930. image: {
  44931. source: "./media/characters/sam-bat/back.svg",
  44932. extra: 1577/1405,
  44933. bottom: 58/1635
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(6 + 3/12, "feet"),
  44941. default: true
  44942. },
  44943. ]
  44944. ))
  44945. characterMakers.push(() => makeCharacter(
  44946. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44947. {
  44948. front: {
  44949. height: math.unit(59, "feet"),
  44950. weight: math.unit(40000, "lb"),
  44951. name: "Front",
  44952. image: {
  44953. source: "./media/characters/inari/front.svg",
  44954. extra: 1884/1350,
  44955. bottom: 95/1979
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Gigantamax",
  44962. height: math.unit(59, "feet"),
  44963. default: true
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44969. {
  44970. front: {
  44971. height: math.unit(5 + 8/12, "feet"),
  44972. name: "Front",
  44973. image: {
  44974. source: "./media/characters/elizabeth/front.svg",
  44975. extra: 1395/1298,
  44976. bottom: 54/1449
  44977. }
  44978. },
  44979. mouth: {
  44980. height: math.unit(1.97, "feet"),
  44981. name: "Mouth",
  44982. image: {
  44983. source: "./media/characters/elizabeth/mouth.svg"
  44984. }
  44985. },
  44986. foot: {
  44987. height: math.unit(1.17, "feet"),
  44988. name: "Foot",
  44989. image: {
  44990. source: "./media/characters/elizabeth/foot.svg"
  44991. }
  44992. },
  44993. },
  44994. [
  44995. {
  44996. name: "Normal",
  44997. height: math.unit(5 + 8/12, "feet"),
  44998. default: true
  44999. },
  45000. {
  45001. name: "Minimacro",
  45002. height: math.unit(18, "feet")
  45003. },
  45004. {
  45005. name: "Macro",
  45006. height: math.unit(180, "feet")
  45007. },
  45008. ]
  45009. ))
  45010. characterMakers.push(() => makeCharacter(
  45011. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45012. {
  45013. front: {
  45014. height: math.unit(5 + 2/12, "feet"),
  45015. name: "Front",
  45016. image: {
  45017. source: "./media/characters/october-gossamer/front.svg",
  45018. extra: 505/454,
  45019. bottom: 7/512
  45020. }
  45021. },
  45022. back: {
  45023. height: math.unit(5 + 2/12, "feet"),
  45024. name: "Back",
  45025. image: {
  45026. source: "./media/characters/october-gossamer/back.svg",
  45027. extra: 501/454,
  45028. bottom: 11/512
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(5 + 2/12, "feet"),
  45036. default: true
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45042. {
  45043. front: {
  45044. height: math.unit(5, "feet"),
  45045. name: "Front",
  45046. image: {
  45047. source: "./media/characters/epiglottis/front.svg",
  45048. extra: 923/849,
  45049. bottom: 17/940
  45050. }
  45051. },
  45052. },
  45053. [
  45054. {
  45055. name: "Original Size",
  45056. height: math.unit(10, "inches")
  45057. },
  45058. {
  45059. name: "Human Size",
  45060. height: math.unit(5, "feet"),
  45061. default: true
  45062. },
  45063. {
  45064. name: "Big",
  45065. height: math.unit(25, "feet")
  45066. },
  45067. {
  45068. name: "Bigger",
  45069. height: math.unit(50, "feet")
  45070. },
  45071. {
  45072. name: "oh lawd",
  45073. height: math.unit(75, "feet")
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45079. {
  45080. front: {
  45081. height: math.unit(2 + 4/12, "feet"),
  45082. weight: math.unit(60, "lb"),
  45083. name: "Front",
  45084. image: {
  45085. source: "./media/characters/lerm/front.svg",
  45086. extra: 796/790,
  45087. bottom: 79/875
  45088. }
  45089. },
  45090. },
  45091. [
  45092. {
  45093. name: "Normal",
  45094. height: math.unit(2 + 4/12, "feet"),
  45095. default: true
  45096. },
  45097. ]
  45098. ))
  45099. characterMakers.push(() => makeCharacter(
  45100. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45101. {
  45102. front: {
  45103. height: math.unit(5.5, "feet"),
  45104. weight: math.unit(130, "lb"),
  45105. name: "Front",
  45106. image: {
  45107. source: "./media/characters/xena-nebadon/front.svg",
  45108. extra: 1828/1730,
  45109. bottom: 79/1907
  45110. }
  45111. },
  45112. },
  45113. [
  45114. {
  45115. name: "Tiny Puppy",
  45116. height: math.unit(3, "inches")
  45117. },
  45118. {
  45119. name: "Normal",
  45120. height: math.unit(5.5, "feet"),
  45121. default: true
  45122. },
  45123. {
  45124. name: "Lotta Lady",
  45125. height: math.unit(12, "feet")
  45126. },
  45127. {
  45128. name: "Pretty Big",
  45129. height: math.unit(100, "feet")
  45130. },
  45131. {
  45132. name: "Big",
  45133. height: math.unit(500, "feet")
  45134. },
  45135. {
  45136. name: "Skyscraper Toys",
  45137. height: math.unit(2500, "feet")
  45138. },
  45139. {
  45140. name: "Plane Catcher",
  45141. height: math.unit(8, "miles")
  45142. },
  45143. {
  45144. name: "Planet Toys",
  45145. height: math.unit(15, "earths")
  45146. },
  45147. {
  45148. name: "Stardust",
  45149. height: math.unit(0.25, "galaxies")
  45150. },
  45151. {
  45152. name: "Snacks",
  45153. height: math.unit(70, "universes")
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45159. {
  45160. front: {
  45161. height: math.unit(1.6, "meters"),
  45162. weight: math.unit(60, "kg"),
  45163. name: "Front",
  45164. image: {
  45165. source: "./media/characters/bounty/front.svg",
  45166. extra: 1426/1308,
  45167. bottom: 15/1441
  45168. }
  45169. },
  45170. back: {
  45171. height: math.unit(1.6, "meters"),
  45172. weight: math.unit(60, "kg"),
  45173. name: "Back",
  45174. image: {
  45175. source: "./media/characters/bounty/back.svg",
  45176. extra: 1417/1307,
  45177. bottom: 8/1425
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Normal",
  45184. height: math.unit(1.6, "meters"),
  45185. default: true
  45186. },
  45187. {
  45188. name: "Macro",
  45189. height: math.unit(300, "meters")
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45195. {
  45196. front: {
  45197. height: math.unit(2 + 8/12, "feet"),
  45198. weight: math.unit(15, "lb"),
  45199. name: "Front",
  45200. image: {
  45201. source: "./media/characters/mochi/front.svg",
  45202. extra: 1022/852,
  45203. bottom: 435/1457
  45204. }
  45205. },
  45206. back: {
  45207. height: math.unit(2 + 8/12, "feet"),
  45208. weight: math.unit(15, "lb"),
  45209. name: "Back",
  45210. image: {
  45211. source: "./media/characters/mochi/back.svg",
  45212. extra: 1335/1119,
  45213. bottom: 39/1374
  45214. }
  45215. },
  45216. bird: {
  45217. height: math.unit(2 + 8/12, "feet"),
  45218. weight: math.unit(15, "lb"),
  45219. name: "Bird",
  45220. image: {
  45221. source: "./media/characters/mochi/bird.svg",
  45222. extra: 1251/1113,
  45223. bottom: 178/1429
  45224. }
  45225. },
  45226. kaiju: {
  45227. height: math.unit(154, "feet"),
  45228. weight: math.unit(1e7, "lb"),
  45229. name: "Kaiju",
  45230. image: {
  45231. source: "./media/characters/mochi/kaiju.svg",
  45232. extra: 460/324,
  45233. bottom: 40/500
  45234. }
  45235. },
  45236. head: {
  45237. height: math.unit(1.21, "feet"),
  45238. name: "Head",
  45239. image: {
  45240. source: "./media/characters/mochi/head.svg"
  45241. }
  45242. },
  45243. alternateTail: {
  45244. height: math.unit(2 + 8/12, "feet"),
  45245. weight: math.unit(45, "lb"),
  45246. name: "Alternate Tail",
  45247. image: {
  45248. source: "./media/characters/mochi/alternate-tail.svg",
  45249. extra: 139/76,
  45250. bottom: 45/184
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Micro",
  45257. height: math.unit(2, "inches")
  45258. },
  45259. {
  45260. name: "Normal",
  45261. height: math.unit(2 + 8/12, "feet"),
  45262. default: true
  45263. },
  45264. {
  45265. name: "Macro",
  45266. height: math.unit(106, "feet")
  45267. },
  45268. ]
  45269. ))
  45270. characterMakers.push(() => makeCharacter(
  45271. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45272. {
  45273. front: {
  45274. height: math.unit(5.67, "feet"),
  45275. weight: math.unit(135, "lb"),
  45276. name: "Front",
  45277. image: {
  45278. source: "./media/characters/sarel/front.svg",
  45279. extra: 865/788,
  45280. bottom: 97/962
  45281. }
  45282. },
  45283. back: {
  45284. height: math.unit(5.67, "feet"),
  45285. weight: math.unit(135, "lb"),
  45286. name: "Back",
  45287. image: {
  45288. source: "./media/characters/sarel/back.svg",
  45289. extra: 857/777,
  45290. bottom: 32/889
  45291. }
  45292. },
  45293. chozoan: {
  45294. height: math.unit(5.67, "feet"),
  45295. weight: math.unit(135, "lb"),
  45296. name: "Chozoan",
  45297. image: {
  45298. source: "./media/characters/sarel/chozoan.svg",
  45299. extra: 865/788,
  45300. bottom: 97/962
  45301. }
  45302. },
  45303. current: {
  45304. height: math.unit(5.67, "feet"),
  45305. weight: math.unit(135, "lb"),
  45306. name: "Current",
  45307. image: {
  45308. source: "./media/characters/sarel/current.svg",
  45309. extra: 865/788,
  45310. bottom: 97/962
  45311. }
  45312. },
  45313. head: {
  45314. height: math.unit(1.77, "feet"),
  45315. name: "Head",
  45316. image: {
  45317. source: "./media/characters/sarel/head.svg"
  45318. }
  45319. },
  45320. claws: {
  45321. height: math.unit(1.8, "feet"),
  45322. name: "Claws",
  45323. image: {
  45324. source: "./media/characters/sarel/claws.svg"
  45325. }
  45326. },
  45327. clawsAlt: {
  45328. height: math.unit(1.8, "feet"),
  45329. name: "Claws-alt",
  45330. image: {
  45331. source: "./media/characters/sarel/claws-alt.svg"
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Normal",
  45338. height: math.unit(5.67, "feet"),
  45339. default: true
  45340. },
  45341. ]
  45342. ))
  45343. characterMakers.push(() => makeCharacter(
  45344. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45345. {
  45346. front: {
  45347. height: math.unit(5500, "feet"),
  45348. name: "Front",
  45349. image: {
  45350. source: "./media/characters/alyonia/front.svg",
  45351. extra: 1200/1135,
  45352. bottom: 29/1229
  45353. }
  45354. },
  45355. back: {
  45356. height: math.unit(5500, "feet"),
  45357. name: "Back",
  45358. image: {
  45359. source: "./media/characters/alyonia/back.svg",
  45360. extra: 1205/1138,
  45361. bottom: 10/1215
  45362. }
  45363. },
  45364. },
  45365. [
  45366. {
  45367. name: "Small",
  45368. height: math.unit(10, "feet")
  45369. },
  45370. {
  45371. name: "Macro",
  45372. height: math.unit(500, "feet")
  45373. },
  45374. {
  45375. name: "Mega Macro",
  45376. height: math.unit(5500, "feet"),
  45377. default: true
  45378. },
  45379. {
  45380. name: "Mega Macro+",
  45381. height: math.unit(500000, "feet")
  45382. },
  45383. {
  45384. name: "Giga Macro",
  45385. height: math.unit(3000, "miles")
  45386. },
  45387. {
  45388. name: "Tera Macro",
  45389. height: math.unit(2.8e6, "miles")
  45390. },
  45391. {
  45392. name: "Galactic",
  45393. height: math.unit(120000, "lightyears")
  45394. },
  45395. ]
  45396. ))
  45397. characterMakers.push(() => makeCharacter(
  45398. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45399. {
  45400. werewolf: {
  45401. height: math.unit(8, "feet"),
  45402. weight: math.unit(425, "lb"),
  45403. name: "Werewolf",
  45404. image: {
  45405. source: "./media/characters/autumn/werewolf.svg",
  45406. extra: 2154/2031,
  45407. bottom: 160/2314
  45408. }
  45409. },
  45410. human: {
  45411. height: math.unit(5 + 8/12, "feet"),
  45412. weight: math.unit(150, "lb"),
  45413. name: "Human",
  45414. image: {
  45415. source: "./media/characters/autumn/human.svg",
  45416. extra: 1200/1149,
  45417. bottom: 30/1230
  45418. }
  45419. },
  45420. },
  45421. [
  45422. {
  45423. name: "Normal",
  45424. height: math.unit(8, "feet"),
  45425. default: true
  45426. },
  45427. ]
  45428. ))
  45429. characterMakers.push(() => makeCharacter(
  45430. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45431. {
  45432. front: {
  45433. height: math.unit(8 + 5/12, "feet"),
  45434. weight: math.unit(825, "lb"),
  45435. name: "Front",
  45436. image: {
  45437. source: "./media/characters/cobalt-charizard/front.svg",
  45438. extra: 1268/1155,
  45439. bottom: 122/1390
  45440. }
  45441. },
  45442. side: {
  45443. height: math.unit(8 + 5/12, "feet"),
  45444. weight: math.unit(825, "lb"),
  45445. name: "Side",
  45446. image: {
  45447. source: "./media/characters/cobalt-charizard/side.svg",
  45448. extra: 1348/1257,
  45449. bottom: 58/1406
  45450. }
  45451. },
  45452. gMax: {
  45453. height: math.unit(134 + 11/12, "feet"),
  45454. name: "G-Max",
  45455. image: {
  45456. source: "./media/characters/cobalt-charizard/g-max.svg",
  45457. extra: 1835/1541,
  45458. bottom: 151/1986
  45459. }
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(8 + 5/12, "feet"),
  45466. default: true
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45472. {
  45473. front: {
  45474. height: math.unit(6 + 3/12, "feet"),
  45475. weight: math.unit(210, "lb"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/stella/front.svg",
  45479. extra: 3549/3335,
  45480. bottom: 51/3600
  45481. }
  45482. },
  45483. },
  45484. [
  45485. {
  45486. name: "Normal",
  45487. height: math.unit(6 + 3/12, "feet"),
  45488. default: true
  45489. },
  45490. ]
  45491. ))
  45492. characterMakers.push(() => makeCharacter(
  45493. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45494. {
  45495. front: {
  45496. height: math.unit(5, "feet"),
  45497. weight: math.unit(90, "lb"),
  45498. name: "Front",
  45499. image: {
  45500. source: "./media/characters/riley-bishop/front.svg",
  45501. extra: 1450/1428,
  45502. bottom: 152/1602
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Normal",
  45509. height: math.unit(5, "feet"),
  45510. default: true
  45511. },
  45512. ]
  45513. ))
  45514. characterMakers.push(() => makeCharacter(
  45515. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45516. {
  45517. side: {
  45518. height: math.unit(8 + 2/12, "feet"),
  45519. weight: math.unit(500, "kg"),
  45520. name: "Side",
  45521. image: {
  45522. source: "./media/characters/theo-arcanine/side.svg",
  45523. extra: 1342/1074,
  45524. bottom: 111/1453
  45525. }
  45526. },
  45527. },
  45528. [
  45529. {
  45530. name: "Normal",
  45531. height: math.unit(8 + 2/12, "feet"),
  45532. default: true
  45533. },
  45534. ]
  45535. ))
  45536. characterMakers.push(() => makeCharacter(
  45537. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45538. {
  45539. front: {
  45540. height: math.unit(4, "feet"),
  45541. name: "Front",
  45542. image: {
  45543. source: "./media/characters/kali/front.svg",
  45544. extra: 1074/867,
  45545. bottom: 34/1108
  45546. }
  45547. },
  45548. back: {
  45549. height: math.unit(4, "feet"),
  45550. name: "Back",
  45551. image: {
  45552. source: "./media/characters/kali/back.svg",
  45553. extra: 1068/863,
  45554. bottom: 26/1094
  45555. }
  45556. },
  45557. frontAlt: {
  45558. height: math.unit(4, "feet"),
  45559. name: "Front (Alt)",
  45560. image: {
  45561. source: "./media/characters/kali/front-alt.svg",
  45562. extra: 1921/1357,
  45563. bottom: 70/1991
  45564. }
  45565. },
  45566. },
  45567. [
  45568. {
  45569. name: "Normal",
  45570. height: math.unit(4, "feet"),
  45571. default: true
  45572. },
  45573. {
  45574. name: "Big'vali",
  45575. height: math.unit(11, "feet")
  45576. },
  45577. {
  45578. name: "Macro",
  45579. height: math.unit(32, "meters")
  45580. },
  45581. {
  45582. name: "Macro+",
  45583. height: math.unit(150, "meters")
  45584. },
  45585. {
  45586. name: "Megamacro",
  45587. height: math.unit(7500, "meters")
  45588. },
  45589. {
  45590. name: "Megamacro+",
  45591. height: math.unit(80, "kilometers")
  45592. },
  45593. ]
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45597. {
  45598. side: {
  45599. height: math.unit(5 + 11/12, "feet"),
  45600. weight: math.unit(236, "lb"),
  45601. name: "Side",
  45602. image: {
  45603. source: "./media/characters/gapp/side.svg",
  45604. extra: 775/340,
  45605. bottom: 58/833
  45606. }
  45607. },
  45608. mouth: {
  45609. height: math.unit(2.98, "feet"),
  45610. name: "Mouth",
  45611. image: {
  45612. source: "./media/characters/gapp/mouth.svg"
  45613. }
  45614. },
  45615. },
  45616. [
  45617. {
  45618. name: "Normal",
  45619. height: math.unit(5 + 1/12, "feet"),
  45620. default: true
  45621. },
  45622. ]
  45623. ))
  45624. characterMakers.push(() => makeCharacter(
  45625. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45626. {
  45627. front: {
  45628. height: math.unit(6, "feet"),
  45629. name: "Front",
  45630. image: {
  45631. source: "./media/characters/persephone/front.svg",
  45632. extra: 1895/1717,
  45633. bottom: 96/1991
  45634. }
  45635. },
  45636. back: {
  45637. height: math.unit(6, "feet"),
  45638. name: "Back",
  45639. image: {
  45640. source: "./media/characters/persephone/back.svg",
  45641. extra: 1868/1679,
  45642. bottom: 26/1894
  45643. }
  45644. },
  45645. casual: {
  45646. height: math.unit(6, "feet"),
  45647. name: "Casual",
  45648. image: {
  45649. source: "./media/characters/persephone/casual.svg",
  45650. extra: 1713/1541,
  45651. bottom: 76/1789
  45652. }
  45653. },
  45654. gaming: {
  45655. height: math.unit(3.55, "feet"),
  45656. name: "Gaming",
  45657. image: {
  45658. source: "./media/characters/persephone/gaming.svg",
  45659. extra: 1242/1038,
  45660. bottom: 66/1308
  45661. }
  45662. },
  45663. head: {
  45664. height: math.unit(2.15, "feet"),
  45665. name: "😐",
  45666. image: {
  45667. source: "./media/characters/persephone/head.svg"
  45668. }
  45669. },
  45670. talking: {
  45671. height: math.unit(2.5, "feet"),
  45672. name: "💬",
  45673. image: {
  45674. source: "./media/characters/persephone/talking.svg"
  45675. }
  45676. },
  45677. hmm: {
  45678. height: math.unit(2.28, "feet"),
  45679. name: "🤨",
  45680. image: {
  45681. source: "./media/characters/persephone/hmm.svg"
  45682. }
  45683. },
  45684. },
  45685. [
  45686. {
  45687. name: "Human Size",
  45688. height: math.unit(6, "feet")
  45689. },
  45690. {
  45691. name: "Big Steppy",
  45692. height: math.unit(600, "meters"),
  45693. default: true
  45694. },
  45695. {
  45696. name: "Galaxy Brain",
  45697. height: math.unit(1, "zettameter")
  45698. },
  45699. ]
  45700. ))
  45701. characterMakers.push(() => makeCharacter(
  45702. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45703. {
  45704. front: {
  45705. height: math.unit(1.85, "meters"),
  45706. name: "Front",
  45707. image: {
  45708. source: "./media/characters/riley-foxthing/front.svg",
  45709. extra: 1495/1354,
  45710. bottom: 122/1617
  45711. }
  45712. },
  45713. frontAlt: {
  45714. height: math.unit(1.85, "meters"),
  45715. name: "Front (Alt)",
  45716. image: {
  45717. source: "./media/characters/riley-foxthing/front-alt.svg",
  45718. extra: 1572/1389,
  45719. bottom: 116/1688
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal Sized",
  45726. height: math.unit(1.85, "meters"),
  45727. default: true
  45728. },
  45729. {
  45730. name: "Quite Sizable",
  45731. height: math.unit(5, "meters")
  45732. },
  45733. {
  45734. name: "Rather Large",
  45735. height: math.unit(20, "meters")
  45736. },
  45737. {
  45738. name: "Macro",
  45739. height: math.unit(450, "meters")
  45740. },
  45741. {
  45742. name: "Giga",
  45743. height: math.unit(5, "km")
  45744. },
  45745. ]
  45746. ))
  45747. characterMakers.push(() => makeCharacter(
  45748. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45749. {
  45750. front: {
  45751. height: math.unit(6, "feet"),
  45752. weight: math.unit(200, "lb"),
  45753. name: "Front",
  45754. image: {
  45755. source: "./media/characters/blizzard/front.svg",
  45756. extra: 1136/990,
  45757. bottom: 136/1272
  45758. }
  45759. },
  45760. back: {
  45761. height: math.unit(6, "feet"),
  45762. weight: math.unit(200, "lb"),
  45763. name: "Back",
  45764. image: {
  45765. source: "./media/characters/blizzard/back.svg",
  45766. extra: 1175/1034,
  45767. bottom: 97/1272
  45768. }
  45769. },
  45770. sitting: {
  45771. height: math.unit(3.725, "feet"),
  45772. weight: math.unit(200, "lb"),
  45773. name: "Sitting",
  45774. image: {
  45775. source: "./media/characters/blizzard/sitting.svg",
  45776. extra: 581/485,
  45777. bottom: 90/671
  45778. }
  45779. },
  45780. frontWizard: {
  45781. height: math.unit(7.9, "feet"),
  45782. weight: math.unit(200, "lb"),
  45783. name: "Front (Wizard)",
  45784. image: {
  45785. source: "./media/characters/blizzard/front-wizard.svg"
  45786. }
  45787. },
  45788. backWizard: {
  45789. height: math.unit(7.9, "feet"),
  45790. weight: math.unit(200, "lb"),
  45791. name: "Back (Wizard)",
  45792. image: {
  45793. source: "./media/characters/blizzard/back-wizard.svg"
  45794. }
  45795. },
  45796. frontNsfw: {
  45797. height: math.unit(6, "feet"),
  45798. weight: math.unit(200, "lb"),
  45799. name: "Front (NSFW)",
  45800. image: {
  45801. source: "./media/characters/blizzard/front-nsfw.svg",
  45802. extra: 1136/990,
  45803. bottom: 136/1272
  45804. }
  45805. },
  45806. backNsfw: {
  45807. height: math.unit(6, "feet"),
  45808. weight: math.unit(200, "lb"),
  45809. name: "Back (NSFW)",
  45810. image: {
  45811. source: "./media/characters/blizzard/back-nsfw.svg",
  45812. extra: 1175/1034,
  45813. bottom: 97/1272
  45814. }
  45815. },
  45816. sittingNsfw: {
  45817. height: math.unit(3.725, "feet"),
  45818. weight: math.unit(200, "lb"),
  45819. name: "Sitting (NSFW)",
  45820. image: {
  45821. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45822. extra: 581/485,
  45823. bottom: 90/671
  45824. }
  45825. },
  45826. wizardFrontNsfw: {
  45827. height: math.unit(7.9, "feet"),
  45828. weight: math.unit(200, "lb"),
  45829. name: "Wizard (Front, NSFW)",
  45830. image: {
  45831. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45832. }
  45833. },
  45834. },
  45835. [
  45836. {
  45837. name: "Normal",
  45838. height: math.unit(6, "feet"),
  45839. default: true
  45840. },
  45841. ]
  45842. ))
  45843. characterMakers.push(() => makeCharacter(
  45844. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45845. {
  45846. front: {
  45847. height: math.unit(5 + 2/12, "feet"),
  45848. name: "Front",
  45849. image: {
  45850. source: "./media/characters/lumi/front.svg",
  45851. extra: 1328/1268,
  45852. bottom: 103/1431
  45853. }
  45854. },
  45855. back: {
  45856. height: math.unit(5 + 2/12, "feet"),
  45857. name: "Back",
  45858. image: {
  45859. source: "./media/characters/lumi/back.svg",
  45860. extra: 1381/1327,
  45861. bottom: 43/1424
  45862. }
  45863. },
  45864. },
  45865. [
  45866. {
  45867. name: "Normal",
  45868. height: math.unit(5 + 2/12, "feet"),
  45869. default: true
  45870. },
  45871. ]
  45872. ))
  45873. characterMakers.push(() => makeCharacter(
  45874. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45875. {
  45876. front: {
  45877. height: math.unit(5 + 9/12, "feet"),
  45878. name: "Front",
  45879. image: {
  45880. source: "./media/characters/aliya-cotton/front.svg",
  45881. extra: 577/564,
  45882. bottom: 29/606
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Normal",
  45889. height: math.unit(5 + 9/12, "feet"),
  45890. default: true
  45891. },
  45892. ]
  45893. ))
  45894. characterMakers.push(() => makeCharacter(
  45895. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45896. {
  45897. front: {
  45898. height: math.unit(2.7, "meters"),
  45899. weight: math.unit(25000, "lb"),
  45900. name: "Front",
  45901. image: {
  45902. source: "./media/characters/noah-luxray/front.svg",
  45903. extra: 1644/825,
  45904. bottom: 339/1983
  45905. }
  45906. },
  45907. side: {
  45908. height: math.unit(2.97, "meters"),
  45909. weight: math.unit(25000, "lb"),
  45910. name: "Side",
  45911. image: {
  45912. source: "./media/characters/noah-luxray/side.svg",
  45913. extra: 1319/650,
  45914. bottom: 163/1482
  45915. }
  45916. },
  45917. dick: {
  45918. height: math.unit(7.4, "feet"),
  45919. weight: math.unit(2500, "lb"),
  45920. name: "Dick",
  45921. image: {
  45922. source: "./media/characters/noah-luxray/dick.svg"
  45923. }
  45924. },
  45925. dickAlt: {
  45926. height: math.unit(10.83, "feet"),
  45927. weight: math.unit(2500, "lb"),
  45928. name: "Dick-alt",
  45929. image: {
  45930. source: "./media/characters/noah-luxray/dick-alt.svg"
  45931. }
  45932. },
  45933. },
  45934. [
  45935. {
  45936. name: "BIG",
  45937. height: math.unit(2.7, "meters"),
  45938. default: true
  45939. },
  45940. ]
  45941. ))
  45942. characterMakers.push(() => makeCharacter(
  45943. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45944. {
  45945. standing: {
  45946. height: math.unit(183, "cm"),
  45947. weight: math.unit(68, "kg"),
  45948. name: "Standing",
  45949. image: {
  45950. source: "./media/characters/arion/standing.svg",
  45951. extra: 1869/1807,
  45952. bottom: 93/1962
  45953. }
  45954. },
  45955. reclining: {
  45956. height: math.unit(70.5, "cm"),
  45957. weight: math.unit(68, "lb"),
  45958. name: "Reclining",
  45959. image: {
  45960. source: "./media/characters/arion/reclining.svg",
  45961. extra: 937/870,
  45962. bottom: 63/1000
  45963. }
  45964. },
  45965. },
  45966. [
  45967. {
  45968. name: "Colossus Size, Low",
  45969. height: math.unit(33, "meters"),
  45970. default: true
  45971. },
  45972. {
  45973. name: "Colossus Size, Mid",
  45974. height: math.unit(52, "meters")
  45975. },
  45976. {
  45977. name: "Colossus Size, High",
  45978. height: math.unit(60, "meters")
  45979. },
  45980. {
  45981. name: "Titan Size, Low",
  45982. height: math.unit(91, "meters"),
  45983. },
  45984. {
  45985. name: "Titan Size, Mid",
  45986. height: math.unit(122, "meters")
  45987. },
  45988. {
  45989. name: "Titan Size, High",
  45990. height: math.unit(162, "meters")
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(53, "meters"),
  45999. name: "Front",
  46000. image: {
  46001. source: "./media/characters/stellar-marbey/front.svg",
  46002. extra: 1913/1805,
  46003. bottom: 92/2005
  46004. }
  46005. },
  46006. back: {
  46007. height: math.unit(53, "meters"),
  46008. name: "Back",
  46009. image: {
  46010. source: "./media/characters/stellar-marbey/back.svg",
  46011. extra: 1960/1851,
  46012. bottom: 28/1988
  46013. }
  46014. },
  46015. mouth: {
  46016. height: math.unit(3.5, "meters"),
  46017. name: "Mouth",
  46018. image: {
  46019. source: "./media/characters/stellar-marbey/mouth.svg"
  46020. }
  46021. },
  46022. },
  46023. [
  46024. {
  46025. name: "Macro",
  46026. height: math.unit(53, "meters"),
  46027. default: true
  46028. },
  46029. ]
  46030. ))
  46031. characterMakers.push(() => makeCharacter(
  46032. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46033. {
  46034. front: {
  46035. height: math.unit(8 + 1/12, "feet"),
  46036. weight: math.unit(233, "lb"),
  46037. name: "Front",
  46038. image: {
  46039. source: "./media/characters/matsu/front.svg",
  46040. extra: 832/772,
  46041. bottom: 40/872
  46042. }
  46043. },
  46044. back: {
  46045. height: math.unit(8 + 1/12, "feet"),
  46046. weight: math.unit(233, "lb"),
  46047. name: "Back",
  46048. image: {
  46049. source: "./media/characters/matsu/back.svg",
  46050. extra: 839/780,
  46051. bottom: 47/886
  46052. }
  46053. },
  46054. },
  46055. [
  46056. {
  46057. name: "Normal",
  46058. height: math.unit(8 + 1/12, "feet"),
  46059. default: true
  46060. },
  46061. ]
  46062. ))
  46063. characterMakers.push(() => makeCharacter(
  46064. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46065. {
  46066. front: {
  46067. height: math.unit(4, "feet"),
  46068. weight: math.unit(148, "lb"),
  46069. name: "Front",
  46070. image: {
  46071. source: "./media/characters/thiz/front.svg",
  46072. extra: 1913/1748,
  46073. bottom: 62/1975
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Normal",
  46080. height: math.unit(4, "feet"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(7 + 6/12, "feet"),
  46090. weight: math.unit(267, "lb"),
  46091. name: "Front",
  46092. image: {
  46093. source: "./media/characters/marcel/front.svg",
  46094. extra: 1221/1096,
  46095. bottom: 76/1297
  46096. }
  46097. },
  46098. },
  46099. [
  46100. {
  46101. name: "Normal",
  46102. height: math.unit(7 + 6/12, "feet"),
  46103. default: true
  46104. },
  46105. ]
  46106. ))
  46107. characterMakers.push(() => makeCharacter(
  46108. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46109. {
  46110. side: {
  46111. height: math.unit(42, "meters"),
  46112. name: "Side",
  46113. image: {
  46114. source: "./media/characters/flake/side.svg",
  46115. extra: 1525/1306,
  46116. bottom: 209/1734
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(42, "meters"),
  46124. default: true
  46125. },
  46126. ]
  46127. ))
  46128. characterMakers.push(() => makeCharacter(
  46129. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46130. {
  46131. dressed: {
  46132. height: math.unit(6 + 4/12, "feet"),
  46133. weight: math.unit(520, "lb"),
  46134. name: "Dressed",
  46135. image: {
  46136. source: "./media/characters/someonne/dressed.svg",
  46137. extra: 1020/1010,
  46138. bottom: 178/1198
  46139. }
  46140. },
  46141. undressed: {
  46142. height: math.unit(6 + 4/12, "feet"),
  46143. weight: math.unit(520, "lb"),
  46144. name: "Undressed",
  46145. image: {
  46146. source: "./media/characters/someonne/undressed.svg",
  46147. extra: 1019/1014,
  46148. bottom: 169/1188
  46149. }
  46150. },
  46151. },
  46152. [
  46153. {
  46154. name: "Normal",
  46155. height: math.unit(6 + 4/12, "feet"),
  46156. default: true
  46157. },
  46158. ]
  46159. ))
  46160. characterMakers.push(() => makeCharacter(
  46161. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46162. {
  46163. front: {
  46164. height: math.unit(3, "feet"),
  46165. weight: math.unit(30, "lb"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/till/front.svg",
  46169. extra: 892/823,
  46170. bottom: 55/947
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(3, "feet"),
  46178. default: true
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46184. {
  46185. front: {
  46186. height: math.unit(9 + 8/12, "feet"),
  46187. weight: math.unit(800, "lb"),
  46188. name: "Front",
  46189. image: {
  46190. source: "./media/characters/sydney-heki/front.svg",
  46191. extra: 1360/1300,
  46192. bottom: 22/1382
  46193. }
  46194. },
  46195. back: {
  46196. height: math.unit(9 + 8/12, "feet"),
  46197. weight: math.unit(800, "lb"),
  46198. name: "Back",
  46199. image: {
  46200. source: "./media/characters/sydney-heki/back.svg",
  46201. extra: 1356/1293,
  46202. bottom: 12/1368
  46203. }
  46204. },
  46205. frontDressed: {
  46206. height: math.unit(9 + 8/12, "feet"),
  46207. weight: math.unit(800, "lb"),
  46208. name: "Front-dressed",
  46209. image: {
  46210. source: "./media/characters/sydney-heki/front-dressed.svg",
  46211. extra: 1360/1300,
  46212. bottom: 22/1382
  46213. }
  46214. },
  46215. },
  46216. [
  46217. {
  46218. name: "Normal",
  46219. height: math.unit(9 + 8/12, "feet"),
  46220. default: true
  46221. },
  46222. {
  46223. name: "Macro",
  46224. height: math.unit(500, "feet")
  46225. },
  46226. {
  46227. name: "Megamacro",
  46228. height: math.unit(3.6, "miles")
  46229. },
  46230. ]
  46231. ))
  46232. characterMakers.push(() => makeCharacter(
  46233. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46234. {
  46235. front: {
  46236. height: math.unit(200, "cm"),
  46237. weight: math.unit(250, "lb"),
  46238. name: "Front",
  46239. image: {
  46240. source: "./media/characters/fowler-karlsson/front.svg",
  46241. extra: 897/845,
  46242. bottom: 123/1020
  46243. }
  46244. },
  46245. back: {
  46246. height: math.unit(200, "cm"),
  46247. weight: math.unit(250, "lb"),
  46248. name: "Back",
  46249. image: {
  46250. source: "./media/characters/fowler-karlsson/back.svg",
  46251. extra: 999/944,
  46252. bottom: 26/1025
  46253. }
  46254. },
  46255. dick: {
  46256. height: math.unit(1.92, "feet"),
  46257. weight: math.unit(150, "lb"),
  46258. name: "Dick",
  46259. image: {
  46260. source: "./media/characters/fowler-karlsson/dick.svg"
  46261. }
  46262. },
  46263. },
  46264. [
  46265. {
  46266. name: "Normal",
  46267. height: math.unit(200, "cm"),
  46268. default: true
  46269. },
  46270. {
  46271. name: "Smaller Macro",
  46272. height: math.unit(90, "m")
  46273. },
  46274. {
  46275. name: "Macro",
  46276. height: math.unit(150, "m")
  46277. },
  46278. {
  46279. name: "Bigger Macro",
  46280. height: math.unit(300, "m")
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46286. {
  46287. side: {
  46288. height: math.unit(8 + 2/12, "feet"),
  46289. weight: math.unit(1, "tonne"),
  46290. name: "Side",
  46291. image: {
  46292. source: "./media/characters/rylide/side.svg",
  46293. extra: 1318/1034,
  46294. bottom: 106/1424
  46295. }
  46296. },
  46297. sitting: {
  46298. height: math.unit(303, "cm"),
  46299. weight: math.unit(1, "tonne"),
  46300. name: "Sitting",
  46301. image: {
  46302. source: "./media/characters/rylide/sitting.svg",
  46303. extra: 1303/1103,
  46304. bottom: 36/1339
  46305. }
  46306. },
  46307. },
  46308. [
  46309. {
  46310. name: "Normal",
  46311. height: math.unit(8 + 2/12, "feet"),
  46312. default: true
  46313. },
  46314. ]
  46315. ))
  46316. characterMakers.push(() => makeCharacter(
  46317. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46318. {
  46319. front: {
  46320. height: math.unit(5 + 10/12, "feet"),
  46321. weight: math.unit(160, "lb"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/pudask/front.svg",
  46325. extra: 1616/1590,
  46326. bottom: 161/1777
  46327. }
  46328. },
  46329. },
  46330. [
  46331. {
  46332. name: "Ferret Height",
  46333. height: math.unit(2 + 5/12, "feet")
  46334. },
  46335. {
  46336. name: "Canon Height",
  46337. height: math.unit(5 + 10/12, "feet"),
  46338. default: true
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46344. {
  46345. front: {
  46346. height: math.unit(3 + 6/12, "feet"),
  46347. weight: math.unit(60, "lb"),
  46348. name: "Front",
  46349. image: {
  46350. source: "./media/characters/ramita/front.svg",
  46351. extra: 1402/1232,
  46352. bottom: 62/1464
  46353. }
  46354. },
  46355. dressed: {
  46356. height: math.unit(3 + 6/12, "feet"),
  46357. weight: math.unit(60, "lb"),
  46358. name: "Dressed",
  46359. image: {
  46360. source: "./media/characters/ramita/dressed.svg",
  46361. extra: 1534/1249,
  46362. bottom: 50/1584
  46363. }
  46364. },
  46365. },
  46366. [
  46367. {
  46368. name: "Normal",
  46369. height: math.unit(3 + 6/12, "feet"),
  46370. default: true
  46371. },
  46372. ]
  46373. ))
  46374. characterMakers.push(() => makeCharacter(
  46375. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46376. {
  46377. front: {
  46378. height: math.unit(8, "feet"),
  46379. name: "Front",
  46380. image: {
  46381. source: "./media/characters/ark/front.svg",
  46382. extra: 772/693,
  46383. bottom: 45/817
  46384. }
  46385. },
  46386. },
  46387. [
  46388. {
  46389. name: "Normal",
  46390. height: math.unit(8, "feet"),
  46391. default: true
  46392. },
  46393. ]
  46394. ))
  46395. characterMakers.push(() => makeCharacter(
  46396. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46397. {
  46398. front: {
  46399. height: math.unit(6, "feet"),
  46400. weight: math.unit(250, "lb"),
  46401. volume: math.unit(5/8, "gallons"),
  46402. name: "Front",
  46403. image: {
  46404. source: "./media/characters/ludwig-horn/front.svg",
  46405. extra: 1782/1635,
  46406. bottom: 96/1878
  46407. }
  46408. },
  46409. back: {
  46410. height: math.unit(6, "feet"),
  46411. weight: math.unit(250, "lb"),
  46412. volume: math.unit(5/8, "gallons"),
  46413. name: "Back",
  46414. image: {
  46415. source: "./media/characters/ludwig-horn/back.svg",
  46416. extra: 1874/1729,
  46417. bottom: 27/1901
  46418. }
  46419. },
  46420. dick: {
  46421. height: math.unit(1.05, "feet"),
  46422. weight: math.unit(15, "lb"),
  46423. volume: math.unit(5/8, "gallons"),
  46424. name: "Dick",
  46425. image: {
  46426. source: "./media/characters/ludwig-horn/dick.svg"
  46427. }
  46428. },
  46429. },
  46430. [
  46431. {
  46432. name: "Small",
  46433. height: math.unit(6, "feet")
  46434. },
  46435. {
  46436. name: "Typical",
  46437. height: math.unit(12, "feet"),
  46438. default: true
  46439. },
  46440. {
  46441. name: "Building",
  46442. height: math.unit(80, "feet")
  46443. },
  46444. {
  46445. name: "Town",
  46446. height: math.unit(800, "feet")
  46447. },
  46448. {
  46449. name: "Kingdom",
  46450. height: math.unit(80000, "feet")
  46451. },
  46452. {
  46453. name: "Planet",
  46454. height: math.unit(8000000, "feet")
  46455. },
  46456. {
  46457. name: "Universe",
  46458. height: math.unit(8000000000, "feet")
  46459. },
  46460. {
  46461. name: "Transcended",
  46462. height: math.unit(8e27, "feet")
  46463. },
  46464. ]
  46465. ))
  46466. characterMakers.push(() => makeCharacter(
  46467. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46468. {
  46469. front: {
  46470. height: math.unit(5, "feet"),
  46471. weight: math.unit(50, "kg"),
  46472. name: "Front",
  46473. image: {
  46474. source: "./media/characters/biot-avery/front.svg",
  46475. extra: 1295/1232,
  46476. bottom: 86/1381
  46477. }
  46478. },
  46479. },
  46480. [
  46481. {
  46482. name: "Normal",
  46483. height: math.unit(5, "feet"),
  46484. default: true
  46485. },
  46486. ]
  46487. ))
  46488. characterMakers.push(() => makeCharacter(
  46489. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46490. {
  46491. front: {
  46492. height: math.unit(6, "feet"),
  46493. name: "Front",
  46494. image: {
  46495. source: "./media/characters/kitsune-kiro/front.svg",
  46496. extra: 1270/1158,
  46497. bottom: 42/1312
  46498. }
  46499. },
  46500. frontAlt: {
  46501. height: math.unit(6, "feet"),
  46502. name: "Front-alt",
  46503. image: {
  46504. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46505. extra: 1130/1081,
  46506. bottom: 36/1166
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Smol",
  46513. height: math.unit(3, "feet")
  46514. },
  46515. {
  46516. name: "Normal",
  46517. height: math.unit(6, "feet"),
  46518. default: true
  46519. },
  46520. ]
  46521. ))
  46522. characterMakers.push(() => makeCharacter(
  46523. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46524. {
  46525. front: {
  46526. height: math.unit(6, "feet"),
  46527. weight: math.unit(125, "lb"),
  46528. name: "Front",
  46529. image: {
  46530. source: "./media/characters/jack-thatcher/front.svg",
  46531. extra: 1474/1370,
  46532. bottom: 26/1500
  46533. }
  46534. },
  46535. back: {
  46536. height: math.unit(6, "feet"),
  46537. weight: math.unit(125, "lb"),
  46538. name: "Back",
  46539. image: {
  46540. source: "./media/characters/jack-thatcher/back.svg",
  46541. extra: 1489/1384,
  46542. bottom: 18/1507
  46543. }
  46544. },
  46545. },
  46546. [
  46547. {
  46548. name: "Normal",
  46549. height: math.unit(6, "feet"),
  46550. default: true
  46551. },
  46552. {
  46553. name: "Macro",
  46554. height: math.unit(75, "feet")
  46555. },
  46556. {
  46557. name: "Macro-er",
  46558. height: math.unit(250, "feet")
  46559. },
  46560. ]
  46561. ))
  46562. characterMakers.push(() => makeCharacter(
  46563. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46564. {
  46565. front: {
  46566. height: math.unit(7, "feet"),
  46567. weight: math.unit(110, "kg"),
  46568. name: "Front",
  46569. image: {
  46570. source: "./media/characters/max-hyper/front.svg",
  46571. extra: 1969/1881,
  46572. bottom: 49/2018
  46573. }
  46574. },
  46575. },
  46576. [
  46577. {
  46578. name: "Normal",
  46579. height: math.unit(7, "feet"),
  46580. default: true
  46581. },
  46582. ]
  46583. ))
  46584. characterMakers.push(() => makeCharacter(
  46585. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46586. {
  46587. front: {
  46588. height: math.unit(5 + 5/12, "feet"),
  46589. weight: math.unit(160, "lb"),
  46590. name: "Front",
  46591. image: {
  46592. source: "./media/characters/spook/front.svg",
  46593. extra: 794/791,
  46594. bottom: 54/848
  46595. }
  46596. },
  46597. back: {
  46598. height: math.unit(5 + 5/12, "feet"),
  46599. weight: math.unit(160, "lb"),
  46600. name: "Back",
  46601. image: {
  46602. source: "./media/characters/spook/back.svg",
  46603. extra: 812/798,
  46604. bottom: 32/844
  46605. }
  46606. },
  46607. },
  46608. [
  46609. {
  46610. name: "Normal",
  46611. height: math.unit(5 + 5/12, "feet"),
  46612. default: true
  46613. },
  46614. ]
  46615. ))
  46616. characterMakers.push(() => makeCharacter(
  46617. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46618. {
  46619. front: {
  46620. height: math.unit(18, "feet"),
  46621. name: "Front",
  46622. image: {
  46623. source: "./media/characters/xeaduulix/front.svg",
  46624. extra: 1380/1166,
  46625. bottom: 110/1490
  46626. }
  46627. },
  46628. back: {
  46629. height: math.unit(18, "feet"),
  46630. name: "Back",
  46631. image: {
  46632. source: "./media/characters/xeaduulix/back.svg",
  46633. extra: 1592/1170,
  46634. bottom: 128/1720
  46635. }
  46636. },
  46637. frontNsfw: {
  46638. height: math.unit(18, "feet"),
  46639. name: "Front (NSFW)",
  46640. image: {
  46641. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46642. extra: 1380/1166,
  46643. bottom: 110/1490
  46644. }
  46645. },
  46646. backNsfw: {
  46647. height: math.unit(18, "feet"),
  46648. name: "Back (NSFW)",
  46649. image: {
  46650. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46651. extra: 1592/1170,
  46652. bottom: 128/1720
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Normal",
  46659. height: math.unit(18, "feet"),
  46660. default: true
  46661. },
  46662. ]
  46663. ))
  46664. characterMakers.push(() => makeCharacter(
  46665. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46666. {
  46667. spreadWings: {
  46668. height: math.unit(20, "feet"),
  46669. name: "Spread Wings",
  46670. image: {
  46671. source: "./media/characters/fledge/spread-wings.svg",
  46672. extra: 693/635,
  46673. bottom: 26/719
  46674. }
  46675. },
  46676. front: {
  46677. height: math.unit(20, "feet"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/fledge/front.svg",
  46681. extra: 684/637,
  46682. bottom: 18/702
  46683. }
  46684. },
  46685. frontAlt: {
  46686. height: math.unit(20, "feet"),
  46687. name: "Front (Alt)",
  46688. image: {
  46689. source: "./media/characters/fledge/front-alt.svg",
  46690. extra: 708/664,
  46691. bottom: 13/721
  46692. }
  46693. },
  46694. back: {
  46695. height: math.unit(20, "feet"),
  46696. name: "Back",
  46697. image: {
  46698. source: "./media/characters/fledge/back.svg",
  46699. extra: 718/634,
  46700. bottom: 22/740
  46701. }
  46702. },
  46703. head: {
  46704. height: math.unit(5.55, "feet"),
  46705. name: "Head",
  46706. image: {
  46707. source: "./media/characters/fledge/head.svg"
  46708. }
  46709. },
  46710. headAlt: {
  46711. height: math.unit(5.1, "feet"),
  46712. name: "Head (Alt)",
  46713. image: {
  46714. source: "./media/characters/fledge/head-alt.svg"
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Small",
  46721. height: math.unit(6 + 2/12, "feet")
  46722. },
  46723. {
  46724. name: "Big",
  46725. height: math.unit(20, "feet"),
  46726. default: true
  46727. },
  46728. {
  46729. name: "Giant",
  46730. height: math.unit(100, "feet")
  46731. },
  46732. {
  46733. name: "Macro",
  46734. height: math.unit(200, "feet")
  46735. },
  46736. ]
  46737. ))
  46738. characterMakers.push(() => makeCharacter(
  46739. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46740. {
  46741. front: {
  46742. height: math.unit(1, "meter"),
  46743. name: "Front",
  46744. image: {
  46745. source: "./media/characters/atlas-morenai/front.svg",
  46746. extra: 1275/1043,
  46747. bottom: 19/1294
  46748. }
  46749. },
  46750. back: {
  46751. height: math.unit(1, "meter"),
  46752. name: "Back",
  46753. image: {
  46754. source: "./media/characters/atlas-morenai/back.svg",
  46755. extra: 1141/1001,
  46756. bottom: 25/1166
  46757. }
  46758. },
  46759. },
  46760. [
  46761. {
  46762. name: "Normal",
  46763. height: math.unit(1, "meter"),
  46764. default: true
  46765. },
  46766. {
  46767. name: "Magic-Infused",
  46768. height: math.unit(5, "meters")
  46769. },
  46770. ]
  46771. ))
  46772. characterMakers.push(() => makeCharacter(
  46773. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46774. {
  46775. front: {
  46776. height: math.unit(5, "meters"),
  46777. name: "Front",
  46778. image: {
  46779. source: "./media/characters/cintia/front.svg",
  46780. extra: 1312/1228,
  46781. bottom: 38/1350
  46782. }
  46783. },
  46784. back: {
  46785. height: math.unit(5, "meters"),
  46786. name: "Back",
  46787. image: {
  46788. source: "./media/characters/cintia/back.svg",
  46789. extra: 1260/1166,
  46790. bottom: 98/1358
  46791. }
  46792. },
  46793. frontDick: {
  46794. height: math.unit(5, "meters"),
  46795. name: "Front (Dick)",
  46796. image: {
  46797. source: "./media/characters/cintia/front-dick.svg",
  46798. extra: 1312/1228,
  46799. bottom: 38/1350
  46800. }
  46801. },
  46802. backDick: {
  46803. height: math.unit(5, "meters"),
  46804. name: "Back (Dick)",
  46805. image: {
  46806. source: "./media/characters/cintia/back-dick.svg",
  46807. extra: 1260/1166,
  46808. bottom: 98/1358
  46809. }
  46810. },
  46811. bust: {
  46812. height: math.unit(1.97, "meters"),
  46813. name: "Bust",
  46814. image: {
  46815. source: "./media/characters/cintia/bust.svg",
  46816. extra: 617/565,
  46817. bottom: 0/617
  46818. }
  46819. },
  46820. },
  46821. [
  46822. {
  46823. name: "Normal",
  46824. height: math.unit(5, "meters"),
  46825. default: true
  46826. },
  46827. ]
  46828. ))
  46829. characterMakers.push(() => makeCharacter(
  46830. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46831. {
  46832. side: {
  46833. height: math.unit(100, "feet"),
  46834. name: "Side",
  46835. image: {
  46836. source: "./media/characters/denora/side.svg",
  46837. extra: 875/803,
  46838. bottom: 9/884
  46839. }
  46840. },
  46841. },
  46842. [
  46843. {
  46844. name: "Standard",
  46845. height: math.unit(100, "feet"),
  46846. default: true
  46847. },
  46848. {
  46849. name: "Grand",
  46850. height: math.unit(1000, "feet")
  46851. },
  46852. {
  46853. name: "Conquering",
  46854. height: math.unit(10000, "feet")
  46855. },
  46856. ]
  46857. ))
  46858. characterMakers.push(() => makeCharacter(
  46859. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46860. {
  46861. dressed: {
  46862. height: math.unit(8 + 5/12, "feet"),
  46863. weight: math.unit(700, "lb"),
  46864. name: "Dressed",
  46865. image: {
  46866. source: "./media/characters/kiva/dressed.svg",
  46867. extra: 1102/1055,
  46868. bottom: 60/1162
  46869. }
  46870. },
  46871. nude: {
  46872. height: math.unit(8 + 5/12, "feet"),
  46873. weight: math.unit(700, "lb"),
  46874. name: "Nude",
  46875. image: {
  46876. source: "./media/characters/kiva/nude.svg",
  46877. extra: 1102/1055,
  46878. bottom: 60/1162
  46879. }
  46880. },
  46881. },
  46882. [
  46883. {
  46884. name: "Base Height",
  46885. height: math.unit(8 + 5/12, "feet"),
  46886. default: true
  46887. },
  46888. {
  46889. name: "Macro",
  46890. height: math.unit(100, "feet")
  46891. },
  46892. {
  46893. name: "Max",
  46894. height: math.unit(3280, "feet")
  46895. },
  46896. ]
  46897. ))
  46898. characterMakers.push(() => makeCharacter(
  46899. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46900. {
  46901. front: {
  46902. height: math.unit(6 + 8/12, "feet"),
  46903. weight: math.unit(250, "lb"),
  46904. name: "Front",
  46905. image: {
  46906. source: "./media/characters/ztragon/front.svg",
  46907. extra: 1825/1684,
  46908. bottom: 98/1923
  46909. }
  46910. },
  46911. },
  46912. [
  46913. {
  46914. name: "Normal",
  46915. height: math.unit(6 + 8/12, "feet"),
  46916. default: true
  46917. },
  46918. {
  46919. name: "Macro",
  46920. height: math.unit(80, "feet")
  46921. },
  46922. ]
  46923. ))
  46924. characterMakers.push(() => makeCharacter(
  46925. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46926. {
  46927. front: {
  46928. height: math.unit(10.4, "feet"),
  46929. weight: math.unit(2, "tons"),
  46930. name: "Front",
  46931. image: {
  46932. source: "./media/characters/yesenia/front.svg",
  46933. extra: 1479/1474,
  46934. bottom: 233/1712
  46935. }
  46936. },
  46937. },
  46938. [
  46939. {
  46940. name: "Normal",
  46941. height: math.unit(10.4, "feet"),
  46942. default: true
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46948. {
  46949. normal: {
  46950. height: math.unit(6 + 1/12, "feet"),
  46951. weight: math.unit(180, "lb"),
  46952. name: "Normal",
  46953. image: {
  46954. source: "./media/characters/leanne-lycheborne/normal.svg",
  46955. extra: 1748/1660,
  46956. bottom: 98/1846
  46957. }
  46958. },
  46959. were: {
  46960. height: math.unit(12, "feet"),
  46961. weight: math.unit(1600, "lb"),
  46962. name: "Were",
  46963. image: {
  46964. source: "./media/characters/leanne-lycheborne/were.svg",
  46965. extra: 1485/1432,
  46966. bottom: 66/1551
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Normal",
  46973. height: math.unit(6 + 1/12, "feet"),
  46974. default: true
  46975. },
  46976. ]
  46977. ))
  46978. characterMakers.push(() => makeCharacter(
  46979. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46980. {
  46981. side: {
  46982. height: math.unit(13, "feet"),
  46983. name: "Side",
  46984. image: {
  46985. source: "./media/characters/kira-tyler/side.svg",
  46986. extra: 693/393,
  46987. bottom: 58/751
  46988. }
  46989. },
  46990. },
  46991. [
  46992. {
  46993. name: "Normal",
  46994. height: math.unit(13, "feet"),
  46995. default: true
  46996. },
  46997. ]
  46998. ))
  46999. characterMakers.push(() => makeCharacter(
  47000. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47001. {
  47002. front: {
  47003. height: math.unit(10.3, "feet"),
  47004. weight: math.unit(150, "lb"),
  47005. name: "Front",
  47006. image: {
  47007. source: "./media/characters/blaze/front.svg",
  47008. extra: 1378/1286,
  47009. bottom: 172/1550
  47010. }
  47011. },
  47012. },
  47013. [
  47014. {
  47015. name: "Normal",
  47016. height: math.unit(10.3, "feet"),
  47017. default: true
  47018. },
  47019. ]
  47020. ))
  47021. characterMakers.push(() => makeCharacter(
  47022. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47023. {
  47024. side: {
  47025. height: math.unit(2, "meters"),
  47026. weight: math.unit(400, "kg"),
  47027. name: "Side",
  47028. image: {
  47029. source: "./media/characters/anu/side.svg",
  47030. extra: 506/394,
  47031. bottom: 18/524
  47032. }
  47033. },
  47034. },
  47035. [
  47036. {
  47037. name: "Humanoid",
  47038. height: math.unit(2, "meters")
  47039. },
  47040. {
  47041. name: "Normal",
  47042. height: math.unit(5, "meters"),
  47043. default: true
  47044. },
  47045. ]
  47046. ))
  47047. characterMakers.push(() => makeCharacter(
  47048. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47049. {
  47050. front: {
  47051. height: math.unit(5 + 5/12, "feet"),
  47052. weight: math.unit(170, "lb"),
  47053. name: "Front",
  47054. image: {
  47055. source: "./media/characters/synx-the-lynx/front.svg",
  47056. extra: 1893/1745,
  47057. bottom: 17/1910
  47058. }
  47059. },
  47060. side: {
  47061. height: math.unit(5 + 5/12, "feet"),
  47062. weight: math.unit(170, "lb"),
  47063. name: "Side",
  47064. image: {
  47065. source: "./media/characters/synx-the-lynx/side.svg",
  47066. extra: 1884/1740,
  47067. bottom: 39/1923
  47068. }
  47069. },
  47070. back: {
  47071. height: math.unit(5 + 5/12, "feet"),
  47072. weight: math.unit(170, "lb"),
  47073. name: "Back",
  47074. image: {
  47075. source: "./media/characters/synx-the-lynx/back.svg",
  47076. extra: 1903/1755,
  47077. bottom: 14/1917
  47078. }
  47079. },
  47080. },
  47081. [
  47082. {
  47083. name: "Normal",
  47084. height: math.unit(5 + 5/12, "feet"),
  47085. default: true
  47086. },
  47087. ]
  47088. ))
  47089. characterMakers.push(() => makeCharacter(
  47090. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47091. {
  47092. back: {
  47093. height: math.unit(15, "feet"),
  47094. name: "Back",
  47095. image: {
  47096. source: "./media/characters/nadezda-fex/back.svg",
  47097. extra: 1695/1481,
  47098. bottom: 25/1720
  47099. }
  47100. },
  47101. },
  47102. [
  47103. {
  47104. name: "Normal",
  47105. height: math.unit(15, "feet"),
  47106. default: true
  47107. },
  47108. {
  47109. name: "Macro",
  47110. height: math.unit(2.5, "miles")
  47111. },
  47112. {
  47113. name: "Goddess",
  47114. height: math.unit(2, "multiverses")
  47115. },
  47116. ]
  47117. ))
  47118. characterMakers.push(() => makeCharacter(
  47119. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47120. {
  47121. front: {
  47122. height: math.unit(216, "cm"),
  47123. name: "Front",
  47124. image: {
  47125. source: "./media/characters/lev/front.svg",
  47126. extra: 1728/1670,
  47127. bottom: 82/1810
  47128. }
  47129. },
  47130. back: {
  47131. height: math.unit(216, "cm"),
  47132. name: "Back",
  47133. image: {
  47134. source: "./media/characters/lev/back.svg",
  47135. extra: 1738/1675,
  47136. bottom: 24/1762
  47137. }
  47138. },
  47139. dressed: {
  47140. height: math.unit(216, "cm"),
  47141. name: "Dressed",
  47142. image: {
  47143. source: "./media/characters/lev/dressed.svg",
  47144. extra: 1397/1351,
  47145. bottom: 73/1470
  47146. }
  47147. },
  47148. head: {
  47149. height: math.unit(0.51, "meter"),
  47150. name: "Head",
  47151. image: {
  47152. source: "./media/characters/lev/head.svg"
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Normal",
  47159. height: math.unit(216, "cm"),
  47160. default: true
  47161. },
  47162. {
  47163. name: "Relatively Macro",
  47164. height: math.unit(80, "meters")
  47165. },
  47166. {
  47167. name: "Megamacro",
  47168. height: math.unit(21600, "meters")
  47169. },
  47170. {
  47171. name: "Megamacro+",
  47172. height: math.unit(64800, "meters")
  47173. },
  47174. ]
  47175. ))
  47176. characterMakers.push(() => makeCharacter(
  47177. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47178. {
  47179. front: {
  47180. height: math.unit(2, "meters"),
  47181. weight: math.unit(80, "kg"),
  47182. name: "Front",
  47183. image: {
  47184. source: "./media/characters/moka/front.svg",
  47185. extra: 1337/1255,
  47186. bottom: 58/1395
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Micro",
  47193. height: math.unit(15, "cm")
  47194. },
  47195. {
  47196. name: "Normal",
  47197. height: math.unit(2, "meters"),
  47198. default: true
  47199. },
  47200. {
  47201. name: "Macro",
  47202. height: math.unit(20, "meters"),
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(9, "feet"),
  47211. weight: math.unit(240, "lb"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/kuzco/front.svg",
  47215. extra: 1593/1487,
  47216. bottom: 32/1625
  47217. }
  47218. },
  47219. side: {
  47220. height: math.unit(9, "feet"),
  47221. weight: math.unit(240, "lb"),
  47222. name: "Side",
  47223. image: {
  47224. source: "./media/characters/kuzco/side.svg",
  47225. extra: 1575/1485,
  47226. bottom: 30/1605
  47227. }
  47228. },
  47229. back: {
  47230. height: math.unit(9, "feet"),
  47231. weight: math.unit(240, "lb"),
  47232. name: "Back",
  47233. image: {
  47234. source: "./media/characters/kuzco/back.svg",
  47235. extra: 1603/1514,
  47236. bottom: 14/1617
  47237. }
  47238. },
  47239. },
  47240. [
  47241. {
  47242. name: "Normal",
  47243. height: math.unit(9, "feet"),
  47244. default: true
  47245. },
  47246. ]
  47247. ))
  47248. characterMakers.push(() => makeCharacter(
  47249. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47250. {
  47251. side: {
  47252. height: math.unit(2, "meters"),
  47253. weight: math.unit(300, "kg"),
  47254. name: "Side",
  47255. image: {
  47256. source: "./media/characters/ceruleus/side.svg",
  47257. extra: 1068/974,
  47258. bottom: 126/1194
  47259. }
  47260. },
  47261. maw: {
  47262. height: math.unit(0.8125, "meter"),
  47263. name: "Maw",
  47264. image: {
  47265. source: "./media/characters/ceruleus/maw.svg"
  47266. }
  47267. },
  47268. },
  47269. [
  47270. {
  47271. name: "Normal",
  47272. height: math.unit(16, "meters"),
  47273. default: true
  47274. },
  47275. ]
  47276. ))
  47277. characterMakers.push(() => makeCharacter(
  47278. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47279. {
  47280. front: {
  47281. height: math.unit(9, "feet"),
  47282. weight: math.unit(500, "kg"),
  47283. name: "Front",
  47284. image: {
  47285. source: "./media/characters/acouya/front.svg",
  47286. extra: 1660/1473,
  47287. bottom: 28/1688
  47288. }
  47289. },
  47290. },
  47291. [
  47292. {
  47293. name: "Normal",
  47294. height: math.unit(9, "feet"),
  47295. default: true
  47296. },
  47297. ]
  47298. ))
  47299. characterMakers.push(() => makeCharacter(
  47300. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47301. {
  47302. front: {
  47303. height: math.unit(5 + 6/12, "feet"),
  47304. weight: math.unit(195, "lb"),
  47305. name: "Front",
  47306. image: {
  47307. source: "./media/characters/vant/front.svg",
  47308. extra: 1396/1320,
  47309. bottom: 20/1416
  47310. }
  47311. },
  47312. back: {
  47313. height: math.unit(5 + 6/12, "feet"),
  47314. weight: math.unit(195, "lb"),
  47315. name: "Back",
  47316. image: {
  47317. source: "./media/characters/vant/back.svg",
  47318. extra: 1396/1320,
  47319. bottom: 20/1416
  47320. }
  47321. },
  47322. maw: {
  47323. height: math.unit(0.75, "feet"),
  47324. name: "Maw",
  47325. image: {
  47326. source: "./media/characters/vant/maw.svg"
  47327. }
  47328. },
  47329. paw: {
  47330. height: math.unit(1.07, "feet"),
  47331. name: "Paw",
  47332. image: {
  47333. source: "./media/characters/vant/paw.svg"
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Micro",
  47340. height: math.unit(0.25, "inches")
  47341. },
  47342. {
  47343. name: "Normal",
  47344. height: math.unit(5 + 6/12, "feet"),
  47345. default: true
  47346. },
  47347. {
  47348. name: "Macro",
  47349. height: math.unit(75, "feet")
  47350. },
  47351. ]
  47352. ))
  47353. characterMakers.push(() => makeCharacter(
  47354. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47355. {
  47356. front: {
  47357. height: math.unit(30, "meters"),
  47358. weight: math.unit(363, "tons"),
  47359. name: "Front",
  47360. image: {
  47361. source: "./media/characters/ahra/front.svg",
  47362. extra: 1914/1814,
  47363. bottom: 46/1960
  47364. }
  47365. },
  47366. },
  47367. [
  47368. {
  47369. name: "Macro",
  47370. height: math.unit(30, "meters"),
  47371. default: true
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47377. {
  47378. undressed: {
  47379. height: math.unit(2, "m"),
  47380. weight: math.unit(250, "kg"),
  47381. name: "Undressed",
  47382. image: {
  47383. source: "./media/characters/coriander/undressed.svg",
  47384. extra: 1757/1606,
  47385. bottom: 107/1864
  47386. }
  47387. },
  47388. dressed: {
  47389. height: math.unit(2, "m"),
  47390. weight: math.unit(250, "kg"),
  47391. name: "Dressed",
  47392. image: {
  47393. source: "./media/characters/coriander/dressed.svg",
  47394. extra: 1757/1606,
  47395. bottom: 107/1864
  47396. }
  47397. },
  47398. },
  47399. [
  47400. {
  47401. name: "Normal",
  47402. height: math.unit(4, "meters"),
  47403. default: true
  47404. },
  47405. {
  47406. name: "XL",
  47407. height: math.unit(6, "meters")
  47408. },
  47409. {
  47410. name: "XXL",
  47411. height: math.unit(8, "meters")
  47412. },
  47413. ]
  47414. ))
  47415. characterMakers.push(() => makeCharacter(
  47416. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47417. {
  47418. front: {
  47419. height: math.unit(6, "feet"),
  47420. name: "Front",
  47421. image: {
  47422. source: "./media/characters/syrinx/front.svg",
  47423. extra: 1557/1259,
  47424. bottom: 171/1728
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Normal",
  47431. height: math.unit(6 + 3/12, "feet"),
  47432. default: true
  47433. },
  47434. ]
  47435. ))
  47436. characterMakers.push(() => makeCharacter(
  47437. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47438. {
  47439. front: {
  47440. height: math.unit(11 + 6/12, "feet"),
  47441. weight: math.unit(1.5, "tons"),
  47442. name: "Front",
  47443. image: {
  47444. source: "./media/characters/bor/front.svg",
  47445. extra: 1189/1109,
  47446. bottom: 170/1359
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Normal",
  47453. height: math.unit(11 + 6/12, "feet"),
  47454. default: true
  47455. },
  47456. {
  47457. name: "Macro",
  47458. height: math.unit(32 + 9/12, "feet")
  47459. },
  47460. ]
  47461. ))
  47462. characterMakers.push(() => makeCharacter(
  47463. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47464. {
  47465. anthro: {
  47466. height: math.unit(9, "feet"),
  47467. weight: math.unit(2076, "lb"),
  47468. name: "Anthro",
  47469. image: {
  47470. source: "./media/characters/abacus/anthro.svg",
  47471. extra: 1540/1494,
  47472. bottom: 233/1773
  47473. }
  47474. },
  47475. pigeon: {
  47476. height: math.unit(1, "feet"),
  47477. name: "Pigeon",
  47478. image: {
  47479. source: "./media/characters/abacus/pigeon.svg",
  47480. extra: 528/525,
  47481. bottom: 46/574
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Normal",
  47488. height: math.unit(9, "feet"),
  47489. default: true
  47490. },
  47491. ]
  47492. ))
  47493. characterMakers.push(() => makeCharacter(
  47494. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47495. {
  47496. side: {
  47497. height: math.unit(6, "feet"),
  47498. name: "Side",
  47499. image: {
  47500. source: "./media/characters/delkhan/side.svg",
  47501. extra: 1884/1786,
  47502. bottom: 308/2192
  47503. }
  47504. },
  47505. head: {
  47506. height: math.unit(3.38, "feet"),
  47507. name: "Head",
  47508. image: {
  47509. source: "./media/characters/delkhan/head.svg"
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(72, "feet"),
  47517. default: true
  47518. },
  47519. {
  47520. name: "Giant",
  47521. height: math.unit(172, "feet")
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47527. {
  47528. standing: {
  47529. height: math.unit(6, "feet"),
  47530. name: "Standing",
  47531. image: {
  47532. source: "./media/characters/euchidat/standing.svg",
  47533. extra: 1612/1553,
  47534. bottom: 116/1728
  47535. }
  47536. },
  47537. leaning: {
  47538. height: math.unit(6, "feet"),
  47539. name: "Leaning",
  47540. image: {
  47541. source: "./media/characters/euchidat/leaning.svg",
  47542. extra: 1719/1674,
  47543. bottom: 27/1746
  47544. }
  47545. },
  47546. },
  47547. [
  47548. {
  47549. name: "Normal",
  47550. height: math.unit(175, "feet"),
  47551. default: true
  47552. },
  47553. {
  47554. name: "Megamacro",
  47555. height: math.unit(190, "miles")
  47556. },
  47557. {
  47558. name: "Gigamacro",
  47559. height: math.unit(190000, "miles")
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47565. {
  47566. front: {
  47567. height: math.unit(6, "feet"),
  47568. weight: math.unit(150, "lb"),
  47569. name: "Front",
  47570. image: {
  47571. source: "./media/characters/rebecca-stack/front.svg",
  47572. extra: 1256/1201,
  47573. bottom: 18/1274
  47574. }
  47575. },
  47576. },
  47577. [
  47578. {
  47579. name: "Normal",
  47580. height: math.unit(5 + 8/12, "feet"),
  47581. default: true
  47582. },
  47583. {
  47584. name: "Demolitionist",
  47585. height: math.unit(200, "feet")
  47586. },
  47587. {
  47588. name: "Out of Control",
  47589. height: math.unit(2, "miles")
  47590. },
  47591. {
  47592. name: "Giga",
  47593. height: math.unit(7200, "miles")
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(6, "feet"),
  47602. weight: math.unit(150, "lb"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/jenny-cartwright/front.svg",
  47606. extra: 1384/1376,
  47607. bottom: 58/1442
  47608. }
  47609. },
  47610. },
  47611. [
  47612. {
  47613. name: "Normal",
  47614. height: math.unit(6 + 7/12, "feet"),
  47615. default: true
  47616. },
  47617. {
  47618. name: "Librarian",
  47619. height: math.unit(55, "feet")
  47620. },
  47621. {
  47622. name: "Sightseer",
  47623. height: math.unit(50, "miles")
  47624. },
  47625. {
  47626. name: "Giga",
  47627. height: math.unit(30000, "miles")
  47628. },
  47629. ]
  47630. ))
  47631. characterMakers.push(() => makeCharacter(
  47632. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47633. {
  47634. nude: {
  47635. height: math.unit(8, "feet"),
  47636. weight: math.unit(225, "lb"),
  47637. name: "Nude",
  47638. image: {
  47639. source: "./media/characters/marvy/nude.svg",
  47640. extra: 1900/1683,
  47641. bottom: 89/1989
  47642. }
  47643. },
  47644. dressed: {
  47645. height: math.unit(8, "feet"),
  47646. weight: math.unit(225, "lb"),
  47647. name: "Dressed",
  47648. image: {
  47649. source: "./media/characters/marvy/dressed.svg",
  47650. extra: 1900/1683,
  47651. bottom: 89/1989
  47652. }
  47653. },
  47654. head: {
  47655. height: math.unit(2.85, "feet"),
  47656. name: "Head",
  47657. image: {
  47658. source: "./media/characters/marvy/head.svg"
  47659. }
  47660. },
  47661. },
  47662. [
  47663. {
  47664. name: "Normal",
  47665. height: math.unit(8, "feet"),
  47666. default: true
  47667. },
  47668. ]
  47669. ))
  47670. characterMakers.push(() => makeCharacter(
  47671. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47672. {
  47673. front: {
  47674. height: math.unit(8, "feet"),
  47675. weight: math.unit(250, "lb"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/leah/front.svg",
  47679. extra: 1257/1149,
  47680. bottom: 109/1366
  47681. }
  47682. },
  47683. },
  47684. [
  47685. {
  47686. name: "Normal",
  47687. height: math.unit(8, "feet"),
  47688. default: true
  47689. },
  47690. {
  47691. name: "Minimacro",
  47692. height: math.unit(40, "feet")
  47693. },
  47694. {
  47695. name: "Macro",
  47696. height: math.unit(124, "feet")
  47697. },
  47698. {
  47699. name: "Megamacro",
  47700. height: math.unit(850, "feet")
  47701. },
  47702. ]
  47703. ))
  47704. characterMakers.push(() => makeCharacter(
  47705. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47706. {
  47707. side: {
  47708. height: math.unit(13 + 6/12, "feet"),
  47709. weight: math.unit(3200, "lb"),
  47710. name: "Side",
  47711. image: {
  47712. source: "./media/characters/alvir/side.svg",
  47713. extra: 896/589,
  47714. bottom: 26/922
  47715. }
  47716. },
  47717. },
  47718. [
  47719. {
  47720. name: "Normal",
  47721. height: math.unit(13 + 6/12, "feet"),
  47722. default: true
  47723. },
  47724. ]
  47725. ))
  47726. characterMakers.push(() => makeCharacter(
  47727. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47728. {
  47729. front: {
  47730. height: math.unit(5 + 4/12, "feet"),
  47731. weight: math.unit(236, "lb"),
  47732. name: "Front",
  47733. image: {
  47734. source: "./media/characters/zaina-khalil/front.svg",
  47735. extra: 1533/1485,
  47736. bottom: 94/1627
  47737. }
  47738. },
  47739. side: {
  47740. height: math.unit(5 + 4/12, "feet"),
  47741. weight: math.unit(236, "lb"),
  47742. name: "Side",
  47743. image: {
  47744. source: "./media/characters/zaina-khalil/side.svg",
  47745. extra: 1537/1498,
  47746. bottom: 66/1603
  47747. }
  47748. },
  47749. back: {
  47750. height: math.unit(5 + 4/12, "feet"),
  47751. weight: math.unit(236, "lb"),
  47752. name: "Back",
  47753. image: {
  47754. source: "./media/characters/zaina-khalil/back.svg",
  47755. extra: 1546/1494,
  47756. bottom: 89/1635
  47757. }
  47758. },
  47759. },
  47760. [
  47761. {
  47762. name: "Normal",
  47763. height: math.unit(5 + 4/12, "feet"),
  47764. default: true
  47765. },
  47766. ]
  47767. ))
  47768. characterMakers.push(() => makeCharacter(
  47769. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47770. {
  47771. side: {
  47772. height: math.unit(12, "feet"),
  47773. weight: math.unit(4000, "lb"),
  47774. name: "Side",
  47775. image: {
  47776. source: "./media/characters/terry/side.svg",
  47777. extra: 1518/1439,
  47778. bottom: 149/1667
  47779. }
  47780. },
  47781. },
  47782. [
  47783. {
  47784. name: "Normal",
  47785. height: math.unit(12, "feet"),
  47786. default: true
  47787. },
  47788. ]
  47789. ))
  47790. characterMakers.push(() => makeCharacter(
  47791. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47792. {
  47793. front: {
  47794. height: math.unit(12, "feet"),
  47795. weight: math.unit(1500, "lb"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/kahea/front.svg",
  47799. extra: 1722/1617,
  47800. bottom: 179/1901
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Normal",
  47807. height: math.unit(12, "feet"),
  47808. default: true
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47814. {
  47815. demonFront: {
  47816. height: math.unit(36, "feet"),
  47817. name: "Front",
  47818. image: {
  47819. source: "./media/characters/alex-xuria/demon-front.svg",
  47820. extra: 1705/1673,
  47821. bottom: 198/1903
  47822. },
  47823. form: "demon",
  47824. default: true
  47825. },
  47826. demonBack: {
  47827. height: math.unit(36, "feet"),
  47828. name: "Back",
  47829. image: {
  47830. source: "./media/characters/alex-xuria/demon-back.svg",
  47831. extra: 1725/1693,
  47832. bottom: 70/1795
  47833. },
  47834. form: "demon"
  47835. },
  47836. demonHead: {
  47837. height: math.unit(2.14, "meters"),
  47838. name: "Head",
  47839. image: {
  47840. source: "./media/characters/alex-xuria/demon-head.svg"
  47841. },
  47842. form: "demon"
  47843. },
  47844. demonHand: {
  47845. height: math.unit(1.61, "meters"),
  47846. name: "Hand",
  47847. image: {
  47848. source: "./media/characters/alex-xuria/demon-hand.svg"
  47849. },
  47850. form: "demon"
  47851. },
  47852. demonPaw: {
  47853. height: math.unit(1.35, "meters"),
  47854. name: "Paw",
  47855. image: {
  47856. source: "./media/characters/alex-xuria/demon-paw.svg"
  47857. },
  47858. form: "demon"
  47859. },
  47860. demonFoot: {
  47861. height: math.unit(2.2, "meters"),
  47862. name: "Foot",
  47863. image: {
  47864. source: "./media/characters/alex-xuria/demon-foot.svg"
  47865. },
  47866. form: "demon"
  47867. },
  47868. demonCock: {
  47869. height: math.unit(1.74, "meters"),
  47870. name: "Cock",
  47871. image: {
  47872. source: "./media/characters/alex-xuria/demon-cock.svg"
  47873. },
  47874. form: "demon"
  47875. },
  47876. demonTailClosed: {
  47877. height: math.unit(1.47, "meters"),
  47878. name: "Tail (Closed)",
  47879. image: {
  47880. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47881. },
  47882. form: "demon"
  47883. },
  47884. demonTailOpen: {
  47885. height: math.unit(2.85, "meters"),
  47886. name: "Tail (Open)",
  47887. image: {
  47888. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47889. },
  47890. form: "demon"
  47891. },
  47892. incubusFront: {
  47893. height: math.unit(12, "feet"),
  47894. name: "Front",
  47895. image: {
  47896. source: "./media/characters/alex-xuria/incubus-front.svg",
  47897. extra: 1754/1677,
  47898. bottom: 125/1879
  47899. },
  47900. form: "incubus",
  47901. default: true
  47902. },
  47903. incubusBack: {
  47904. height: math.unit(12, "feet"),
  47905. name: "Back",
  47906. image: {
  47907. source: "./media/characters/alex-xuria/incubus-back.svg",
  47908. extra: 1702/1647,
  47909. bottom: 30/1732
  47910. },
  47911. form: "incubus"
  47912. },
  47913. incubusHead: {
  47914. height: math.unit(3.45, "feet"),
  47915. name: "Head",
  47916. image: {
  47917. source: "./media/characters/alex-xuria/incubus-head.svg"
  47918. },
  47919. form: "incubus"
  47920. },
  47921. rabbitFront: {
  47922. height: math.unit(6, "feet"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47926. extra: 1369/1349,
  47927. bottom: 45/1414
  47928. },
  47929. form: "rabbit",
  47930. default: true
  47931. },
  47932. rabbitSide: {
  47933. height: math.unit(6, "feet"),
  47934. name: "Side",
  47935. image: {
  47936. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47937. extra: 1370/1356,
  47938. bottom: 37/1407
  47939. },
  47940. form: "rabbit"
  47941. },
  47942. rabbitBack: {
  47943. height: math.unit(6, "feet"),
  47944. name: "Back",
  47945. image: {
  47946. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47947. extra: 1375/1358,
  47948. bottom: 43/1418
  47949. },
  47950. form: "rabbit"
  47951. },
  47952. },
  47953. [
  47954. {
  47955. name: "Normal",
  47956. height: math.unit(6, "feet"),
  47957. default: true,
  47958. form: "rabbit"
  47959. },
  47960. {
  47961. name: "Incubus",
  47962. height: math.unit(12, "feet"),
  47963. default: true,
  47964. form: "incubus"
  47965. },
  47966. {
  47967. name: "Demon",
  47968. height: math.unit(36, "feet"),
  47969. default: true,
  47970. form: "demon"
  47971. }
  47972. ],
  47973. {
  47974. "demon": {
  47975. name: "Demon",
  47976. default: true
  47977. },
  47978. "incubus": {
  47979. name: "Incubus",
  47980. },
  47981. "rabbit": {
  47982. name: "Rabbit"
  47983. }
  47984. }
  47985. ))
  47986. characterMakers.push(() => makeCharacter(
  47987. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47988. {
  47989. front: {
  47990. height: math.unit(7 + 5/12, "feet"),
  47991. weight: math.unit(510, "lb"),
  47992. name: "Front",
  47993. image: {
  47994. source: "./media/characters/syrup/front.svg",
  47995. extra: 932/916,
  47996. bottom: 26/958
  47997. }
  47998. },
  47999. },
  48000. [
  48001. {
  48002. name: "Normal",
  48003. height: math.unit(7 + 5/12, "feet"),
  48004. default: true
  48005. },
  48006. {
  48007. name: "Big",
  48008. height: math.unit(50, "feet")
  48009. },
  48010. {
  48011. name: "Macro",
  48012. height: math.unit(300, "feet")
  48013. },
  48014. {
  48015. name: "Megamacro",
  48016. height: math.unit(1, "mile")
  48017. },
  48018. ]
  48019. ))
  48020. characterMakers.push(() => makeCharacter(
  48021. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48022. {
  48023. front: {
  48024. height: math.unit(6 + 9/12, "feet"),
  48025. name: "Front",
  48026. image: {
  48027. source: "./media/characters/zeimne/front.svg",
  48028. extra: 1969/1806,
  48029. bottom: 53/2022
  48030. }
  48031. },
  48032. },
  48033. [
  48034. {
  48035. name: "Normal",
  48036. height: math.unit(6 + 9/12, "feet"),
  48037. default: true
  48038. },
  48039. {
  48040. name: "Giant",
  48041. height: math.unit(550, "feet")
  48042. },
  48043. {
  48044. name: "Mega",
  48045. height: math.unit(3, "miles")
  48046. },
  48047. {
  48048. name: "Giga",
  48049. height: math.unit(250, "miles")
  48050. },
  48051. {
  48052. name: "Tera",
  48053. height: math.unit(1, "AU")
  48054. },
  48055. ]
  48056. ))
  48057. characterMakers.push(() => makeCharacter(
  48058. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48059. {
  48060. front: {
  48061. height: math.unit(5 + 2/12, "feet"),
  48062. name: "Front",
  48063. image: {
  48064. source: "./media/characters/grar/front.svg",
  48065. extra: 1331/1119,
  48066. bottom: 60/1391
  48067. }
  48068. },
  48069. back: {
  48070. height: math.unit(5 + 2/12, "feet"),
  48071. name: "Back",
  48072. image: {
  48073. source: "./media/characters/grar/back.svg",
  48074. extra: 1385/1169,
  48075. bottom: 23/1408
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Normal",
  48082. height: math.unit(5 + 2/12, "feet"),
  48083. default: true
  48084. },
  48085. ]
  48086. ))
  48087. characterMakers.push(() => makeCharacter(
  48088. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48089. {
  48090. front: {
  48091. height: math.unit(13 + 7/12, "feet"),
  48092. weight: math.unit(2200, "lb"),
  48093. name: "Front",
  48094. image: {
  48095. source: "./media/characters/endraya/front.svg",
  48096. extra: 1289/1215,
  48097. bottom: 50/1339
  48098. }
  48099. },
  48100. nude: {
  48101. height: math.unit(13 + 7/12, "feet"),
  48102. weight: math.unit(2200, "lb"),
  48103. name: "Nude",
  48104. image: {
  48105. source: "./media/characters/endraya/nude.svg",
  48106. extra: 1247/1171,
  48107. bottom: 40/1287
  48108. }
  48109. },
  48110. head: {
  48111. height: math.unit(2.6, "feet"),
  48112. name: "Head",
  48113. image: {
  48114. source: "./media/characters/endraya/head.svg"
  48115. }
  48116. },
  48117. slit: {
  48118. height: math.unit(3.4, "feet"),
  48119. name: "Slit",
  48120. image: {
  48121. source: "./media/characters/endraya/slit.svg"
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(13 + 7/12, "feet"),
  48129. default: true
  48130. },
  48131. {
  48132. name: "Macro",
  48133. height: math.unit(200, "feet")
  48134. },
  48135. ]
  48136. ))
  48137. characterMakers.push(() => makeCharacter(
  48138. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48139. {
  48140. front: {
  48141. height: math.unit(1.81, "meters"),
  48142. weight: math.unit(69, "kg"),
  48143. name: "Front",
  48144. image: {
  48145. source: "./media/characters/rodryana/front.svg",
  48146. extra: 2002/1921,
  48147. bottom: 53/2055
  48148. }
  48149. },
  48150. back: {
  48151. height: math.unit(1.81, "meters"),
  48152. weight: math.unit(69, "kg"),
  48153. name: "Back",
  48154. image: {
  48155. source: "./media/characters/rodryana/back.svg",
  48156. extra: 1993/1926,
  48157. bottom: 48/2041
  48158. }
  48159. },
  48160. maw: {
  48161. height: math.unit(0.19769417475, "meters"),
  48162. name: "Maw",
  48163. image: {
  48164. source: "./media/characters/rodryana/maw.svg"
  48165. }
  48166. },
  48167. slit: {
  48168. height: math.unit(0.31631067961, "meters"),
  48169. name: "Slit",
  48170. image: {
  48171. source: "./media/characters/rodryana/slit.svg"
  48172. }
  48173. },
  48174. },
  48175. [
  48176. {
  48177. name: "Normal",
  48178. height: math.unit(1.81, "meters")
  48179. },
  48180. {
  48181. name: "Mini Macro",
  48182. height: math.unit(181, "meters")
  48183. },
  48184. {
  48185. name: "Macro",
  48186. height: math.unit(452, "meters"),
  48187. default: true
  48188. },
  48189. {
  48190. name: "Mega Macro",
  48191. height: math.unit(1.375, "km")
  48192. },
  48193. {
  48194. name: "Giga Macro",
  48195. height: math.unit(13.575, "km")
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48201. {
  48202. front: {
  48203. height: math.unit(6, "feet"),
  48204. weight: math.unit(1000, "lb"),
  48205. name: "Front",
  48206. image: {
  48207. source: "./media/characters/asaya/front.svg",
  48208. extra: 1460/1200,
  48209. bottom: 71/1531
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Normal",
  48216. height: math.unit(8, "km"),
  48217. default: true
  48218. },
  48219. ]
  48220. ))
  48221. characterMakers.push(() => makeCharacter(
  48222. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48223. {
  48224. front: {
  48225. height: math.unit(3.5, "meters"),
  48226. name: "Front",
  48227. image: {
  48228. source: "./media/characters/sarzu-and-israz/front.svg",
  48229. extra: 1570/1558,
  48230. bottom: 150/1720
  48231. },
  48232. },
  48233. back: {
  48234. height: math.unit(3.5, "meters"),
  48235. name: "Back",
  48236. image: {
  48237. source: "./media/characters/sarzu-and-israz/back.svg",
  48238. extra: 1523/1509,
  48239. bottom: 132/1655
  48240. },
  48241. },
  48242. frontFemale: {
  48243. height: math.unit(3.5, "meters"),
  48244. name: "Front (Female)",
  48245. image: {
  48246. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48247. extra: 1570/1558,
  48248. bottom: 150/1720
  48249. },
  48250. },
  48251. frontHerm: {
  48252. height: math.unit(3.5, "meters"),
  48253. name: "Front (Herm)",
  48254. image: {
  48255. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48256. extra: 1570/1558,
  48257. bottom: 150/1720
  48258. },
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Normal",
  48264. height: math.unit(3.5, "meters"),
  48265. default: true,
  48266. },
  48267. {
  48268. name: "Macro",
  48269. height: math.unit(65.5, "meters"),
  48270. },
  48271. ],
  48272. ))
  48273. characterMakers.push(() => makeCharacter(
  48274. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48275. {
  48276. front: {
  48277. height: math.unit(6, "feet"),
  48278. weight: math.unit(250, "lb"),
  48279. name: "Front",
  48280. image: {
  48281. source: "./media/characters/zenimma/front.svg",
  48282. extra: 1346/1320,
  48283. bottom: 58/1404
  48284. }
  48285. },
  48286. back: {
  48287. height: math.unit(6, "feet"),
  48288. weight: math.unit(250, "lb"),
  48289. name: "Back",
  48290. image: {
  48291. source: "./media/characters/zenimma/back.svg",
  48292. extra: 1324/1308,
  48293. bottom: 44/1368
  48294. }
  48295. },
  48296. dick: {
  48297. height: math.unit(1.44, "feet"),
  48298. name: "Dick",
  48299. image: {
  48300. source: "./media/characters/zenimma/dick.svg"
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Canon Height",
  48307. height: math.unit(66, "miles"),
  48308. default: true
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48314. {
  48315. nude: {
  48316. height: math.unit(6, "feet"),
  48317. weight: math.unit(150, "lb"),
  48318. name: "Nude",
  48319. image: {
  48320. source: "./media/characters/shavon/nude.svg",
  48321. extra: 1242/1096,
  48322. bottom: 98/1340
  48323. }
  48324. },
  48325. dressed: {
  48326. height: math.unit(6, "feet"),
  48327. weight: math.unit(150, "lb"),
  48328. name: "Dressed",
  48329. image: {
  48330. source: "./media/characters/shavon/dressed.svg",
  48331. extra: 1242/1096,
  48332. bottom: 98/1340
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Macro",
  48339. height: math.unit(255, "feet"),
  48340. default: true
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48346. {
  48347. front: {
  48348. height: math.unit(6, "feet"),
  48349. name: "Front",
  48350. image: {
  48351. source: "./media/characters/steph/front.svg",
  48352. extra: 1430/1330,
  48353. bottom: 54/1484
  48354. }
  48355. },
  48356. },
  48357. [
  48358. {
  48359. name: "Normal",
  48360. height: math.unit(6, "feet"),
  48361. default: true
  48362. },
  48363. ]
  48364. ))
  48365. characterMakers.push(() => makeCharacter(
  48366. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48367. {
  48368. front: {
  48369. height: math.unit(9, "feet"),
  48370. weight: math.unit(400, "lb"),
  48371. name: "Front",
  48372. image: {
  48373. source: "./media/characters/kil'aman/front.svg",
  48374. extra: 1210/1159,
  48375. bottom: 109/1319
  48376. }
  48377. },
  48378. head: {
  48379. height: math.unit(2.14, "feet"),
  48380. name: "Head",
  48381. image: {
  48382. source: "./media/characters/kil'aman/head.svg"
  48383. }
  48384. },
  48385. maw: {
  48386. height: math.unit(1.21, "feet"),
  48387. name: "Maw",
  48388. image: {
  48389. source: "./media/characters/kil'aman/maw.svg"
  48390. }
  48391. },
  48392. foot: {
  48393. height: math.unit(1.7, "feet"),
  48394. name: "Foot",
  48395. image: {
  48396. source: "./media/characters/kil'aman/foot.svg"
  48397. }
  48398. },
  48399. dick: {
  48400. height: math.unit(2.1, "feet"),
  48401. name: "Dick",
  48402. image: {
  48403. source: "./media/characters/kil'aman/dick.svg"
  48404. }
  48405. },
  48406. },
  48407. [
  48408. {
  48409. name: "Normal",
  48410. height: math.unit(9, "feet")
  48411. },
  48412. {
  48413. name: "Canon Height",
  48414. height: math.unit(10, "miles"),
  48415. default: true
  48416. },
  48417. {
  48418. name: "Maximum",
  48419. height: math.unit(6e9, "miles")
  48420. },
  48421. ]
  48422. ))
  48423. characterMakers.push(() => makeCharacter(
  48424. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48425. {
  48426. front: {
  48427. height: math.unit(90, "feet"),
  48428. weight: math.unit(675000, "lb"),
  48429. name: "Front",
  48430. image: {
  48431. source: "./media/characters/qadan/front.svg",
  48432. extra: 1012/1004,
  48433. bottom: 78/1090
  48434. }
  48435. },
  48436. back: {
  48437. height: math.unit(90, "feet"),
  48438. weight: math.unit(675000, "lb"),
  48439. name: "Back",
  48440. image: {
  48441. source: "./media/characters/qadan/back.svg",
  48442. extra: 1042/1031,
  48443. bottom: 55/1097
  48444. }
  48445. },
  48446. armored: {
  48447. height: math.unit(90, "feet"),
  48448. weight: math.unit(675000, "lb"),
  48449. name: "Armored",
  48450. image: {
  48451. source: "./media/characters/qadan/armored.svg",
  48452. extra: 1047/1037,
  48453. bottom: 48/1095
  48454. }
  48455. },
  48456. },
  48457. [
  48458. {
  48459. name: "Normal",
  48460. height: math.unit(90, "feet"),
  48461. default: true
  48462. },
  48463. ]
  48464. ))
  48465. characterMakers.push(() => makeCharacter(
  48466. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48467. {
  48468. front: {
  48469. height: math.unit(6, "feet"),
  48470. weight: math.unit(225, "lb"),
  48471. name: "Front",
  48472. image: {
  48473. source: "./media/characters/brooke/front.svg",
  48474. extra: 1050/1010,
  48475. bottom: 66/1116
  48476. }
  48477. },
  48478. back: {
  48479. height: math.unit(6, "feet"),
  48480. weight: math.unit(225, "lb"),
  48481. name: "Back",
  48482. image: {
  48483. source: "./media/characters/brooke/back.svg",
  48484. extra: 1053/1013,
  48485. bottom: 41/1094
  48486. }
  48487. },
  48488. dressed: {
  48489. height: math.unit(6, "feet"),
  48490. weight: math.unit(225, "lb"),
  48491. name: "Dressed",
  48492. image: {
  48493. source: "./media/characters/brooke/dressed.svg",
  48494. extra: 1050/1010,
  48495. bottom: 66/1116
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Canon Height",
  48502. height: math.unit(500, "miles"),
  48503. default: true
  48504. },
  48505. ]
  48506. ))
  48507. characterMakers.push(() => makeCharacter(
  48508. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48509. {
  48510. front: {
  48511. height: math.unit(6 + 2/12, "feet"),
  48512. weight: math.unit(210, "lb"),
  48513. name: "Front",
  48514. image: {
  48515. source: "./media/characters/wubs/front.svg",
  48516. extra: 1345/1325,
  48517. bottom: 70/1415
  48518. }
  48519. },
  48520. back: {
  48521. height: math.unit(6 + 2/12, "feet"),
  48522. weight: math.unit(210, "lb"),
  48523. name: "Back",
  48524. image: {
  48525. source: "./media/characters/wubs/back.svg",
  48526. extra: 1296/1275,
  48527. bottom: 58/1354
  48528. }
  48529. },
  48530. },
  48531. [
  48532. {
  48533. name: "Normal",
  48534. height: math.unit(6 + 2/12, "feet"),
  48535. default: true
  48536. },
  48537. {
  48538. name: "Macro",
  48539. height: math.unit(1000, "feet")
  48540. },
  48541. {
  48542. name: "Megamacro",
  48543. height: math.unit(1, "mile")
  48544. },
  48545. ]
  48546. ))
  48547. characterMakers.push(() => makeCharacter(
  48548. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48549. {
  48550. front: {
  48551. height: math.unit(4, "feet"),
  48552. weight: math.unit(120, "lb"),
  48553. name: "Front",
  48554. image: {
  48555. source: "./media/characters/blue/front.svg",
  48556. extra: 1636/1525,
  48557. bottom: 43/1679
  48558. }
  48559. },
  48560. back: {
  48561. height: math.unit(4, "feet"),
  48562. weight: math.unit(120, "lb"),
  48563. name: "Back",
  48564. image: {
  48565. source: "./media/characters/blue/back.svg",
  48566. extra: 1660/1560,
  48567. bottom: 57/1717
  48568. }
  48569. },
  48570. paws: {
  48571. height: math.unit(0.826, "feet"),
  48572. name: "Paws",
  48573. image: {
  48574. source: "./media/characters/blue/paws.svg"
  48575. }
  48576. },
  48577. },
  48578. [
  48579. {
  48580. name: "Micro",
  48581. height: math.unit(3, "inches")
  48582. },
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(4, "feet"),
  48586. default: true
  48587. },
  48588. {
  48589. name: "Femenine Form",
  48590. height: math.unit(14, "feet")
  48591. },
  48592. {
  48593. name: "Werebat Form",
  48594. height: math.unit(18, "feet")
  48595. },
  48596. ]
  48597. ))
  48598. characterMakers.push(() => makeCharacter(
  48599. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48600. {
  48601. female: {
  48602. height: math.unit(7 + 4/12, "feet"),
  48603. weight: math.unit(243, "lb"),
  48604. name: "Female",
  48605. image: {
  48606. source: "./media/characters/kaya/female.svg",
  48607. extra: 975/898,
  48608. bottom: 34/1009
  48609. }
  48610. },
  48611. herm: {
  48612. height: math.unit(7 + 4/12, "feet"),
  48613. weight: math.unit(243, "lb"),
  48614. name: "Herm",
  48615. image: {
  48616. source: "./media/characters/kaya/herm.svg",
  48617. extra: 975/898,
  48618. bottom: 34/1009
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(7 + 4/12, "feet"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48632. {
  48633. female: {
  48634. height: math.unit(9 + 4/12, "feet"),
  48635. weight: math.unit(398, "lb"),
  48636. name: "Female",
  48637. image: {
  48638. source: "./media/characters/kassandra/female.svg",
  48639. extra: 908/839,
  48640. bottom: 61/969
  48641. }
  48642. },
  48643. intersex: {
  48644. height: math.unit(9 + 4/12, "feet"),
  48645. weight: math.unit(398, "lb"),
  48646. name: "Intersex",
  48647. image: {
  48648. source: "./media/characters/kassandra/intersex.svg",
  48649. extra: 908/839,
  48650. bottom: 61/969
  48651. }
  48652. },
  48653. },
  48654. [
  48655. {
  48656. name: "Normal",
  48657. height: math.unit(9 + 4/12, "feet"),
  48658. default: true
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48664. {
  48665. front: {
  48666. height: math.unit(3, "meters"),
  48667. name: "Front",
  48668. image: {
  48669. source: "./media/characters/amy/front.svg",
  48670. extra: 1380/1343,
  48671. bottom: 70/1450
  48672. }
  48673. },
  48674. back: {
  48675. height: math.unit(3, "meters"),
  48676. name: "Back",
  48677. image: {
  48678. source: "./media/characters/amy/back.svg",
  48679. extra: 1380/1347,
  48680. bottom: 66/1446
  48681. }
  48682. },
  48683. },
  48684. [
  48685. {
  48686. name: "Normal",
  48687. height: math.unit(3, "meters"),
  48688. default: true
  48689. },
  48690. ]
  48691. ))
  48692. characterMakers.push(() => makeCharacter(
  48693. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48694. {
  48695. side: {
  48696. height: math.unit(47, "cm"),
  48697. weight: math.unit(10.8, "kg"),
  48698. name: "Side",
  48699. image: {
  48700. source: "./media/characters/alphaschakal/side.svg",
  48701. extra: 1058/568,
  48702. bottom: 62/1120
  48703. }
  48704. },
  48705. back: {
  48706. height: math.unit(78, "cm"),
  48707. weight: math.unit(10.8, "kg"),
  48708. name: "Back",
  48709. image: {
  48710. source: "./media/characters/alphaschakal/back.svg",
  48711. extra: 1102/942,
  48712. bottom: 185/1287
  48713. }
  48714. },
  48715. head: {
  48716. height: math.unit(28, "cm"),
  48717. name: "Head",
  48718. image: {
  48719. source: "./media/characters/alphaschakal/head.svg",
  48720. extra: 696/508,
  48721. bottom: 0/696
  48722. }
  48723. },
  48724. paw: {
  48725. height: math.unit(16, "cm"),
  48726. name: "Paw",
  48727. image: {
  48728. source: "./media/characters/alphaschakal/paw.svg"
  48729. }
  48730. },
  48731. },
  48732. [
  48733. {
  48734. name: "Normal",
  48735. height: math.unit(47, "cm"),
  48736. default: true
  48737. },
  48738. {
  48739. name: "Macro",
  48740. height: math.unit(340, "cm")
  48741. },
  48742. ]
  48743. ))
  48744. characterMakers.push(() => makeCharacter(
  48745. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48746. {
  48747. front: {
  48748. height: math.unit(36, "earths"),
  48749. name: "Front",
  48750. image: {
  48751. source: "./media/characters/ecobyss/front.svg",
  48752. extra: 1282/1215,
  48753. bottom: 11/1293
  48754. }
  48755. },
  48756. back: {
  48757. height: math.unit(36, "earths"),
  48758. name: "Back",
  48759. image: {
  48760. source: "./media/characters/ecobyss/back.svg",
  48761. extra: 1291/1222,
  48762. bottom: 8/1299
  48763. }
  48764. },
  48765. },
  48766. [
  48767. {
  48768. name: "Normal",
  48769. height: math.unit(36, "earths"),
  48770. default: true
  48771. },
  48772. ]
  48773. ))
  48774. characterMakers.push(() => makeCharacter(
  48775. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48776. {
  48777. front: {
  48778. height: math.unit(12, "feet"),
  48779. name: "Front",
  48780. image: {
  48781. source: "./media/characters/vasuk/front.svg",
  48782. extra: 1326/1207,
  48783. bottom: 64/1390
  48784. }
  48785. },
  48786. },
  48787. [
  48788. {
  48789. name: "Normal",
  48790. height: math.unit(12, "feet"),
  48791. default: true
  48792. },
  48793. ]
  48794. ))
  48795. characterMakers.push(() => makeCharacter(
  48796. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48797. {
  48798. side: {
  48799. height: math.unit(100, "feet"),
  48800. name: "Side",
  48801. image: {
  48802. source: "./media/characters/linneaus/side.svg",
  48803. extra: 987/807,
  48804. bottom: 47/1034
  48805. }
  48806. },
  48807. },
  48808. [
  48809. {
  48810. name: "Macro",
  48811. height: math.unit(100, "feet"),
  48812. default: true
  48813. },
  48814. ]
  48815. ))
  48816. characterMakers.push(() => makeCharacter(
  48817. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48818. {
  48819. front: {
  48820. height: math.unit(8, "feet"),
  48821. weight: math.unit(1200, "lb"),
  48822. name: "Front",
  48823. image: {
  48824. source: "./media/characters/nyterious-daligdig/front.svg",
  48825. extra: 1284/1094,
  48826. bottom: 84/1368
  48827. }
  48828. },
  48829. back: {
  48830. height: math.unit(8, "feet"),
  48831. weight: math.unit(1200, "lb"),
  48832. name: "Back",
  48833. image: {
  48834. source: "./media/characters/nyterious-daligdig/back.svg",
  48835. extra: 1301/1121,
  48836. bottom: 129/1430
  48837. }
  48838. },
  48839. mouth: {
  48840. height: math.unit(1.464, "feet"),
  48841. name: "Mouth",
  48842. image: {
  48843. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48844. }
  48845. },
  48846. },
  48847. [
  48848. {
  48849. name: "Small",
  48850. height: math.unit(8, "feet"),
  48851. default: true
  48852. },
  48853. {
  48854. name: "Normal",
  48855. height: math.unit(15, "feet")
  48856. },
  48857. {
  48858. name: "Macro",
  48859. height: math.unit(90, "feet")
  48860. },
  48861. ]
  48862. ))
  48863. characterMakers.push(() => makeCharacter(
  48864. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48865. {
  48866. front: {
  48867. height: math.unit(7 + 4/12, "feet"),
  48868. weight: math.unit(252, "lb"),
  48869. name: "Front",
  48870. image: {
  48871. source: "./media/characters/bandel/front.svg",
  48872. extra: 1946/1775,
  48873. bottom: 26/1972
  48874. }
  48875. },
  48876. back: {
  48877. height: math.unit(7 + 4/12, "feet"),
  48878. weight: math.unit(252, "lb"),
  48879. name: "Back",
  48880. image: {
  48881. source: "./media/characters/bandel/back.svg",
  48882. extra: 1940/1770,
  48883. bottom: 25/1965
  48884. }
  48885. },
  48886. maw: {
  48887. height: math.unit(2.15, "feet"),
  48888. name: "Maw",
  48889. image: {
  48890. source: "./media/characters/bandel/maw.svg"
  48891. }
  48892. },
  48893. stomach: {
  48894. height: math.unit(1.95, "feet"),
  48895. name: "Stomach",
  48896. image: {
  48897. source: "./media/characters/bandel/stomach.svg"
  48898. }
  48899. },
  48900. },
  48901. [
  48902. {
  48903. name: "Normal",
  48904. height: math.unit(7 + 4/12, "feet"),
  48905. default: true
  48906. },
  48907. ]
  48908. ))
  48909. characterMakers.push(() => makeCharacter(
  48910. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48911. {
  48912. front: {
  48913. height: math.unit(10 + 5/12, "feet"),
  48914. weight: math.unit(773.5, "kg"),
  48915. name: "Front",
  48916. image: {
  48917. source: "./media/characters/zed/front.svg",
  48918. extra: 987/941,
  48919. bottom: 52/1039
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Short",
  48926. height: math.unit(5 + 4/12, "feet")
  48927. },
  48928. {
  48929. name: "Average",
  48930. height: math.unit(10 + 5/12, "feet"),
  48931. default: true
  48932. },
  48933. {
  48934. name: "Mini-Macro",
  48935. height: math.unit(24 + 9/12, "feet")
  48936. },
  48937. {
  48938. name: "Macro",
  48939. height: math.unit(249, "feet")
  48940. },
  48941. {
  48942. name: "Mega-Macro",
  48943. height: math.unit(12490, "feet")
  48944. },
  48945. {
  48946. name: "Giga-Macro",
  48947. height: math.unit(24.9, "miles")
  48948. },
  48949. {
  48950. name: "Tera-Macro",
  48951. height: math.unit(24900, "miles")
  48952. },
  48953. {
  48954. name: "Cosmic Scale",
  48955. height: math.unit(38.9, "lightyears")
  48956. },
  48957. {
  48958. name: "Universal Scale",
  48959. height: math.unit(138e12, "lightyears")
  48960. },
  48961. ]
  48962. ))
  48963. characterMakers.push(() => makeCharacter(
  48964. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48965. {
  48966. front: {
  48967. height: math.unit(1561, "inches"),
  48968. name: "Front",
  48969. image: {
  48970. source: "./media/characters/ivan/front.svg",
  48971. extra: 1126/1071,
  48972. bottom: 26/1152
  48973. }
  48974. },
  48975. back: {
  48976. height: math.unit(1561, "inches"),
  48977. name: "Back",
  48978. image: {
  48979. source: "./media/characters/ivan/back.svg",
  48980. extra: 1134/1079,
  48981. bottom: 30/1164
  48982. }
  48983. },
  48984. },
  48985. [
  48986. {
  48987. name: "Normal",
  48988. height: math.unit(1561, "inches"),
  48989. default: true
  48990. },
  48991. ]
  48992. ))
  48993. characterMakers.push(() => makeCharacter(
  48994. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48995. {
  48996. front: {
  48997. height: math.unit(5 + 7/12, "feet"),
  48998. weight: math.unit(150, "lb"),
  48999. name: "Front",
  49000. image: {
  49001. source: "./media/characters/robin-arctic-hare/front.svg",
  49002. extra: 1148/974,
  49003. bottom: 20/1168
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(5 + 7/12, "feet"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49017. {
  49018. side: {
  49019. height: math.unit(5, "feet"),
  49020. name: "Side",
  49021. image: {
  49022. source: "./media/characters/birch/side.svg",
  49023. extra: 985/796,
  49024. bottom: 111/1096
  49025. }
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Normal",
  49031. height: math.unit(5, "feet"),
  49032. default: true
  49033. },
  49034. ]
  49035. ))
  49036. characterMakers.push(() => makeCharacter(
  49037. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49038. {
  49039. front: {
  49040. height: math.unit(4, "feet"),
  49041. name: "Front",
  49042. image: {
  49043. source: "./media/characters/rasp/front.svg",
  49044. extra: 561/478,
  49045. bottom: 74/635
  49046. }
  49047. },
  49048. },
  49049. [
  49050. {
  49051. name: "Normal",
  49052. height: math.unit(4, "feet"),
  49053. default: true
  49054. },
  49055. ]
  49056. ))
  49057. characterMakers.push(() => makeCharacter(
  49058. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49059. {
  49060. front: {
  49061. height: math.unit(4 + 6/12, "feet"),
  49062. name: "Front",
  49063. image: {
  49064. source: "./media/characters/agatha/front.svg",
  49065. extra: 947/933,
  49066. bottom: 42/989
  49067. }
  49068. },
  49069. back: {
  49070. height: math.unit(4 + 6/12, "feet"),
  49071. name: "Back",
  49072. image: {
  49073. source: "./media/characters/agatha/back.svg",
  49074. extra: 935/922,
  49075. bottom: 48/983
  49076. }
  49077. },
  49078. },
  49079. [
  49080. {
  49081. name: "Normal",
  49082. height: math.unit(4 + 6 /12, "feet"),
  49083. default: true
  49084. },
  49085. {
  49086. name: "Max Size",
  49087. height: math.unit(500, "feet")
  49088. },
  49089. ]
  49090. ))
  49091. characterMakers.push(() => makeCharacter(
  49092. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49093. {
  49094. side: {
  49095. height: math.unit(30, "feet"),
  49096. name: "Side",
  49097. image: {
  49098. source: "./media/characters/roggy/side.svg",
  49099. extra: 909/643,
  49100. bottom: 63/972
  49101. }
  49102. },
  49103. lounging: {
  49104. height: math.unit(20, "feet"),
  49105. name: "Lounging",
  49106. image: {
  49107. source: "./media/characters/roggy/lounging.svg",
  49108. extra: 643/479,
  49109. bottom: 145/788
  49110. }
  49111. },
  49112. handpaw: {
  49113. height: math.unit(13.1, "feet"),
  49114. name: "Handpaw",
  49115. image: {
  49116. source: "./media/characters/roggy/handpaw.svg"
  49117. }
  49118. },
  49119. footpaw: {
  49120. height: math.unit(15.8, "feet"),
  49121. name: "Footpaw",
  49122. image: {
  49123. source: "./media/characters/roggy/footpaw.svg"
  49124. }
  49125. },
  49126. },
  49127. [
  49128. {
  49129. name: "Menacing",
  49130. height: math.unit(30, "feet"),
  49131. default: true
  49132. },
  49133. ]
  49134. ))
  49135. characterMakers.push(() => makeCharacter(
  49136. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49137. {
  49138. front: {
  49139. height: math.unit(5 + 7/12, "feet"),
  49140. weight: math.unit(135, "lb"),
  49141. name: "Front",
  49142. image: {
  49143. source: "./media/characters/naomi/front.svg",
  49144. extra: 1209/1154,
  49145. bottom: 129/1338
  49146. }
  49147. },
  49148. back: {
  49149. height: math.unit(5 + 7/12, "feet"),
  49150. weight: math.unit(135, "lb"),
  49151. name: "Back",
  49152. image: {
  49153. source: "./media/characters/naomi/back.svg",
  49154. extra: 1252/1190,
  49155. bottom: 23/1275
  49156. }
  49157. },
  49158. },
  49159. [
  49160. {
  49161. name: "Normal",
  49162. height: math.unit(5 + 7 /12, "feet"),
  49163. default: true
  49164. },
  49165. ]
  49166. ))
  49167. characterMakers.push(() => makeCharacter(
  49168. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49169. {
  49170. side: {
  49171. height: math.unit(35, "meters"),
  49172. name: "Side",
  49173. image: {
  49174. source: "./media/characters/kimpi/side.svg",
  49175. extra: 419/382,
  49176. bottom: 63/482
  49177. }
  49178. },
  49179. hand: {
  49180. height: math.unit(8.96, "meters"),
  49181. name: "Hand",
  49182. image: {
  49183. source: "./media/characters/kimpi/hand.svg"
  49184. }
  49185. },
  49186. },
  49187. [
  49188. {
  49189. name: "Normal",
  49190. height: math.unit(35, "meters"),
  49191. default: true
  49192. },
  49193. ]
  49194. ))
  49195. characterMakers.push(() => makeCharacter(
  49196. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49197. {
  49198. front: {
  49199. height: math.unit(4 + 4/12, "feet"),
  49200. name: "Front",
  49201. image: {
  49202. source: "./media/characters/pepper-purrloin/front.svg",
  49203. extra: 1141/1024,
  49204. bottom: 21/1162
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Normal",
  49211. height: math.unit(4 + 4/12, "feet"),
  49212. default: true
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49218. {
  49219. front: {
  49220. height: math.unit(6 + 2/12, "feet"),
  49221. name: "Front",
  49222. image: {
  49223. source: "./media/characters/raphael/front.svg",
  49224. extra: 1101/962,
  49225. bottom: 59/1160
  49226. }
  49227. },
  49228. },
  49229. [
  49230. {
  49231. name: "Normal",
  49232. height: math.unit(6 + 2/12, "feet"),
  49233. default: true
  49234. },
  49235. ]
  49236. ))
  49237. characterMakers.push(() => makeCharacter(
  49238. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49239. {
  49240. front: {
  49241. height: math.unit(6, "feet"),
  49242. weight: math.unit(150, "lb"),
  49243. name: "Front",
  49244. image: {
  49245. source: "./media/characters/victor-williams/front.svg",
  49246. extra: 1894/1825,
  49247. bottom: 67/1961
  49248. }
  49249. },
  49250. },
  49251. [
  49252. {
  49253. name: "Normal",
  49254. height: math.unit(6, "feet"),
  49255. default: true
  49256. },
  49257. ]
  49258. ))
  49259. characterMakers.push(() => makeCharacter(
  49260. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49261. {
  49262. front: {
  49263. height: math.unit(5 + 8/12, "feet"),
  49264. weight: math.unit(150, "lb"),
  49265. name: "Front",
  49266. image: {
  49267. source: "./media/characters/rachel/front.svg",
  49268. extra: 1902/1787,
  49269. bottom: 46/1948
  49270. }
  49271. },
  49272. },
  49273. [
  49274. {
  49275. name: "Base Height",
  49276. height: math.unit(5 + 8/12, "feet"),
  49277. default: true
  49278. },
  49279. {
  49280. name: "Macro",
  49281. height: math.unit(200, "feet")
  49282. },
  49283. {
  49284. name: "Mega Macro",
  49285. height: math.unit(1, "mile")
  49286. },
  49287. {
  49288. name: "Giga Macro",
  49289. height: math.unit(1500, "miles")
  49290. },
  49291. {
  49292. name: "Tera Macro",
  49293. height: math.unit(8000, "miles")
  49294. },
  49295. {
  49296. name: "Tera Macro+",
  49297. height: math.unit(2e5, "miles")
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49303. {
  49304. front: {
  49305. height: math.unit(6.5, "feet"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49309. extra: 860/819,
  49310. bottom: 307/1167
  49311. }
  49312. },
  49313. back: {
  49314. height: math.unit(6.5, "feet"),
  49315. name: "Back",
  49316. image: {
  49317. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49318. extra: 880/837,
  49319. bottom: 395/1275
  49320. }
  49321. },
  49322. sleeping: {
  49323. height: math.unit(2.79, "feet"),
  49324. name: "Sleeping",
  49325. image: {
  49326. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49327. extra: 465/383,
  49328. bottom: 263/728
  49329. }
  49330. },
  49331. maw: {
  49332. height: math.unit(2.52, "feet"),
  49333. name: "Maw",
  49334. image: {
  49335. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49336. }
  49337. },
  49338. },
  49339. [
  49340. {
  49341. name: "Normal",
  49342. height: math.unit(6.5, "feet"),
  49343. default: true
  49344. },
  49345. ]
  49346. ))
  49347. characterMakers.push(() => makeCharacter(
  49348. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49349. {
  49350. front: {
  49351. height: math.unit(5, "feet"),
  49352. name: "Front",
  49353. image: {
  49354. source: "./media/characters/nova-nerium/front.svg",
  49355. extra: 1548/1392,
  49356. bottom: 374/1922
  49357. }
  49358. },
  49359. back: {
  49360. height: math.unit(5, "feet"),
  49361. name: "Back",
  49362. image: {
  49363. source: "./media/characters/nova-nerium/back.svg",
  49364. extra: 1658/1468,
  49365. bottom: 257/1915
  49366. }
  49367. },
  49368. },
  49369. [
  49370. {
  49371. name: "Normal",
  49372. height: math.unit(5, "feet"),
  49373. default: true
  49374. },
  49375. ]
  49376. ))
  49377. characterMakers.push(() => makeCharacter(
  49378. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49379. {
  49380. front: {
  49381. height: math.unit(5 + 4/12, "feet"),
  49382. name: "Front",
  49383. image: {
  49384. source: "./media/characters/ashe-pyriph/front.svg",
  49385. extra: 1935/1747,
  49386. bottom: 60/1995
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(5 + 4/12, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(8.7, "feet"),
  49403. name: "Front",
  49404. image: {
  49405. source: "./media/characters/flicker-wisp/front.svg",
  49406. extra: 1835/1613,
  49407. bottom: 449/2284
  49408. }
  49409. },
  49410. side: {
  49411. height: math.unit(8.7, "feet"),
  49412. name: "Side",
  49413. image: {
  49414. source: "./media/characters/flicker-wisp/side.svg",
  49415. extra: 1841/1642,
  49416. bottom: 336/2177
  49417. },
  49418. default: true
  49419. },
  49420. maw: {
  49421. height: math.unit(3.35, "feet"),
  49422. name: "Maw",
  49423. image: {
  49424. source: "./media/characters/flicker-wisp/maw.svg",
  49425. extra: 2338/1506,
  49426. bottom: 0/2338
  49427. }
  49428. },
  49429. ovipositor: {
  49430. height: math.unit(4.95, "feet"),
  49431. name: "Ovipositor",
  49432. image: {
  49433. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49434. }
  49435. },
  49436. egg: {
  49437. height: math.unit(0.385, "feet"),
  49438. weight: math.unit(2, "lb"),
  49439. name: "Egg",
  49440. image: {
  49441. source: "./media/characters/flicker-wisp/egg.svg"
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Normal",
  49448. height: math.unit(8.7, "feet"),
  49449. default: true
  49450. },
  49451. ]
  49452. ))
  49453. characterMakers.push(() => makeCharacter(
  49454. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49455. {
  49456. side: {
  49457. height: math.unit(11, "feet"),
  49458. name: "Side",
  49459. image: {
  49460. source: "./media/characters/faefnul/side.svg",
  49461. extra: 1100/1007,
  49462. bottom: 0/1100
  49463. }
  49464. },
  49465. },
  49466. [
  49467. {
  49468. name: "Normal",
  49469. height: math.unit(11, "feet"),
  49470. default: true
  49471. },
  49472. ]
  49473. ))
  49474. characterMakers.push(() => makeCharacter(
  49475. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49476. {
  49477. front: {
  49478. height: math.unit(6 + 2/12, "feet"),
  49479. name: "Front",
  49480. image: {
  49481. source: "./media/characters/shady/front.svg",
  49482. extra: 502/461,
  49483. bottom: 9/511
  49484. }
  49485. },
  49486. kneeling: {
  49487. height: math.unit(4.6, "feet"),
  49488. name: "Kneeling",
  49489. image: {
  49490. source: "./media/characters/shady/kneeling.svg",
  49491. extra: 1328/1219,
  49492. bottom: 117/1445
  49493. }
  49494. },
  49495. maw: {
  49496. height: math.unit(2, "feet"),
  49497. name: "Maw",
  49498. image: {
  49499. source: "./media/characters/shady/maw.svg"
  49500. }
  49501. },
  49502. },
  49503. [
  49504. {
  49505. name: "Nano",
  49506. height: math.unit(1, "mm")
  49507. },
  49508. {
  49509. name: "Micro",
  49510. height: math.unit(12, "mm")
  49511. },
  49512. {
  49513. name: "Tiny",
  49514. height: math.unit(3, "inches")
  49515. },
  49516. {
  49517. name: "Normal",
  49518. height: math.unit(6 + 2/12, "feet"),
  49519. default: true
  49520. },
  49521. {
  49522. name: "Big",
  49523. height: math.unit(15, "feet")
  49524. },
  49525. {
  49526. name: "Macro",
  49527. height: math.unit(150, "feet")
  49528. },
  49529. {
  49530. name: "Titanic",
  49531. height: math.unit(500, "feet")
  49532. },
  49533. ]
  49534. ))
  49535. characterMakers.push(() => makeCharacter(
  49536. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49537. {
  49538. front: {
  49539. height: math.unit(12, "feet"),
  49540. name: "Front",
  49541. image: {
  49542. source: "./media/characters/fenrir/front.svg",
  49543. extra: 968/875,
  49544. bottom: 22/990
  49545. }
  49546. },
  49547. },
  49548. [
  49549. {
  49550. name: "Big",
  49551. height: math.unit(12, "feet"),
  49552. default: true
  49553. },
  49554. ]
  49555. ))
  49556. characterMakers.push(() => makeCharacter(
  49557. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49558. {
  49559. front: {
  49560. height: math.unit(5 + 4/12, "feet"),
  49561. name: "Front",
  49562. image: {
  49563. source: "./media/characters/makar/front.svg",
  49564. extra: 1181/1112,
  49565. bottom: 78/1259
  49566. }
  49567. },
  49568. },
  49569. [
  49570. {
  49571. name: "Normal",
  49572. height: math.unit(5 + 4/12, "feet"),
  49573. default: true
  49574. },
  49575. ]
  49576. ))
  49577. characterMakers.push(() => makeCharacter(
  49578. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49579. {
  49580. front: {
  49581. height: math.unit(5 + 7/12, "feet"),
  49582. name: "Front",
  49583. image: {
  49584. source: "./media/characters/callow/front.svg",
  49585. extra: 1482/1304,
  49586. bottom: 23/1505
  49587. }
  49588. },
  49589. back: {
  49590. height: math.unit(5 + 7/12, "feet"),
  49591. name: "Back",
  49592. image: {
  49593. source: "./media/characters/callow/back.svg",
  49594. extra: 1484/1296,
  49595. bottom: 25/1509
  49596. }
  49597. },
  49598. },
  49599. [
  49600. {
  49601. name: "Micro",
  49602. height: math.unit(3, "inches"),
  49603. default: true
  49604. },
  49605. {
  49606. name: "Normal",
  49607. height: math.unit(5 + 7/12, "feet")
  49608. },
  49609. ]
  49610. ))
  49611. characterMakers.push(() => makeCharacter(
  49612. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49613. {
  49614. front: {
  49615. height: math.unit(6 + 2/12, "feet"),
  49616. name: "Front",
  49617. image: {
  49618. source: "./media/characters/natel/front.svg",
  49619. extra: 1833/1692,
  49620. bottom: 166/1999
  49621. }
  49622. },
  49623. },
  49624. [
  49625. {
  49626. name: "Normal",
  49627. height: math.unit(6 + 2/12, "feet"),
  49628. default: true
  49629. },
  49630. ]
  49631. ))
  49632. characterMakers.push(() => makeCharacter(
  49633. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49634. {
  49635. front: {
  49636. height: math.unit(1.75, "meters"),
  49637. name: "Front",
  49638. image: {
  49639. source: "./media/characters/misu/front.svg",
  49640. extra: 1690/1558,
  49641. bottom: 234/1924
  49642. }
  49643. },
  49644. back: {
  49645. height: math.unit(1.75, "meters"),
  49646. name: "Back",
  49647. image: {
  49648. source: "./media/characters/misu/back.svg",
  49649. extra: 1762/1618,
  49650. bottom: 146/1908
  49651. }
  49652. },
  49653. frontNude: {
  49654. height: math.unit(1.75, "meters"),
  49655. name: "Front (Nude)",
  49656. image: {
  49657. source: "./media/characters/misu/front-nude.svg",
  49658. extra: 1690/1558,
  49659. bottom: 234/1924
  49660. }
  49661. },
  49662. backNude: {
  49663. height: math.unit(1.75, "meters"),
  49664. name: "Back (Nude)",
  49665. image: {
  49666. source: "./media/characters/misu/back-nude.svg",
  49667. extra: 1762/1618,
  49668. bottom: 146/1908
  49669. }
  49670. },
  49671. frontErect: {
  49672. height: math.unit(1.75, "meters"),
  49673. name: "Front (Erect)",
  49674. image: {
  49675. source: "./media/characters/misu/front-erect.svg",
  49676. extra: 1690/1558,
  49677. bottom: 234/1924
  49678. }
  49679. },
  49680. maw: {
  49681. height: math.unit(0.47, "meters"),
  49682. name: "Maw",
  49683. image: {
  49684. source: "./media/characters/misu/maw.svg"
  49685. }
  49686. },
  49687. head: {
  49688. height: math.unit(0.35, "meters"),
  49689. name: "Head",
  49690. image: {
  49691. source: "./media/characters/misu/head.svg"
  49692. }
  49693. },
  49694. rear: {
  49695. height: math.unit(0.47, "meters"),
  49696. name: "Rear",
  49697. image: {
  49698. source: "./media/characters/misu/rear.svg"
  49699. }
  49700. },
  49701. },
  49702. [
  49703. {
  49704. name: "Normal",
  49705. height: math.unit(1.75, "meters")
  49706. },
  49707. {
  49708. name: "Not good for the people",
  49709. height: math.unit(42, "meters")
  49710. },
  49711. {
  49712. name: "Not good for the neighborhood",
  49713. height: math.unit(135, "meters")
  49714. },
  49715. {
  49716. name: "Bit bigger problem",
  49717. height: math.unit(380, "meters"),
  49718. default: true
  49719. },
  49720. {
  49721. name: "Not good for the city",
  49722. height: math.unit(1.5, "km")
  49723. },
  49724. {
  49725. name: "Not good for the county",
  49726. height: math.unit(5.5, "km")
  49727. },
  49728. {
  49729. name: "Not good for the state",
  49730. height: math.unit(25, "km")
  49731. },
  49732. {
  49733. name: "Not good for the country",
  49734. height: math.unit(125, "km")
  49735. },
  49736. {
  49737. name: "Not good for the continent",
  49738. height: math.unit(2100, "km")
  49739. },
  49740. {
  49741. name: "Not good for the planet",
  49742. height: math.unit(35000, "km")
  49743. },
  49744. {
  49745. name: "Just no",
  49746. height: math.unit(8.5e18, "km")
  49747. },
  49748. ]
  49749. ))
  49750. characterMakers.push(() => makeCharacter(
  49751. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49752. {
  49753. front: {
  49754. height: math.unit(6.5, "feet"),
  49755. name: "Front",
  49756. image: {
  49757. source: "./media/characters/poppy/front.svg",
  49758. extra: 1878/1812,
  49759. bottom: 43/1921
  49760. }
  49761. },
  49762. feet: {
  49763. height: math.unit(1.06, "feet"),
  49764. name: "Feet",
  49765. image: {
  49766. source: "./media/characters/poppy/feet.svg",
  49767. extra: 1083/1083,
  49768. bottom: 87/1170
  49769. }
  49770. },
  49771. },
  49772. [
  49773. {
  49774. name: "Human",
  49775. height: math.unit(6.5, "feet")
  49776. },
  49777. {
  49778. name: "Default",
  49779. height: math.unit(300, "feet"),
  49780. default: true
  49781. },
  49782. {
  49783. name: "Huge",
  49784. height: math.unit(850, "feet")
  49785. },
  49786. {
  49787. name: "Mega",
  49788. height: math.unit(8000, "feet")
  49789. },
  49790. {
  49791. name: "Giga",
  49792. height: math.unit(300, "miles")
  49793. },
  49794. ]
  49795. ))
  49796. characterMakers.push(() => makeCharacter(
  49797. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49798. {
  49799. bipedal: {
  49800. height: math.unit(7, "feet"),
  49801. name: "Bipedal",
  49802. image: {
  49803. source: "./media/characters/zener/bipedal.svg",
  49804. extra: 874/805,
  49805. bottom: 109/983
  49806. }
  49807. },
  49808. quadrupedal: {
  49809. height: math.unit(4.64, "feet"),
  49810. name: "Quadrupedal",
  49811. image: {
  49812. source: "./media/characters/zener/quadrupedal.svg",
  49813. extra: 638/507,
  49814. bottom: 190/828
  49815. }
  49816. },
  49817. cock: {
  49818. height: math.unit(18, "inches"),
  49819. name: "Cock",
  49820. image: {
  49821. source: "./media/characters/zener/cock.svg"
  49822. }
  49823. },
  49824. },
  49825. [
  49826. {
  49827. name: "Normal",
  49828. height: math.unit(7, "feet"),
  49829. default: true
  49830. },
  49831. ]
  49832. ))
  49833. characterMakers.push(() => makeCharacter(
  49834. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49835. {
  49836. nude: {
  49837. height: math.unit(5 + 6/12, "feet"),
  49838. name: "Nude",
  49839. image: {
  49840. source: "./media/characters/charlie-dog/nude.svg",
  49841. extra: 768/734,
  49842. bottom: 26/794
  49843. }
  49844. },
  49845. dressed: {
  49846. height: math.unit(5 + 6/12, "feet"),
  49847. name: "Dressed",
  49848. image: {
  49849. source: "./media/characters/charlie-dog/dressed.svg",
  49850. extra: 768/734,
  49851. bottom: 26/794
  49852. }
  49853. },
  49854. },
  49855. [
  49856. {
  49857. name: "Normal",
  49858. height: math.unit(5 + 6/12, "feet"),
  49859. default: true
  49860. },
  49861. ]
  49862. ))
  49863. characterMakers.push(() => makeCharacter(
  49864. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49865. {
  49866. front: {
  49867. height: math.unit(6 + 4/12, "feet"),
  49868. name: "Front",
  49869. image: {
  49870. source: "./media/characters/ir'istrasz/front.svg",
  49871. extra: 1014/977,
  49872. bottom: 65/1079
  49873. }
  49874. },
  49875. back: {
  49876. height: math.unit(6 + 4/12, "feet"),
  49877. name: "Back",
  49878. image: {
  49879. source: "./media/characters/ir'istrasz/back.svg",
  49880. extra: 1024/992,
  49881. bottom: 34/1058
  49882. }
  49883. },
  49884. },
  49885. [
  49886. {
  49887. name: "Normal",
  49888. height: math.unit(6 + 4/12, "feet"),
  49889. default: true
  49890. },
  49891. ]
  49892. ))
  49893. characterMakers.push(() => makeCharacter(
  49894. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49895. {
  49896. front: {
  49897. height: math.unit(5 + 8/12, "feet"),
  49898. name: "Front",
  49899. image: {
  49900. source: "./media/characters/dee-ditto/front.svg",
  49901. extra: 1874/1785,
  49902. bottom: 68/1942
  49903. }
  49904. },
  49905. back: {
  49906. height: math.unit(5 + 8/12, "feet"),
  49907. name: "Back",
  49908. image: {
  49909. source: "./media/characters/dee-ditto/back.svg",
  49910. extra: 1870/1783,
  49911. bottom: 77/1947
  49912. }
  49913. },
  49914. },
  49915. [
  49916. {
  49917. name: "Normal",
  49918. height: math.unit(5 + 8/12, "feet"),
  49919. default: true
  49920. },
  49921. ]
  49922. ))
  49923. characterMakers.push(() => makeCharacter(
  49924. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49925. {
  49926. front: {
  49927. height: math.unit(7 + 6/12, "feet"),
  49928. name: "Front",
  49929. image: {
  49930. source: "./media/characters/fey/front.svg",
  49931. extra: 995/979,
  49932. bottom: 30/1025
  49933. }
  49934. },
  49935. back: {
  49936. height: math.unit(7 + 6/12, "feet"),
  49937. name: "Back",
  49938. image: {
  49939. source: "./media/characters/fey/back.svg",
  49940. extra: 1079/1008,
  49941. bottom: 5/1084
  49942. }
  49943. },
  49944. dressed: {
  49945. height: math.unit(7 + 6/12, "feet"),
  49946. name: "Dressed",
  49947. image: {
  49948. source: "./media/characters/fey/dressed.svg",
  49949. extra: 995/979,
  49950. bottom: 30/1025
  49951. }
  49952. },
  49953. },
  49954. [
  49955. {
  49956. name: "Normal",
  49957. height: math.unit(7 + 6/12, "feet"),
  49958. default: true
  49959. },
  49960. ]
  49961. ))
  49962. characterMakers.push(() => makeCharacter(
  49963. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49964. {
  49965. standing: {
  49966. height: math.unit(17, "feet"),
  49967. name: "Standing",
  49968. image: {
  49969. source: "./media/characters/aster/standing.svg",
  49970. extra: 1798/1598,
  49971. bottom: 117/1915
  49972. }
  49973. },
  49974. },
  49975. [
  49976. {
  49977. name: "Normal",
  49978. height: math.unit(17, "feet"),
  49979. default: true
  49980. },
  49981. {
  49982. name: "Homewrecker",
  49983. height: math.unit(95, "feet")
  49984. },
  49985. {
  49986. name: "Planet Devourer",
  49987. height: math.unit(1008000, "miles")
  49988. },
  49989. ]
  49990. ))
  49991. characterMakers.push(() => makeCharacter(
  49992. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49993. {
  49994. front: {
  49995. height: math.unit(6 + 5/12, "feet"),
  49996. weight: math.unit(265, "lb"),
  49997. name: "Front",
  49998. image: {
  49999. source: "./media/characters/devon-childs/front.svg",
  50000. extra: 1795/1721,
  50001. bottom: 41/1836
  50002. }
  50003. },
  50004. side: {
  50005. height: math.unit(6 + 5/12, "feet"),
  50006. weight: math.unit(265, "lb"),
  50007. name: "Side",
  50008. image: {
  50009. source: "./media/characters/devon-childs/side.svg",
  50010. extra: 1812/1738,
  50011. bottom: 30/1842
  50012. }
  50013. },
  50014. back: {
  50015. height: math.unit(6 + 5/12, "feet"),
  50016. weight: math.unit(265, "lb"),
  50017. name: "Back",
  50018. image: {
  50019. source: "./media/characters/devon-childs/back.svg",
  50020. extra: 1808/1735,
  50021. bottom: 23/1831
  50022. }
  50023. },
  50024. hand: {
  50025. height: math.unit(1.464, "feet"),
  50026. name: "Hand",
  50027. image: {
  50028. source: "./media/characters/devon-childs/hand.svg"
  50029. }
  50030. },
  50031. foot: {
  50032. height: math.unit(1.6, "feet"),
  50033. name: "Foot",
  50034. image: {
  50035. source: "./media/characters/devon-childs/foot.svg"
  50036. }
  50037. },
  50038. },
  50039. [
  50040. {
  50041. name: "Micro",
  50042. height: math.unit(7, "cm")
  50043. },
  50044. {
  50045. name: "Normal",
  50046. height: math.unit(6 + 5/12, "feet"),
  50047. default: true
  50048. },
  50049. {
  50050. name: "Macro",
  50051. height: math.unit(154, "feet")
  50052. },
  50053. ]
  50054. ))
  50055. characterMakers.push(() => makeCharacter(
  50056. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50057. {
  50058. front: {
  50059. height: math.unit(6, "feet"),
  50060. weight: math.unit(180, "lb"),
  50061. name: "Front",
  50062. image: {
  50063. source: "./media/characters/lydemox-vir/front.svg",
  50064. extra: 1632/1435,
  50065. bottom: 58/1690
  50066. }
  50067. },
  50068. frontSFW: {
  50069. height: math.unit(6, "feet"),
  50070. weight: math.unit(180, "lb"),
  50071. name: "Front (SFW)",
  50072. image: {
  50073. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50074. extra: 1632/1435,
  50075. bottom: 58/1690
  50076. }
  50077. },
  50078. back: {
  50079. height: math.unit(6, "feet"),
  50080. weight: math.unit(180, "lb"),
  50081. name: "Back",
  50082. image: {
  50083. source: "./media/characters/lydemox-vir/back.svg",
  50084. extra: 1593/1408,
  50085. bottom: 31/1624
  50086. }
  50087. },
  50088. paw: {
  50089. height: math.unit(1.85, "feet"),
  50090. name: "Paw",
  50091. image: {
  50092. source: "./media/characters/lydemox-vir/paw.svg"
  50093. }
  50094. },
  50095. dick: {
  50096. height: math.unit(1.8, "feet"),
  50097. name: "Dick",
  50098. image: {
  50099. source: "./media/characters/lydemox-vir/dick.svg"
  50100. }
  50101. },
  50102. },
  50103. [
  50104. {
  50105. name: "Macro",
  50106. height: math.unit(100, "feet"),
  50107. default: true
  50108. },
  50109. {
  50110. name: "Teramacro",
  50111. height: math.unit(1, "earth")
  50112. },
  50113. {
  50114. name: "Planetary",
  50115. height: math.unit(20, "earths")
  50116. },
  50117. ]
  50118. ))
  50119. characterMakers.push(() => makeCharacter(
  50120. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50121. {
  50122. front: {
  50123. height: math.unit(15 + 8/12, "feet"),
  50124. weight: math.unit(1237, "kg"),
  50125. name: "Front",
  50126. image: {
  50127. source: "./media/characters/mia/front.svg",
  50128. extra: 1573/1446,
  50129. bottom: 58/1631
  50130. }
  50131. },
  50132. },
  50133. [
  50134. {
  50135. name: "Small",
  50136. height: math.unit(9 + 5/12, "feet")
  50137. },
  50138. {
  50139. name: "Normal",
  50140. height: math.unit(15 + 8/12, "feet"),
  50141. default: true
  50142. },
  50143. ]
  50144. ))
  50145. characterMakers.push(() => makeCharacter(
  50146. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50147. {
  50148. front: {
  50149. height: math.unit(10 + 6/12, "feet"),
  50150. weight: math.unit(1.3, "tons"),
  50151. name: "Front",
  50152. image: {
  50153. source: "./media/characters/mr-graves/front.svg",
  50154. extra: 1779/1695,
  50155. bottom: 198/1977
  50156. }
  50157. },
  50158. },
  50159. [
  50160. {
  50161. name: "Normal",
  50162. height: math.unit(10 + 6 /12, "feet"),
  50163. default: true
  50164. },
  50165. ]
  50166. ))
  50167. characterMakers.push(() => makeCharacter(
  50168. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50169. {
  50170. dressedFront: {
  50171. height: math.unit(5 + 8/12, "feet"),
  50172. weight: math.unit(125, "lb"),
  50173. name: "Dressed (Front)",
  50174. image: {
  50175. source: "./media/characters/jess/dressed-front.svg",
  50176. extra: 1176/1152,
  50177. bottom: 42/1218
  50178. }
  50179. },
  50180. dressedSide: {
  50181. height: math.unit(5 + 8/12, "feet"),
  50182. weight: math.unit(125, "lb"),
  50183. name: "Dressed (Side)",
  50184. image: {
  50185. source: "./media/characters/jess/dressed-side.svg",
  50186. extra: 1204/1190,
  50187. bottom: 6/1210
  50188. }
  50189. },
  50190. nudeFront: {
  50191. height: math.unit(5 + 8/12, "feet"),
  50192. weight: math.unit(125, "lb"),
  50193. name: "Nude (Front)",
  50194. image: {
  50195. source: "./media/characters/jess/nude-front.svg",
  50196. extra: 1176/1152,
  50197. bottom: 42/1218
  50198. }
  50199. },
  50200. nudeSide: {
  50201. height: math.unit(5 + 8/12, "feet"),
  50202. weight: math.unit(125, "lb"),
  50203. name: "Nude (Side)",
  50204. image: {
  50205. source: "./media/characters/jess/nude-side.svg",
  50206. extra: 1204/1190,
  50207. bottom: 6/1210
  50208. }
  50209. },
  50210. organsFront: {
  50211. height: math.unit(2.83799342105, "feet"),
  50212. name: "Organs (Front)",
  50213. image: {
  50214. source: "./media/characters/jess/organs-front.svg"
  50215. }
  50216. },
  50217. organsSide: {
  50218. height: math.unit(2.64225290474, "feet"),
  50219. name: "Organs (Side)",
  50220. image: {
  50221. source: "./media/characters/jess/organs-side.svg"
  50222. }
  50223. },
  50224. digestiveTractFront: {
  50225. height: math.unit(2.8106580871, "feet"),
  50226. name: "Digestive Tract (Front)",
  50227. image: {
  50228. source: "./media/characters/jess/digestive-tract-front.svg"
  50229. }
  50230. },
  50231. digestiveTractSide: {
  50232. height: math.unit(2.54365045014, "feet"),
  50233. name: "Digestive Tract (Side)",
  50234. image: {
  50235. source: "./media/characters/jess/digestive-tract-side.svg"
  50236. }
  50237. },
  50238. respiratorySystemFront: {
  50239. height: math.unit(1.11196233456, "feet"),
  50240. name: "Respiratory System (Front)",
  50241. image: {
  50242. source: "./media/characters/jess/respiratory-system-front.svg"
  50243. }
  50244. },
  50245. respiratorySystemSide: {
  50246. height: math.unit(0.89327966297, "feet"),
  50247. name: "Respiratory System (Side)",
  50248. image: {
  50249. source: "./media/characters/jess/respiratory-system-side.svg"
  50250. }
  50251. },
  50252. urinaryTractFront: {
  50253. height: math.unit(1.16126356186, "feet"),
  50254. name: "Urinary Tract (Front)",
  50255. image: {
  50256. source: "./media/characters/jess/urinary-tract-front.svg"
  50257. }
  50258. },
  50259. urinaryTractSide: {
  50260. height: math.unit(1.20910039627, "feet"),
  50261. name: "Urinary Tract (Side)",
  50262. image: {
  50263. source: "./media/characters/jess/urinary-tract-side.svg"
  50264. }
  50265. },
  50266. reproductiveOrgansFront: {
  50267. height: math.unit(0.48422591566, "feet"),
  50268. name: "Reproductive Organs (Front)",
  50269. image: {
  50270. source: "./media/characters/jess/reproductive-organs-front.svg"
  50271. }
  50272. },
  50273. reproductiveOrgansSide: {
  50274. height: math.unit(0.61553314481, "feet"),
  50275. name: "Reproductive Organs (Side)",
  50276. image: {
  50277. source: "./media/characters/jess/reproductive-organs-side.svg"
  50278. }
  50279. },
  50280. breastsFront: {
  50281. height: math.unit(0.47690395121, "feet"),
  50282. name: "Breasts (Front)",
  50283. image: {
  50284. source: "./media/characters/jess/breasts-front.svg"
  50285. }
  50286. },
  50287. breastsSide: {
  50288. height: math.unit(0.30556998307, "feet"),
  50289. name: "Breasts (Side)",
  50290. image: {
  50291. source: "./media/characters/jess/breasts-side.svg"
  50292. }
  50293. },
  50294. heartFront: {
  50295. height: math.unit(0.53011022622, "feet"),
  50296. name: "Heart (Front)",
  50297. image: {
  50298. source: "./media/characters/jess/heart-front.svg"
  50299. }
  50300. },
  50301. heartSide: {
  50302. height: math.unit(0.51790695213, "feet"),
  50303. name: "Heart (Side)",
  50304. image: {
  50305. source: "./media/characters/jess/heart-side.svg"
  50306. }
  50307. },
  50308. earsAndNoseFront: {
  50309. height: math.unit(0.29385483995, "feet"),
  50310. name: "Ears and Nose (Front)",
  50311. image: {
  50312. source: "./media/characters/jess/ears-and-nose-front.svg"
  50313. }
  50314. },
  50315. earsAndNoseSide: {
  50316. height: math.unit(0.18109658741, "feet"),
  50317. name: "Ears and Nose (Side)",
  50318. image: {
  50319. source: "./media/characters/jess/ears-and-nose-side.svg"
  50320. }
  50321. },
  50322. },
  50323. [
  50324. {
  50325. name: "Normal",
  50326. height: math.unit(5 + 8/12, "feet"),
  50327. default: true
  50328. },
  50329. ]
  50330. ))
  50331. characterMakers.push(() => makeCharacter(
  50332. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50333. {
  50334. front: {
  50335. height: math.unit(6, "feet"),
  50336. weight: math.unit(6.64467e-7, "grams"),
  50337. name: "Front",
  50338. image: {
  50339. source: "./media/characters/wimpering/front.svg",
  50340. extra: 597/587,
  50341. bottom: 34/631
  50342. }
  50343. },
  50344. },
  50345. [
  50346. {
  50347. name: "Micro",
  50348. height: math.unit(0.4, "mm"),
  50349. default: true
  50350. },
  50351. ]
  50352. ))
  50353. characterMakers.push(() => makeCharacter(
  50354. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50355. {
  50356. front: {
  50357. height: math.unit(5 + 2/12, "feet"),
  50358. weight: math.unit(110, "lb"),
  50359. name: "Front",
  50360. image: {
  50361. source: "./media/characters/keltre/front.svg",
  50362. extra: 1099/1057,
  50363. bottom: 22/1121
  50364. }
  50365. },
  50366. back: {
  50367. height: math.unit(5 + 2/12, "feet"),
  50368. weight: math.unit(110, "lb"),
  50369. name: "Back",
  50370. image: {
  50371. source: "./media/characters/keltre/back.svg",
  50372. extra: 1095/1053,
  50373. bottom: 17/1112
  50374. }
  50375. },
  50376. dressed: {
  50377. height: math.unit(5 + 2/12, "feet"),
  50378. weight: math.unit(110, "lb"),
  50379. name: "Dressed",
  50380. image: {
  50381. source: "./media/characters/keltre/dressed.svg",
  50382. extra: 1099/1057,
  50383. bottom: 22/1121
  50384. }
  50385. },
  50386. winter: {
  50387. height: math.unit(5 + 2/12, "feet"),
  50388. weight: math.unit(110, "lb"),
  50389. name: "Winter",
  50390. image: {
  50391. source: "./media/characters/keltre/winter.svg",
  50392. extra: 1099/1057,
  50393. bottom: 22/1121
  50394. }
  50395. },
  50396. head: {
  50397. height: math.unit(1.61 * 0.86, "feet"),
  50398. name: "Head",
  50399. image: {
  50400. source: "./media/characters/keltre/head.svg",
  50401. extra: 534/421,
  50402. bottom: 0/534
  50403. }
  50404. },
  50405. hand: {
  50406. height: math.unit(1.3 * 0.86, "feet"),
  50407. name: "Hand",
  50408. image: {
  50409. source: "./media/characters/keltre/hand.svg"
  50410. }
  50411. },
  50412. foot: {
  50413. height: math.unit(1.8 * 0.86, "feet"),
  50414. name: "Foot",
  50415. image: {
  50416. source: "./media/characters/keltre/foot.svg"
  50417. }
  50418. },
  50419. },
  50420. [
  50421. {
  50422. name: "Fine",
  50423. height: math.unit(1, "inch")
  50424. },
  50425. {
  50426. name: "Dimnutive",
  50427. height: math.unit(4, "inches")
  50428. },
  50429. {
  50430. name: "Tiny",
  50431. height: math.unit(1, "foot")
  50432. },
  50433. {
  50434. name: "Small",
  50435. height: math.unit(3, "feet")
  50436. },
  50437. {
  50438. name: "Normal",
  50439. height: math.unit(5 + 2/12, "feet"),
  50440. default: true
  50441. },
  50442. ]
  50443. ))
  50444. characterMakers.push(() => makeCharacter(
  50445. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50446. {
  50447. front: {
  50448. height: math.unit(6 + 2/12, "feet"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/nox/front.svg",
  50452. extra: 1917/1830,
  50453. bottom: 74/1991
  50454. }
  50455. },
  50456. back: {
  50457. height: math.unit(6 + 2/12, "feet"),
  50458. name: "Back",
  50459. image: {
  50460. source: "./media/characters/nox/back.svg",
  50461. extra: 1896/1815,
  50462. bottom: 21/1917
  50463. }
  50464. },
  50465. head: {
  50466. height: math.unit(1.1, "feet"),
  50467. name: "Head",
  50468. image: {
  50469. source: "./media/characters/nox/head.svg",
  50470. extra: 874/704,
  50471. bottom: 0/874
  50472. }
  50473. },
  50474. tattoo: {
  50475. height: math.unit(0.729, "feet"),
  50476. name: "Tattoo",
  50477. image: {
  50478. source: "./media/characters/nox/tattoo.svg"
  50479. }
  50480. },
  50481. },
  50482. [
  50483. {
  50484. name: "Normal",
  50485. height: math.unit(6 + 2/12, "feet")
  50486. },
  50487. {
  50488. name: "Gigamacro",
  50489. height: math.unit(2, "earths"),
  50490. default: true
  50491. },
  50492. {
  50493. name: "Cosmic",
  50494. height: math.unit(867, "yottameters")
  50495. },
  50496. ]
  50497. ))
  50498. characterMakers.push(() => makeCharacter(
  50499. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50500. {
  50501. front: {
  50502. height: math.unit(6, "feet"),
  50503. weight: math.unit(150, "lb"),
  50504. name: "Front",
  50505. image: {
  50506. source: "./media/characters/caspian/front.svg",
  50507. extra: 1443/1359,
  50508. bottom: 0/1443
  50509. }
  50510. },
  50511. back: {
  50512. height: math.unit(6, "feet"),
  50513. weight: math.unit(150, "lb"),
  50514. name: "Back",
  50515. image: {
  50516. source: "./media/characters/caspian/back.svg",
  50517. extra: 1379/1309,
  50518. bottom: 0/1379
  50519. }
  50520. },
  50521. head: {
  50522. height: math.unit(0.9, "feet"),
  50523. name: "Head",
  50524. image: {
  50525. source: "./media/characters/caspian/head.svg",
  50526. extra: 692/492,
  50527. bottom: 0/692
  50528. }
  50529. },
  50530. headAlt: {
  50531. height: math.unit(0.95, "feet"),
  50532. name: "Head (Alt)",
  50533. image: {
  50534. source: "./media/characters/caspian/head-alt.svg",
  50535. extra: 668/508,
  50536. bottom: 0/668
  50537. }
  50538. },
  50539. hand: {
  50540. height: math.unit(0.8, "feet"),
  50541. name: "Hand",
  50542. image: {
  50543. source: "./media/characters/caspian/hand.svg"
  50544. }
  50545. },
  50546. paw: {
  50547. height: math.unit(0.95, "feet"),
  50548. name: "Paw",
  50549. image: {
  50550. source: "./media/characters/caspian/paw.svg"
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Normal",
  50557. height: math.unit(162, "feet"),
  50558. default: true
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50564. {
  50565. front: {
  50566. height: math.unit(6, "feet"),
  50567. name: "Front",
  50568. image: {
  50569. source: "./media/characters/myra-aisling/front.svg",
  50570. extra: 1268/1166,
  50571. bottom: 73/1341
  50572. }
  50573. },
  50574. back: {
  50575. height: math.unit(6, "feet"),
  50576. name: "Back",
  50577. image: {
  50578. source: "./media/characters/myra-aisling/back.svg",
  50579. extra: 1249/1149,
  50580. bottom: 79/1328
  50581. }
  50582. },
  50583. dressed: {
  50584. height: math.unit(6, "feet"),
  50585. name: "Dressed",
  50586. image: {
  50587. source: "./media/characters/myra-aisling/dressed.svg",
  50588. extra: 1290/1189,
  50589. bottom: 47/1337
  50590. }
  50591. },
  50592. hand: {
  50593. height: math.unit(1.1, "feet"),
  50594. name: "Hand",
  50595. image: {
  50596. source: "./media/characters/myra-aisling/hand.svg"
  50597. }
  50598. },
  50599. paw: {
  50600. height: math.unit(1.23, "feet"),
  50601. name: "Paw",
  50602. image: {
  50603. source: "./media/characters/myra-aisling/paw.svg"
  50604. }
  50605. },
  50606. },
  50607. [
  50608. {
  50609. name: "Normal",
  50610. height: math.unit(160, "feet"),
  50611. default: true
  50612. },
  50613. ]
  50614. ))
  50615. characterMakers.push(() => makeCharacter(
  50616. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50617. {
  50618. front: {
  50619. height: math.unit(6, "feet"),
  50620. name: "Front",
  50621. image: {
  50622. source: "./media/characters/tenley-sidero/front.svg",
  50623. extra: 1365/1276,
  50624. bottom: 47/1412
  50625. }
  50626. },
  50627. back: {
  50628. height: math.unit(6, "feet"),
  50629. name: "Back",
  50630. image: {
  50631. source: "./media/characters/tenley-sidero/back.svg",
  50632. extra: 1383/1283,
  50633. bottom: 35/1418
  50634. }
  50635. },
  50636. dressed: {
  50637. height: math.unit(6, "feet"),
  50638. name: "Dressed",
  50639. image: {
  50640. source: "./media/characters/tenley-sidero/dressed.svg",
  50641. extra: 1364/1275,
  50642. bottom: 42/1406
  50643. }
  50644. },
  50645. head: {
  50646. height: math.unit(1.47, "feet"),
  50647. name: "Head",
  50648. image: {
  50649. source: "./media/characters/tenley-sidero/head.svg",
  50650. extra: 610/490,
  50651. bottom: 0/610
  50652. }
  50653. },
  50654. },
  50655. [
  50656. {
  50657. name: "Normal",
  50658. height: math.unit(154, "feet"),
  50659. default: true
  50660. },
  50661. ]
  50662. ))
  50663. characterMakers.push(() => makeCharacter(
  50664. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50665. {
  50666. front: {
  50667. height: math.unit(5, "inches"),
  50668. name: "Front",
  50669. image: {
  50670. source: "./media/characters/mallory/front.svg",
  50671. extra: 1919/1678,
  50672. bottom: 29/1948
  50673. }
  50674. },
  50675. hand: {
  50676. height: math.unit(0.73, "inches"),
  50677. name: "Hand",
  50678. image: {
  50679. source: "./media/characters/mallory/hand.svg"
  50680. }
  50681. },
  50682. paw: {
  50683. height: math.unit(0.68, "inches"),
  50684. name: "Paw",
  50685. image: {
  50686. source: "./media/characters/mallory/paw.svg"
  50687. }
  50688. },
  50689. },
  50690. [
  50691. {
  50692. name: "Small",
  50693. height: math.unit(5, "inches"),
  50694. default: true
  50695. },
  50696. ]
  50697. ))
  50698. characterMakers.push(() => makeCharacter(
  50699. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50700. {
  50701. naked: {
  50702. height: math.unit(6, "feet"),
  50703. name: "Naked",
  50704. image: {
  50705. source: "./media/characters/mab/naked.svg",
  50706. extra: 1855/1757,
  50707. bottom: 208/2063
  50708. }
  50709. },
  50710. outside: {
  50711. height: math.unit(6, "feet"),
  50712. name: "Outside",
  50713. image: {
  50714. source: "./media/characters/mab/outside.svg",
  50715. extra: 1855/1757,
  50716. bottom: 208/2063
  50717. }
  50718. },
  50719. party: {
  50720. height: math.unit(6, "feet"),
  50721. name: "Party",
  50722. image: {
  50723. source: "./media/characters/mab/party.svg",
  50724. extra: 1855/1757,
  50725. bottom: 208/2063
  50726. }
  50727. },
  50728. },
  50729. [
  50730. {
  50731. name: "Normal",
  50732. height: math.unit(165, "feet"),
  50733. default: true
  50734. },
  50735. ]
  50736. ))
  50737. characterMakers.push(() => makeCharacter(
  50738. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50739. {
  50740. feral: {
  50741. height: math.unit(12, "feet"),
  50742. weight: math.unit(20000, "lb"),
  50743. name: "Side",
  50744. image: {
  50745. source: "./media/characters/winter/feral.svg",
  50746. extra: 1286/943,
  50747. bottom: 112/1398
  50748. },
  50749. form: "feral",
  50750. default: true
  50751. },
  50752. feralNsfw: {
  50753. height: math.unit(12, "feet"),
  50754. weight: math.unit(20000, "lb"),
  50755. name: "Side (NSFW)",
  50756. image: {
  50757. source: "./media/characters/winter/feral-nsfw.svg",
  50758. extra: 1286/943,
  50759. bottom: 112/1398
  50760. },
  50761. form: "feral"
  50762. },
  50763. dick: {
  50764. height: math.unit(3.79, "feet"),
  50765. name: "Dick",
  50766. image: {
  50767. source: "./media/characters/winter/dick.svg"
  50768. },
  50769. form: "feral"
  50770. },
  50771. anthro: {
  50772. height: math.unit(12, "feet"),
  50773. weight: math.unit(10, "tons"),
  50774. name: "Anthro",
  50775. image: {
  50776. source: "./media/characters/winter/anthro.svg",
  50777. extra: 1701/1553,
  50778. bottom: 64/1765
  50779. },
  50780. form: "anthro",
  50781. default: true
  50782. },
  50783. },
  50784. [
  50785. {
  50786. name: "Big",
  50787. height: math.unit(12, "feet"),
  50788. default: true,
  50789. form: "feral"
  50790. },
  50791. {
  50792. name: "Big",
  50793. height: math.unit(12, "feet"),
  50794. default: true,
  50795. form: "anthro"
  50796. },
  50797. ],
  50798. {
  50799. "feral": {
  50800. name: "Feral",
  50801. default: true
  50802. },
  50803. "anthro": {
  50804. name: "Anthro"
  50805. }
  50806. }
  50807. ))
  50808. characterMakers.push(() => makeCharacter(
  50809. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50810. {
  50811. front: {
  50812. height: math.unit(4.1, "inches"),
  50813. name: "Front",
  50814. image: {
  50815. source: "./media/characters/alto/front.svg",
  50816. extra: 736/627,
  50817. bottom: 90/826
  50818. }
  50819. },
  50820. },
  50821. [
  50822. {
  50823. name: "Normal",
  50824. height: math.unit(4.1, "inches"),
  50825. default: true
  50826. },
  50827. ]
  50828. ))
  50829. characterMakers.push(() => makeCharacter(
  50830. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50831. {
  50832. sitting: {
  50833. height: math.unit(3, "feet"),
  50834. name: "Sitting",
  50835. image: {
  50836. source: "./media/characters/ratstrid-v/sitting.svg",
  50837. extra: 355/310,
  50838. bottom: 136/491
  50839. }
  50840. },
  50841. },
  50842. [
  50843. {
  50844. name: "Normal",
  50845. height: math.unit(3, "feet"),
  50846. default: true
  50847. },
  50848. ]
  50849. ))
  50850. characterMakers.push(() => makeCharacter(
  50851. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50852. {
  50853. back: {
  50854. height: math.unit(6, "feet"),
  50855. weight: math.unit(450, "lb"),
  50856. name: "Back",
  50857. image: {
  50858. source: "./media/characters/siz/back.svg",
  50859. extra: 1449/1274,
  50860. bottom: 13/1462
  50861. }
  50862. },
  50863. },
  50864. [
  50865. {
  50866. name: "Smallest",
  50867. height: math.unit(18 + 3/12, "feet")
  50868. },
  50869. {
  50870. name: "Modest",
  50871. height: math.unit(56 + 8/12, "feet"),
  50872. default: true
  50873. },
  50874. {
  50875. name: "Largest",
  50876. height: math.unit(3590, "feet")
  50877. },
  50878. ]
  50879. ))
  50880. characterMakers.push(() => makeCharacter(
  50881. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50882. {
  50883. front: {
  50884. height: math.unit(5 + 9/12, "feet"),
  50885. weight: math.unit(150, "lb"),
  50886. name: "Front",
  50887. image: {
  50888. source: "./media/characters/ven/front.svg",
  50889. extra: 1372/1320,
  50890. bottom: 73/1445
  50891. }
  50892. },
  50893. side: {
  50894. height: math.unit(5 + 9/12, "feet"),
  50895. weight: math.unit(1150, "lb"),
  50896. name: "Side",
  50897. image: {
  50898. source: "./media/characters/ven/side.svg",
  50899. extra: 1119/1070,
  50900. bottom: 42/1161
  50901. },
  50902. default: true
  50903. },
  50904. },
  50905. [
  50906. {
  50907. name: "Normal",
  50908. height: math.unit(5 + 9/12, "feet"),
  50909. default: true
  50910. },
  50911. ]
  50912. ))
  50913. characterMakers.push(() => makeCharacter(
  50914. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50915. {
  50916. front: {
  50917. height: math.unit(12, "feet"),
  50918. weight: math.unit(1000, "kg"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/maple/front.svg",
  50922. extra: 1193/1081,
  50923. bottom: 22/1215
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Compressed",
  50930. height: math.unit(7, "feet")
  50931. },
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(12, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(9, "feet"),
  50944. weight: math.unit(1500, "lb"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/nora/front.svg",
  50948. extra: 1348/1286,
  50949. bottom: 218/1566
  50950. }
  50951. },
  50952. erect: {
  50953. height: math.unit(9, "feet"),
  50954. weight: math.unit(11500, "lb"),
  50955. name: "Erect",
  50956. image: {
  50957. source: "./media/characters/nora/erect.svg",
  50958. extra: 1488/1433,
  50959. bottom: 133/1621
  50960. }
  50961. },
  50962. },
  50963. [
  50964. {
  50965. name: "Normal",
  50966. height: math.unit(9, "feet"),
  50967. default: true
  50968. },
  50969. ]
  50970. ))
  50971. characterMakers.push(() => makeCharacter(
  50972. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50973. {
  50974. front: {
  50975. height: math.unit(25, "feet"),
  50976. weight: math.unit(27500, "lb"),
  50977. name: "Front",
  50978. image: {
  50979. source: "./media/characters/north-caudin/front.svg",
  50980. extra: 1184/1082,
  50981. bottom: 23/1207
  50982. }
  50983. },
  50984. },
  50985. [
  50986. {
  50987. name: "Compressed",
  50988. height: math.unit(10, "feet")
  50989. },
  50990. {
  50991. name: "Normal",
  50992. height: math.unit(25, "feet"),
  50993. default: true
  50994. },
  50995. ]
  50996. ))
  50997. characterMakers.push(() => makeCharacter(
  50998. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50999. {
  51000. front: {
  51001. height: math.unit(9, "feet"),
  51002. weight: math.unit(1250, "lb"),
  51003. name: "Front",
  51004. image: {
  51005. source: "./media/characters/merrian/front.svg",
  51006. extra: 2393/2304,
  51007. bottom: 40/2433
  51008. }
  51009. },
  51010. },
  51011. [
  51012. {
  51013. name: "Normal",
  51014. height: math.unit(9, "feet"),
  51015. default: true
  51016. },
  51017. ]
  51018. ))
  51019. characterMakers.push(() => makeCharacter(
  51020. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51021. {
  51022. front: {
  51023. height: math.unit(9, "feet"),
  51024. weight: math.unit(1000, "lb"),
  51025. name: "Front",
  51026. image: {
  51027. source: "./media/characters/hazel/front.svg",
  51028. extra: 2351/2298,
  51029. bottom: 38/2389
  51030. }
  51031. },
  51032. },
  51033. [
  51034. {
  51035. name: "Normal",
  51036. height: math.unit(9, "feet"),
  51037. default: true
  51038. },
  51039. ]
  51040. ))
  51041. characterMakers.push(() => makeCharacter(
  51042. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51043. {
  51044. front: {
  51045. height: math.unit(13, "feet"),
  51046. weight: math.unit(3200, "lb"),
  51047. name: "Front",
  51048. image: {
  51049. source: "./media/characters/emma/front.svg",
  51050. extra: 2263/2029,
  51051. bottom: 68/2331
  51052. }
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Normal",
  51058. height: math.unit(13, "feet"),
  51059. default: true
  51060. },
  51061. ]
  51062. ))
  51063. characterMakers.push(() => makeCharacter(
  51064. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51065. {
  51066. front: {
  51067. height: math.unit(11 + 9/12, "feet"),
  51068. weight: math.unit(2500, "lb"),
  51069. name: "Front",
  51070. image: {
  51071. source: "./media/characters/ilumina/front.svg",
  51072. extra: 2248/2209,
  51073. bottom: 164/2412
  51074. }
  51075. },
  51076. },
  51077. [
  51078. {
  51079. name: "Normal",
  51080. height: math.unit(11 + 9/12, "feet"),
  51081. default: true
  51082. },
  51083. ]
  51084. ))
  51085. characterMakers.push(() => makeCharacter(
  51086. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51087. {
  51088. front: {
  51089. height: math.unit(8 + 10/12, "feet"),
  51090. weight: math.unit(1350, "lb"),
  51091. name: "Front",
  51092. image: {
  51093. source: "./media/characters/moonshine/front.svg",
  51094. extra: 2395/2288,
  51095. bottom: 40/2435
  51096. }
  51097. },
  51098. },
  51099. [
  51100. {
  51101. name: "Normal",
  51102. height: math.unit(8 + 10/12, "feet"),
  51103. default: true
  51104. },
  51105. ]
  51106. ))
  51107. characterMakers.push(() => makeCharacter(
  51108. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51109. {
  51110. front: {
  51111. height: math.unit(14, "feet"),
  51112. weight: math.unit(3400, "lb"),
  51113. name: "Front",
  51114. image: {
  51115. source: "./media/characters/aletia/front.svg",
  51116. extra: 1185/1052,
  51117. bottom: 21/1206
  51118. }
  51119. },
  51120. },
  51121. [
  51122. {
  51123. name: "Compressed",
  51124. height: math.unit(8, "feet")
  51125. },
  51126. {
  51127. name: "Normal",
  51128. height: math.unit(14, "feet"),
  51129. default: true
  51130. },
  51131. ]
  51132. ))
  51133. characterMakers.push(() => makeCharacter(
  51134. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51135. {
  51136. front: {
  51137. height: math.unit(17, "feet"),
  51138. weight: math.unit(6500, "lb"),
  51139. name: "Front",
  51140. image: {
  51141. source: "./media/characters/deidra/front.svg",
  51142. extra: 1201/1081,
  51143. bottom: 16/1217
  51144. }
  51145. },
  51146. },
  51147. [
  51148. {
  51149. name: "Compressed",
  51150. height: math.unit(9 + 6/12, "feet")
  51151. },
  51152. {
  51153. name: "Normal",
  51154. height: math.unit(17, "feet"),
  51155. default: true
  51156. },
  51157. ]
  51158. ))
  51159. characterMakers.push(() => makeCharacter(
  51160. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51161. {
  51162. front: {
  51163. height: math.unit(7 + 4/12, "feet"),
  51164. weight: math.unit(280, "lb"),
  51165. name: "Front",
  51166. image: {
  51167. source: "./media/characters/freki-yrmori/front.svg",
  51168. extra: 1286/1182,
  51169. bottom: 29/1315
  51170. }
  51171. },
  51172. maw: {
  51173. height: math.unit(0.9, "feet"),
  51174. name: "Maw",
  51175. image: {
  51176. source: "./media/characters/freki-yrmori/maw.svg"
  51177. }
  51178. },
  51179. },
  51180. [
  51181. {
  51182. name: "Normal",
  51183. height: math.unit(7 + 4/12, "feet"),
  51184. default: true
  51185. },
  51186. {
  51187. name: "Macro",
  51188. height: math.unit(38.5, "meters")
  51189. },
  51190. ]
  51191. ))
  51192. characterMakers.push(() => makeCharacter(
  51193. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51194. {
  51195. side: {
  51196. height: math.unit(47.2, "meters"),
  51197. weight: math.unit(10000, "tons"),
  51198. name: "Side",
  51199. image: {
  51200. source: "./media/characters/aetherios/side.svg",
  51201. extra: 2363/642,
  51202. bottom: 221/2584
  51203. }
  51204. },
  51205. top: {
  51206. height: math.unit(240, "meters"),
  51207. weight: math.unit(10000, "tons"),
  51208. name: "Top",
  51209. image: {
  51210. source: "./media/characters/aetherios/top.svg"
  51211. }
  51212. },
  51213. bottom: {
  51214. height: math.unit(240, "meters"),
  51215. weight: math.unit(10000, "tons"),
  51216. name: "Bottom",
  51217. image: {
  51218. source: "./media/characters/aetherios/bottom.svg"
  51219. }
  51220. },
  51221. head: {
  51222. height: math.unit(38.6, "meters"),
  51223. name: "Head",
  51224. image: {
  51225. source: "./media/characters/aetherios/head.svg",
  51226. extra: 1335/1112,
  51227. bottom: 0/1335
  51228. }
  51229. },
  51230. front: {
  51231. height: math.unit(29, "meters"),
  51232. name: "Front",
  51233. image: {
  51234. source: "./media/characters/aetherios/front.svg",
  51235. extra: 1266/953,
  51236. bottom: 158/1424
  51237. }
  51238. },
  51239. maw: {
  51240. height: math.unit(16.37, "meters"),
  51241. name: "Maw",
  51242. image: {
  51243. source: "./media/characters/aetherios/maw.svg",
  51244. extra: 748/637,
  51245. bottom: 0/748
  51246. },
  51247. extraAttributes: {
  51248. preyCapacity: {
  51249. name: "Capacity",
  51250. power: 3,
  51251. type: "volume",
  51252. base: math.unit(1000, "people")
  51253. },
  51254. tongueSize: {
  51255. name: "Tongue Size",
  51256. power: 2,
  51257. type: "area",
  51258. base: math.unit(21, "m^2")
  51259. }
  51260. }
  51261. },
  51262. forepaw: {
  51263. height: math.unit(18, "meters"),
  51264. name: "Forepaw",
  51265. image: {
  51266. source: "./media/characters/aetherios/forepaw.svg"
  51267. }
  51268. },
  51269. hindpaw: {
  51270. height: math.unit(23, "meters"),
  51271. name: "Hindpaw",
  51272. image: {
  51273. source: "./media/characters/aetherios/hindpaw.svg"
  51274. }
  51275. },
  51276. genitals: {
  51277. height: math.unit(42, "meters"),
  51278. name: "Genitals",
  51279. image: {
  51280. source: "./media/characters/aetherios/genitals.svg"
  51281. }
  51282. },
  51283. },
  51284. [
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(47.2, "meters"),
  51288. default: true
  51289. },
  51290. {
  51291. name: "Macro",
  51292. height: math.unit(160, "meters")
  51293. },
  51294. {
  51295. name: "Mega",
  51296. height: math.unit(1.87, "km")
  51297. },
  51298. {
  51299. name: "Giga",
  51300. height: math.unit(40000, "km")
  51301. },
  51302. {
  51303. name: "Stellar",
  51304. height: math.unit(158000000, "km")
  51305. },
  51306. {
  51307. name: "Cosmic",
  51308. height: math.unit(9.46e12, "km")
  51309. },
  51310. ]
  51311. ))
  51312. characterMakers.push(() => makeCharacter(
  51313. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51314. {
  51315. front: {
  51316. height: math.unit(5 + 4/12, "feet"),
  51317. weight: math.unit(80, "lb"),
  51318. name: "Front",
  51319. image: {
  51320. source: "./media/characters/mizu-gieeg/front.svg",
  51321. extra: 850/709,
  51322. bottom: 52/902
  51323. }
  51324. },
  51325. back: {
  51326. height: math.unit(5 + 4/12, "feet"),
  51327. weight: math.unit(80, "lb"),
  51328. name: "Back",
  51329. image: {
  51330. source: "./media/characters/mizu-gieeg/back.svg",
  51331. extra: 882/745,
  51332. bottom: 25/907
  51333. }
  51334. },
  51335. },
  51336. [
  51337. {
  51338. name: "Normal",
  51339. height: math.unit(5 + 4/12, "feet"),
  51340. default: true
  51341. },
  51342. ]
  51343. ))
  51344. characterMakers.push(() => makeCharacter(
  51345. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51346. {
  51347. front: {
  51348. height: math.unit(6, "feet"),
  51349. name: "Front",
  51350. image: {
  51351. source: "./media/characters/roselle-st-papier/front.svg",
  51352. extra: 1430/1280,
  51353. bottom: 37/1467
  51354. }
  51355. },
  51356. back: {
  51357. height: math.unit(6, "feet"),
  51358. name: "Back",
  51359. image: {
  51360. source: "./media/characters/roselle-st-papier/back.svg",
  51361. extra: 1491/1296,
  51362. bottom: 23/1514
  51363. }
  51364. },
  51365. ear: {
  51366. height: math.unit(1.26, "feet"),
  51367. name: "Ear",
  51368. image: {
  51369. source: "./media/characters/roselle-st-papier/ear.svg"
  51370. }
  51371. },
  51372. },
  51373. [
  51374. {
  51375. name: "Normal",
  51376. height: math.unit(150, "feet"),
  51377. default: true
  51378. },
  51379. ]
  51380. ))
  51381. characterMakers.push(() => makeCharacter(
  51382. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51383. {
  51384. front: {
  51385. height: math.unit(1, "inches"),
  51386. name: "Front",
  51387. image: {
  51388. source: "./media/characters/valargent/front.svg",
  51389. extra: 1825/1694,
  51390. bottom: 62/1887
  51391. }
  51392. },
  51393. back: {
  51394. height: math.unit(1, "inches"),
  51395. name: "Back",
  51396. image: {
  51397. source: "./media/characters/valargent/back.svg",
  51398. extra: 1775/1682,
  51399. bottom: 88/1863
  51400. }
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Micro",
  51406. height: math.unit(1, "inch"),
  51407. default: true
  51408. },
  51409. ]
  51410. ))
  51411. characterMakers.push(() => makeCharacter(
  51412. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51413. {
  51414. front: {
  51415. height: math.unit(3.4, "meters"),
  51416. name: "Front",
  51417. image: {
  51418. source: "./media/characters/zarina/front.svg",
  51419. extra: 1733/1425,
  51420. bottom: 93/1826
  51421. }
  51422. },
  51423. squatting: {
  51424. height: math.unit(2.14, "meters"),
  51425. name: "Squatting",
  51426. image: {
  51427. source: "./media/characters/zarina/squatting.svg",
  51428. extra: 1073/788,
  51429. bottom: 63/1136
  51430. }
  51431. },
  51432. back: {
  51433. height: math.unit(2.14, "meters"),
  51434. name: "Back",
  51435. image: {
  51436. source: "./media/characters/zarina/back.svg",
  51437. extra: 1128/885,
  51438. bottom: 0/1128
  51439. }
  51440. },
  51441. },
  51442. [
  51443. {
  51444. name: "Normal",
  51445. height: math.unit(3.4, "meters"),
  51446. default: true
  51447. },
  51448. {
  51449. name: "Big",
  51450. height: math.unit(5, "meters")
  51451. },
  51452. {
  51453. name: "Macro",
  51454. height: math.unit(110, "meters")
  51455. },
  51456. ]
  51457. ))
  51458. characterMakers.push(() => makeCharacter(
  51459. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51460. {
  51461. front: {
  51462. height: math.unit(7, "feet"),
  51463. name: "Front",
  51464. image: {
  51465. source: "./media/characters/ventus-astro-fox/front.svg",
  51466. extra: 1792/1623,
  51467. bottom: 28/1820
  51468. }
  51469. },
  51470. back: {
  51471. height: math.unit(7, "feet"),
  51472. name: "Back",
  51473. image: {
  51474. source: "./media/characters/ventus-astro-fox/back.svg",
  51475. extra: 1789/1620,
  51476. bottom: 31/1820
  51477. }
  51478. },
  51479. outfit: {
  51480. height: math.unit(7, "feet"),
  51481. name: "Outfit",
  51482. image: {
  51483. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51484. extra: 1054/925,
  51485. bottom: 15/1069
  51486. }
  51487. },
  51488. head: {
  51489. height: math.unit(1.12, "feet"),
  51490. name: "Head",
  51491. image: {
  51492. source: "./media/characters/ventus-astro-fox/head.svg",
  51493. extra: 866/504,
  51494. bottom: 0/866
  51495. }
  51496. },
  51497. hand: {
  51498. height: math.unit(1, "feet"),
  51499. name: "Hand",
  51500. image: {
  51501. source: "./media/characters/ventus-astro-fox/hand.svg"
  51502. }
  51503. },
  51504. paw: {
  51505. height: math.unit(1.5, "feet"),
  51506. name: "Paw",
  51507. image: {
  51508. source: "./media/characters/ventus-astro-fox/paw.svg"
  51509. }
  51510. },
  51511. },
  51512. [
  51513. {
  51514. name: "Normal",
  51515. height: math.unit(7, "feet"),
  51516. default: true
  51517. },
  51518. {
  51519. name: "Macro",
  51520. height: math.unit(200, "feet")
  51521. },
  51522. {
  51523. name: "Cosmic",
  51524. height: math.unit(3, "universes")
  51525. },
  51526. ]
  51527. ))
  51528. characterMakers.push(() => makeCharacter(
  51529. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51530. {
  51531. front: {
  51532. height: math.unit(3, "meters"),
  51533. weight: math.unit(7000, "lb"),
  51534. name: "Front",
  51535. image: {
  51536. source: "./media/characters/core-t/front.svg",
  51537. extra: 5729/4941,
  51538. bottom: 1129/6858
  51539. }
  51540. },
  51541. },
  51542. [
  51543. {
  51544. name: "Big",
  51545. height: math.unit(3, "meters"),
  51546. default: true
  51547. },
  51548. ]
  51549. ))
  51550. characterMakers.push(() => makeCharacter(
  51551. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51552. {
  51553. normal: {
  51554. height: math.unit(6 + 6/12, "feet"),
  51555. weight: math.unit(275, "lb"),
  51556. name: "Front",
  51557. image: {
  51558. source: "./media/characters/cadbunny/normal.svg",
  51559. extra: 1129/947,
  51560. bottom: 93/1222
  51561. },
  51562. default: true,
  51563. form: "normal"
  51564. },
  51565. gigantamax: {
  51566. height: math.unit(26, "feet"),
  51567. weight: math.unit(16000, "lb"),
  51568. name: "Front",
  51569. image: {
  51570. source: "./media/characters/cadbunny/gigantamax.svg",
  51571. extra: 1133/944,
  51572. bottom: 90/1223
  51573. },
  51574. default: true,
  51575. form: "gigantamax"
  51576. },
  51577. },
  51578. [
  51579. {
  51580. name: "Normal",
  51581. height: math.unit(6 + 6/12, "feet"),
  51582. default: true,
  51583. form: "normal"
  51584. },
  51585. {
  51586. name: "Small",
  51587. height: math.unit(26, "feet"),
  51588. default: true,
  51589. form: "gigantamax"
  51590. },
  51591. {
  51592. name: "Large",
  51593. height: math.unit(78, "feet"),
  51594. form: "gigantamax"
  51595. },
  51596. ],
  51597. {
  51598. "normal": {
  51599. name: "Normal",
  51600. default: true
  51601. },
  51602. "gigantamax": {
  51603. name: "Gigantamax"
  51604. }
  51605. }
  51606. ))
  51607. characterMakers.push(() => makeCharacter(
  51608. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51609. {
  51610. anthroFront: {
  51611. height: math.unit(8, "feet"),
  51612. weight: math.unit(300, "lb"),
  51613. name: "Front",
  51614. image: {
  51615. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51616. extra: 1272/1176,
  51617. bottom: 53/1325
  51618. },
  51619. form: "anthro",
  51620. default: true
  51621. },
  51622. feralSide: {
  51623. height: math.unit(4, "feet"),
  51624. weight: math.unit(250, "lb"),
  51625. name: "Side",
  51626. image: {
  51627. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51628. extra: 731/621,
  51629. bottom: 0/731
  51630. },
  51631. form: "feral",
  51632. default: true
  51633. },
  51634. },
  51635. [
  51636. {
  51637. name: "Regular",
  51638. height: math.unit(8, "feet"),
  51639. form: "anthro"
  51640. },
  51641. {
  51642. name: "Macro",
  51643. height: math.unit(250, "feet"),
  51644. form: "anthro",
  51645. default: true
  51646. },
  51647. {
  51648. name: "Regular",
  51649. height: math.unit(4, "feet"),
  51650. form: "feral"
  51651. },
  51652. {
  51653. name: "Macro",
  51654. height: math.unit(125, "feet"),
  51655. form: "feral",
  51656. default: true
  51657. },
  51658. ],
  51659. {
  51660. "anthro": {
  51661. name: "Anthro",
  51662. default: true
  51663. },
  51664. "feral": {
  51665. name: "Feral",
  51666. },
  51667. }
  51668. ))
  51669. characterMakers.push(() => makeCharacter(
  51670. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51671. {
  51672. front: {
  51673. height: math.unit(11 + 10/12, "feet"),
  51674. weight: math.unit(1587, "kg"),
  51675. name: "Front",
  51676. image: {
  51677. source: "./media/characters/maple-javira-dragon/front.svg",
  51678. extra: 1136/744,
  51679. bottom: 73/1209
  51680. }
  51681. },
  51682. side: {
  51683. height: math.unit(11 + 10/12, "feet"),
  51684. weight: math.unit(1587, "kg"),
  51685. name: "Side",
  51686. image: {
  51687. source: "./media/characters/maple-javira-dragon/side.svg",
  51688. extra: 712/505,
  51689. bottom: 17/729
  51690. }
  51691. },
  51692. head: {
  51693. height: math.unit(8.05, "feet"),
  51694. name: "Head",
  51695. image: {
  51696. source: "./media/characters/maple-javira-dragon/head.svg",
  51697. extra: 1420/1344,
  51698. bottom: 0/1420
  51699. }
  51700. },
  51701. },
  51702. [
  51703. {
  51704. name: "Normal",
  51705. height: math.unit(11 + 10/12, "feet"),
  51706. default: true
  51707. },
  51708. ]
  51709. ))
  51710. characterMakers.push(() => makeCharacter(
  51711. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51712. {
  51713. front: {
  51714. height: math.unit(117, "cm"),
  51715. weight: math.unit(50, "kg"),
  51716. name: "Front",
  51717. image: {
  51718. source: "./media/characters/sonia-wyverntail/front.svg",
  51719. extra: 708/592,
  51720. bottom: 25/733
  51721. }
  51722. },
  51723. },
  51724. [
  51725. {
  51726. name: "Normal",
  51727. height: math.unit(117, "cm"),
  51728. default: true
  51729. },
  51730. ]
  51731. ))
  51732. characterMakers.push(() => makeCharacter(
  51733. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51734. {
  51735. front: {
  51736. height: math.unit(6 + 5/12, "feet"),
  51737. name: "Front",
  51738. image: {
  51739. source: "./media/characters/micah/front.svg",
  51740. extra: 1758/1546,
  51741. bottom: 214/1972
  51742. }
  51743. },
  51744. },
  51745. [
  51746. {
  51747. name: "Normal",
  51748. height: math.unit(6 + 5/12, "feet"),
  51749. default: true
  51750. },
  51751. ]
  51752. ))
  51753. characterMakers.push(() => makeCharacter(
  51754. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51755. {
  51756. front: {
  51757. height: math.unit(1.75, "meters"),
  51758. weight: math.unit(100, "kg"),
  51759. name: "Front",
  51760. image: {
  51761. source: "./media/characters/zarya/front.svg",
  51762. extra: 741/735,
  51763. bottom: 44/785
  51764. },
  51765. extraAttributes: {
  51766. "tailLength": {
  51767. name: "Tail Length",
  51768. power: 1,
  51769. type: "length",
  51770. base: math.unit(180, "cm")
  51771. },
  51772. "pawLength": {
  51773. name: "Paw Length",
  51774. power: 1,
  51775. type: "length",
  51776. base: math.unit(31, "cm")
  51777. },
  51778. }
  51779. },
  51780. side: {
  51781. height: math.unit(1.75, "meters"),
  51782. weight: math.unit(100, "kg"),
  51783. name: "Side",
  51784. image: {
  51785. source: "./media/characters/zarya/side.svg",
  51786. extra: 776/770,
  51787. bottom: 17/793
  51788. },
  51789. extraAttributes: {
  51790. "tailLength": {
  51791. name: "Tail Length",
  51792. power: 1,
  51793. type: "length",
  51794. base: math.unit(180, "cm")
  51795. },
  51796. "pawLength": {
  51797. name: "Paw Length",
  51798. power: 1,
  51799. type: "length",
  51800. base: math.unit(31, "cm")
  51801. },
  51802. }
  51803. },
  51804. back: {
  51805. height: math.unit(1.75, "meters"),
  51806. weight: math.unit(100, "kg"),
  51807. name: "Back",
  51808. image: {
  51809. source: "./media/characters/zarya/back.svg",
  51810. extra: 741/735,
  51811. bottom: 44/785
  51812. },
  51813. extraAttributes: {
  51814. "tailLength": {
  51815. name: "Tail Length",
  51816. power: 1,
  51817. type: "length",
  51818. base: math.unit(180, "cm")
  51819. },
  51820. "pawLength": {
  51821. name: "Paw Length",
  51822. power: 1,
  51823. type: "length",
  51824. base: math.unit(31, "cm")
  51825. },
  51826. }
  51827. },
  51828. frontNoTail: {
  51829. height: math.unit(1.75, "meters"),
  51830. weight: math.unit(100, "kg"),
  51831. name: "Front (No Tail)",
  51832. image: {
  51833. source: "./media/characters/zarya/front-no-tail.svg",
  51834. extra: 741/735,
  51835. bottom: 44/785
  51836. },
  51837. extraAttributes: {
  51838. "tailLength": {
  51839. name: "Tail Length",
  51840. power: 1,
  51841. type: "length",
  51842. base: math.unit(180, "cm")
  51843. },
  51844. "pawLength": {
  51845. name: "Paw Length",
  51846. power: 1,
  51847. type: "length",
  51848. base: math.unit(31, "cm")
  51849. },
  51850. }
  51851. },
  51852. dressed: {
  51853. height: math.unit(1.75, "meters"),
  51854. weight: math.unit(100, "kg"),
  51855. name: "Dressed",
  51856. image: {
  51857. source: "./media/characters/zarya/dressed.svg",
  51858. extra: 683/672,
  51859. bottom: 79/762
  51860. },
  51861. extraAttributes: {
  51862. "tailLength": {
  51863. name: "Tail Length",
  51864. power: 1,
  51865. type: "length",
  51866. base: math.unit(180, "cm")
  51867. },
  51868. "pawLength": {
  51869. name: "Paw Length",
  51870. power: 1,
  51871. type: "length",
  51872. base: math.unit(31, "cm")
  51873. },
  51874. }
  51875. },
  51876. },
  51877. [
  51878. {
  51879. name: "Micro",
  51880. height: math.unit(5, "cm")
  51881. },
  51882. {
  51883. name: "Normal",
  51884. height: math.unit(1.75, "meters"),
  51885. default: true
  51886. },
  51887. {
  51888. name: "Macro",
  51889. height: math.unit(122, "meters")
  51890. },
  51891. ]
  51892. ))
  51893. characterMakers.push(() => makeCharacter(
  51894. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51895. {
  51896. front: {
  51897. height: math.unit(7.5, "feet"),
  51898. name: "Front",
  51899. image: {
  51900. source: "./media/characters/sven-hatisson/front.svg",
  51901. extra: 917/857,
  51902. bottom: 42/959
  51903. }
  51904. },
  51905. back: {
  51906. height: math.unit(7.5, "feet"),
  51907. name: "Back",
  51908. image: {
  51909. source: "./media/characters/sven-hatisson/back.svg",
  51910. extra: 903/856,
  51911. bottom: 15/918
  51912. }
  51913. },
  51914. },
  51915. [
  51916. {
  51917. name: "Base Height",
  51918. height: math.unit(7.5, "feet")
  51919. },
  51920. {
  51921. name: "Usual Height",
  51922. height: math.unit(13.5, "feet"),
  51923. default: true
  51924. },
  51925. {
  51926. name: "Smaller Macro",
  51927. height: math.unit(85, "feet")
  51928. },
  51929. {
  51930. name: "Moderate Macro",
  51931. height: math.unit(320, "feet")
  51932. },
  51933. {
  51934. name: "Large Macro",
  51935. height: math.unit(1000, "feet")
  51936. },
  51937. {
  51938. name: "Largest Size",
  51939. height: math.unit(2, "miles")
  51940. },
  51941. ]
  51942. ))
  51943. characterMakers.push(() => makeCharacter(
  51944. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51945. {
  51946. side: {
  51947. height: math.unit(1.8, "meters"),
  51948. weight: math.unit(275, "kg"),
  51949. name: "Side",
  51950. image: {
  51951. source: "./media/characters/terra/side.svg",
  51952. extra: 1273/1147,
  51953. bottom: 0/1273
  51954. }
  51955. },
  51956. },
  51957. [
  51958. {
  51959. name: "Normal",
  51960. height: math.unit(16.2, "meters"),
  51961. default: true
  51962. },
  51963. ]
  51964. ))
  51965. characterMakers.push(() => makeCharacter(
  51966. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51967. {
  51968. borzoiFront: {
  51969. height: math.unit(6 + 9/12, "feet"),
  51970. name: "Front",
  51971. image: {
  51972. source: "./media/characters/rae/borzoi-front.svg",
  51973. extra: 1161/1098,
  51974. bottom: 31/1192
  51975. },
  51976. form: "borzoi",
  51977. default: true
  51978. },
  51979. werewolfFront: {
  51980. height: math.unit(8 + 7/12, "feet"),
  51981. name: "Front",
  51982. image: {
  51983. source: "./media/characters/rae/werewolf-front.svg",
  51984. extra: 1411/1334,
  51985. bottom: 127/1538
  51986. },
  51987. form: "werewolf",
  51988. default: true
  51989. },
  51990. },
  51991. [
  51992. {
  51993. name: "Normal",
  51994. height: math.unit(6 + 9/12, "feet"),
  51995. default: true,
  51996. form: "borzoi"
  51997. },
  51998. {
  51999. name: "Normal",
  52000. height: math.unit(8 + 7/12, "feet"),
  52001. default: true,
  52002. form: "werewolf"
  52003. },
  52004. ],
  52005. {
  52006. "borzoi": {
  52007. name: "Borzoi",
  52008. default: true
  52009. },
  52010. "werewolf": {
  52011. name: "Werewolf",
  52012. },
  52013. }
  52014. ))
  52015. characterMakers.push(() => makeCharacter(
  52016. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52017. {
  52018. front: {
  52019. height: math.unit(8 + 7/12, "feet"),
  52020. weight: math.unit(482, "lb"),
  52021. name: "Front",
  52022. image: {
  52023. source: "./media/characters/kit/front.svg",
  52024. extra: 1247/1103,
  52025. bottom: 41/1288
  52026. }
  52027. },
  52028. back: {
  52029. height: math.unit(8 + 7/12, "feet"),
  52030. weight: math.unit(482, "lb"),
  52031. name: "Back",
  52032. image: {
  52033. source: "./media/characters/kit/back.svg",
  52034. extra: 1252/1123,
  52035. bottom: 21/1273
  52036. }
  52037. },
  52038. paw: {
  52039. height: math.unit(1.46, "feet"),
  52040. name: "Paw",
  52041. image: {
  52042. source: "./media/characters/kit/paw.svg"
  52043. }
  52044. },
  52045. },
  52046. [
  52047. {
  52048. name: "Normal",
  52049. height: math.unit(2.61, "meters"),
  52050. default: true
  52051. },
  52052. {
  52053. name: "\"Tall\"",
  52054. height: math.unit(8.21, "meters")
  52055. },
  52056. {
  52057. name: "Tall",
  52058. height: math.unit(19.6, "meters")
  52059. },
  52060. {
  52061. name: "Very Tall",
  52062. height: math.unit(57.91, "meters")
  52063. },
  52064. {
  52065. name: "Semi-Macro",
  52066. height: math.unit(138.64, "meters")
  52067. },
  52068. {
  52069. name: "Macro",
  52070. height: math.unit(831.99, "meters")
  52071. },
  52072. {
  52073. name: "EX-Macro",
  52074. height: math.unit(96451121, "meters")
  52075. },
  52076. {
  52077. name: "S1-Omnipotent",
  52078. height: math.unit(4.42074e+9, "meters")
  52079. },
  52080. {
  52081. name: "S2-Omnipotent",
  52082. height: math.unit(9.42074e+17, "meters")
  52083. },
  52084. {
  52085. name: "Omnipotent",
  52086. height: math.unit(4.23112e+24, "meters")
  52087. },
  52088. {
  52089. name: "Hypergod",
  52090. height: math.unit(5.05176e+27, "meters")
  52091. },
  52092. {
  52093. name: "Hypergod-EX",
  52094. height: math.unit(9.45532e+49, "meters")
  52095. },
  52096. {
  52097. name: "Hypergod-SP",
  52098. height: math.unit(9.45532e+195, "meters")
  52099. },
  52100. ]
  52101. ))
  52102. characterMakers.push(() => makeCharacter(
  52103. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52104. {
  52105. side: {
  52106. height: math.unit(0.6, "meters"),
  52107. weight: math.unit(24, "kg"),
  52108. name: "Side",
  52109. image: {
  52110. source: "./media/characters/celeste/side.svg",
  52111. extra: 810/517,
  52112. bottom: 53/863
  52113. }
  52114. },
  52115. },
  52116. [
  52117. {
  52118. name: "Velociraptor",
  52119. height: math.unit(0.6, "meters"),
  52120. default: true
  52121. },
  52122. {
  52123. name: "Utahraptor",
  52124. height: math.unit(1.8, "meters")
  52125. },
  52126. {
  52127. name: "Gallimimus",
  52128. height: math.unit(4.0, "meters")
  52129. },
  52130. {
  52131. name: "Large",
  52132. height: math.unit(20, "meters")
  52133. },
  52134. {
  52135. name: "Planetary",
  52136. height: math.unit(50, "megameters")
  52137. },
  52138. {
  52139. name: "Stellar",
  52140. height: math.unit(1.5, "gigameters")
  52141. },
  52142. {
  52143. name: "Galactic",
  52144. height: math.unit(100, "exameters")
  52145. },
  52146. ]
  52147. ))
  52148. characterMakers.push(() => makeCharacter(
  52149. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52150. {
  52151. front: {
  52152. height: math.unit(6, "feet"),
  52153. weight: math.unit(210, "lb"),
  52154. name: "Front",
  52155. image: {
  52156. source: "./media/characters/glacia/front.svg",
  52157. extra: 958/901,
  52158. bottom: 45/1003
  52159. }
  52160. },
  52161. },
  52162. [
  52163. {
  52164. name: "Macro",
  52165. height: math.unit(1000, "meters"),
  52166. default: true
  52167. },
  52168. ]
  52169. ))
  52170. characterMakers.push(() => makeCharacter(
  52171. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52172. {
  52173. front: {
  52174. height: math.unit(4, "meters"),
  52175. name: "Front",
  52176. image: {
  52177. source: "./media/characters/giri/front.svg",
  52178. extra: 966/894,
  52179. bottom: 21/987
  52180. }
  52181. },
  52182. },
  52183. [
  52184. {
  52185. name: "Normal",
  52186. height: math.unit(4, "meters"),
  52187. default: true
  52188. },
  52189. ]
  52190. ))
  52191. characterMakers.push(() => makeCharacter(
  52192. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52193. {
  52194. back: {
  52195. height: math.unit(4, "feet"),
  52196. weight: math.unit(37, "lb"),
  52197. name: "Back",
  52198. image: {
  52199. source: "./media/characters/tin/back.svg",
  52200. extra: 845/780,
  52201. bottom: 28/873
  52202. }
  52203. },
  52204. },
  52205. [
  52206. {
  52207. name: "Normal",
  52208. height: math.unit(4, "feet"),
  52209. default: true
  52210. },
  52211. ]
  52212. ))
  52213. characterMakers.push(() => makeCharacter(
  52214. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52215. {
  52216. front: {
  52217. height: math.unit(25, "feet"),
  52218. name: "Front",
  52219. image: {
  52220. source: "./media/characters/cadenza-vivace/front.svg",
  52221. extra: 1842/1578,
  52222. bottom: 30/1872
  52223. }
  52224. },
  52225. },
  52226. [
  52227. {
  52228. name: "Macro",
  52229. height: math.unit(25, "feet"),
  52230. default: true
  52231. },
  52232. ]
  52233. ))
  52234. characterMakers.push(() => makeCharacter(
  52235. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52236. {
  52237. front: {
  52238. height: math.unit(10, "feet"),
  52239. weight: math.unit(625, "kg"),
  52240. name: "Front",
  52241. image: {
  52242. source: "./media/characters/zain/front.svg",
  52243. extra: 1682/1498,
  52244. bottom: 223/1905
  52245. }
  52246. },
  52247. back: {
  52248. height: math.unit(10, "feet"),
  52249. weight: math.unit(625, "kg"),
  52250. name: "Back",
  52251. image: {
  52252. source: "./media/characters/zain/back.svg",
  52253. extra: 1814/1657,
  52254. bottom: 152/1966
  52255. }
  52256. },
  52257. head: {
  52258. height: math.unit(10, "feet"),
  52259. weight: math.unit(625, "kg"),
  52260. name: "Head",
  52261. image: {
  52262. source: "./media/characters/zain/head.svg",
  52263. extra: 1059/762,
  52264. bottom: 0/1059
  52265. }
  52266. },
  52267. },
  52268. [
  52269. {
  52270. name: "Normal",
  52271. height: math.unit(10, "feet"),
  52272. default: true
  52273. },
  52274. ]
  52275. ))
  52276. characterMakers.push(() => makeCharacter(
  52277. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52278. {
  52279. front: {
  52280. height: math.unit(6 + 5/12, "feet"),
  52281. weight: math.unit(750, "lb"),
  52282. name: "Front",
  52283. image: {
  52284. source: "./media/characters/ruchex/front.svg",
  52285. extra: 877/820,
  52286. bottom: 17/894
  52287. },
  52288. extraAttributes: {
  52289. "width": {
  52290. name: "Width",
  52291. power: 1,
  52292. type: "length",
  52293. base: math.unit(4.757, "feet")
  52294. },
  52295. }
  52296. },
  52297. },
  52298. [
  52299. {
  52300. name: "Normal",
  52301. height: math.unit(6 + 5/12, "feet"),
  52302. default: true
  52303. },
  52304. ]
  52305. ))
  52306. characterMakers.push(() => makeCharacter(
  52307. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52308. {
  52309. dressedFront: {
  52310. height: math.unit(191, "cm"),
  52311. weight: math.unit(80, "kg"),
  52312. name: "Front",
  52313. image: {
  52314. source: "./media/characters/buster/dressed-front.svg",
  52315. extra: 1022/973,
  52316. bottom: 69/1091
  52317. }
  52318. },
  52319. dressedBack: {
  52320. height: math.unit(191, "cm"),
  52321. weight: math.unit(80, "kg"),
  52322. name: "Back",
  52323. image: {
  52324. source: "./media/characters/buster/dressed-back.svg",
  52325. extra: 1018/970,
  52326. bottom: 55/1073
  52327. }
  52328. },
  52329. nudeFront: {
  52330. height: math.unit(191, "cm"),
  52331. weight: math.unit(80, "kg"),
  52332. name: "Front (Nude)",
  52333. image: {
  52334. source: "./media/characters/buster/nude-front.svg",
  52335. extra: 1022/973,
  52336. bottom: 69/1091
  52337. }
  52338. },
  52339. nudeBack: {
  52340. height: math.unit(191, "cm"),
  52341. weight: math.unit(80, "kg"),
  52342. name: "Back (Nude)",
  52343. image: {
  52344. source: "./media/characters/buster/nude-back.svg",
  52345. extra: 1018/970,
  52346. bottom: 55/1073
  52347. }
  52348. },
  52349. dick: {
  52350. height: math.unit(2.59, "feet"),
  52351. name: "Dick",
  52352. image: {
  52353. source: "./media/characters/buster/dick.svg"
  52354. }
  52355. },
  52356. ass: {
  52357. height: math.unit(1.2, "feet"),
  52358. name: "Ass",
  52359. image: {
  52360. source: "./media/characters/buster/ass.svg"
  52361. }
  52362. },
  52363. },
  52364. [
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(191, "cm"),
  52368. default: true
  52369. },
  52370. ]
  52371. ))
  52372. characterMakers.push(() => makeCharacter(
  52373. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52374. {
  52375. side: {
  52376. height: math.unit(8.1, "feet"),
  52377. weight: math.unit(3500, "lb"),
  52378. name: "Side",
  52379. image: {
  52380. source: "./media/characters/sonya/side.svg",
  52381. extra: 1730/1317,
  52382. bottom: 86/1816
  52383. }
  52384. },
  52385. },
  52386. [
  52387. {
  52388. name: "Normal",
  52389. height: math.unit(8.1, "feet"),
  52390. default: true
  52391. },
  52392. ]
  52393. ))
  52394. characterMakers.push(() => makeCharacter(
  52395. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52396. {
  52397. front: {
  52398. height: math.unit(6, "feet"),
  52399. weight: math.unit(150, "lb"),
  52400. name: "Front",
  52401. image: {
  52402. source: "./media/characters/cadence-andrysiak/front.svg",
  52403. extra: 1164/1121,
  52404. bottom: 60/1224
  52405. }
  52406. },
  52407. back: {
  52408. height: math.unit(6, "feet"),
  52409. weight: math.unit(150, "lb"),
  52410. name: "Back",
  52411. image: {
  52412. source: "./media/characters/cadence-andrysiak/back.svg",
  52413. extra: 1200/1165,
  52414. bottom: 9/1209
  52415. }
  52416. },
  52417. dressed: {
  52418. height: math.unit(6, "feet"),
  52419. weight: math.unit(150, "lb"),
  52420. name: "Dressed",
  52421. image: {
  52422. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52423. extra: 1164/1121,
  52424. bottom: 60/1224
  52425. }
  52426. },
  52427. },
  52428. [
  52429. {
  52430. name: "Micro",
  52431. height: math.unit(1, "mm")
  52432. },
  52433. {
  52434. name: "Normal",
  52435. height: math.unit(6, "feet"),
  52436. default: true
  52437. },
  52438. ]
  52439. ))
  52440. characterMakers.push(() => makeCharacter(
  52441. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52442. {
  52443. front: {
  52444. height: math.unit(60, "inches"),
  52445. weight: math.unit(16, "lb"),
  52446. preyCapacity: math.unit(80, "liters"),
  52447. name: "Front",
  52448. image: {
  52449. source: "./media/characters/penny-lynx/front.svg",
  52450. extra: 1959/1769,
  52451. bottom: 49/2008
  52452. }
  52453. },
  52454. },
  52455. [
  52456. {
  52457. name: "Nokia",
  52458. height: math.unit(2, "inches")
  52459. },
  52460. {
  52461. name: "Desktop",
  52462. height: math.unit(24, "inches")
  52463. },
  52464. {
  52465. name: "TV",
  52466. height: math.unit(60, "inches")
  52467. },
  52468. {
  52469. name: "Jumbotron",
  52470. height: math.unit(12, "feet")
  52471. },
  52472. {
  52473. name: "Billboard",
  52474. height: math.unit(48, "feet"),
  52475. default: true
  52476. },
  52477. {
  52478. name: "IMAX",
  52479. height: math.unit(96, "feet")
  52480. },
  52481. {
  52482. name: "SINGULARITY",
  52483. height: math.unit(864938, "miles")
  52484. },
  52485. ]
  52486. ))
  52487. characterMakers.push(() => makeCharacter(
  52488. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52489. {
  52490. front: {
  52491. height: math.unit(5 + 4/12, "feet"),
  52492. weight: math.unit(230, "lb"),
  52493. name: "Front",
  52494. image: {
  52495. source: "./media/characters/sukebe/front.svg",
  52496. extra: 2130/2038,
  52497. bottom: 90/2220
  52498. }
  52499. },
  52500. back: {
  52501. height: math.unit(3.48, "feet"),
  52502. weight: math.unit(230, "lb"),
  52503. name: "Back",
  52504. image: {
  52505. source: "./media/characters/sukebe/back.svg",
  52506. extra: 1670/1604,
  52507. bottom: 0/1670
  52508. }
  52509. },
  52510. },
  52511. [
  52512. {
  52513. name: "Normal",
  52514. height: math.unit(5 + 4/12, "feet"),
  52515. default: true
  52516. },
  52517. ]
  52518. ))
  52519. characterMakers.push(() => makeCharacter(
  52520. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52521. {
  52522. front: {
  52523. height: math.unit(6, "feet"),
  52524. name: "Front",
  52525. image: {
  52526. source: "./media/characters/nylla/front.svg",
  52527. extra: 1868/1699,
  52528. bottom: 97/1965
  52529. }
  52530. },
  52531. back: {
  52532. height: math.unit(6, "feet"),
  52533. name: "Back",
  52534. image: {
  52535. source: "./media/characters/nylla/back.svg",
  52536. extra: 1889/1712,
  52537. bottom: 93/1982
  52538. }
  52539. },
  52540. frontNsfw: {
  52541. height: math.unit(6, "feet"),
  52542. name: "Front (NSFW)",
  52543. image: {
  52544. source: "./media/characters/nylla/front-nsfw.svg",
  52545. extra: 1868/1699,
  52546. bottom: 97/1965
  52547. },
  52548. extraAttributes: {
  52549. "dickLength": {
  52550. name: "Dick Length",
  52551. power: 1,
  52552. type: "length",
  52553. base: math.unit(1.4, "feet")
  52554. },
  52555. "cumVolume": {
  52556. name: "Cum Volume",
  52557. power: 3,
  52558. type: "volume",
  52559. base: math.unit(100, "mL")
  52560. },
  52561. }
  52562. },
  52563. backNsfw: {
  52564. height: math.unit(6, "feet"),
  52565. name: "Back (NSFW)",
  52566. image: {
  52567. source: "./media/characters/nylla/back-nsfw.svg",
  52568. extra: 1889/1712,
  52569. bottom: 93/1982
  52570. }
  52571. },
  52572. maw: {
  52573. height: math.unit(2.10, "feet"),
  52574. name: "Maw",
  52575. image: {
  52576. source: "./media/characters/nylla/maw.svg"
  52577. }
  52578. },
  52579. paws: {
  52580. height: math.unit(2.06, "feet"),
  52581. name: "Paws",
  52582. image: {
  52583. source: "./media/characters/nylla/paws.svg"
  52584. }
  52585. },
  52586. muzzle: {
  52587. height: math.unit(0.61, "feet"),
  52588. name: "Muzzle",
  52589. image: {
  52590. source: "./media/characters/nylla/muzzle.svg"
  52591. }
  52592. },
  52593. sheath: {
  52594. height: math.unit(1.305, "feet"),
  52595. name: "Sheath",
  52596. image: {
  52597. source: "./media/characters/nylla/sheath.svg"
  52598. }
  52599. },
  52600. },
  52601. [
  52602. {
  52603. name: "Micro",
  52604. height: math.unit(7.5, "inches")
  52605. },
  52606. {
  52607. name: "Normal",
  52608. height: math.unit(7, "feet"),
  52609. default: true
  52610. },
  52611. {
  52612. name: "Macro",
  52613. height: math.unit(60, "feet")
  52614. },
  52615. {
  52616. name: "Mega",
  52617. height: math.unit(200, "feet")
  52618. },
  52619. ]
  52620. ))
  52621. characterMakers.push(() => makeCharacter(
  52622. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52623. {
  52624. front: {
  52625. height: math.unit(10, "feet"),
  52626. weight: math.unit(2300, "lb"),
  52627. name: "Front",
  52628. image: {
  52629. source: "./media/characters/hunt3r/front.svg",
  52630. extra: 1909/1742,
  52631. bottom: 46/1955
  52632. }
  52633. },
  52634. },
  52635. [
  52636. {
  52637. name: "Normal",
  52638. height: math.unit(10, "feet"),
  52639. default: true
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52645. {
  52646. dressed: {
  52647. height: math.unit(11, "feet"),
  52648. weight: math.unit(18500, "lb"),
  52649. preyCapacity: math.unit(9, "people"),
  52650. name: "Dressed",
  52651. image: {
  52652. source: "./media/characters/cylphis/dressed.svg",
  52653. extra: 1028/1003,
  52654. bottom: 75/1103
  52655. },
  52656. },
  52657. undressed: {
  52658. height: math.unit(11, "feet"),
  52659. weight: math.unit(18500, "lb"),
  52660. preyCapacity: math.unit(9, "people"),
  52661. name: "Undressed",
  52662. image: {
  52663. source: "./media/characters/cylphis/undressed.svg",
  52664. extra: 1028/1003,
  52665. bottom: 75/1103
  52666. }
  52667. },
  52668. full: {
  52669. height: math.unit(11, "feet"),
  52670. weight: math.unit(18500 + 150*9, "lb"),
  52671. preyCapacity: math.unit(9, "people"),
  52672. name: "Full",
  52673. image: {
  52674. source: "./media/characters/cylphis/full.svg",
  52675. extra: 1028/1003,
  52676. bottom: 75/1103
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Small",
  52683. height: math.unit(8, "feet")
  52684. },
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(11, "feet"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52694. {
  52695. front: {
  52696. height: math.unit(2 + 7/12, "feet"),
  52697. name: "Front",
  52698. image: {
  52699. source: "./media/characters/orishan/front.svg",
  52700. extra: 1058/1023,
  52701. bottom: 23/1081
  52702. }
  52703. },
  52704. back: {
  52705. height: math.unit(2 + 7/12, "feet"),
  52706. name: "Back",
  52707. image: {
  52708. source: "./media/characters/orishan/back.svg",
  52709. extra: 1058/1023,
  52710. bottom: 23/1081
  52711. }
  52712. },
  52713. },
  52714. [
  52715. {
  52716. name: "Micro",
  52717. height: math.unit(2, "cm")
  52718. },
  52719. {
  52720. name: "Normal",
  52721. height: math.unit(2 + 7/12, "feet"),
  52722. default: true
  52723. },
  52724. ]
  52725. ))
  52726. characterMakers.push(() => makeCharacter(
  52727. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52728. {
  52729. front: {
  52730. height: math.unit(3, "meters"),
  52731. weight: math.unit(508, "kg"),
  52732. name: "Front",
  52733. image: {
  52734. source: "./media/characters/seranis/front.svg",
  52735. extra: 1478/1454,
  52736. bottom: 41/1519
  52737. }
  52738. },
  52739. },
  52740. [
  52741. {
  52742. name: "Normal",
  52743. height: math.unit(3, "meters"),
  52744. default: true
  52745. },
  52746. {
  52747. name: "Macro",
  52748. height: math.unit(108, "meters")
  52749. },
  52750. {
  52751. name: "Megamacro",
  52752. height: math.unit(1250, "meters")
  52753. },
  52754. ]
  52755. ))
  52756. characterMakers.push(() => makeCharacter(
  52757. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52758. {
  52759. undressed: {
  52760. height: math.unit(5 + 3/12, "feet"),
  52761. name: "Undressed",
  52762. image: {
  52763. source: "./media/characters/ankou/undressed.svg",
  52764. extra: 1301/1213,
  52765. bottom: 87/1388
  52766. }
  52767. },
  52768. dressed: {
  52769. height: math.unit(5 + 3/12, "feet"),
  52770. name: "Dressed",
  52771. image: {
  52772. source: "./media/characters/ankou/dressed.svg",
  52773. extra: 1301/1213,
  52774. bottom: 87/1388
  52775. }
  52776. },
  52777. head: {
  52778. height: math.unit(1.61, "feet"),
  52779. name: "Head",
  52780. image: {
  52781. source: "./media/characters/ankou/head.svg"
  52782. }
  52783. },
  52784. },
  52785. [
  52786. {
  52787. name: "Normal",
  52788. height: math.unit(5 + 3/12, "feet"),
  52789. default: true
  52790. },
  52791. ]
  52792. ))
  52793. characterMakers.push(() => makeCharacter(
  52794. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52795. {
  52796. side: {
  52797. height: math.unit(6 + 3/12, "feet"),
  52798. weight: math.unit(200, "kg"),
  52799. name: "Side",
  52800. image: {
  52801. source: "./media/characters/juniper-skunktaur/side.svg",
  52802. extra: 1574/1229,
  52803. bottom: 38/1612
  52804. }
  52805. },
  52806. front: {
  52807. height: math.unit(6 + 3/12, "feet"),
  52808. weight: math.unit(200, "kg"),
  52809. name: "Front",
  52810. image: {
  52811. source: "./media/characters/juniper-skunktaur/front.svg",
  52812. extra: 1337/1278,
  52813. bottom: 22/1359
  52814. }
  52815. },
  52816. back: {
  52817. height: math.unit(6 + 3/12, "feet"),
  52818. weight: math.unit(200, "kg"),
  52819. name: "Back",
  52820. image: {
  52821. source: "./media/characters/juniper-skunktaur/back.svg",
  52822. extra: 1618/1273,
  52823. bottom: 13/1631
  52824. }
  52825. },
  52826. top: {
  52827. height: math.unit(2.62, "feet"),
  52828. weight: math.unit(200, "kg"),
  52829. name: "Top",
  52830. image: {
  52831. source: "./media/characters/juniper-skunktaur/top.svg"
  52832. }
  52833. },
  52834. },
  52835. [
  52836. {
  52837. name: "Normal",
  52838. height: math.unit(6 + 3/12, "feet"),
  52839. default: true
  52840. },
  52841. ]
  52842. ))
  52843. characterMakers.push(() => makeCharacter(
  52844. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52845. {
  52846. front: {
  52847. height: math.unit(20.5, "feet"),
  52848. name: "Front",
  52849. image: {
  52850. source: "./media/characters/rei/front.svg",
  52851. extra: 1349/1195,
  52852. bottom: 31/1380
  52853. }
  52854. },
  52855. back: {
  52856. height: math.unit(20.5, "feet"),
  52857. name: "Back",
  52858. image: {
  52859. source: "./media/characters/rei/back.svg",
  52860. extra: 1358/1204,
  52861. bottom: 22/1380
  52862. }
  52863. },
  52864. pawsDigi: {
  52865. height: math.unit(3.45, "feet"),
  52866. name: "Paws (Digi)",
  52867. image: {
  52868. source: "./media/characters/rei/paws-digi.svg"
  52869. }
  52870. },
  52871. pawsPlanti: {
  52872. height: math.unit(3.45, "feet"),
  52873. name: "Paws (Planti)",
  52874. image: {
  52875. source: "./media/characters/rei/paws-planti.svg"
  52876. }
  52877. },
  52878. },
  52879. [
  52880. {
  52881. name: "Normal",
  52882. height: math.unit(20.5, "feet"),
  52883. default: true
  52884. },
  52885. ]
  52886. ))
  52887. characterMakers.push(() => makeCharacter(
  52888. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52889. {
  52890. front: {
  52891. height: math.unit(5 + 11/12, "feet"),
  52892. name: "Front",
  52893. image: {
  52894. source: "./media/characters/carina/front.svg",
  52895. extra: 1720/1449,
  52896. bottom: 14/1734
  52897. }
  52898. },
  52899. back: {
  52900. height: math.unit(5 + 11/12, "feet"),
  52901. name: "Back",
  52902. image: {
  52903. source: "./media/characters/carina/back.svg",
  52904. extra: 1493/1445,
  52905. bottom: 17/1510
  52906. }
  52907. },
  52908. paw: {
  52909. height: math.unit(0.92, "feet"),
  52910. name: "Paw",
  52911. image: {
  52912. source: "./media/characters/carina/paw.svg"
  52913. }
  52914. },
  52915. },
  52916. [
  52917. {
  52918. name: "Normal",
  52919. height: math.unit(5 + 11/12, "feet"),
  52920. default: true
  52921. },
  52922. ]
  52923. ))
  52924. characterMakers.push(() => makeCharacter(
  52925. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52926. {
  52927. normal_front: {
  52928. height: math.unit(4.88, "meters"),
  52929. name: "Front",
  52930. image: {
  52931. source: "./media/characters/maya/normal-front.svg",
  52932. extra: 1222/1145,
  52933. bottom: 57/1279
  52934. },
  52935. form: "normal",
  52936. default: true
  52937. },
  52938. monstrous_front: {
  52939. height: math.unit(10, "meters"),
  52940. name: "Front",
  52941. image: {
  52942. source: "./media/characters/maya/monstrous-front.svg",
  52943. extra: 1523/1109,
  52944. bottom: 113/1636
  52945. },
  52946. form: "monstrous",
  52947. extraAttributes: {
  52948. "swallowSize": {
  52949. name: "Tailmaw Bite Size",
  52950. power: 3,
  52951. type: "volume",
  52952. base: math.unit(43000, "liters")
  52953. },
  52954. }
  52955. },
  52956. taur_front: {
  52957. height: math.unit(10, "meters"),
  52958. name: "Front",
  52959. image: {
  52960. source: "./media/characters/maya/taur-front.svg",
  52961. extra: 743/506,
  52962. bottom: 101/844
  52963. },
  52964. form: "taur",
  52965. },
  52966. },
  52967. [
  52968. {
  52969. name: "Normal",
  52970. height: math.unit(4.88, "meters"),
  52971. default: true,
  52972. form: "normal"
  52973. },
  52974. {
  52975. name: "Macro",
  52976. height: math.unit(38.1, "meters"),
  52977. form: "normal"
  52978. },
  52979. {
  52980. name: "Macro+",
  52981. height: math.unit(152.4, "meters"),
  52982. form: "normal"
  52983. },
  52984. {
  52985. name: "Macro++",
  52986. height: math.unit(16.09, "km"),
  52987. form: "normal"
  52988. },
  52989. {
  52990. name: "Mega-macro",
  52991. height: math.unit(700, "megameters"),
  52992. form: "normal"
  52993. },
  52994. {
  52995. name: "Satiated",
  52996. height: math.unit(10, "meters"),
  52997. default: true,
  52998. form: "monstrous"
  52999. },
  53000. {
  53001. name: "Hungry",
  53002. height: math.unit(75, "meters"),
  53003. form: "monstrous"
  53004. },
  53005. {
  53006. name: "Ravenous",
  53007. height: math.unit(500, "meters"),
  53008. form: "monstrous"
  53009. },
  53010. {
  53011. name: "\"Normal\"",
  53012. height: math.unit(10, "meters"),
  53013. form: "taur"
  53014. },
  53015. {
  53016. name: "Macro",
  53017. height: math.unit(50, "meters"),
  53018. form: "taur"
  53019. },
  53020. ],
  53021. {
  53022. "normal": {
  53023. name: "Normal",
  53024. default: true
  53025. },
  53026. "monstrous": {
  53027. name: "Monstrous",
  53028. },
  53029. "taur": {
  53030. name: "Taur",
  53031. },
  53032. }
  53033. ))
  53034. characterMakers.push(() => makeCharacter(
  53035. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53036. {
  53037. front: {
  53038. height: math.unit(6 + 2/12, "feet"),
  53039. weight: math.unit(500, "lb"),
  53040. preyCapacity: math.unit(4, "people"),
  53041. name: "Front",
  53042. image: {
  53043. source: "./media/characters/yepir/front.svg"
  53044. }
  53045. },
  53046. side: {
  53047. height: math.unit(6 + 2/12, "feet"),
  53048. weight: math.unit(500, "lb"),
  53049. preyCapacity: math.unit(4, "people"),
  53050. name: "Side",
  53051. image: {
  53052. source: "./media/characters/yepir/side.svg"
  53053. }
  53054. },
  53055. paw: {
  53056. height: math.unit(1.05, "feet"),
  53057. name: "Paw",
  53058. image: {
  53059. source: "./media/characters/yepir/paw.svg"
  53060. }
  53061. },
  53062. },
  53063. [
  53064. {
  53065. name: "Normal",
  53066. height: math.unit(6 + 2/12, "feet"),
  53067. default: true
  53068. },
  53069. ]
  53070. ))
  53071. characterMakers.push(() => makeCharacter(
  53072. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53073. {
  53074. front: {
  53075. height: math.unit(5 + 4/12, "feet"),
  53076. name: "Front",
  53077. image: {
  53078. source: "./media/characters/russec/front.svg",
  53079. extra: 1926/1626,
  53080. bottom: 72/1998
  53081. }
  53082. },
  53083. back: {
  53084. height: math.unit(5 + 4/12, "feet"),
  53085. name: "Back",
  53086. image: {
  53087. source: "./media/characters/russec/back.svg",
  53088. extra: 1910/1591,
  53089. bottom: 48/1958
  53090. }
  53091. },
  53092. },
  53093. [
  53094. {
  53095. name: "Small",
  53096. height: math.unit(5 + 4/12, "feet")
  53097. },
  53098. {
  53099. name: "Normal",
  53100. height: math.unit(72, "feet"),
  53101. default: true
  53102. },
  53103. ]
  53104. ))
  53105. characterMakers.push(() => makeCharacter(
  53106. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53107. {
  53108. side: {
  53109. height: math.unit(12, "feet"),
  53110. name: "Side",
  53111. image: {
  53112. source: "./media/characters/cianus/side.svg",
  53113. extra: 808/526,
  53114. bottom: 61/869
  53115. }
  53116. },
  53117. },
  53118. [
  53119. {
  53120. name: "Normal",
  53121. height: math.unit(12, "feet"),
  53122. default: true
  53123. },
  53124. ]
  53125. ))
  53126. characterMakers.push(() => makeCharacter(
  53127. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53128. {
  53129. front: {
  53130. height: math.unit(9 + 6/12, "feet"),
  53131. weight: math.unit(300, "lb"),
  53132. name: "Front",
  53133. image: {
  53134. source: "./media/characters/ahab/front.svg",
  53135. extra: 1897/1868,
  53136. bottom: 121/2018
  53137. }
  53138. },
  53139. frontNsfw: {
  53140. height: math.unit(9 + 6/12, "feet"),
  53141. weight: math.unit(300, "lb"),
  53142. name: "Front-nsfw",
  53143. image: {
  53144. source: "./media/characters/ahab/front-nsfw.svg",
  53145. extra: 1897/1868,
  53146. bottom: 121/2018
  53147. }
  53148. },
  53149. },
  53150. [
  53151. {
  53152. name: "Normal",
  53153. height: math.unit(9 + 6/12, "feet")
  53154. },
  53155. {
  53156. name: "Macro",
  53157. height: math.unit(657, "feet"),
  53158. default: true
  53159. },
  53160. ]
  53161. ))
  53162. characterMakers.push(() => makeCharacter(
  53163. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53164. {
  53165. front: {
  53166. height: math.unit(2.69, "meters"),
  53167. weight: math.unit(132, "kg"),
  53168. name: "Front",
  53169. image: {
  53170. source: "./media/characters/aarkus/front.svg",
  53171. extra: 1400/1231,
  53172. bottom: 34/1434
  53173. }
  53174. },
  53175. back: {
  53176. height: math.unit(2.69, "meters"),
  53177. weight: math.unit(132, "kg"),
  53178. name: "Back",
  53179. image: {
  53180. source: "./media/characters/aarkus/back.svg",
  53181. extra: 1381/1218,
  53182. bottom: 30/1411
  53183. }
  53184. },
  53185. frontNsfw: {
  53186. height: math.unit(2.69, "meters"),
  53187. weight: math.unit(132, "kg"),
  53188. name: "Front (NSFW)",
  53189. image: {
  53190. source: "./media/characters/aarkus/front-nsfw.svg",
  53191. extra: 1400/1231,
  53192. bottom: 34/1434
  53193. }
  53194. },
  53195. foot: {
  53196. height: math.unit(1.45, "feet"),
  53197. name: "Foot",
  53198. image: {
  53199. source: "./media/characters/aarkus/foot.svg"
  53200. }
  53201. },
  53202. head: {
  53203. height: math.unit(2.85, "feet"),
  53204. name: "Head",
  53205. image: {
  53206. source: "./media/characters/aarkus/head.svg"
  53207. }
  53208. },
  53209. headAlt: {
  53210. height: math.unit(3.07, "feet"),
  53211. name: "Head (Alt)",
  53212. image: {
  53213. source: "./media/characters/aarkus/head-alt.svg"
  53214. }
  53215. },
  53216. mouth: {
  53217. height: math.unit(1.25, "feet"),
  53218. name: "Mouth",
  53219. image: {
  53220. source: "./media/characters/aarkus/mouth.svg"
  53221. }
  53222. },
  53223. dick: {
  53224. height: math.unit(1.77, "feet"),
  53225. name: "Dick",
  53226. image: {
  53227. source: "./media/characters/aarkus/dick.svg"
  53228. }
  53229. },
  53230. },
  53231. [
  53232. {
  53233. name: "Normal",
  53234. height: math.unit(2.69, "meters"),
  53235. default: true
  53236. },
  53237. {
  53238. name: "Macro",
  53239. height: math.unit(269, "meters")
  53240. },
  53241. {
  53242. name: "Macro+",
  53243. height: math.unit(672.5, "meters")
  53244. },
  53245. {
  53246. name: "Megamacro",
  53247. height: math.unit(2.017, "km")
  53248. },
  53249. ]
  53250. ))
  53251. characterMakers.push(() => makeCharacter(
  53252. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53253. {
  53254. front: {
  53255. height: math.unit(23.47, "cm"),
  53256. weight: math.unit(600, "grams"),
  53257. name: "Front",
  53258. image: {
  53259. source: "./media/characters/diode/front.svg",
  53260. extra: 1778/1396,
  53261. bottom: 95/1873
  53262. }
  53263. },
  53264. side: {
  53265. height: math.unit(23.47, "cm"),
  53266. weight: math.unit(600, "grams"),
  53267. name: "Side",
  53268. image: {
  53269. source: "./media/characters/diode/side.svg",
  53270. extra: 1831/1404,
  53271. bottom: 86/1917
  53272. }
  53273. },
  53274. wings: {
  53275. height: math.unit(0.683, "feet"),
  53276. name: "Wings",
  53277. image: {
  53278. source: "./media/characters/diode/wings.svg"
  53279. }
  53280. },
  53281. },
  53282. [
  53283. {
  53284. name: "Normal",
  53285. height: math.unit(23.47, "cm"),
  53286. default: true
  53287. },
  53288. ]
  53289. ))
  53290. characterMakers.push(() => makeCharacter(
  53291. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53292. {
  53293. front: {
  53294. height: math.unit(6 + 3/12, "feet"),
  53295. weight: math.unit(250, "lb"),
  53296. name: "Front",
  53297. image: {
  53298. source: "./media/characters/reika/front.svg",
  53299. extra: 1120/1078,
  53300. bottom: 86/1206
  53301. }
  53302. },
  53303. },
  53304. [
  53305. {
  53306. name: "Normal",
  53307. height: math.unit(6 + 3/12, "feet"),
  53308. default: true
  53309. },
  53310. ]
  53311. ))
  53312. characterMakers.push(() => makeCharacter(
  53313. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53314. {
  53315. front: {
  53316. height: math.unit(16 + 8/12, "feet"),
  53317. weight: math.unit(9000, "lb"),
  53318. name: "Front",
  53319. image: {
  53320. source: "./media/characters/lokuto-takama/front.svg",
  53321. extra: 1774/1632,
  53322. bottom: 147/1921
  53323. },
  53324. extraAttributes: {
  53325. "bustWidth": {
  53326. name: "Bust Width",
  53327. power: 1,
  53328. type: "length",
  53329. base: math.unit(2.4, "meters")
  53330. },
  53331. "breastWeight": {
  53332. name: "Breast Weight",
  53333. power: 3,
  53334. type: "mass",
  53335. base: math.unit(1000, "kg")
  53336. },
  53337. }
  53338. },
  53339. },
  53340. [
  53341. {
  53342. name: "Normal",
  53343. height: math.unit(16 + 8/12, "feet"),
  53344. default: true
  53345. },
  53346. ]
  53347. ))
  53348. characterMakers.push(() => makeCharacter(
  53349. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53350. {
  53351. front: {
  53352. height: math.unit(10, "cm"),
  53353. weight: math.unit(850, "grams"),
  53354. name: "Front",
  53355. image: {
  53356. source: "./media/characters/owak-bone/front.svg",
  53357. extra: 1965/1801,
  53358. bottom: 31/1996
  53359. }
  53360. },
  53361. },
  53362. [
  53363. {
  53364. name: "Normal",
  53365. height: math.unit(10, "cm"),
  53366. default: true
  53367. },
  53368. ]
  53369. ))
  53370. characterMakers.push(() => makeCharacter(
  53371. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53372. {
  53373. front: {
  53374. height: math.unit(2 + 6/12, "feet"),
  53375. weight: math.unit(9, "lb"),
  53376. name: "Front",
  53377. image: {
  53378. source: "./media/characters/muffin/front.svg",
  53379. extra: 1220/1195,
  53380. bottom: 84/1304
  53381. }
  53382. },
  53383. },
  53384. [
  53385. {
  53386. name: "Normal",
  53387. height: math.unit(2 + 6/12, "feet"),
  53388. default: true
  53389. },
  53390. ]
  53391. ))
  53392. characterMakers.push(() => makeCharacter(
  53393. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53394. {
  53395. front: {
  53396. height: math.unit(7, "feet"),
  53397. name: "Front",
  53398. image: {
  53399. source: "./media/characters/chimera/front.svg",
  53400. extra: 1752/1614,
  53401. bottom: 68/1820
  53402. }
  53403. },
  53404. },
  53405. [
  53406. {
  53407. name: "Normal",
  53408. height: math.unit(7, "feet")
  53409. },
  53410. {
  53411. name: "Gigamacro",
  53412. height: math.unit(2.9, "gigameters"),
  53413. default: true
  53414. },
  53415. {
  53416. name: "Universal",
  53417. height: math.unit(1.56e26, "yottameters")
  53418. },
  53419. ]
  53420. ))
  53421. characterMakers.push(() => makeCharacter(
  53422. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53423. {
  53424. front: {
  53425. height: math.unit(3, "feet"),
  53426. weight: math.unit(20, "lb"),
  53427. name: "Front",
  53428. image: {
  53429. source: "./media/characters/kit-fennec-fox/front.svg",
  53430. extra: 1027/932,
  53431. bottom: 16/1043
  53432. }
  53433. },
  53434. back: {
  53435. height: math.unit(3, "feet"),
  53436. weight: math.unit(20, "lb"),
  53437. name: "Back",
  53438. image: {
  53439. source: "./media/characters/kit-fennec-fox/back.svg",
  53440. extra: 1027/932,
  53441. bottom: 16/1043
  53442. }
  53443. },
  53444. },
  53445. [
  53446. {
  53447. name: "Normal",
  53448. height: math.unit(3, "feet"),
  53449. default: true
  53450. },
  53451. ]
  53452. ))
  53453. characterMakers.push(() => makeCharacter(
  53454. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53455. {
  53456. front: {
  53457. height: math.unit(167, "cm"),
  53458. name: "Front",
  53459. image: {
  53460. source: "./media/characters/blue-otter/front.svg",
  53461. extra: 1951/1920,
  53462. bottom: 31/1982
  53463. }
  53464. },
  53465. },
  53466. [
  53467. {
  53468. name: "Otter-Sized",
  53469. height: math.unit(100, "cm")
  53470. },
  53471. {
  53472. name: "Normal",
  53473. height: math.unit(167, "cm"),
  53474. default: true
  53475. },
  53476. ]
  53477. ))
  53478. characterMakers.push(() => makeCharacter(
  53479. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53480. {
  53481. front: {
  53482. height: math.unit(4 + 4/12, "feet"),
  53483. name: "Front",
  53484. image: {
  53485. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53486. extra: 1072/1067,
  53487. bottom: 117/1189
  53488. }
  53489. },
  53490. back: {
  53491. height: math.unit(4 + 4/12, "feet"),
  53492. name: "Back",
  53493. image: {
  53494. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53495. extra: 1135/1129,
  53496. bottom: 57/1192
  53497. }
  53498. },
  53499. head: {
  53500. height: math.unit(1.77, "feet"),
  53501. name: "Head",
  53502. image: {
  53503. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53504. }
  53505. },
  53506. },
  53507. [
  53508. {
  53509. name: "Normal",
  53510. height: math.unit(4 + 4/12, "feet"),
  53511. default: true
  53512. },
  53513. ]
  53514. ))
  53515. characterMakers.push(() => makeCharacter(
  53516. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53517. {
  53518. front: {
  53519. height: math.unit(2, "inches"),
  53520. name: "Front",
  53521. image: {
  53522. source: "./media/characters/carley-hartford/front.svg",
  53523. extra: 1035/988,
  53524. bottom: 23/1058
  53525. }
  53526. },
  53527. back: {
  53528. height: math.unit(2, "inches"),
  53529. name: "Back",
  53530. image: {
  53531. source: "./media/characters/carley-hartford/back.svg",
  53532. extra: 1035/988,
  53533. bottom: 23/1058
  53534. }
  53535. },
  53536. dressed: {
  53537. height: math.unit(2, "inches"),
  53538. name: "Dressed",
  53539. image: {
  53540. source: "./media/characters/carley-hartford/dressed.svg",
  53541. extra: 651/620,
  53542. bottom: 0/651
  53543. }
  53544. },
  53545. },
  53546. [
  53547. {
  53548. name: "Micro",
  53549. height: math.unit(2, "inches"),
  53550. default: true
  53551. },
  53552. {
  53553. name: "Macro",
  53554. height: math.unit(6 + 3/12, "feet")
  53555. },
  53556. ]
  53557. ))
  53558. characterMakers.push(() => makeCharacter(
  53559. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53560. {
  53561. front: {
  53562. height: math.unit(2 + 3/12, "feet"),
  53563. weight: math.unit(15 + 7/16, "lb"),
  53564. name: "Front",
  53565. image: {
  53566. source: "./media/characters/duke/front.svg",
  53567. extra: 910/815,
  53568. bottom: 30/940
  53569. }
  53570. },
  53571. },
  53572. [
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(2 + 3/12, "feet"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53582. {
  53583. front: {
  53584. height: math.unit(5 + 4/12, "feet"),
  53585. weight: math.unit(156, "lb"),
  53586. name: "Front",
  53587. image: {
  53588. source: "./media/characters/dein/front.svg",
  53589. extra: 855/815,
  53590. bottom: 48/903
  53591. }
  53592. },
  53593. side: {
  53594. height: math.unit(5 + 4/12, "feet"),
  53595. weight: math.unit(156, "lb"),
  53596. name: "side",
  53597. image: {
  53598. source: "./media/characters/dein/side.svg",
  53599. extra: 846/803,
  53600. bottom: 25/871
  53601. }
  53602. },
  53603. maw: {
  53604. height: math.unit(1.45, "feet"),
  53605. name: "Maw",
  53606. image: {
  53607. source: "./media/characters/dein/maw.svg"
  53608. }
  53609. },
  53610. },
  53611. [
  53612. {
  53613. name: "Ferret Sized",
  53614. height: math.unit(2 + 5/12, "feet")
  53615. },
  53616. {
  53617. name: "Normal",
  53618. height: math.unit(5 + 4/12, "feet"),
  53619. default: true
  53620. },
  53621. ]
  53622. ))
  53623. characterMakers.push(() => makeCharacter(
  53624. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53625. {
  53626. front: {
  53627. height: math.unit(84 + 8/12, "feet"),
  53628. weight: math.unit(942180, "lb"),
  53629. name: "Front",
  53630. image: {
  53631. source: "./media/characters/daurine-arima/front.svg",
  53632. extra: 1989/1782,
  53633. bottom: 37/2026
  53634. }
  53635. },
  53636. side: {
  53637. height: math.unit(84 + 8/12, "feet"),
  53638. weight: math.unit(942180, "lb"),
  53639. name: "Side",
  53640. image: {
  53641. source: "./media/characters/daurine-arima/side.svg",
  53642. extra: 1997/1790,
  53643. bottom: 21/2018
  53644. }
  53645. },
  53646. back: {
  53647. height: math.unit(84 + 8/12, "feet"),
  53648. weight: math.unit(942180, "lb"),
  53649. name: "Back",
  53650. image: {
  53651. source: "./media/characters/daurine-arima/back.svg",
  53652. extra: 1992/1800,
  53653. bottom: 12/2004
  53654. }
  53655. },
  53656. head: {
  53657. height: math.unit(15.5, "feet"),
  53658. name: "Head",
  53659. image: {
  53660. source: "./media/characters/daurine-arima/head.svg"
  53661. }
  53662. },
  53663. headAlt: {
  53664. height: math.unit(19.19, "feet"),
  53665. name: "Head (Alt)",
  53666. image: {
  53667. source: "./media/characters/daurine-arima/head-alt.svg"
  53668. }
  53669. },
  53670. },
  53671. [
  53672. {
  53673. name: "Minimum height",
  53674. height: math.unit(8 + 10/12, "feet")
  53675. },
  53676. {
  53677. name: "Comfort height",
  53678. height: math.unit(19 + 6 /12, "feet")
  53679. },
  53680. {
  53681. name: "\"Normal\" height",
  53682. height: math.unit(28 + 10/12, "feet")
  53683. },
  53684. {
  53685. name: "Base height",
  53686. height: math.unit(84 + 8/12, "feet"),
  53687. default: true
  53688. },
  53689. {
  53690. name: "Mini-macro",
  53691. height: math.unit(2360, "feet")
  53692. },
  53693. {
  53694. name: "Macro",
  53695. height: math.unit(10, "miles")
  53696. },
  53697. {
  53698. name: "Goddess",
  53699. height: math.unit(9.99e40, "yottameters")
  53700. },
  53701. ]
  53702. ))
  53703. characterMakers.push(() => makeCharacter(
  53704. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53705. {
  53706. front: {
  53707. height: math.unit(2.3, "meters"),
  53708. name: "Front",
  53709. image: {
  53710. source: "./media/characters/cilenomon/front.svg",
  53711. extra: 1963/1778,
  53712. bottom: 54/2017
  53713. }
  53714. },
  53715. },
  53716. [
  53717. {
  53718. name: "Normal",
  53719. height: math.unit(2.3, "meters"),
  53720. default: true
  53721. },
  53722. {
  53723. name: "Big",
  53724. height: math.unit(5, "meters")
  53725. },
  53726. {
  53727. name: "Macro",
  53728. height: math.unit(30, "meters")
  53729. },
  53730. {
  53731. name: "True",
  53732. height: math.unit(1, "universe")
  53733. },
  53734. ]
  53735. ))
  53736. characterMakers.push(() => makeCharacter(
  53737. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53738. {
  53739. front: {
  53740. height: math.unit(5, "feet"),
  53741. name: "Front",
  53742. image: {
  53743. source: "./media/characters/sen-mink/front.svg",
  53744. extra: 1727/1675,
  53745. bottom: 35/1762
  53746. }
  53747. },
  53748. },
  53749. [
  53750. {
  53751. name: "Normal",
  53752. height: math.unit(5, "feet"),
  53753. default: true
  53754. },
  53755. ]
  53756. ))
  53757. characterMakers.push(() => makeCharacter(
  53758. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53759. {
  53760. front: {
  53761. height: math.unit(5.42999, "feet"),
  53762. weight: math.unit(100, "lb"),
  53763. name: "Front",
  53764. image: {
  53765. source: "./media/characters/ophois/front.svg",
  53766. extra: 1429/1286,
  53767. bottom: 60/1489
  53768. }
  53769. },
  53770. },
  53771. [
  53772. {
  53773. name: "Normal",
  53774. height: math.unit(5.42999, "feet"),
  53775. default: true
  53776. },
  53777. ]
  53778. ))
  53779. characterMakers.push(() => makeCharacter(
  53780. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53781. {
  53782. front: {
  53783. height: math.unit(2, "meters"),
  53784. name: "Front",
  53785. image: {
  53786. source: "./media/characters/riley/front.svg",
  53787. extra: 1779/1754,
  53788. bottom: 139/1918
  53789. }
  53790. },
  53791. },
  53792. [
  53793. {
  53794. name: "Normal",
  53795. height: math.unit(2, "meters"),
  53796. default: true
  53797. },
  53798. ]
  53799. ))
  53800. characterMakers.push(() => makeCharacter(
  53801. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53802. {
  53803. front: {
  53804. height: math.unit(6 + 2/12, "feet"),
  53805. weight: math.unit(195, "lb"),
  53806. preyCapacity: math.unit(6, "people"),
  53807. name: "Front",
  53808. image: {
  53809. source: "./media/characters/shuken-flash/front.svg",
  53810. extra: 1905/1739,
  53811. bottom: 65/1970
  53812. }
  53813. },
  53814. back: {
  53815. height: math.unit(6 + 2/12, "feet"),
  53816. weight: math.unit(195, "lb"),
  53817. preyCapacity: math.unit(6, "people"),
  53818. name: "Back",
  53819. image: {
  53820. source: "./media/characters/shuken-flash/back.svg",
  53821. extra: 1912/1751,
  53822. bottom: 13/1925
  53823. }
  53824. },
  53825. },
  53826. [
  53827. {
  53828. name: "Normal",
  53829. height: math.unit(6 + 2/12, "feet"),
  53830. default: true
  53831. },
  53832. ]
  53833. ))
  53834. characterMakers.push(() => makeCharacter(
  53835. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53836. {
  53837. front: {
  53838. height: math.unit(5 + 9/12, "feet"),
  53839. weight: math.unit(150, "lb"),
  53840. name: "Front",
  53841. image: {
  53842. source: "./media/characters/plat/front.svg",
  53843. extra: 1816/1703,
  53844. bottom: 43/1859
  53845. }
  53846. },
  53847. side: {
  53848. height: math.unit(5 + 9/12, "feet"),
  53849. weight: math.unit(300, "lb"),
  53850. name: "Side",
  53851. image: {
  53852. source: "./media/characters/plat/side.svg",
  53853. extra: 1824/1699,
  53854. bottom: 18/1842
  53855. }
  53856. },
  53857. },
  53858. [
  53859. {
  53860. name: "Normal",
  53861. height: math.unit(5 + 9/12, "feet"),
  53862. default: true
  53863. },
  53864. ]
  53865. ))
  53866. characterMakers.push(() => makeCharacter(
  53867. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53868. {
  53869. front: {
  53870. height: math.unit(9, "feet"),
  53871. weight: math.unit(1800, "lb"),
  53872. name: "Front",
  53873. image: {
  53874. source: "./media/characters/elaine/front.svg",
  53875. extra: 1833/1354,
  53876. bottom: 25/1858
  53877. }
  53878. },
  53879. back: {
  53880. height: math.unit(8.8, "feet"),
  53881. weight: math.unit(1800, "lb"),
  53882. name: "Back",
  53883. image: {
  53884. source: "./media/characters/elaine/back.svg",
  53885. extra: 1641/1233,
  53886. bottom: 53/1694
  53887. }
  53888. },
  53889. },
  53890. [
  53891. {
  53892. name: "Normal",
  53893. height: math.unit(9, "feet"),
  53894. default: true
  53895. },
  53896. ]
  53897. ))
  53898. characterMakers.push(() => makeCharacter(
  53899. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53900. {
  53901. front: {
  53902. height: math.unit(17 + 9/12, "feet"),
  53903. weight: math.unit(8000, "lb"),
  53904. name: "Front",
  53905. image: {
  53906. source: "./media/characters/vera-raven/front.svg",
  53907. extra: 1457/1412,
  53908. bottom: 121/1578
  53909. }
  53910. },
  53911. side: {
  53912. height: math.unit(17 + 9/12, "feet"),
  53913. weight: math.unit(8000, "lb"),
  53914. name: "Side",
  53915. image: {
  53916. source: "./media/characters/vera-raven/side.svg",
  53917. extra: 1510/1464,
  53918. bottom: 54/1564
  53919. }
  53920. },
  53921. },
  53922. [
  53923. {
  53924. name: "Normal",
  53925. height: math.unit(17 + 9/12, "feet"),
  53926. default: true
  53927. },
  53928. ]
  53929. ))
  53930. characterMakers.push(() => makeCharacter(
  53931. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53932. {
  53933. dressed: {
  53934. height: math.unit(6 + 9/12, "feet"),
  53935. name: "Dressed",
  53936. image: {
  53937. source: "./media/characters/nakisha/dressed.svg",
  53938. extra: 1909/1757,
  53939. bottom: 48/1957
  53940. }
  53941. },
  53942. nude: {
  53943. height: math.unit(6 + 9/12, "feet"),
  53944. name: "Nude",
  53945. image: {
  53946. source: "./media/characters/nakisha/nude.svg",
  53947. extra: 1917/1765,
  53948. bottom: 34/1951
  53949. }
  53950. },
  53951. },
  53952. [
  53953. {
  53954. name: "Normal",
  53955. height: math.unit(6 + 9/12, "feet"),
  53956. default: true
  53957. },
  53958. ]
  53959. ))
  53960. characterMakers.push(() => makeCharacter(
  53961. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53962. {
  53963. front: {
  53964. height: math.unit(87, "meters"),
  53965. name: "Front",
  53966. image: {
  53967. source: "./media/characters/serafin/front.svg",
  53968. extra: 1919/1776,
  53969. bottom: 65/1984
  53970. }
  53971. },
  53972. },
  53973. [
  53974. {
  53975. name: "Normal",
  53976. height: math.unit(87, "meters"),
  53977. default: true
  53978. },
  53979. ]
  53980. ))
  53981. characterMakers.push(() => makeCharacter(
  53982. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53983. {
  53984. front: {
  53985. height: math.unit(6, "feet"),
  53986. weight: math.unit(200, "lb"),
  53987. name: "Front",
  53988. image: {
  53989. source: "./media/characters/poptart/front.svg",
  53990. extra: 615/583,
  53991. bottom: 23/638
  53992. }
  53993. },
  53994. back: {
  53995. height: math.unit(6, "feet"),
  53996. weight: math.unit(200, "lb"),
  53997. name: "Back",
  53998. image: {
  53999. source: "./media/characters/poptart/back.svg",
  54000. extra: 617/584,
  54001. bottom: 22/639
  54002. }
  54003. },
  54004. frontNsfw: {
  54005. height: math.unit(6, "feet"),
  54006. weight: math.unit(200, "lb"),
  54007. name: "Front (NSFW)",
  54008. image: {
  54009. source: "./media/characters/poptart/front-nsfw.svg",
  54010. extra: 615/583,
  54011. bottom: 23/638
  54012. }
  54013. },
  54014. backNsfw: {
  54015. height: math.unit(6, "feet"),
  54016. weight: math.unit(200, "lb"),
  54017. name: "Back (NSFW)",
  54018. image: {
  54019. source: "./media/characters/poptart/back-nsfw.svg",
  54020. extra: 617/584,
  54021. bottom: 22/639
  54022. }
  54023. },
  54024. hand: {
  54025. height: math.unit(1.14, "feet"),
  54026. name: "Hand",
  54027. image: {
  54028. source: "./media/characters/poptart/hand.svg"
  54029. }
  54030. },
  54031. foot: {
  54032. height: math.unit(1.5, "feet"),
  54033. name: "Foot",
  54034. image: {
  54035. source: "./media/characters/poptart/foot.svg"
  54036. }
  54037. },
  54038. },
  54039. [
  54040. {
  54041. name: "Normal",
  54042. height: math.unit(6, "feet"),
  54043. default: true
  54044. },
  54045. {
  54046. name: "Grande",
  54047. height: math.unit(350, "feet")
  54048. },
  54049. {
  54050. name: "Massif",
  54051. height: math.unit(967, "feet")
  54052. },
  54053. ]
  54054. ))
  54055. characterMakers.push(() => makeCharacter(
  54056. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54057. {
  54058. hyenaSide: {
  54059. height: math.unit(120, "cm"),
  54060. weight: math.unit(120, "lb"),
  54061. name: "Side",
  54062. image: {
  54063. source: "./media/characters/trance/hyena-side.svg",
  54064. extra: 998/904,
  54065. bottom: 76/1074
  54066. }
  54067. },
  54068. },
  54069. [
  54070. {
  54071. name: "Normal",
  54072. height: math.unit(120, "cm"),
  54073. default: true
  54074. },
  54075. {
  54076. name: "Dire",
  54077. height: math.unit(230, "cm")
  54078. },
  54079. {
  54080. name: "Macro",
  54081. height: math.unit(37, "feet")
  54082. },
  54083. ]
  54084. ))
  54085. characterMakers.push(() => makeCharacter(
  54086. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54087. {
  54088. front: {
  54089. height: math.unit(6 + 3/12, "feet"),
  54090. name: "Front",
  54091. image: {
  54092. source: "./media/characters/michael-berretta/front.svg",
  54093. extra: 515/494,
  54094. bottom: 20/535
  54095. }
  54096. },
  54097. back: {
  54098. height: math.unit(6 + 3/12, "feet"),
  54099. name: "Back",
  54100. image: {
  54101. source: "./media/characters/michael-berretta/back.svg",
  54102. extra: 520/497,
  54103. bottom: 21/541
  54104. }
  54105. },
  54106. frontNsfw: {
  54107. height: math.unit(6 + 3/12, "feet"),
  54108. name: "Front (NSFW)",
  54109. image: {
  54110. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54111. extra: 515/494,
  54112. bottom: 20/535
  54113. }
  54114. },
  54115. dick: {
  54116. height: math.unit(1, "feet"),
  54117. name: "Dick",
  54118. image: {
  54119. source: "./media/characters/michael-berretta/dick.svg"
  54120. }
  54121. },
  54122. },
  54123. [
  54124. {
  54125. name: "Normal",
  54126. height: math.unit(6 + 3/12, "feet"),
  54127. default: true
  54128. },
  54129. {
  54130. name: "Big",
  54131. height: math.unit(12, "feet")
  54132. },
  54133. {
  54134. name: "Macro",
  54135. height: math.unit(187.5, "feet")
  54136. },
  54137. ]
  54138. ))
  54139. characterMakers.push(() => makeCharacter(
  54140. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54141. {
  54142. front: {
  54143. height: math.unit(9 + 9/12, "feet"),
  54144. weight: math.unit(1244, "lb"),
  54145. name: "Front",
  54146. image: {
  54147. source: "./media/characters/stella-edgecomb/front.svg",
  54148. extra: 1835/1706,
  54149. bottom: 49/1884
  54150. }
  54151. },
  54152. pen: {
  54153. height: math.unit(0.95, "feet"),
  54154. name: "Pen",
  54155. image: {
  54156. source: "./media/characters/stella-edgecomb/pen.svg"
  54157. }
  54158. },
  54159. },
  54160. [
  54161. {
  54162. name: "Cozy Bear",
  54163. height: math.unit(0.5, "inches")
  54164. },
  54165. {
  54166. name: "Normal",
  54167. height: math.unit(9 + 9/12, "feet"),
  54168. default: true
  54169. },
  54170. {
  54171. name: "Giga Bear",
  54172. height: math.unit(1, "mile")
  54173. },
  54174. {
  54175. name: "Great Bear",
  54176. height: math.unit(53, "miles")
  54177. },
  54178. {
  54179. name: "Goddess Bear",
  54180. height: math.unit(40000, "miles")
  54181. },
  54182. {
  54183. name: "Sun Bear",
  54184. height: math.unit(900000, "miles")
  54185. },
  54186. ]
  54187. ))
  54188. characterMakers.push(() => makeCharacter(
  54189. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54190. {
  54191. anthroFront: {
  54192. height: math.unit(556, "cm"),
  54193. weight: math.unit(2650, "kg"),
  54194. preyCapacity: math.unit(3, "people"),
  54195. name: "Front",
  54196. image: {
  54197. source: "./media/characters/ash´iika/front.svg",
  54198. extra: 710/673,
  54199. bottom: 15/725
  54200. },
  54201. form: "anthro",
  54202. default: true
  54203. },
  54204. anthroSide: {
  54205. height: math.unit(556, "cm"),
  54206. weight: math.unit(2650, "kg"),
  54207. preyCapacity: math.unit(3, "people"),
  54208. name: "Side",
  54209. image: {
  54210. source: "./media/characters/ash´iika/side.svg",
  54211. extra: 696/676,
  54212. bottom: 13/709
  54213. },
  54214. form: "anthro"
  54215. },
  54216. anthroDressed: {
  54217. height: math.unit(556, "cm"),
  54218. weight: math.unit(2650, "kg"),
  54219. preyCapacity: math.unit(3, "people"),
  54220. name: "Dressed",
  54221. image: {
  54222. source: "./media/characters/ash´iika/dressed.svg",
  54223. extra: 710/673,
  54224. bottom: 15/725
  54225. },
  54226. form: "anthro"
  54227. },
  54228. anthroHead: {
  54229. height: math.unit(3.5, "feet"),
  54230. name: "Head",
  54231. image: {
  54232. source: "./media/characters/ash´iika/head.svg",
  54233. extra: 348/291,
  54234. bottom: 45/393
  54235. },
  54236. form: "anthro"
  54237. },
  54238. feralSide: {
  54239. height: math.unit(870, "cm"),
  54240. weight: math.unit(17500, "kg"),
  54241. preyCapacity: math.unit(15, "people"),
  54242. name: "Side",
  54243. image: {
  54244. source: "./media/characters/ash´iika/feral.svg",
  54245. extra: 595/199,
  54246. bottom: 7/602
  54247. },
  54248. form: "feral",
  54249. default: true,
  54250. },
  54251. },
  54252. [
  54253. {
  54254. name: "Normal",
  54255. height: math.unit(556, "cm"),
  54256. default: true,
  54257. form: "anthro"
  54258. },
  54259. {
  54260. name: "Macro",
  54261. height: math.unit(88, "meters"),
  54262. form: "anthro"
  54263. },
  54264. {
  54265. name: "Normal",
  54266. height: math.unit(870, "cm"),
  54267. default: true,
  54268. form: "feral"
  54269. },
  54270. {
  54271. name: "Large",
  54272. height: math.unit(25, "meters"),
  54273. form: "feral"
  54274. },
  54275. ],
  54276. {
  54277. "anthro": {
  54278. name: "Anthro",
  54279. default: true
  54280. },
  54281. "feral": {
  54282. name: "Feral",
  54283. },
  54284. }
  54285. ))
  54286. characterMakers.push(() => makeCharacter(
  54287. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54288. {
  54289. front: {
  54290. height: math.unit(10, "feet"),
  54291. weight: math.unit(800, "lb"),
  54292. name: "Front",
  54293. image: {
  54294. source: "./media/characters/yen/front.svg",
  54295. extra: 443/411,
  54296. bottom: 6/449
  54297. }
  54298. },
  54299. sleeping: {
  54300. height: math.unit(10, "feet"),
  54301. weight: math.unit(800, "lb"),
  54302. name: "Sleeping",
  54303. image: {
  54304. source: "./media/characters/yen/sleeping.svg",
  54305. extra: 470/422,
  54306. bottom: 0/470
  54307. }
  54308. },
  54309. head: {
  54310. height: math.unit(2.2, "feet"),
  54311. name: "Head",
  54312. image: {
  54313. source: "./media/characters/yen/head.svg"
  54314. }
  54315. },
  54316. headAlt: {
  54317. height: math.unit(2.1, "feet"),
  54318. name: "Head (Alt)",
  54319. image: {
  54320. source: "./media/characters/yen/head-alt.svg"
  54321. }
  54322. },
  54323. },
  54324. [
  54325. {
  54326. name: "Normal",
  54327. height: math.unit(10, "feet"),
  54328. default: true
  54329. },
  54330. ]
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54334. {
  54335. front: {
  54336. height: math.unit(12, "feet"),
  54337. name: "Front",
  54338. image: {
  54339. source: "./media/characters/citra/front.svg",
  54340. extra: 1950/1710,
  54341. bottom: 47/1997
  54342. }
  54343. },
  54344. },
  54345. [
  54346. {
  54347. name: "Normal",
  54348. height: math.unit(12, "feet"),
  54349. default: true
  54350. },
  54351. ]
  54352. ))
  54353. characterMakers.push(() => makeCharacter(
  54354. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54355. {
  54356. side: {
  54357. height: math.unit(7 + 10/12, "feet"),
  54358. name: "Side",
  54359. image: {
  54360. source: "./media/characters/sholstim/side.svg",
  54361. extra: 786/682,
  54362. bottom: 40/826
  54363. }
  54364. },
  54365. },
  54366. [
  54367. {
  54368. name: "Normal",
  54369. height: math.unit(7 + 10/12, "feet"),
  54370. default: true
  54371. },
  54372. ]
  54373. ))
  54374. characterMakers.push(() => makeCharacter(
  54375. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54376. {
  54377. front: {
  54378. height: math.unit(3.10, "meters"),
  54379. name: "Front",
  54380. image: {
  54381. source: "./media/characters/aggyn/front.svg",
  54382. extra: 1188/963,
  54383. bottom: 24/1212
  54384. }
  54385. },
  54386. },
  54387. [
  54388. {
  54389. name: "Normal",
  54390. height: math.unit(3.10, "meters"),
  54391. default: true
  54392. },
  54393. ]
  54394. ))
  54395. characterMakers.push(() => makeCharacter(
  54396. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54397. {
  54398. front: {
  54399. height: math.unit(7 + 5/12, "feet"),
  54400. weight: math.unit(687, "lb"),
  54401. name: "Front",
  54402. image: {
  54403. source: "./media/characters/alsandair-hergenroether/front.svg",
  54404. extra: 1251/1186,
  54405. bottom: 75/1326
  54406. }
  54407. },
  54408. back: {
  54409. height: math.unit(7 + 5/12, "feet"),
  54410. weight: math.unit(687, "lb"),
  54411. name: "Back",
  54412. image: {
  54413. source: "./media/characters/alsandair-hergenroether/back.svg",
  54414. extra: 1290/1229,
  54415. bottom: 17/1307
  54416. }
  54417. },
  54418. },
  54419. [
  54420. {
  54421. name: "Max Compression",
  54422. height: math.unit(7 + 5/12, "feet"),
  54423. default: true
  54424. },
  54425. {
  54426. name: "\"Normal\"",
  54427. height: math.unit(2, "universes")
  54428. },
  54429. ]
  54430. ))
  54431. characterMakers.push(() => makeCharacter(
  54432. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54433. {
  54434. front: {
  54435. height: math.unit(4 + 1/12, "feet"),
  54436. weight: math.unit(92, "lb"),
  54437. name: "Front",
  54438. image: {
  54439. source: "./media/characters/ie/front.svg",
  54440. extra: 1585/1352,
  54441. bottom: 91/1676
  54442. }
  54443. },
  54444. },
  54445. [
  54446. {
  54447. name: "Normal",
  54448. height: math.unit(4 + 1/12, "feet"),
  54449. default: true
  54450. },
  54451. ]
  54452. ))
  54453. characterMakers.push(() => makeCharacter(
  54454. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54455. {
  54456. anthro: {
  54457. height: math.unit(6, "feet"),
  54458. weight: math.unit(150, "lb"),
  54459. name: "Front",
  54460. image: {
  54461. source: "./media/characters/willow/anthro.svg",
  54462. extra: 1073/986,
  54463. bottom: 34/1107
  54464. },
  54465. form: "anthro",
  54466. default: true
  54467. },
  54468. taur: {
  54469. height: math.unit(6, "feet"),
  54470. weight: math.unit(150, "lb"),
  54471. name: "Side",
  54472. image: {
  54473. source: "./media/characters/willow/taur.svg",
  54474. extra: 647/512,
  54475. bottom: 136/783
  54476. },
  54477. form: "taur",
  54478. default: true
  54479. },
  54480. },
  54481. [
  54482. {
  54483. name: "Humanoid",
  54484. height: math.unit(2.7, "meters"),
  54485. form: "anthro"
  54486. },
  54487. {
  54488. name: "Normal",
  54489. height: math.unit(9, "meters"),
  54490. form: "anthro",
  54491. default: true
  54492. },
  54493. {
  54494. name: "Humanoid",
  54495. height: math.unit(2.1, "meters"),
  54496. form: "taur"
  54497. },
  54498. {
  54499. name: "Normal",
  54500. height: math.unit(7, "meters"),
  54501. form: "taur",
  54502. default: true
  54503. },
  54504. ],
  54505. {
  54506. "anthro": {
  54507. name: "Anthro",
  54508. default: true
  54509. },
  54510. "taur": {
  54511. name: "Taur",
  54512. },
  54513. }
  54514. ))
  54515. characterMakers.push(() => makeCharacter(
  54516. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54517. {
  54518. front: {
  54519. height: math.unit(2 + 5/12, "feet"),
  54520. name: "Front",
  54521. image: {
  54522. source: "./media/characters/kyan/front.svg",
  54523. extra: 460/334,
  54524. bottom: 23/483
  54525. },
  54526. extraAttributes: {
  54527. "toeLength": {
  54528. name: "Toe Length",
  54529. power: 1,
  54530. type: "length",
  54531. base: math.unit(7, "cm")
  54532. },
  54533. "toeclawLength": {
  54534. name: "Toeclaw Length",
  54535. power: 1,
  54536. type: "length",
  54537. base: math.unit(4.7, "cm")
  54538. },
  54539. "earHeight": {
  54540. name: "Ear Height",
  54541. power: 1,
  54542. type: "length",
  54543. base: math.unit(14.1, "cm")
  54544. },
  54545. }
  54546. },
  54547. paws: {
  54548. height: math.unit(0.45, "feet"),
  54549. name: "Paws",
  54550. image: {
  54551. source: "./media/characters/kyan/paws.svg",
  54552. extra: 581/581,
  54553. bottom: 114/695
  54554. }
  54555. },
  54556. },
  54557. [
  54558. {
  54559. name: "Normal",
  54560. height: math.unit(2 + 5/12, "feet"),
  54561. default: true
  54562. },
  54563. ]
  54564. ))
  54565. characterMakers.push(() => makeCharacter(
  54566. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54567. {
  54568. front: {
  54569. height: math.unit(2 + 2/3, "feet"),
  54570. name: "Front",
  54571. image: {
  54572. source: "./media/characters/xazzon/front.svg",
  54573. extra: 1109/984,
  54574. bottom: 42/1151
  54575. }
  54576. },
  54577. back: {
  54578. height: math.unit(2 + 2/3, "feet"),
  54579. name: "Back",
  54580. image: {
  54581. source: "./media/characters/xazzon/back.svg",
  54582. extra: 1095/971,
  54583. bottom: 23/1118
  54584. }
  54585. },
  54586. },
  54587. [
  54588. {
  54589. name: "Normal",
  54590. height: math.unit(2 + 2/3, "feet"),
  54591. default: true
  54592. },
  54593. ]
  54594. ))
  54595. characterMakers.push(() => makeCharacter(
  54596. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54597. {
  54598. dressed: {
  54599. height: math.unit(5 + 7/12, "feet"),
  54600. weight: math.unit(173, "lb"),
  54601. name: "Dressed",
  54602. image: {
  54603. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54604. extra: 3262/2862,
  54605. bottom: 188/3450
  54606. }
  54607. },
  54608. undressed: {
  54609. height: math.unit(5 + 7/12, "feet"),
  54610. weight: math.unit(173, "lb"),
  54611. name: "Undressed",
  54612. image: {
  54613. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54614. extra: 3262/2862,
  54615. bottom: 188/3450
  54616. }
  54617. },
  54618. },
  54619. [
  54620. {
  54621. name: "The void",
  54622. height: math.unit(7.29193e-34, "angstroms")
  54623. },
  54624. {
  54625. name: "Uh-Oh.",
  54626. height: math.unit(5.734e-7, "angstroms")
  54627. },
  54628. {
  54629. name: "Pico",
  54630. height: math.unit(0.876, "angstroms")
  54631. },
  54632. {
  54633. name: "Nano",
  54634. height: math.unit(0.000134200, "mm")
  54635. },
  54636. {
  54637. name: "Micro",
  54638. height: math.unit(0.0673020, "mm")
  54639. },
  54640. {
  54641. name: "Tiny",
  54642. height: math.unit(2.4, "mm")
  54643. },
  54644. {
  54645. name: "Actual Normal",
  54646. height: math.unit(3, "inches"),
  54647. default: true
  54648. },
  54649. {
  54650. name: "Normal",
  54651. height: math.unit(5 + 8/12, "feet")
  54652. },
  54653. {
  54654. name: "Giant",
  54655. height: math.unit(12, "feet")
  54656. },
  54657. {
  54658. name: "City Ruler",
  54659. height: math.unit(270, "meters")
  54660. },
  54661. {
  54662. name: "Giga",
  54663. height: math.unit(1117.6, "km")
  54664. },
  54665. {
  54666. name: "All-Powerful Queen",
  54667. height: math.unit(70.8, "gigameters")
  54668. },
  54669. {
  54670. name: "'Goddess'",
  54671. height: math.unit(600, "yottameters")
  54672. },
  54673. {
  54674. name: "Biggest!",
  54675. height: math.unit(4.23e5, "yottameters")
  54676. },
  54677. ]
  54678. ))
  54679. characterMakers.push(() => makeCharacter(
  54680. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54681. {
  54682. front: {
  54683. height: math.unit(8, "feet"),
  54684. weight: math.unit(300, "lb"),
  54685. name: "Front",
  54686. image: {
  54687. source: "./media/characters/khyla-shadowsong/front.svg",
  54688. extra: 861/798,
  54689. bottom: 32/893
  54690. }
  54691. },
  54692. side: {
  54693. height: math.unit(8, "feet"),
  54694. weight: math.unit(300, "lb"),
  54695. name: "Side",
  54696. image: {
  54697. source: "./media/characters/khyla-shadowsong/side.svg",
  54698. extra: 790/750,
  54699. bottom: 87/877
  54700. }
  54701. },
  54702. back: {
  54703. height: math.unit(8, "feet"),
  54704. weight: math.unit(300, "lb"),
  54705. name: "Back",
  54706. image: {
  54707. source: "./media/characters/khyla-shadowsong/back.svg",
  54708. extra: 855/808,
  54709. bottom: 14/869
  54710. }
  54711. },
  54712. head: {
  54713. height: math.unit(2.7, "feet"),
  54714. name: "Head",
  54715. image: {
  54716. source: "./media/characters/khyla-shadowsong/head.svg"
  54717. }
  54718. },
  54719. },
  54720. [
  54721. {
  54722. name: "Micro",
  54723. height: math.unit(6, "inches")
  54724. },
  54725. {
  54726. name: "Normal",
  54727. height: math.unit(8, "feet"),
  54728. default: true
  54729. },
  54730. ]
  54731. ))
  54732. characterMakers.push(() => makeCharacter(
  54733. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54734. {
  54735. hyperFront: {
  54736. height: math.unit(9 + 4/12, "feet"),
  54737. weight: math.unit(2000, "lb"),
  54738. name: "Front",
  54739. image: {
  54740. source: "./media/characters/tiden/hyper-front.svg",
  54741. extra: 400/382,
  54742. bottom: 6/406
  54743. },
  54744. form: "hyper",
  54745. },
  54746. regularFront: {
  54747. height: math.unit(7 + 10/12, "feet"),
  54748. weight: math.unit(470, "lb"),
  54749. name: "Front",
  54750. image: {
  54751. source: "./media/characters/tiden/regular-front.svg",
  54752. extra: 468/442,
  54753. bottom: 6/474
  54754. },
  54755. form: "regular",
  54756. },
  54757. },
  54758. [
  54759. {
  54760. name: "Normal",
  54761. height: math.unit(9 + 4/12, "feet"),
  54762. default: true,
  54763. form: "hyper"
  54764. },
  54765. {
  54766. name: "Normal",
  54767. height: math.unit(7 + 10/12, "feet"),
  54768. default: true,
  54769. form: "regular"
  54770. },
  54771. ],
  54772. {
  54773. "hyper": {
  54774. name: "Hyper",
  54775. default: true
  54776. },
  54777. "regular": {
  54778. name: "Regular",
  54779. },
  54780. }
  54781. ))
  54782. characterMakers.push(() => makeCharacter(
  54783. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54784. {
  54785. side: {
  54786. height: math.unit(6, "feet"),
  54787. weight: math.unit(150, "lb"),
  54788. name: "Side",
  54789. image: {
  54790. source: "./media/characters/jason-crowe/side.svg",
  54791. extra: 1771/766,
  54792. bottom: 219/1990
  54793. }
  54794. },
  54795. },
  54796. [
  54797. {
  54798. name: "Pocket Gryphon",
  54799. height: math.unit(6, "cm")
  54800. },
  54801. {
  54802. name: "Raven",
  54803. height: math.unit(60, "cm")
  54804. },
  54805. {
  54806. name: "Normal",
  54807. height: math.unit(1, "meter"),
  54808. default: true
  54809. },
  54810. ]
  54811. ))
  54812. characterMakers.push(() => makeCharacter(
  54813. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54814. {
  54815. front: {
  54816. height: math.unit(9 + 6/12, "feet"),
  54817. weight: math.unit(1100, "lb"),
  54818. name: "Front",
  54819. image: {
  54820. source: "./media/characters/django/front.svg",
  54821. extra: 1231/1136,
  54822. bottom: 34/1265
  54823. }
  54824. },
  54825. side: {
  54826. height: math.unit(9 + 6/12, "feet"),
  54827. weight: math.unit(1100, "lb"),
  54828. name: "Side",
  54829. image: {
  54830. source: "./media/characters/django/side.svg",
  54831. extra: 1267/1174,
  54832. bottom: 9/1276
  54833. }
  54834. },
  54835. },
  54836. [
  54837. {
  54838. name: "Normal",
  54839. height: math.unit(9 + 6/12, "feet"),
  54840. default: true
  54841. },
  54842. {
  54843. name: "Macro 1",
  54844. height: math.unit(50, "feet")
  54845. },
  54846. {
  54847. name: "Macro 2",
  54848. height: math.unit(500, "feet")
  54849. },
  54850. {
  54851. name: "Mega Macro",
  54852. height: math.unit(5300, "feet")
  54853. },
  54854. ]
  54855. ))
  54856. characterMakers.push(() => makeCharacter(
  54857. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54858. {
  54859. frontSfw: {
  54860. height: math.unit(120, "cm"),
  54861. weight: math.unit(15, "kg"),
  54862. name: "Front (SFW)",
  54863. image: {
  54864. source: "./media/characters/eri/front-sfw.svg",
  54865. extra: 1014/939,
  54866. bottom: 37/1051
  54867. },
  54868. form: "moth",
  54869. },
  54870. frontNsfw: {
  54871. height: math.unit(120, "cm"),
  54872. weight: math.unit(15, "kg"),
  54873. name: "Front (NSFW)",
  54874. image: {
  54875. source: "./media/characters/eri/front-nsfw.svg",
  54876. extra: 1014/939,
  54877. bottom: 37/1051
  54878. },
  54879. form: "moth",
  54880. default: true
  54881. },
  54882. egg: {
  54883. height: math.unit(10, "cm"),
  54884. name: "Egg",
  54885. image: {
  54886. source: "./media/characters/eri/egg.svg"
  54887. },
  54888. form: "egg",
  54889. default: true
  54890. },
  54891. },
  54892. [
  54893. {
  54894. name: "Normal",
  54895. height: math.unit(120, "cm"),
  54896. default: true,
  54897. form: "moth"
  54898. },
  54899. {
  54900. name: "Normal",
  54901. height: math.unit(10, "cm"),
  54902. default: true,
  54903. form: "egg"
  54904. },
  54905. ],
  54906. {
  54907. "moth": {
  54908. name: "Moth",
  54909. default: true
  54910. },
  54911. "egg": {
  54912. name: "Egg",
  54913. },
  54914. }
  54915. ))
  54916. characterMakers.push(() => makeCharacter(
  54917. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54918. {
  54919. front: {
  54920. height: math.unit(200, "feet"),
  54921. name: "Front",
  54922. image: {
  54923. source: "./media/characters/bishop-dowser/front.svg",
  54924. extra: 933/868,
  54925. bottom: 106/1039
  54926. }
  54927. },
  54928. },
  54929. [
  54930. {
  54931. name: "Giant",
  54932. height: math.unit(200, "feet"),
  54933. default: true
  54934. },
  54935. ]
  54936. ))
  54937. characterMakers.push(() => makeCharacter(
  54938. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54939. {
  54940. front: {
  54941. height: math.unit(2, "meters"),
  54942. preyCapacity: math.unit(3, "people"),
  54943. name: "Front",
  54944. image: {
  54945. source: "./media/characters/fryra/front.svg",
  54946. extra: 1025/948,
  54947. bottom: 30/1055
  54948. },
  54949. extraAttributes: {
  54950. "breastVolume": {
  54951. name: "Breast Volume",
  54952. power: 3,
  54953. type: "volume",
  54954. base: math.unit(8, "liters")
  54955. },
  54956. }
  54957. },
  54958. back: {
  54959. height: math.unit(2, "meters"),
  54960. preyCapacity: math.unit(3, "people"),
  54961. name: "Back",
  54962. image: {
  54963. source: "./media/characters/fryra/back.svg",
  54964. extra: 993/938,
  54965. bottom: 38/1031
  54966. },
  54967. extraAttributes: {
  54968. "breastVolume": {
  54969. name: "Breast Volume",
  54970. power: 3,
  54971. type: "volume",
  54972. base: math.unit(8, "liters")
  54973. },
  54974. }
  54975. },
  54976. head: {
  54977. height: math.unit(1.33, "feet"),
  54978. name: "Head",
  54979. image: {
  54980. source: "./media/characters/fryra/head.svg"
  54981. }
  54982. },
  54983. maw: {
  54984. height: math.unit(0.56, "feet"),
  54985. name: "Maw",
  54986. image: {
  54987. source: "./media/characters/fryra/maw.svg"
  54988. }
  54989. },
  54990. },
  54991. [
  54992. {
  54993. name: "Micro",
  54994. height: math.unit(5, "cm")
  54995. },
  54996. {
  54997. name: "Normal",
  54998. height: math.unit(2, "meters"),
  54999. default: true
  55000. },
  55001. {
  55002. name: "Small Macro",
  55003. height: math.unit(8, "meters")
  55004. },
  55005. {
  55006. name: "Macro",
  55007. height: math.unit(50, "meters")
  55008. },
  55009. {
  55010. name: "Megamacro",
  55011. height: math.unit(1, "km")
  55012. },
  55013. {
  55014. name: "Planetary",
  55015. height: math.unit(300000, "km")
  55016. },
  55017. {
  55018. name: "Universal",
  55019. height: math.unit(250, "lightyears")
  55020. },
  55021. {
  55022. name: "Fabric of Reality",
  55023. height: math.unit(1000, "multiverses")
  55024. },
  55025. ]
  55026. ))
  55027. characterMakers.push(() => makeCharacter(
  55028. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55029. {
  55030. frontDressed: {
  55031. height: math.unit(6 + 2/12, "feet"),
  55032. name: "Front (Dressed)",
  55033. image: {
  55034. source: "./media/characters/fiera/front-dressed.svg",
  55035. extra: 1883/1793,
  55036. bottom: 70/1953
  55037. }
  55038. },
  55039. backDressed: {
  55040. height: math.unit(6 + 2/12, "feet"),
  55041. name: "Back (Dressed)",
  55042. image: {
  55043. source: "./media/characters/fiera/back-dressed.svg",
  55044. extra: 1847/1780,
  55045. bottom: 70/1917
  55046. }
  55047. },
  55048. frontNude: {
  55049. height: math.unit(6 + 2/12, "feet"),
  55050. name: "Front (Nude)",
  55051. image: {
  55052. source: "./media/characters/fiera/front-nude.svg",
  55053. extra: 1875/1785,
  55054. bottom: 66/1941
  55055. }
  55056. },
  55057. backNude: {
  55058. height: math.unit(6 + 2/12, "feet"),
  55059. name: "Back (Nude)",
  55060. image: {
  55061. source: "./media/characters/fiera/back-nude.svg",
  55062. extra: 1855/1788,
  55063. bottom: 44/1899
  55064. }
  55065. },
  55066. maw: {
  55067. height: math.unit(1.3, "feet"),
  55068. name: "Maw",
  55069. image: {
  55070. source: "./media/characters/fiera/maw.svg"
  55071. }
  55072. },
  55073. paw: {
  55074. height: math.unit(1, "feet"),
  55075. name: "Paw",
  55076. image: {
  55077. source: "./media/characters/fiera/paw.svg"
  55078. }
  55079. },
  55080. shoe: {
  55081. height: math.unit(1.05, "feet"),
  55082. name: "Shoe",
  55083. image: {
  55084. source: "./media/characters/fiera/shoe.svg"
  55085. }
  55086. },
  55087. },
  55088. [
  55089. {
  55090. name: "Normal",
  55091. height: math.unit(6 + 2/12, "feet"),
  55092. default: true
  55093. },
  55094. {
  55095. name: "Size Difference",
  55096. height: math.unit(13, "feet")
  55097. },
  55098. {
  55099. name: "Macro",
  55100. height: math.unit(60, "feet")
  55101. },
  55102. {
  55103. name: "Mega Macro",
  55104. height: math.unit(200, "feet")
  55105. },
  55106. ]
  55107. ))
  55108. characterMakers.push(() => makeCharacter(
  55109. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55110. {
  55111. back: {
  55112. height: math.unit(6, "feet"),
  55113. name: "Back",
  55114. image: {
  55115. source: "./media/characters/flare/back.svg",
  55116. extra: 1883/1765,
  55117. bottom: 32/1915
  55118. }
  55119. },
  55120. },
  55121. [
  55122. {
  55123. name: "Normal",
  55124. height: math.unit(6 + 2/12, "feet"),
  55125. default: true
  55126. },
  55127. {
  55128. name: "Size Difference",
  55129. height: math.unit(13, "feet")
  55130. },
  55131. {
  55132. name: "Macro",
  55133. height: math.unit(60, "feet")
  55134. },
  55135. {
  55136. name: "Macro 2",
  55137. height: math.unit(100, "feet")
  55138. },
  55139. {
  55140. name: "Mega Macro",
  55141. height: math.unit(200, "feet")
  55142. },
  55143. ]
  55144. ))
  55145. characterMakers.push(() => makeCharacter(
  55146. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55147. {
  55148. front: {
  55149. height: math.unit(2.2, "m"),
  55150. weight: math.unit(300, "kg"),
  55151. name: "Front",
  55152. image: {
  55153. source: "./media/characters/hanna/front.svg",
  55154. extra: 1696/1502,
  55155. bottom: 206/1902
  55156. }
  55157. },
  55158. },
  55159. [
  55160. {
  55161. name: "Humanoid",
  55162. height: math.unit(2.2, "meters")
  55163. },
  55164. {
  55165. name: "Normal",
  55166. height: math.unit(4.8, "meters"),
  55167. default: true
  55168. },
  55169. ]
  55170. ))
  55171. characterMakers.push(() => makeCharacter(
  55172. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55173. {
  55174. front: {
  55175. height: math.unit(2.8, "meters"),
  55176. name: "Front",
  55177. image: {
  55178. source: "./media/characters/argo/front.svg",
  55179. extra: 731/518,
  55180. bottom: 84/815
  55181. }
  55182. },
  55183. },
  55184. [
  55185. {
  55186. name: "Normal",
  55187. height: math.unit(3, "meters"),
  55188. default: true
  55189. },
  55190. ]
  55191. ))
  55192. characterMakers.push(() => makeCharacter(
  55193. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55194. {
  55195. side: {
  55196. height: math.unit(3.8, "meters"),
  55197. name: "Side",
  55198. image: {
  55199. source: "./media/characters/sybil/side.svg",
  55200. extra: 382/361,
  55201. bottom: 25/407
  55202. }
  55203. },
  55204. },
  55205. [
  55206. {
  55207. name: "Normal",
  55208. height: math.unit(3.8, "meters"),
  55209. default: true
  55210. },
  55211. ]
  55212. ))
  55213. characterMakers.push(() => makeCharacter(
  55214. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55215. {
  55216. side: {
  55217. height: math.unit(6, "meters"),
  55218. name: "Side",
  55219. image: {
  55220. source: "./media/characters/plum/side.svg",
  55221. extra: 858/755,
  55222. bottom: 45/903
  55223. },
  55224. form: "taur",
  55225. default: true
  55226. },
  55227. back: {
  55228. height: math.unit(6.3, "meters"),
  55229. name: "Back",
  55230. image: {
  55231. source: "./media/characters/plum/back.svg",
  55232. extra: 887/813,
  55233. bottom: 32/919
  55234. },
  55235. form: "taur",
  55236. },
  55237. feral: {
  55238. height: math.unit(5.5, "meter"),
  55239. name: "Front",
  55240. image: {
  55241. source: "./media/characters/plum/feral.svg",
  55242. extra: 568/403,
  55243. bottom: 51/619
  55244. },
  55245. form: "feral",
  55246. default: true
  55247. },
  55248. head: {
  55249. height: math.unit(1.46, "meter"),
  55250. name: "Head",
  55251. image: {
  55252. source: "./media/characters/plum/head.svg"
  55253. },
  55254. form: "taur"
  55255. },
  55256. tailTop: {
  55257. height: math.unit(5.6, "meter"),
  55258. name: "Tail (Top)",
  55259. image: {
  55260. source: "./media/characters/plum/tail-top.svg"
  55261. },
  55262. form: "taur",
  55263. },
  55264. tailBottom: {
  55265. height: math.unit(5.6, "meter"),
  55266. name: "Tail (Bottom)",
  55267. image: {
  55268. source: "./media/characters/plum/tail-bottom.svg"
  55269. },
  55270. form: "taur",
  55271. },
  55272. feralHead: {
  55273. height: math.unit(2.56549521, "meter"),
  55274. name: "Head",
  55275. image: {
  55276. source: "./media/characters/plum/head.svg"
  55277. },
  55278. form: "feral"
  55279. },
  55280. feralTailTop: {
  55281. height: math.unit(5.44728435, "meter"),
  55282. name: "Tail (Top)",
  55283. image: {
  55284. source: "./media/characters/plum/tail-top.svg"
  55285. },
  55286. form: "feral",
  55287. },
  55288. feralTailBottom: {
  55289. height: math.unit(5.44728435, "meter"),
  55290. name: "Tail (Bottom)",
  55291. image: {
  55292. source: "./media/characters/plum/tail-bottom.svg"
  55293. },
  55294. form: "feral",
  55295. },
  55296. },
  55297. [
  55298. {
  55299. name: "Normal",
  55300. height: math.unit(6, "meters"),
  55301. default: true,
  55302. form: "taur"
  55303. },
  55304. {
  55305. name: "Normal",
  55306. height: math.unit(5.5, "meters"),
  55307. default: true,
  55308. form: "feral"
  55309. },
  55310. ],
  55311. {
  55312. "taur": {
  55313. name: "Taur",
  55314. default: true
  55315. },
  55316. "feral": {
  55317. name: "Feral",
  55318. },
  55319. }
  55320. ))
  55321. characterMakers.push(() => makeCharacter(
  55322. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55323. {
  55324. front: {
  55325. height: math.unit(6, "feet"),
  55326. weight: math.unit(115, "lb"),
  55327. name: "Front",
  55328. image: {
  55329. source: "./media/characters/celeste-kitsune/front.svg",
  55330. extra: 393/366,
  55331. bottom: 7/400
  55332. }
  55333. },
  55334. side: {
  55335. height: math.unit(6, "feet"),
  55336. weight: math.unit(115, "lb"),
  55337. name: "Side",
  55338. image: {
  55339. source: "./media/characters/celeste-kitsune/side.svg",
  55340. extra: 818/765,
  55341. bottom: 40/858
  55342. }
  55343. },
  55344. },
  55345. [
  55346. {
  55347. name: "Megamacro",
  55348. height: math.unit(1500, "miles"),
  55349. default: true
  55350. },
  55351. ]
  55352. ))
  55353. characterMakers.push(() => makeCharacter(
  55354. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55355. {
  55356. front: {
  55357. height: math.unit(8, "meters"),
  55358. name: "Front",
  55359. image: {
  55360. source: "./media/characters/io/front.svg",
  55361. extra: 865/722,
  55362. bottom: 58/923
  55363. }
  55364. },
  55365. back: {
  55366. height: math.unit(8, "meters"),
  55367. name: "Back",
  55368. image: {
  55369. source: "./media/characters/io/back.svg",
  55370. extra: 920/776,
  55371. bottom: 42/962
  55372. }
  55373. },
  55374. head: {
  55375. height: math.unit(5.09, "meters"),
  55376. name: "Head",
  55377. image: {
  55378. source: "./media/characters/io/head.svg"
  55379. }
  55380. },
  55381. hand: {
  55382. height: math.unit(1.6, "meters"),
  55383. name: "Hand",
  55384. image: {
  55385. source: "./media/characters/io/hand.svg"
  55386. }
  55387. },
  55388. foot: {
  55389. height: math.unit(2.4, "meters"),
  55390. name: "Foot",
  55391. image: {
  55392. source: "./media/characters/io/foot.svg"
  55393. }
  55394. },
  55395. },
  55396. [
  55397. {
  55398. name: "Normal",
  55399. height: math.unit(8, "meters"),
  55400. default: true
  55401. },
  55402. ]
  55403. ))
  55404. characterMakers.push(() => makeCharacter(
  55405. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55406. {
  55407. side: {
  55408. height: math.unit(6 + 3/12, "feet"),
  55409. weight: math.unit(225, "lb"),
  55410. name: "Side",
  55411. image: {
  55412. source: "./media/characters/silas/side.svg",
  55413. extra: 703/653,
  55414. bottom: 23/726
  55415. },
  55416. extraAttributes: {
  55417. "pawLength": {
  55418. name: "Paw Length",
  55419. power: 1,
  55420. type: "length",
  55421. base: math.unit(12, "inches")
  55422. },
  55423. "pawWidth": {
  55424. name: "Paw Width",
  55425. power: 1,
  55426. type: "length",
  55427. base: math.unit(4.5, "inches")
  55428. },
  55429. "pawArea": {
  55430. name: "Paw Area",
  55431. power: 2,
  55432. type: "area",
  55433. base: math.unit(12 * 4.5, "inches^2")
  55434. },
  55435. }
  55436. },
  55437. },
  55438. [
  55439. {
  55440. name: "Normal",
  55441. height: math.unit(6 + 3/12, "feet"),
  55442. default: true
  55443. },
  55444. ]
  55445. ))
  55446. characterMakers.push(() => makeCharacter(
  55447. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55448. {
  55449. back: {
  55450. height: math.unit(1.6, "meters"),
  55451. weight: math.unit(150, "lb"),
  55452. name: "Back",
  55453. image: {
  55454. source: "./media/characters/zari/back.svg",
  55455. extra: 424/411,
  55456. bottom: 32/456
  55457. },
  55458. extraAttributes: {
  55459. "bladderCapacity": {
  55460. name: "Bladder Size",
  55461. power: 3,
  55462. type: "volume",
  55463. base: math.unit(500, "mL")
  55464. },
  55465. "bladderFlow": {
  55466. name: "Flow Rate",
  55467. power: 3,
  55468. type: "volume",
  55469. base: math.unit(25, "mL")
  55470. },
  55471. }
  55472. },
  55473. },
  55474. [
  55475. {
  55476. name: "Normal",
  55477. height: math.unit(1.6, "meters"),
  55478. default: true
  55479. },
  55480. ]
  55481. ))
  55482. characterMakers.push(() => makeCharacter(
  55483. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55484. {
  55485. front: {
  55486. height: math.unit(25, "feet"),
  55487. weight: math.unit(5, "tons"),
  55488. name: "Front",
  55489. image: {
  55490. source: "./media/characters/charlie-human/front.svg",
  55491. extra: 1870/1740,
  55492. bottom: 102/1972
  55493. },
  55494. extraAttributes: {
  55495. "dickLength": {
  55496. name: "Dick Length",
  55497. power: 1,
  55498. type: "length",
  55499. base: math.unit(9, "feet")
  55500. },
  55501. }
  55502. },
  55503. back: {
  55504. height: math.unit(25, "feet"),
  55505. weight: math.unit(5, "tons"),
  55506. name: "Back",
  55507. image: {
  55508. source: "./media/characters/charlie-human/back.svg",
  55509. extra: 1858/1733,
  55510. bottom: 105/1963
  55511. },
  55512. extraAttributes: {
  55513. "dickLength": {
  55514. name: "Dick Length",
  55515. power: 1,
  55516. type: "length",
  55517. base: math.unit(9, "feet")
  55518. },
  55519. }
  55520. },
  55521. },
  55522. [
  55523. {
  55524. name: "\"Normal\"",
  55525. height: math.unit(6 + 4/12, "feet")
  55526. },
  55527. {
  55528. name: "Big",
  55529. height: math.unit(25, "feet"),
  55530. default: true
  55531. },
  55532. ]
  55533. ))
  55534. characterMakers.push(() => makeCharacter(
  55535. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55536. {
  55537. front: {
  55538. height: math.unit(6 + 4/12, "feet"),
  55539. weight: math.unit(320, "lb"),
  55540. name: "Front",
  55541. image: {
  55542. source: "./media/characters/ookitsu/front.svg",
  55543. extra: 1160/976,
  55544. bottom: 38/1198
  55545. }
  55546. },
  55547. frontNsfw: {
  55548. height: math.unit(6 + 4/12, "feet"),
  55549. weight: math.unit(320, "lb"),
  55550. name: "Front (NSFW)",
  55551. image: {
  55552. source: "./media/characters/ookitsu/front-nsfw.svg",
  55553. extra: 1160/976,
  55554. bottom: 38/1198
  55555. }
  55556. },
  55557. back: {
  55558. height: math.unit(6 + 4/12, "feet"),
  55559. weight: math.unit(320, "lb"),
  55560. name: "Back",
  55561. image: {
  55562. source: "./media/characters/ookitsu/back.svg",
  55563. extra: 1030/975,
  55564. bottom: 70/1100
  55565. }
  55566. },
  55567. head: {
  55568. height: math.unit(1.79, "feet"),
  55569. name: "Head",
  55570. image: {
  55571. source: "./media/characters/ookitsu/head.svg"
  55572. }
  55573. },
  55574. hand: {
  55575. height: math.unit(0.92, "feet"),
  55576. name: "Hand",
  55577. image: {
  55578. source: "./media/characters/ookitsu/hand.svg"
  55579. }
  55580. },
  55581. tails: {
  55582. height: math.unit(3.3, "feet"),
  55583. name: "Tails",
  55584. image: {
  55585. source: "./media/characters/ookitsu/tails.svg"
  55586. }
  55587. },
  55588. dick: {
  55589. height: math.unit(1.10833, "feet"),
  55590. name: "Dick",
  55591. image: {
  55592. source: "./media/characters/ookitsu/dick.svg"
  55593. }
  55594. },
  55595. },
  55596. [
  55597. {
  55598. name: "Normal",
  55599. height: math.unit(6 + 4/12, "feet"),
  55600. default: true
  55601. },
  55602. {
  55603. name: "Macro",
  55604. height: math.unit(30, "feet")
  55605. },
  55606. ]
  55607. ))
  55608. characterMakers.push(() => makeCharacter(
  55609. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55610. {
  55611. anthroFront: {
  55612. height: math.unit(6, "feet"),
  55613. weight: math.unit(250, "lb"),
  55614. name: "Front",
  55615. image: {
  55616. source: "./media/characters/jhusky/anthro-front.svg",
  55617. extra: 474/439,
  55618. bottom: 7/481
  55619. },
  55620. form: "anthro",
  55621. default: true
  55622. },
  55623. taurSideSfw: {
  55624. height: math.unit(6 + 4/12, "feet"),
  55625. weight: math.unit(500, "lb"),
  55626. name: "Side (SFW)",
  55627. image: {
  55628. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55629. extra: 1741/1629,
  55630. bottom: 196/1937
  55631. },
  55632. form: "taur",
  55633. default: true
  55634. },
  55635. taurSideNsfw: {
  55636. height: math.unit(6 + 4/12, "feet"),
  55637. weight: math.unit(500, "lb"),
  55638. name: "Taur (NSFW)",
  55639. image: {
  55640. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55641. extra: 1741/1629,
  55642. bottom: 196/1937
  55643. },
  55644. form: "taur",
  55645. },
  55646. },
  55647. [
  55648. {
  55649. name: "Huge",
  55650. height: math.unit(500, "feet"),
  55651. form: "anthro"
  55652. },
  55653. {
  55654. name: "Macro",
  55655. height: math.unit(1000, "feet"),
  55656. default: true,
  55657. form: "anthro"
  55658. },
  55659. {
  55660. name: "Megamacro",
  55661. height: math.unit(10000, "feet"),
  55662. form: "anthro"
  55663. },
  55664. {
  55665. name: "Huge",
  55666. height: math.unit(528, "feet"),
  55667. form: "taur"
  55668. },
  55669. {
  55670. name: "Macro",
  55671. height: math.unit(1056, "feet"),
  55672. default: true,
  55673. form: "taur"
  55674. },
  55675. {
  55676. name: "Megamacro",
  55677. height: math.unit(10556, "feet"),
  55678. form: "taur"
  55679. },
  55680. ],
  55681. {
  55682. "anthro": {
  55683. name: "Anthro",
  55684. default: true
  55685. },
  55686. "taur": {
  55687. name: "Taur",
  55688. },
  55689. }
  55690. ))
  55691. characterMakers.push(() => makeCharacter(
  55692. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55693. {
  55694. front: {
  55695. height: math.unit(8, "feet"),
  55696. weight: math.unit(500, "lb"),
  55697. name: "Front",
  55698. image: {
  55699. source: "./media/characters/armail/front.svg",
  55700. extra: 1753/1669,
  55701. bottom: 155/1908
  55702. }
  55703. },
  55704. back: {
  55705. height: math.unit(8, "feet"),
  55706. weight: math.unit(500, "lb"),
  55707. name: "Back",
  55708. image: {
  55709. source: "./media/characters/armail/back.svg",
  55710. extra: 1872/1803,
  55711. bottom: 63/1935
  55712. }
  55713. },
  55714. },
  55715. [
  55716. {
  55717. name: "Micro",
  55718. height: math.unit(0.25, "feet")
  55719. },
  55720. {
  55721. name: "Normal",
  55722. height: math.unit(8, "feet"),
  55723. default: true
  55724. },
  55725. {
  55726. name: "Mini-macro",
  55727. height: math.unit(30, "feet")
  55728. },
  55729. {
  55730. name: "Macro",
  55731. height: math.unit(400, "feet")
  55732. },
  55733. {
  55734. name: "Mega-macro",
  55735. height: math.unit(6000, "feet")
  55736. },
  55737. ]
  55738. ))
  55739. characterMakers.push(() => makeCharacter(
  55740. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55741. {
  55742. front: {
  55743. height: math.unit(6 + 7/12, "feet"),
  55744. weight: math.unit(210, "lb"),
  55745. name: "Front",
  55746. image: {
  55747. source: "./media/characters/wilfred-t-buxton/front.svg",
  55748. extra: 1068/882,
  55749. bottom: 28/1096
  55750. }
  55751. },
  55752. },
  55753. [
  55754. {
  55755. name: "Normal",
  55756. height: math.unit(6 + 7/12, "feet"),
  55757. default: true
  55758. },
  55759. ]
  55760. ))
  55761. characterMakers.push(() => makeCharacter(
  55762. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55763. {
  55764. front: {
  55765. height: math.unit(5 + 2/12, "feet"),
  55766. weight: math.unit(120, "lb"),
  55767. name: "Front",
  55768. image: {
  55769. source: "./media/characters/leighton-marrow/front.svg",
  55770. extra: 441/409,
  55771. bottom: 37/478
  55772. }
  55773. },
  55774. },
  55775. [
  55776. {
  55777. name: "Normal",
  55778. height: math.unit(5 + 2/12, "feet"),
  55779. default: true
  55780. },
  55781. ]
  55782. ))
  55783. characterMakers.push(() => makeCharacter(
  55784. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55785. {
  55786. front: {
  55787. height: math.unit(4, "meters"),
  55788. weight: math.unit(1200, "kg"),
  55789. name: "Front",
  55790. image: {
  55791. source: "./media/characters/licos/front.svg",
  55792. extra: 1727/1604,
  55793. bottom: 101/1828
  55794. },
  55795. form: "anthro",
  55796. default: true
  55797. },
  55798. taur_side: {
  55799. height: math.unit(20, "meters"),
  55800. weight: math.unit(1100000, "kg"),
  55801. name: "Side",
  55802. image: {
  55803. source: "./media/characters/licos/taur.svg",
  55804. extra: 1158/1091,
  55805. bottom: 80/1238
  55806. },
  55807. form: "taur",
  55808. default: true
  55809. },
  55810. },
  55811. [
  55812. {
  55813. name: "Normal",
  55814. height: math.unit(4, "meters"),
  55815. default: true,
  55816. form: "anthro"
  55817. },
  55818. {
  55819. name: "Normal",
  55820. height: math.unit(20, "meters"),
  55821. default: true,
  55822. form: "taur"
  55823. },
  55824. ],
  55825. {
  55826. "anthro": {
  55827. name: "Anthro",
  55828. default: true
  55829. },
  55830. "taur": {
  55831. name: "Taur",
  55832. },
  55833. }
  55834. ))
  55835. characterMakers.push(() => makeCharacter(
  55836. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55837. {
  55838. front: {
  55839. height: math.unit(10 + 3/12, "feet"),
  55840. name: "Front",
  55841. image: {
  55842. source: "./media/characters/theo-monkey/front.svg",
  55843. extra: 1735/1658,
  55844. bottom: 73/1808
  55845. }
  55846. },
  55847. back: {
  55848. height: math.unit(10 + 3/12, "feet"),
  55849. name: "Back",
  55850. image: {
  55851. source: "./media/characters/theo-monkey/back.svg",
  55852. extra: 1742/1664,
  55853. bottom: 33/1775
  55854. }
  55855. },
  55856. head: {
  55857. height: math.unit(2.29, "feet"),
  55858. name: "Head",
  55859. image: {
  55860. source: "./media/characters/theo-monkey/head.svg"
  55861. }
  55862. },
  55863. handPalm: {
  55864. height: math.unit(1.73, "feet"),
  55865. name: "Hand (Palm)",
  55866. image: {
  55867. source: "./media/characters/theo-monkey/hand-palm.svg"
  55868. }
  55869. },
  55870. handBack: {
  55871. height: math.unit(1.63, "feet"),
  55872. name: "Hand (Back)",
  55873. image: {
  55874. source: "./media/characters/theo-monkey/hand-back.svg"
  55875. }
  55876. },
  55877. footSole: {
  55878. height: math.unit(2.15, "feet"),
  55879. name: "Foot (Sole)",
  55880. image: {
  55881. source: "./media/characters/theo-monkey/foot-sole.svg"
  55882. }
  55883. },
  55884. footSide: {
  55885. height: math.unit(1.6, "feet"),
  55886. name: "Foot (Side)",
  55887. image: {
  55888. source: "./media/characters/theo-monkey/foot-side.svg"
  55889. }
  55890. },
  55891. },
  55892. [
  55893. {
  55894. name: "Normal",
  55895. height: math.unit(10 + 3/12, "feet"),
  55896. default: true
  55897. },
  55898. ]
  55899. ))
  55900. characterMakers.push(() => makeCharacter(
  55901. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55902. {
  55903. front: {
  55904. height: math.unit(11, "feet"),
  55905. weight: math.unit(3000, "lb"),
  55906. preyCapacity: math.unit(10, "people"),
  55907. name: "Front",
  55908. image: {
  55909. source: "./media/characters/brook/front.svg",
  55910. extra: 909/835,
  55911. bottom: 108/1017
  55912. }
  55913. },
  55914. back: {
  55915. height: math.unit(11, "feet"),
  55916. weight: math.unit(3000, "lb"),
  55917. preyCapacity: math.unit(10, "people"),
  55918. name: "Back",
  55919. image: {
  55920. source: "./media/characters/brook/back.svg",
  55921. extra: 976/916,
  55922. bottom: 34/1010
  55923. }
  55924. },
  55925. backAlt: {
  55926. height: math.unit(11, "feet"),
  55927. weight: math.unit(3000, "lb"),
  55928. preyCapacity: math.unit(10, "people"),
  55929. name: "Back (Alt)",
  55930. image: {
  55931. source: "./media/characters/brook/back-alt.svg",
  55932. extra: 1283/1213,
  55933. bottom: 35/1318
  55934. }
  55935. },
  55936. bust: {
  55937. height: math.unit(9.0859030837, "feet"),
  55938. weight: math.unit(3000, "lb"),
  55939. preyCapacity: math.unit(10, "people"),
  55940. name: "Bust",
  55941. image: {
  55942. source: "./media/characters/brook/bust.svg",
  55943. extra: 2043/1923,
  55944. bottom: 0/2043
  55945. }
  55946. },
  55947. },
  55948. [
  55949. {
  55950. name: "Small",
  55951. height: math.unit(11, "feet"),
  55952. default: true
  55953. },
  55954. {
  55955. name: "Towering",
  55956. height: math.unit(5, "km")
  55957. },
  55958. {
  55959. name: "Enormous",
  55960. height: math.unit(25, "earths")
  55961. },
  55962. ]
  55963. ))
  55964. characterMakers.push(() => makeCharacter(
  55965. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55966. {
  55967. front: {
  55968. height: math.unit(4, "feet"),
  55969. weight: math.unit(150, "lb"),
  55970. name: "Front",
  55971. image: {
  55972. source: "./media/characters/squishi/front.svg",
  55973. extra: 1428/1271,
  55974. bottom: 30/1458
  55975. },
  55976. extraAttributes: {
  55977. "pawSize": {
  55978. name: "Paw Size",
  55979. power: 1,
  55980. type: "length",
  55981. base: math.unit(14, "ShoeSizeMensUS"),
  55982. defaultUnit: "ShoeSizeMensUS"
  55983. },
  55984. }
  55985. },
  55986. side: {
  55987. height: math.unit(4, "feet"),
  55988. weight: math.unit(150, "lb"),
  55989. name: "Side",
  55990. image: {
  55991. source: "./media/characters/squishi/side.svg",
  55992. extra: 1428/1271,
  55993. bottom: 30/1458
  55994. },
  55995. extraAttributes: {
  55996. "pawSize": {
  55997. name: "Paw Size",
  55998. power: 1,
  55999. type: "length",
  56000. base: math.unit(14, "ShoeSizeMensUS"),
  56001. defaultUnit: "ShoeSizeMensUS"
  56002. },
  56003. }
  56004. },
  56005. back: {
  56006. height: math.unit(4, "feet"),
  56007. weight: math.unit(150, "lb"),
  56008. name: "Back",
  56009. image: {
  56010. source: "./media/characters/squishi/back.svg",
  56011. extra: 1428/1271,
  56012. bottom: 30/1458
  56013. },
  56014. extraAttributes: {
  56015. "pawSize": {
  56016. name: "Paw Size",
  56017. power: 1,
  56018. type: "length",
  56019. base: math.unit(14, "ShoeSizeMensUS"),
  56020. defaultUnit: "ShoeSizeMensUS"
  56021. },
  56022. }
  56023. },
  56024. },
  56025. [
  56026. {
  56027. name: "Normal",
  56028. height: math.unit(4, "feet"),
  56029. default: true
  56030. },
  56031. ]
  56032. ))
  56033. characterMakers.push(() => makeCharacter(
  56034. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56035. {
  56036. front: {
  56037. height: math.unit(7 + 8/12, "feet"),
  56038. weight: math.unit(333, "lb"),
  56039. name: "Front",
  56040. image: {
  56041. source: "./media/characters/vincent-vasroc/front.svg",
  56042. extra: 1962/1860,
  56043. bottom: 41/2003
  56044. }
  56045. },
  56046. back: {
  56047. height: math.unit(7 + 8/12, "feet"),
  56048. weight: math.unit(333, "lb"),
  56049. name: "Back",
  56050. image: {
  56051. source: "./media/characters/vincent-vasroc/back.svg",
  56052. extra: 1952/1815,
  56053. bottom: 33/1985
  56054. }
  56055. },
  56056. paw: {
  56057. height: math.unit(1.24, "feet"),
  56058. name: "Paw",
  56059. image: {
  56060. source: "./media/characters/vincent-vasroc/paw.svg"
  56061. }
  56062. },
  56063. ear: {
  56064. height: math.unit(0.75, "feet"),
  56065. name: "Ear",
  56066. image: {
  56067. source: "./media/characters/vincent-vasroc/ear.svg"
  56068. }
  56069. },
  56070. },
  56071. [
  56072. {
  56073. name: "Nano",
  56074. height: math.unit(92, "micrometers")
  56075. },
  56076. {
  56077. name: "Normal",
  56078. height: math.unit(7 + 8/12, "feet"),
  56079. default: true
  56080. },
  56081. ]
  56082. ))
  56083. characterMakers.push(() => makeCharacter(
  56084. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56085. {
  56086. frontNsfw: {
  56087. height: math.unit(40, "feet"),
  56088. weight: math.unit(58, "tons"),
  56089. name: "Front (NSFW)",
  56090. image: {
  56091. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56092. extra: 1265/965,
  56093. bottom: 155/1420
  56094. }
  56095. },
  56096. frontSfw: {
  56097. height: math.unit(40, "feet"),
  56098. weight: math.unit(58, "tons"),
  56099. name: "Front (SFW)",
  56100. image: {
  56101. source: "./media/characters/ru-kahn/front-sfw.svg",
  56102. extra: 1265/965,
  56103. bottom: 80/1345
  56104. }
  56105. },
  56106. },
  56107. [
  56108. {
  56109. name: "Small",
  56110. height: math.unit(4, "feet")
  56111. },
  56112. {
  56113. name: "Normal",
  56114. height: math.unit(40, "feet"),
  56115. default: true
  56116. },
  56117. {
  56118. name: "Macro",
  56119. height: math.unit(400, "feet")
  56120. },
  56121. ]
  56122. ))
  56123. characterMakers.push(() => makeCharacter(
  56124. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56125. {
  56126. frontNude: {
  56127. height: math.unit(6 + 5/12, "feet"),
  56128. name: "Front (Nude)",
  56129. image: {
  56130. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56131. extra: 1369/1366,
  56132. bottom: 68/1437
  56133. }
  56134. },
  56135. frontDressed: {
  56136. height: math.unit(6 + 5/12, "feet"),
  56137. name: "Front (Dressed)",
  56138. image: {
  56139. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56140. extra: 1369/1366,
  56141. bottom: 68/1437
  56142. }
  56143. },
  56144. },
  56145. [
  56146. {
  56147. name: "Normal",
  56148. height: math.unit(6 + 5/12, "feet"),
  56149. default: true
  56150. },
  56151. {
  56152. name: "Maximum",
  56153. height: math.unit(1930, "feet")
  56154. },
  56155. ]
  56156. ))
  56157. characterMakers.push(() => makeCharacter(
  56158. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56159. {
  56160. front: {
  56161. height: math.unit(5 + 6/12, "feet"),
  56162. name: "Front",
  56163. image: {
  56164. source: "./media/characters/kaja/front.svg",
  56165. extra: 1874/1514,
  56166. bottom: 117/1991
  56167. }
  56168. },
  56169. },
  56170. [
  56171. {
  56172. name: "Normal",
  56173. height: math.unit(5 + 6/12, "feet"),
  56174. default: true
  56175. },
  56176. ]
  56177. ))
  56178. characterMakers.push(() => makeCharacter(
  56179. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56180. {
  56181. front: {
  56182. height: math.unit(5 + 9/12, "feet"),
  56183. weight: math.unit(200, "lb"),
  56184. name: "Front",
  56185. image: {
  56186. source: "./media/characters/mark-smith/front.svg",
  56187. extra: 1004/943,
  56188. bottom: 58/1062
  56189. }
  56190. },
  56191. back: {
  56192. height: math.unit(5 + 9/12, "feet"),
  56193. weight: math.unit(200, "lb"),
  56194. name: "Back",
  56195. image: {
  56196. source: "./media/characters/mark-smith/back.svg",
  56197. extra: 1023/953,
  56198. bottom: 24/1047
  56199. }
  56200. },
  56201. head: {
  56202. height: math.unit(1.82, "feet"),
  56203. name: "Head",
  56204. image: {
  56205. source: "./media/characters/mark-smith/head.svg"
  56206. }
  56207. },
  56208. hand: {
  56209. height: math.unit(1.4, "feet"),
  56210. name: "Hand",
  56211. image: {
  56212. source: "./media/characters/mark-smith/hand.svg"
  56213. }
  56214. },
  56215. paw: {
  56216. height: math.unit(1.69, "feet"),
  56217. name: "Paw",
  56218. image: {
  56219. source: "./media/characters/mark-smith/paw.svg"
  56220. }
  56221. },
  56222. },
  56223. [
  56224. {
  56225. name: "Micro",
  56226. height: math.unit(0.25, "inches")
  56227. },
  56228. {
  56229. name: "Normal",
  56230. height: math.unit(5 + 9/12, "feet"),
  56231. default: true
  56232. },
  56233. {
  56234. name: "Macro",
  56235. height: math.unit(500, "feet")
  56236. },
  56237. ]
  56238. ))
  56239. characterMakers.push(() => makeCharacter(
  56240. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56241. {
  56242. frontNude: {
  56243. height: math.unit(6, "feet"),
  56244. name: "Front (Nude)",
  56245. image: {
  56246. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56247. extra: 1384/1321,
  56248. bottom: 57/1441
  56249. }
  56250. },
  56251. frontDressed: {
  56252. height: math.unit(6, "feet"),
  56253. name: "Front (Dressed)",
  56254. image: {
  56255. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56256. extra: 1384/1321,
  56257. bottom: 57/1441
  56258. }
  56259. },
  56260. },
  56261. [
  56262. {
  56263. name: "Normal",
  56264. height: math.unit(6, "feet"),
  56265. default: true
  56266. },
  56267. {
  56268. name: "Maximum",
  56269. height: math.unit(1776, "feet")
  56270. },
  56271. ]
  56272. ))
  56273. characterMakers.push(() => makeCharacter(
  56274. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56275. {
  56276. front: {
  56277. height: math.unit(2 + 4/12, "feet"),
  56278. weight: math.unit(350, "lb"),
  56279. name: "Front",
  56280. image: {
  56281. source: "./media/characters/devos/front.svg",
  56282. extra: 958/852,
  56283. bottom: 143/1101
  56284. }
  56285. },
  56286. },
  56287. [
  56288. {
  56289. name: "Base",
  56290. height: math.unit(2 + 4/12, "feet"),
  56291. default: true
  56292. },
  56293. ]
  56294. ))
  56295. characterMakers.push(() => makeCharacter(
  56296. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56297. {
  56298. front: {
  56299. height: math.unit(9 + 2/12, "feet"),
  56300. name: "Front",
  56301. image: {
  56302. source: "./media/characters/hiveheart/front.svg",
  56303. extra: 394/364,
  56304. bottom: 65/459
  56305. }
  56306. },
  56307. back: {
  56308. height: math.unit(9 + 2/12, "feet"),
  56309. name: "Back",
  56310. image: {
  56311. source: "./media/characters/hiveheart/back.svg",
  56312. extra: 374/357,
  56313. bottom: 63/437
  56314. }
  56315. },
  56316. },
  56317. [
  56318. {
  56319. name: "Base",
  56320. height: math.unit(9 + 2/12, "feet"),
  56321. default: true
  56322. },
  56323. ]
  56324. ))
  56325. characterMakers.push(() => makeCharacter(
  56326. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56327. {
  56328. front: {
  56329. height: math.unit(2.5, "inches"),
  56330. weight: math.unit(0.6, "oz"),
  56331. name: "Front",
  56332. image: {
  56333. source: "./media/characters/bryn/front.svg",
  56334. extra: 1480/1205,
  56335. bottom: 27/1507
  56336. }
  56337. },
  56338. back: {
  56339. height: math.unit(2.5, "inches"),
  56340. weight: math.unit(0.6, "oz"),
  56341. name: "Back",
  56342. image: {
  56343. source: "./media/characters/bryn/back.svg",
  56344. extra: 1475/1201,
  56345. bottom: 39/1514
  56346. }
  56347. },
  56348. foot: {
  56349. height: math.unit(0.4, "inches"),
  56350. name: "Foot",
  56351. image: {
  56352. source: "./media/characters/bryn/foot.svg"
  56353. }
  56354. },
  56355. },
  56356. [
  56357. {
  56358. name: "Normal",
  56359. height: math.unit(2.5, "inches"),
  56360. default: true
  56361. },
  56362. ]
  56363. ))
  56364. characterMakers.push(() => makeCharacter(
  56365. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56366. {
  56367. side: {
  56368. height: math.unit(7, "feet"),
  56369. weight: math.unit(657, "kg"),
  56370. name: "Side",
  56371. image: {
  56372. source: "./media/characters/delta/side.svg",
  56373. extra: 781/212,
  56374. bottom: 7/788
  56375. },
  56376. extraAttributes: {
  56377. "wingspan": {
  56378. name: "Wingspan",
  56379. power: 1,
  56380. type: "length",
  56381. base: math.unit(48, "feet")
  56382. },
  56383. "length": {
  56384. name: "Length",
  56385. power: 1,
  56386. type: "length",
  56387. base: math.unit(21, "feet")
  56388. },
  56389. "pawSize": {
  56390. name: "Paw Size",
  56391. power: 2,
  56392. type: "area",
  56393. base: math.unit(1.5*1.4, "feet^2")
  56394. },
  56395. }
  56396. },
  56397. },
  56398. [
  56399. {
  56400. name: "Normal",
  56401. height: math.unit(6, "feet"),
  56402. default: true
  56403. },
  56404. ]
  56405. ))
  56406. characterMakers.push(() => makeCharacter(
  56407. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56408. {
  56409. front: {
  56410. height: math.unit(6, "feet"),
  56411. name: "Front",
  56412. image: {
  56413. source: "./media/characters/pyrow/front.svg",
  56414. extra: 513/486,
  56415. bottom: 14/527
  56416. }
  56417. },
  56418. frontWing: {
  56419. height: math.unit(6, "feet"),
  56420. name: "Front (Wing)",
  56421. image: {
  56422. source: "./media/characters/pyrow/front-wing.svg",
  56423. extra: 539/383,
  56424. bottom: 20/559
  56425. }
  56426. },
  56427. back: {
  56428. height: math.unit(6, "feet"),
  56429. name: "Back",
  56430. image: {
  56431. source: "./media/characters/pyrow/back.svg",
  56432. extra: 500/473,
  56433. bottom: 9/509
  56434. }
  56435. },
  56436. },
  56437. [
  56438. {
  56439. name: "Normal",
  56440. height: math.unit(6, "feet"),
  56441. default: true
  56442. },
  56443. ]
  56444. ))
  56445. characterMakers.push(() => makeCharacter(
  56446. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56447. {
  56448. front: {
  56449. height: math.unit(5, "meters"),
  56450. weight: math.unit(3, "tonnes"),
  56451. name: "Front",
  56452. image: {
  56453. source: "./media/characters/velikan/front.svg",
  56454. extra: 867/744,
  56455. bottom: 71/938
  56456. },
  56457. extraAttributes: {
  56458. "shoeSize": {
  56459. name: "Shoe Size",
  56460. power: 1,
  56461. type: "length",
  56462. base: math.unit(135, "ShoeSizeUK"),
  56463. defaultUnit: "ShoeSizeUK"
  56464. },
  56465. }
  56466. },
  56467. },
  56468. [
  56469. {
  56470. name: "Normal",
  56471. height: math.unit(5, "meters"),
  56472. default: true
  56473. },
  56474. {
  56475. name: "Macro",
  56476. height: math.unit(1, "km")
  56477. },
  56478. {
  56479. name: "Mega Macro",
  56480. height: math.unit(100, "km")
  56481. },
  56482. {
  56483. name: "Giga Macro",
  56484. height: math.unit(2, "megameters")
  56485. },
  56486. {
  56487. name: "Planetary",
  56488. height: math.unit(22, "megameters")
  56489. },
  56490. {
  56491. name: "Solar",
  56492. height: math.unit(8, "gigameters")
  56493. },
  56494. {
  56495. name: "Cosmic",
  56496. height: math.unit(10, "zettameters")
  56497. },
  56498. {
  56499. name: "Omni",
  56500. height: math.unit(9e260, "multiverses")
  56501. },
  56502. ]
  56503. ))
  56504. characterMakers.push(() => makeCharacter(
  56505. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56506. {
  56507. front: {
  56508. height: math.unit(4 + 3/12, "feet"),
  56509. weight: math.unit(90, "lb"),
  56510. name: "Front",
  56511. image: {
  56512. source: "./media/characters/sabiki/front.svg",
  56513. extra: 1662/1423,
  56514. bottom: 65/1727
  56515. }
  56516. },
  56517. },
  56518. [
  56519. {
  56520. name: "Normal",
  56521. height: math.unit(4 + 3/12, "feet"),
  56522. default: true
  56523. },
  56524. ]
  56525. ))
  56526. characterMakers.push(() => makeCharacter(
  56527. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56528. {
  56529. frontSfw: {
  56530. height: math.unit(2, "mm"),
  56531. name: "Front (SFW)",
  56532. image: {
  56533. source: "./media/characters/carmel/front-sfw.svg",
  56534. extra: 1131/1006,
  56535. bottom: 66/1197
  56536. }
  56537. },
  56538. frontNsfw: {
  56539. height: math.unit(2, "mm"),
  56540. name: "Front (NSFW)",
  56541. image: {
  56542. source: "./media/characters/carmel/front-nsfw.svg",
  56543. extra: 1131/1006,
  56544. bottom: 66/1197
  56545. }
  56546. },
  56547. foot: {
  56548. height: math.unit(0.3, "mm"),
  56549. name: "Foot",
  56550. image: {
  56551. source: "./media/characters/carmel/foot.svg"
  56552. }
  56553. },
  56554. tongue: {
  56555. height: math.unit(0.71, "mm"),
  56556. name: "Tongue",
  56557. image: {
  56558. source: "./media/characters/carmel/tongue.svg"
  56559. }
  56560. },
  56561. dick: {
  56562. height: math.unit(0.085, "mm"),
  56563. name: "Dick",
  56564. image: {
  56565. source: "./media/characters/carmel/dick.svg"
  56566. }
  56567. },
  56568. },
  56569. [
  56570. {
  56571. name: "Micro",
  56572. height: math.unit(2, "mm"),
  56573. default: true
  56574. },
  56575. {
  56576. name: "Normal",
  56577. height: math.unit(4 + 8/12, "feet")
  56578. },
  56579. {
  56580. name: "Mega Macro",
  56581. height: math.unit(250, "feet")
  56582. },
  56583. {
  56584. name: "BIGGER",
  56585. height: math.unit(1000, "feet")
  56586. },
  56587. {
  56588. name: "BIGGEST",
  56589. height: math.unit(2, "miles")
  56590. },
  56591. ]
  56592. ))
  56593. characterMakers.push(() => makeCharacter(
  56594. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56595. {
  56596. front: {
  56597. height: math.unit(6.5, "feet"),
  56598. weight: math.unit(198, "lb"),
  56599. name: "Front",
  56600. image: {
  56601. source: "./media/characters/tamani/anthro.svg",
  56602. extra: 930/890,
  56603. bottom: 34/964
  56604. },
  56605. form: "anthro",
  56606. default: true
  56607. },
  56608. side: {
  56609. height: math.unit(6, "feet"),
  56610. weight: math.unit(198*2, "lb"),
  56611. name: "Side",
  56612. image: {
  56613. source: "./media/characters/tamani/feral.svg",
  56614. extra: 559/519,
  56615. bottom: 43/602
  56616. },
  56617. form: "feral"
  56618. },
  56619. },
  56620. [
  56621. {
  56622. name: "Normal",
  56623. height: math.unit(6.5, "feet"),
  56624. default: true,
  56625. form: "anthro"
  56626. },
  56627. {
  56628. name: "Normal",
  56629. height: math.unit(6, "feet"),
  56630. default: true,
  56631. form: "feral"
  56632. },
  56633. ],
  56634. {
  56635. "anthro": {
  56636. name: "Anthro",
  56637. default: true
  56638. },
  56639. "feral": {
  56640. name: "Feral",
  56641. },
  56642. }
  56643. ))
  56644. characterMakers.push(() => makeCharacter(
  56645. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56646. {
  56647. front: {
  56648. height: math.unit(4 + 1/12, "feet"),
  56649. weight: math.unit(114, "lb"),
  56650. name: "Front",
  56651. image: {
  56652. source: "./media/characters/dex/front.svg",
  56653. extra: 787/680,
  56654. bottom: 18/805
  56655. }
  56656. },
  56657. side: {
  56658. height: math.unit(4 + 1/12, "feet"),
  56659. weight: math.unit(114, "lb"),
  56660. name: "Side",
  56661. image: {
  56662. source: "./media/characters/dex/side.svg",
  56663. extra: 785/680,
  56664. bottom: 12/797
  56665. }
  56666. },
  56667. back: {
  56668. height: math.unit(4 + 1/12, "feet"),
  56669. weight: math.unit(114, "lb"),
  56670. name: "Back",
  56671. image: {
  56672. source: "./media/characters/dex/back.svg",
  56673. extra: 785/681,
  56674. bottom: 17/802
  56675. }
  56676. },
  56677. loungewear: {
  56678. height: math.unit(4 + 1/12, "feet"),
  56679. weight: math.unit(114, "lb"),
  56680. name: "Loungewear",
  56681. image: {
  56682. source: "./media/characters/dex/loungewear.svg",
  56683. extra: 787/680,
  56684. bottom: 18/805
  56685. }
  56686. },
  56687. workout: {
  56688. height: math.unit(4 + 1/12, "feet"),
  56689. weight: math.unit(114, "lb"),
  56690. name: "Workout",
  56691. image: {
  56692. source: "./media/characters/dex/workout.svg",
  56693. extra: 787/680,
  56694. bottom: 18/805
  56695. }
  56696. },
  56697. schoolUniform: {
  56698. height: math.unit(4 + 1/12, "feet"),
  56699. weight: math.unit(114, "lb"),
  56700. name: "School-uniform",
  56701. image: {
  56702. source: "./media/characters/dex/school-uniform.svg",
  56703. extra: 787/680,
  56704. bottom: 18/805
  56705. }
  56706. },
  56707. maw: {
  56708. height: math.unit(0.55, "feet"),
  56709. name: "Maw",
  56710. image: {
  56711. source: "./media/characters/dex/maw.svg"
  56712. }
  56713. },
  56714. paw: {
  56715. height: math.unit(0.87, "feet"),
  56716. name: "Paw",
  56717. image: {
  56718. source: "./media/characters/dex/paw.svg"
  56719. }
  56720. },
  56721. bust: {
  56722. height: math.unit(1.67, "feet"),
  56723. name: "Bust",
  56724. image: {
  56725. source: "./media/characters/dex/bust.svg"
  56726. }
  56727. },
  56728. },
  56729. [
  56730. {
  56731. name: "Normal",
  56732. height: math.unit(4 + 1/12, "feet"),
  56733. default: true
  56734. },
  56735. ]
  56736. ))
  56737. characterMakers.push(() => makeCharacter(
  56738. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56739. {
  56740. front: {
  56741. height: math.unit(4 + 3/12, "feet"),
  56742. weight: math.unit(60, "lb"),
  56743. name: "Front",
  56744. image: {
  56745. source: "./media/characters/silke/front.svg",
  56746. extra: 1334/1122,
  56747. bottom: 21/1355
  56748. }
  56749. },
  56750. back: {
  56751. height: math.unit(4 + 3/12, "feet"),
  56752. weight: math.unit(60, "lb"),
  56753. name: "Back",
  56754. image: {
  56755. source: "./media/characters/silke/back.svg",
  56756. extra: 1328/1092,
  56757. bottom: 16/1344
  56758. }
  56759. },
  56760. dressed: {
  56761. height: math.unit(4 + 3/12, "feet"),
  56762. weight: math.unit(60, "lb"),
  56763. name: "Dressed",
  56764. image: {
  56765. source: "./media/characters/silke/dressed.svg",
  56766. extra: 1334/1122,
  56767. bottom: 43/1377
  56768. }
  56769. },
  56770. },
  56771. [
  56772. {
  56773. name: "Normal",
  56774. height: math.unit(4 + 3/12, "feet"),
  56775. default: true
  56776. },
  56777. ]
  56778. ))
  56779. characterMakers.push(() => makeCharacter(
  56780. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56781. {
  56782. front: {
  56783. height: math.unit(1.58, "meters"),
  56784. weight: math.unit(47, "kg"),
  56785. name: "Front",
  56786. image: {
  56787. source: "./media/characters/wireshark/front.svg",
  56788. extra: 883/838,
  56789. bottom: 66/949
  56790. }
  56791. },
  56792. },
  56793. [
  56794. {
  56795. name: "Normal",
  56796. height: math.unit(1.58, "meters"),
  56797. default: true
  56798. },
  56799. ]
  56800. ))
  56801. characterMakers.push(() => makeCharacter(
  56802. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56803. {
  56804. front: {
  56805. height: math.unit(6, "meters"),
  56806. weight: math.unit(15000, "kg"),
  56807. name: "Front",
  56808. image: {
  56809. source: "./media/characters/gallagher/front.svg",
  56810. extra: 532/493,
  56811. bottom: 0/532
  56812. }
  56813. },
  56814. },
  56815. [
  56816. {
  56817. name: "Normal",
  56818. height: math.unit(6, "meters"),
  56819. default: true
  56820. },
  56821. ]
  56822. ))
  56823. characterMakers.push(() => makeCharacter(
  56824. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56825. {
  56826. front: {
  56827. height: math.unit(2.4, "meters"),
  56828. weight: math.unit(270, "kg"),
  56829. name: "Front",
  56830. image: {
  56831. source: "./media/characters/alice/front.svg",
  56832. extra: 950/900,
  56833. bottom: 36/986
  56834. }
  56835. },
  56836. side: {
  56837. height: math.unit(2.4, "meters"),
  56838. weight: math.unit(270, "kg"),
  56839. name: "Side",
  56840. image: {
  56841. source: "./media/characters/alice/side.svg",
  56842. extra: 921/876,
  56843. bottom: 19/940
  56844. }
  56845. },
  56846. dressed: {
  56847. height: math.unit(2.4, "meters"),
  56848. weight: math.unit(270, "kg"),
  56849. name: "Dressed",
  56850. image: {
  56851. source: "./media/characters/alice/dressed.svg",
  56852. extra: 905/850,
  56853. bottom: 81/986
  56854. }
  56855. },
  56856. fishnet: {
  56857. height: math.unit(2.4, "meters"),
  56858. weight: math.unit(270, "kg"),
  56859. name: "Fishnet",
  56860. image: {
  56861. source: "./media/characters/alice/fishnet.svg",
  56862. extra: 905/850,
  56863. bottom: 81/986
  56864. }
  56865. },
  56866. },
  56867. [
  56868. {
  56869. name: "Normal",
  56870. height: math.unit(2.4, "meters"),
  56871. default: true
  56872. },
  56873. ]
  56874. ))
  56875. characterMakers.push(() => makeCharacter(
  56876. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56877. {
  56878. front: {
  56879. height: math.unit(175.25, "feet"),
  56880. name: "Front",
  56881. image: {
  56882. source: "./media/characters/fio/front.svg",
  56883. extra: 1883/1591,
  56884. bottom: 34/1917
  56885. }
  56886. },
  56887. },
  56888. [
  56889. {
  56890. name: "Normal",
  56891. height: math.unit(175.25, "cm"),
  56892. default: true
  56893. },
  56894. ]
  56895. ))
  56896. characterMakers.push(() => makeCharacter(
  56897. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56898. {
  56899. side: {
  56900. height: math.unit(6, "meters"),
  56901. weight: math.unit(3400, "kg"),
  56902. preyCapacity: math.unit(1700, "liters"),
  56903. name: "Side",
  56904. image: {
  56905. source: "./media/characters/hass/side.svg",
  56906. extra: 1058/997,
  56907. bottom: 177/1235
  56908. }
  56909. },
  56910. feeding: {
  56911. height: math.unit(6*0.63, "meters"),
  56912. weight: math.unit(3400, "kg"),
  56913. preyCapacity: math.unit(1700, "liters"),
  56914. name: "Feeding",
  56915. image: {
  56916. source: "./media/characters/hass/feeding.svg",
  56917. extra: 689/579,
  56918. bottom: 146/835
  56919. }
  56920. },
  56921. guts: {
  56922. height: math.unit(6, "meters"),
  56923. weight: math.unit(3400, "kg"),
  56924. name: "Guts",
  56925. image: {
  56926. source: "./media/characters/hass/guts.svg",
  56927. extra: 1223/1198,
  56928. bottom: 182/1405
  56929. }
  56930. },
  56931. dickFront: {
  56932. height: math.unit(1.4, "meters"),
  56933. name: "Dick (Front)",
  56934. image: {
  56935. source: "./media/characters/hass/dick-front.svg"
  56936. }
  56937. },
  56938. dickSide: {
  56939. height: math.unit(1.3, "meters"),
  56940. name: "Dick (Side)",
  56941. image: {
  56942. source: "./media/characters/hass/dick-side.svg"
  56943. }
  56944. },
  56945. dickBack: {
  56946. height: math.unit(1.4, "meters"),
  56947. name: "Dick (Back)",
  56948. image: {
  56949. source: "./media/characters/hass/dick-back.svg"
  56950. }
  56951. },
  56952. },
  56953. [
  56954. {
  56955. name: "Normal",
  56956. height: math.unit(6, "meters"),
  56957. default: true
  56958. },
  56959. ]
  56960. ))
  56961. characterMakers.push(() => makeCharacter(
  56962. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56963. {
  56964. front: {
  56965. height: math.unit(4, "feet"),
  56966. weight: math.unit(60, "lb"),
  56967. name: "Front",
  56968. image: {
  56969. source: "./media/characters/hickory-finnegan/front.svg",
  56970. extra: 444/411,
  56971. bottom: 10/454
  56972. }
  56973. },
  56974. side: {
  56975. height: math.unit(4, "feet"),
  56976. weight: math.unit(60, "lb"),
  56977. name: "Side",
  56978. image: {
  56979. source: "./media/characters/hickory-finnegan/side.svg",
  56980. extra: 444/411,
  56981. bottom: 10/454
  56982. }
  56983. },
  56984. back: {
  56985. height: math.unit(4, "feet"),
  56986. weight: math.unit(60, "lb"),
  56987. name: "Back",
  56988. image: {
  56989. source: "./media/characters/hickory-finnegan/back.svg",
  56990. extra: 444/411,
  56991. bottom: 10/454
  56992. }
  56993. },
  56994. },
  56995. [
  56996. {
  56997. name: "Normal",
  56998. height: math.unit(4, "feet"),
  56999. default: true
  57000. },
  57001. ]
  57002. ))
  57003. characterMakers.push(() => makeCharacter(
  57004. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57005. {
  57006. snivy_front: {
  57007. height: math.unit(2, "feet"),
  57008. weight: math.unit(17.9, "lb"),
  57009. name: "Front",
  57010. image: {
  57011. source: "./media/characters/robin-phox/snivy-front.svg",
  57012. extra: 569/504,
  57013. bottom: 33/602
  57014. },
  57015. form: "snivy",
  57016. default: true
  57017. },
  57018. snivy_frontNsfw: {
  57019. height: math.unit(2, "feet"),
  57020. weight: math.unit(17.9, "lb"),
  57021. name: "Front (NSFW)",
  57022. image: {
  57023. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57024. extra: 569/504,
  57025. bottom: 33/602
  57026. },
  57027. form: "snivy",
  57028. },
  57029. snivy_back: {
  57030. height: math.unit(2, "feet"),
  57031. weight: math.unit(17.9, "lb"),
  57032. name: "Back",
  57033. image: {
  57034. source: "./media/characters/robin-phox/snivy-back.svg",
  57035. extra: 577/508,
  57036. bottom: 21/598
  57037. },
  57038. form: "snivy",
  57039. },
  57040. snivy_foot: {
  57041. height: math.unit(0.68, "feet"),
  57042. name: "Foot",
  57043. image: {
  57044. source: "./media/characters/robin-phox/snivy-foot.svg"
  57045. },
  57046. form: "snivy",
  57047. },
  57048. snivy_sole: {
  57049. height: math.unit(0.68, "feet"),
  57050. name: "Sole",
  57051. image: {
  57052. source: "./media/characters/robin-phox/snivy-sole.svg"
  57053. },
  57054. form: "snivy",
  57055. },
  57056. yoshi_front: {
  57057. height: math.unit(6, "feet"),
  57058. weight: math.unit(150, "lb"),
  57059. name: "Front",
  57060. image: {
  57061. source: "./media/characters/robin-phox/yoshi-front.svg",
  57062. extra: 890/792,
  57063. bottom: 29/919
  57064. },
  57065. form: "yoshi",
  57066. default: true
  57067. },
  57068. yoshi_frontNsfw: {
  57069. height: math.unit(6, "feet"),
  57070. weight: math.unit(150, "lb"),
  57071. name: "Front (NSFW)",
  57072. image: {
  57073. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57074. extra: 890/792,
  57075. bottom: 29/919
  57076. },
  57077. form: "yoshi",
  57078. },
  57079. yoshi_back: {
  57080. height: math.unit(6, "feet"),
  57081. weight: math.unit(150, "lb"),
  57082. name: "Back",
  57083. image: {
  57084. source: "./media/characters/robin-phox/yoshi-back.svg",
  57085. extra: 890/792,
  57086. bottom: 29/919
  57087. },
  57088. form: "yoshi",
  57089. },
  57090. yoshi_foot: {
  57091. height: math.unit(1.5, "feet"),
  57092. name: "Foot",
  57093. image: {
  57094. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57095. },
  57096. form: "yoshi",
  57097. },
  57098. delphox_front: {
  57099. height: math.unit(4 + 11/12, "feet"),
  57100. weight: math.unit(86, "lb"),
  57101. name: "Front",
  57102. image: {
  57103. source: "./media/characters/robin-phox/delphox-front.svg",
  57104. extra: 1266/1069,
  57105. bottom: 32/1298
  57106. },
  57107. form: "delphox",
  57108. default: true
  57109. },
  57110. delphox_frontNsfw: {
  57111. height: math.unit(4 + 11/12, "feet"),
  57112. weight: math.unit(86, "lb"),
  57113. name: "Front (NSFW)",
  57114. image: {
  57115. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57116. extra: 1266/1069,
  57117. bottom: 32/1298
  57118. },
  57119. form: "delphox",
  57120. },
  57121. delphox_back: {
  57122. height: math.unit(4 + 11/12, "feet"),
  57123. weight: math.unit(86, "lb"),
  57124. name: "Back",
  57125. image: {
  57126. source: "./media/characters/robin-phox/delphox-back.svg",
  57127. extra: 1269/1083,
  57128. bottom: 15/1284
  57129. },
  57130. form: "delphox",
  57131. },
  57132. mienshao_front: {
  57133. height: math.unit(4 + 7/12, "feet"),
  57134. weight: math.unit(78.3, "lb"),
  57135. name: "Front",
  57136. image: {
  57137. source: "./media/characters/robin-phox/mienshao-front.svg",
  57138. extra: 1052/970,
  57139. bottom: 108/1160
  57140. },
  57141. form: "mienshao",
  57142. default: true
  57143. },
  57144. mienshao_frontNsfw: {
  57145. height: math.unit(4 + 7/12, "feet"),
  57146. weight: math.unit(78.3, "lb"),
  57147. name: "Front (NSFW)",
  57148. image: {
  57149. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57150. extra: 1052/970,
  57151. bottom: 108/1160
  57152. },
  57153. form: "mienshao",
  57154. },
  57155. mienshao_back: {
  57156. height: math.unit(4 + 7/12, "feet"),
  57157. weight: math.unit(78.3, "lb"),
  57158. name: "Back",
  57159. image: {
  57160. source: "./media/characters/robin-phox/mienshao-back.svg",
  57161. extra: 1102/982,
  57162. bottom: 32/1134
  57163. },
  57164. form: "mienshao",
  57165. },
  57166. inteleon_front: {
  57167. height: math.unit(6 + 3/12, "feet"),
  57168. weight: math.unit(99.6, "lb"),
  57169. name: "Front",
  57170. image: {
  57171. source: "./media/characters/robin-phox/inteleon-front.svg",
  57172. extra: 910/799,
  57173. bottom: 76/986
  57174. },
  57175. form: "inteleon",
  57176. default: true
  57177. },
  57178. inteleon_frontNsfw: {
  57179. height: math.unit(6 + 3/12, "feet"),
  57180. weight: math.unit(99.6, "lb"),
  57181. name: "Front (NSFW)",
  57182. image: {
  57183. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57184. extra: 910/799,
  57185. bottom: 76/986
  57186. },
  57187. form: "inteleon",
  57188. },
  57189. inteleon_back: {
  57190. height: math.unit(6 + 3/12, "feet"),
  57191. weight: math.unit(99.6, "lb"),
  57192. name: "Back",
  57193. image: {
  57194. source: "./media/characters/robin-phox/inteleon-back.svg",
  57195. extra: 907/796,
  57196. bottom: 25/932
  57197. },
  57198. form: "inteleon",
  57199. },
  57200. reshiram_front: {
  57201. height: math.unit(10 + 6/12, "feet"),
  57202. weight: math.unit(727.5, "lb"),
  57203. name: "Front",
  57204. image: {
  57205. source: "./media/characters/robin-phox/reshiram-front.svg",
  57206. extra: 1198/940,
  57207. bottom: 123/1321
  57208. },
  57209. form: "reshiram",
  57210. },
  57211. reshiram_frontNsfw: {
  57212. height: math.unit(10 + 6/12, "feet"),
  57213. weight: math.unit(727.5, "lb"),
  57214. name: "Front-nsfw",
  57215. image: {
  57216. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57217. extra: 1198/940,
  57218. bottom: 123/1321
  57219. },
  57220. form: "reshiram",
  57221. },
  57222. reshiram_back: {
  57223. height: math.unit(10 + 6/12, "feet"),
  57224. weight: math.unit(727.5, "lb"),
  57225. name: "Back",
  57226. image: {
  57227. source: "./media/characters/robin-phox/reshiram-back.svg",
  57228. extra: 1024/904,
  57229. bottom: 85/1109
  57230. },
  57231. form: "reshiram",
  57232. },
  57233. samurott_front: {
  57234. height: math.unit(8, "feet"),
  57235. weight: math.unit(208.6, "lb"),
  57236. name: "Front",
  57237. image: {
  57238. source: "./media/characters/robin-phox/samurott-front.svg",
  57239. extra: 1048/984,
  57240. bottom: 100/1148
  57241. },
  57242. form: "samurott",
  57243. },
  57244. samurott_frontNsfw: {
  57245. height: math.unit(8, "feet"),
  57246. weight: math.unit(208.6, "lb"),
  57247. name: "Front-nsfw",
  57248. image: {
  57249. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57250. extra: 1048/984,
  57251. bottom: 100/1148
  57252. },
  57253. form: "samurott",
  57254. },
  57255. samurott_back: {
  57256. height: math.unit(8, "feet"),
  57257. weight: math.unit(208.6, "lb"),
  57258. name: "Back",
  57259. image: {
  57260. source: "./media/characters/robin-phox/samurott-back.svg",
  57261. extra: 1110/1042,
  57262. bottom: 12/1122
  57263. },
  57264. form: "samurott",
  57265. },
  57266. samurott_feral: {
  57267. height: math.unit(4 + 11/12, "feet"),
  57268. weight: math.unit(208.6, "lb"),
  57269. name: "Feral",
  57270. image: {
  57271. source: "./media/characters/robin-phox/samurott-feral.svg",
  57272. extra: 766/681,
  57273. bottom: 108/874
  57274. },
  57275. form: "samurott",
  57276. },
  57277. },
  57278. [
  57279. {
  57280. name: "Normal",
  57281. height: math.unit(2, "feet"),
  57282. default: true,
  57283. form: "snivy"
  57284. },
  57285. {
  57286. name: "Normal",
  57287. height: math.unit(6, "feet"),
  57288. default: true,
  57289. form: "yoshi"
  57290. },
  57291. {
  57292. name: "Normal",
  57293. height: math.unit(4 + 11/12, "feet"),
  57294. default: true,
  57295. form: "delphox"
  57296. },
  57297. {
  57298. name: "Normal",
  57299. height: math.unit(4 + 7/12, "feet"),
  57300. default: true,
  57301. form: "mienshao"
  57302. },
  57303. {
  57304. name: "Normal",
  57305. height: math.unit(6 + 3/12, "feet"),
  57306. default: true,
  57307. form: "inteleon"
  57308. },
  57309. {
  57310. name: "Normal",
  57311. height: math.unit(10 + 6/12, "feet"),
  57312. default: true,
  57313. form: "reshiram"
  57314. },
  57315. {
  57316. name: "Normal",
  57317. height: math.unit(8, "feet"),
  57318. default: true,
  57319. form: "samurott"
  57320. },
  57321. {
  57322. name: "Macro",
  57323. height: math.unit(500, "feet"),
  57324. allForms: true
  57325. },
  57326. {
  57327. name: "Mega Macro",
  57328. height: math.unit(10, "earths"),
  57329. allForms: true
  57330. },
  57331. {
  57332. name: "Giga Macro",
  57333. height: math.unit(1, "galaxy"),
  57334. allForms: true
  57335. },
  57336. {
  57337. name: "Godly Macro",
  57338. height: math.unit(1e10, "multiverses"),
  57339. allForms: true
  57340. },
  57341. ],
  57342. {
  57343. "snivy": {
  57344. name: "Snivy",
  57345. default: true
  57346. },
  57347. "yoshi": {
  57348. name: "Yoshi",
  57349. },
  57350. "delphox": {
  57351. name: "Delphox",
  57352. },
  57353. "mienshao": {
  57354. name: "Mienshao",
  57355. },
  57356. "inteleon": {
  57357. name: "Inteleon",
  57358. },
  57359. "reshiram": {
  57360. name: "Reshiram",
  57361. },
  57362. "samurott": {
  57363. name: "Samurott",
  57364. },
  57365. }
  57366. ))
  57367. characterMakers.push(() => makeCharacter(
  57368. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57369. {
  57370. front: {
  57371. height: math.unit(4, "feet"),
  57372. name: "Front",
  57373. image: {
  57374. source: "./media/characters/ash-leung/front.svg",
  57375. extra: 1916/1792,
  57376. bottom: 50/1966
  57377. }
  57378. },
  57379. },
  57380. [
  57381. {
  57382. name: "Atomic",
  57383. height: math.unit(1, "angstrom")
  57384. },
  57385. {
  57386. name: "Microscopic",
  57387. height: math.unit(4000, "angstroms")
  57388. },
  57389. {
  57390. name: "Speck",
  57391. height: math.unit(1, "mm")
  57392. },
  57393. {
  57394. name: "Small",
  57395. height: math.unit(1, "inch")
  57396. },
  57397. {
  57398. name: "Normal",
  57399. height: math.unit(4, "feet"),
  57400. default: true
  57401. },
  57402. ]
  57403. ))
  57404. characterMakers.push(() => makeCharacter(
  57405. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57406. {
  57407. frontDressed: {
  57408. height: math.unit(2.08, "meters"),
  57409. weight: math.unit(175, "lb"),
  57410. name: "Front (Dressed)",
  57411. image: {
  57412. source: "./media/characters/carie/front-dressed.svg",
  57413. extra: 456/417,
  57414. bottom: 7/463
  57415. }
  57416. },
  57417. backDressed: {
  57418. height: math.unit(2.08, "meters"),
  57419. weight: math.unit(175, "lb"),
  57420. name: "Back (Dressed)",
  57421. image: {
  57422. source: "./media/characters/carie/back-dressed.svg",
  57423. extra: 455/414,
  57424. bottom: 11/466
  57425. }
  57426. },
  57427. front: {
  57428. height: math.unit(2, "meters"),
  57429. weight: math.unit(175, "lb"),
  57430. name: "Front",
  57431. image: {
  57432. source: "./media/characters/carie/front.svg",
  57433. extra: 438/399,
  57434. bottom: 12/450
  57435. }
  57436. },
  57437. back: {
  57438. height: math.unit(2, "meters"),
  57439. weight: math.unit(175, "lb"),
  57440. name: "Back",
  57441. image: {
  57442. source: "./media/characters/carie/back.svg",
  57443. extra: 438/397,
  57444. bottom: 7/445
  57445. }
  57446. },
  57447. },
  57448. [
  57449. {
  57450. name: "Normal",
  57451. height: math.unit(2.08, "meters"),
  57452. default: true
  57453. },
  57454. {
  57455. name: "Macro",
  57456. height: math.unit(2.08e3, "meters")
  57457. },
  57458. {
  57459. name: "Mega Macro",
  57460. height: math.unit(2.08e6, "meters")
  57461. },
  57462. {
  57463. name: "Giga Macro",
  57464. height: math.unit(2.08e9, "meters")
  57465. },
  57466. {
  57467. name: "Tera Macro",
  57468. height: math.unit(2.08e12, "meters")
  57469. },
  57470. {
  57471. name: "Peta Macro",
  57472. height: math.unit(2.08e15, "meters")
  57473. },
  57474. {
  57475. name: "Exa Macro",
  57476. height: math.unit(2.08e18, "meters")
  57477. },
  57478. {
  57479. name: "Zetta Macro",
  57480. height: math.unit(2.08e21, "meters")
  57481. },
  57482. {
  57483. name: "Yotta Macro",
  57484. height: math.unit(2.08e24, "meters")
  57485. },
  57486. ]
  57487. ))
  57488. characterMakers.push(() => makeCharacter(
  57489. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57490. {
  57491. front: {
  57492. height: math.unit(5 + 2/12, "feet"),
  57493. weight: math.unit(120, "lb"),
  57494. name: "Front",
  57495. image: {
  57496. source: "./media/characters/sai-bree/front.svg",
  57497. extra: 1843/1702,
  57498. bottom: 91/1934
  57499. }
  57500. },
  57501. back: {
  57502. height: math.unit(5 + 2/12, "feet"),
  57503. weight: math.unit(120, "lb"),
  57504. name: "Back",
  57505. image: {
  57506. source: "./media/characters/sai-bree/back.svg",
  57507. extra: 1809/1637,
  57508. bottom: 56/1865
  57509. }
  57510. },
  57511. },
  57512. [
  57513. {
  57514. name: "Normal",
  57515. height: math.unit(5 + 2/12, "feet"),
  57516. default: true
  57517. },
  57518. {
  57519. name: "Macro",
  57520. height: math.unit(500, "feet")
  57521. },
  57522. ]
  57523. ))
  57524. characterMakers.push(() => makeCharacter(
  57525. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57526. {
  57527. side: {
  57528. height: math.unit(0.77, "meters"),
  57529. weight: math.unit(120, "lb"),
  57530. name: "Side",
  57531. image: {
  57532. source: "./media/characters/davwyn/side.svg",
  57533. extra: 1557/1225,
  57534. bottom: 131/1688
  57535. }
  57536. },
  57537. front: {
  57538. height: math.unit(0.835410, "meters"),
  57539. weight: math.unit(120, "lb"),
  57540. name: "Front",
  57541. image: {
  57542. source: "./media/characters/davwyn/front.svg",
  57543. extra: 870/843,
  57544. bottom: 175/1045
  57545. }
  57546. },
  57547. },
  57548. [
  57549. {
  57550. name: "Minidrake",
  57551. height: math.unit(0.77/4, "meters")
  57552. },
  57553. {
  57554. name: "Normal",
  57555. height: math.unit(0.77, "meters"),
  57556. default: true
  57557. },
  57558. ]
  57559. ))
  57560. characterMakers.push(() => makeCharacter(
  57561. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57562. {
  57563. front: {
  57564. height: math.unit(10 + 3/12, "feet"),
  57565. weight: math.unit(2857, "lb"),
  57566. name: "Front",
  57567. image: {
  57568. source: "./media/characters/balans/front.svg",
  57569. extra: 427/402,
  57570. bottom: 26/453
  57571. }
  57572. },
  57573. side: {
  57574. height: math.unit(10 + 3/12, "feet"),
  57575. weight: math.unit(2857, "lb"),
  57576. name: "Side",
  57577. image: {
  57578. source: "./media/characters/balans/side.svg",
  57579. extra: 397/371,
  57580. bottom: 17/414
  57581. }
  57582. },
  57583. back: {
  57584. height: math.unit(10 + 3/12, "feet"),
  57585. weight: math.unit(2857, "lb"),
  57586. name: "Back",
  57587. image: {
  57588. source: "./media/characters/balans/back.svg",
  57589. extra: 408/381,
  57590. bottom: 14/422
  57591. }
  57592. },
  57593. hand: {
  57594. height: math.unit(1.15, "feet"),
  57595. name: "Hand",
  57596. image: {
  57597. source: "./media/characters/balans/hand.svg"
  57598. }
  57599. },
  57600. footRest: {
  57601. height: math.unit(3.1, "feet"),
  57602. name: "Foot (Rest)",
  57603. image: {
  57604. source: "./media/characters/balans/foot-rest.svg"
  57605. }
  57606. },
  57607. footActive: {
  57608. height: math.unit(3.5, "feet"),
  57609. name: "Foot (Active)",
  57610. image: {
  57611. source: "./media/characters/balans/foot-active.svg"
  57612. }
  57613. },
  57614. },
  57615. [
  57616. {
  57617. name: "Normal",
  57618. height: math.unit(10 + 3/12, "feet"),
  57619. default: true
  57620. },
  57621. ]
  57622. ))
  57623. characterMakers.push(() => makeCharacter(
  57624. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57625. {
  57626. side: {
  57627. height: math.unit(9, "meters"),
  57628. weight: math.unit(114, "tonnes"),
  57629. name: "Side",
  57630. image: {
  57631. source: "./media/characters/eldkveikir/side.svg",
  57632. extra: 1927/338,
  57633. bottom: 42/1969
  57634. }
  57635. },
  57636. sitting: {
  57637. height: math.unit(13.4, "meters"),
  57638. weight: math.unit(114, "tonnes"),
  57639. name: "Sitting",
  57640. image: {
  57641. source: "./media/characters/eldkveikir/sitting.svg",
  57642. extra: 1108/963,
  57643. bottom: 610/1718
  57644. }
  57645. },
  57646. maw: {
  57647. height: math.unit(8.36, "meters"),
  57648. name: "Maw",
  57649. image: {
  57650. source: "./media/characters/eldkveikir/maw.svg"
  57651. }
  57652. },
  57653. hand: {
  57654. height: math.unit(4.84, "meters"),
  57655. name: "Hand",
  57656. image: {
  57657. source: "./media/characters/eldkveikir/hand.svg"
  57658. }
  57659. },
  57660. foot: {
  57661. height: math.unit(6.9, "meters"),
  57662. name: "Foot",
  57663. image: {
  57664. source: "./media/characters/eldkveikir/foot.svg"
  57665. }
  57666. },
  57667. genitals: {
  57668. height: math.unit(9.6, "meters"),
  57669. name: "Genitals",
  57670. image: {
  57671. source: "./media/characters/eldkveikir/genitals.svg"
  57672. }
  57673. },
  57674. },
  57675. [
  57676. {
  57677. name: "Normal",
  57678. height: math.unit(9, "meters"),
  57679. default: true
  57680. },
  57681. ]
  57682. ))
  57683. characterMakers.push(() => makeCharacter(
  57684. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57685. {
  57686. front: {
  57687. height: math.unit(14, "feet"),
  57688. weight: math.unit(4100, "lb"),
  57689. name: "Front",
  57690. image: {
  57691. source: "./media/characters/arrow/front.svg",
  57692. extra: 330/318,
  57693. bottom: 56/386
  57694. }
  57695. },
  57696. },
  57697. [
  57698. {
  57699. name: "Normal",
  57700. height: math.unit(14, "feet"),
  57701. default: true
  57702. },
  57703. {
  57704. name: "Minimacro",
  57705. height: math.unit(63, "feet")
  57706. },
  57707. {
  57708. name: "Macro",
  57709. height: math.unit(630, "feet")
  57710. },
  57711. {
  57712. name: "Megamacro",
  57713. height: math.unit(12600, "feet")
  57714. },
  57715. {
  57716. name: "Gigamacro",
  57717. height: math.unit(18000, "miles")
  57718. },
  57719. ]
  57720. ))
  57721. characterMakers.push(() => makeCharacter(
  57722. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57723. {
  57724. front: {
  57725. height: math.unit(10, "feet"),
  57726. weight: math.unit(2.4, "tons"),
  57727. name: "Front",
  57728. image: {
  57729. source: "./media/characters/3yk-k0-unit/front.svg",
  57730. extra: 573/561,
  57731. bottom: 33/606
  57732. }
  57733. },
  57734. back: {
  57735. height: math.unit(10, "feet"),
  57736. weight: math.unit(2.4, "tons"),
  57737. name: "Back",
  57738. image: {
  57739. source: "./media/characters/3yk-k0-unit/back.svg",
  57740. extra: 614/573,
  57741. bottom: 32/646
  57742. }
  57743. },
  57744. maw: {
  57745. height: math.unit(2.15, "feet"),
  57746. name: "Maw",
  57747. image: {
  57748. source: "./media/characters/3yk-k0-unit/maw.svg"
  57749. }
  57750. },
  57751. },
  57752. [
  57753. {
  57754. name: "Normal",
  57755. height: math.unit(10, "feet"),
  57756. default: true
  57757. },
  57758. ]
  57759. ))
  57760. characterMakers.push(() => makeCharacter(
  57761. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57762. {
  57763. front: {
  57764. height: math.unit(8 + 8/12, "feet"),
  57765. name: "Front",
  57766. image: {
  57767. source: "./media/characters/nemo/front.svg",
  57768. extra: 1308/1217,
  57769. bottom: 57/1365
  57770. }
  57771. },
  57772. },
  57773. [
  57774. {
  57775. name: "Normal",
  57776. height: math.unit(8 + 8/12, "feet"),
  57777. default: true
  57778. },
  57779. ]
  57780. ))
  57781. characterMakers.push(() => makeCharacter(
  57782. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57783. {
  57784. front: {
  57785. height: math.unit(8, "feet"),
  57786. weight: math.unit(760, "lb"),
  57787. name: "Front",
  57788. image: {
  57789. source: "./media/characters/rexx/front.svg",
  57790. extra: 786/750,
  57791. bottom: 17/803
  57792. },
  57793. extraAttributes: {
  57794. "pawLength": {
  57795. name: "Paw Length",
  57796. power: 1,
  57797. type: "length",
  57798. base: math.unit(27, "inches")
  57799. },
  57800. }
  57801. },
  57802. },
  57803. [
  57804. {
  57805. name: "Micro",
  57806. height: math.unit(2, "inches")
  57807. },
  57808. {
  57809. name: "Normal",
  57810. height: math.unit(8, "feet"),
  57811. default: true
  57812. },
  57813. {
  57814. name: "Macro",
  57815. height: math.unit(150, "feet")
  57816. },
  57817. ]
  57818. ))
  57819. characterMakers.push(() => makeCharacter(
  57820. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57821. {
  57822. front: {
  57823. height: math.unit(18, "feet"),
  57824. weight: math.unit(1975, "lb"),
  57825. name: "Front",
  57826. image: {
  57827. source: "./media/characters/draco/front.svg",
  57828. extra: 1325/1241,
  57829. bottom: 83/1408
  57830. }
  57831. },
  57832. back: {
  57833. height: math.unit(18, "feet"),
  57834. weight: math.unit(1975, "lb"),
  57835. name: "Back",
  57836. image: {
  57837. source: "./media/characters/draco/back.svg",
  57838. extra: 1332/1250,
  57839. bottom: 43/1375
  57840. }
  57841. },
  57842. dick: {
  57843. height: math.unit(7.5, "feet"),
  57844. name: "Dick",
  57845. image: {
  57846. source: "./media/characters/draco/dick.svg"
  57847. }
  57848. },
  57849. },
  57850. [
  57851. {
  57852. name: "Normal",
  57853. height: math.unit(18, "feet"),
  57854. default: true
  57855. },
  57856. ]
  57857. ))
  57858. characterMakers.push(() => makeCharacter(
  57859. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57860. {
  57861. front: {
  57862. height: math.unit(3.2, "meters"),
  57863. name: "Front",
  57864. image: {
  57865. source: "./media/characters/harriett/front.svg",
  57866. extra: 1966/1915,
  57867. bottom: 9/1975
  57868. }
  57869. },
  57870. },
  57871. [
  57872. {
  57873. name: "Normal",
  57874. height: math.unit(3.2, "meters"),
  57875. default: true
  57876. },
  57877. ]
  57878. ))
  57879. characterMakers.push(() => makeCharacter(
  57880. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57881. {
  57882. sitting: {
  57883. height: math.unit(0.8, "meter"),
  57884. name: "Sitting",
  57885. image: {
  57886. source: "./media/characters/serpentus/sitting.svg",
  57887. extra: 293/290,
  57888. bottom: 140/433
  57889. }
  57890. },
  57891. },
  57892. [
  57893. {
  57894. name: "Normal",
  57895. height: math.unit(0.8, "meter"),
  57896. default: true
  57897. },
  57898. ]
  57899. ))
  57900. characterMakers.push(() => makeCharacter(
  57901. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57902. {
  57903. front: {
  57904. height: math.unit(5.7174385736, "feet"),
  57905. name: "Front",
  57906. image: {
  57907. source: "./media/characters/nova-polecat/front.svg",
  57908. extra: 1317/1216,
  57909. bottom: 92/1409
  57910. }
  57911. },
  57912. },
  57913. [
  57914. {
  57915. name: "Normal",
  57916. height: math.unit(5.7174385736, "feet"),
  57917. default: true
  57918. },
  57919. ]
  57920. ))
  57921. characterMakers.push(() => makeCharacter(
  57922. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57923. {
  57924. front: {
  57925. height: math.unit(5 + 4/12, "feet"),
  57926. weight: math.unit(250, "lb"),
  57927. name: "Front",
  57928. image: {
  57929. source: "./media/characters/mook/front.svg",
  57930. extra: 1088/1037,
  57931. bottom: 132/1220
  57932. }
  57933. },
  57934. back: {
  57935. height: math.unit(5 + 1/12, "feet"),
  57936. weight: math.unit(250, "lb"),
  57937. name: "Back",
  57938. image: {
  57939. source: "./media/characters/mook/back.svg",
  57940. extra: 1184/905,
  57941. bottom: 96/1280
  57942. }
  57943. },
  57944. head: {
  57945. height: math.unit(1.85, "feet"),
  57946. name: "Head",
  57947. image: {
  57948. source: "./media/characters/mook/head.svg"
  57949. }
  57950. },
  57951. hand: {
  57952. height: math.unit(1.9, "feet"),
  57953. name: "Hand",
  57954. image: {
  57955. source: "./media/characters/mook/hand.svg"
  57956. }
  57957. },
  57958. palm: {
  57959. height: math.unit(1.84, "feet"),
  57960. name: "Palm",
  57961. image: {
  57962. source: "./media/characters/mook/palm.svg"
  57963. }
  57964. },
  57965. foot: {
  57966. height: math.unit(1.44, "feet"),
  57967. name: "Foot",
  57968. image: {
  57969. source: "./media/characters/mook/foot.svg"
  57970. }
  57971. },
  57972. sole: {
  57973. height: math.unit(1.44, "feet"),
  57974. name: "Sole",
  57975. image: {
  57976. source: "./media/characters/mook/sole.svg"
  57977. }
  57978. },
  57979. },
  57980. [
  57981. {
  57982. name: "Normal",
  57983. height: math.unit(5 + 4/12, "feet"),
  57984. default: true
  57985. },
  57986. {
  57987. name: "Big",
  57988. height: math.unit(12, "feet")
  57989. },
  57990. ]
  57991. ))
  57992. characterMakers.push(() => makeCharacter(
  57993. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57994. {
  57995. front: {
  57996. height: math.unit(6 + 10/12, "feet"),
  57997. weight: math.unit(233, "lb"),
  57998. name: "Front",
  57999. image: {
  58000. source: "./media/characters/kayla/front.svg",
  58001. extra: 1850/1775,
  58002. bottom: 65/1915
  58003. }
  58004. },
  58005. },
  58006. [
  58007. {
  58008. name: "Normal",
  58009. height: math.unit(6 + 10/12, "feet"),
  58010. default: true
  58011. },
  58012. {
  58013. name: "Amazonian",
  58014. height: math.unit(12 + 5/12, "feet")
  58015. },
  58016. {
  58017. name: "Mini Giantess",
  58018. height: math.unit(26, "feet")
  58019. },
  58020. {
  58021. name: "Giantess",
  58022. height: math.unit(200, "feet")
  58023. },
  58024. {
  58025. name: "Mega Giantess",
  58026. height: math.unit(2500, "feet")
  58027. },
  58028. {
  58029. name: "City Sized",
  58030. height: math.unit(50, "miles")
  58031. },
  58032. {
  58033. name: "Country Sized",
  58034. height: math.unit(500, "miles")
  58035. },
  58036. {
  58037. name: "Continent Sized",
  58038. height: math.unit(2500, "miles")
  58039. },
  58040. {
  58041. name: "Planet Sized",
  58042. height: math.unit(10000, "miles")
  58043. },
  58044. {
  58045. name: "Star Sized",
  58046. height: math.unit(5e6, "miles")
  58047. },
  58048. {
  58049. name: "Solar System Sized",
  58050. height: math.unit(125, "AU")
  58051. },
  58052. {
  58053. name: "Galaxy Sized",
  58054. height: math.unit(300e3, "lightyears")
  58055. },
  58056. {
  58057. name: "Universe Sized",
  58058. height: math.unit(200e9, "lightyears")
  58059. },
  58060. {
  58061. name: "Multiverse Sized",
  58062. height: math.unit(20, "exauniverses")
  58063. },
  58064. {
  58065. name: "Mother of Existence",
  58066. height: math.unit(1e6, "yottauniverses")
  58067. },
  58068. ]
  58069. ))
  58070. characterMakers.push(() => makeCharacter(
  58071. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58072. {
  58073. side: {
  58074. height: math.unit(9.5, "meters"),
  58075. name: "Side",
  58076. image: {
  58077. source: "./media/characters/kulve-ragnarok/side.svg",
  58078. extra: 364/326,
  58079. bottom: 50/414
  58080. }
  58081. },
  58082. },
  58083. [
  58084. {
  58085. name: "Normal",
  58086. height: math.unit(9.5, "meters"),
  58087. default: true
  58088. },
  58089. ]
  58090. ))
  58091. characterMakers.push(() => makeCharacter(
  58092. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58093. {
  58094. front: {
  58095. height: math.unit(8 + 9/12, "feet"),
  58096. name: "Front",
  58097. image: {
  58098. source: "./media/characters/atlas-goat/front.svg",
  58099. extra: 1462/1323,
  58100. bottom: 12/1474
  58101. }
  58102. },
  58103. },
  58104. [
  58105. {
  58106. name: "Normal",
  58107. height: math.unit(8 + 9/12, "feet"),
  58108. default: true
  58109. },
  58110. {
  58111. name: "Skyline",
  58112. height: math.unit(845, "feet")
  58113. },
  58114. {
  58115. name: "Orbital",
  58116. height: math.unit(93000, "miles")
  58117. },
  58118. {
  58119. name: "Constellation",
  58120. height: math.unit(27000, "lightyears")
  58121. },
  58122. ]
  58123. ))
  58124. characterMakers.push(() => makeCharacter(
  58125. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58126. {
  58127. side: {
  58128. height: math.unit(1.8, "meters"),
  58129. weight: math.unit(120, "kg"),
  58130. name: "Side",
  58131. image: {
  58132. source: "./media/characters/xie-ling/side.svg",
  58133. extra: 646/574,
  58134. bottom: 44/690
  58135. }
  58136. },
  58137. },
  58138. [
  58139. {
  58140. name: "Tiny",
  58141. height: math.unit(1.80, "meters")
  58142. },
  58143. {
  58144. name: "Small",
  58145. height: math.unit(6, "meters")
  58146. },
  58147. {
  58148. name: "Medium",
  58149. height: math.unit(15, "meters")
  58150. },
  58151. {
  58152. name: "Normal",
  58153. height: math.unit(30, "meters"),
  58154. default: true
  58155. },
  58156. {
  58157. name: "Above Normal",
  58158. height: math.unit(60, "meters")
  58159. },
  58160. {
  58161. name: "Big",
  58162. height: math.unit(220, "meters")
  58163. },
  58164. {
  58165. name: "Giant",
  58166. height: math.unit(2.2, "km")
  58167. },
  58168. {
  58169. name: "Macro",
  58170. height: math.unit(25, "km")
  58171. },
  58172. {
  58173. name: "Mega Macro",
  58174. height: math.unit(350, "km")
  58175. },
  58176. {
  58177. name: "Mega Macro+",
  58178. height: math.unit(5000, "km")
  58179. },
  58180. {
  58181. name: "Goddess",
  58182. height: math.unit(3, "multiverses")
  58183. },
  58184. ]
  58185. ))
  58186. characterMakers.push(() => makeCharacter(
  58187. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58188. {
  58189. frontSfw: {
  58190. height: math.unit(5 + 11/12, "feet"),
  58191. weight: math.unit(210, "lb"),
  58192. name: "Front",
  58193. image: {
  58194. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58195. extra: 1928/1821,
  58196. bottom: 45/1973
  58197. }
  58198. },
  58199. backSfw: {
  58200. height: math.unit(5 + 11/12, "feet"),
  58201. weight: math.unit(210, "lb"),
  58202. name: "Back",
  58203. image: {
  58204. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58205. extra: 1920/1813,
  58206. bottom: 34/1954
  58207. }
  58208. },
  58209. frontNsfw: {
  58210. height: math.unit(5 + 11/12, "feet"),
  58211. weight: math.unit(210, "lb"),
  58212. name: "Front (NSFW)",
  58213. image: {
  58214. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58215. extra: 1928/1821,
  58216. bottom: 45/1973
  58217. }
  58218. },
  58219. backNsfw: {
  58220. height: math.unit(5 + 11/12, "feet"),
  58221. weight: math.unit(210, "lb"),
  58222. name: "Back (NSFW)",
  58223. image: {
  58224. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58225. extra: 1920/1813,
  58226. bottom: 34/1954
  58227. }
  58228. },
  58229. },
  58230. [
  58231. {
  58232. name: "Normal",
  58233. height: math.unit(5 + 11/12, "feet"),
  58234. default: true
  58235. },
  58236. {
  58237. name: "Goddess",
  58238. height: math.unit(20 + 3/12, "feet")
  58239. },
  58240. {
  58241. name: "Breaker of Man",
  58242. height: math.unit(329 + 9/12, "feet")
  58243. },
  58244. {
  58245. name: "Solar Justice",
  58246. height: math.unit(0.6, "solarradii")
  58247. },
  58248. {
  58249. name: "She Who Judges",
  58250. height: math.unit(1, "universe")
  58251. },
  58252. ]
  58253. ))
  58254. characterMakers.push(() => makeCharacter(
  58255. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58256. {
  58257. casual_front: {
  58258. height: math.unit(6 + 1/12, "feet"),
  58259. weight: math.unit(190, "lb"),
  58260. preyCapacity: math.unit(1, "people"),
  58261. name: "Front",
  58262. image: {
  58263. source: "./media/characters/managarmr/casual-front.svg",
  58264. extra: 411/381,
  58265. bottom: 15/426
  58266. },
  58267. extraAttributes: {
  58268. "pawSize": {
  58269. name: "Paw Size",
  58270. power: 1,
  58271. type: "length",
  58272. base: math.unit(0.2, "meters")
  58273. },
  58274. },
  58275. form: "casual",
  58276. },
  58277. casual_back: {
  58278. height: math.unit(6 + 1/12, "feet"),
  58279. weight: math.unit(190, "lb"),
  58280. preyCapacity: math.unit(1, "people"),
  58281. name: "Back",
  58282. image: {
  58283. source: "./media/characters/managarmr/casual-back.svg",
  58284. extra: 413/383,
  58285. bottom: 13/426
  58286. },
  58287. extraAttributes: {
  58288. "pawSize": {
  58289. name: "Paw Size",
  58290. power: 1,
  58291. type: "length",
  58292. base: math.unit(0.2, "meters")
  58293. },
  58294. },
  58295. form: "casual",
  58296. },
  58297. base_front: {
  58298. height: math.unit(7, "feet"),
  58299. weight: math.unit(210, "lb"),
  58300. preyCapacity: math.unit(2, "people"),
  58301. name: "Front",
  58302. image: {
  58303. source: "./media/characters/managarmr/base-front.svg",
  58304. extra: 580/485,
  58305. bottom: 32/612
  58306. },
  58307. extraAttributes: {
  58308. "wingspan": {
  58309. name: "Wingspan",
  58310. power: 1,
  58311. type: "length",
  58312. base: math.unit(4, "meters")
  58313. },
  58314. "pawSize": {
  58315. name: "Paw Size",
  58316. power: 1,
  58317. type: "length",
  58318. base: math.unit(0.2, "meters")
  58319. },
  58320. },
  58321. form: "base",
  58322. },
  58323. "true-divine_front": {
  58324. height: math.unit(40, "feet"),
  58325. weight: math.unit(39000, "lb"),
  58326. preyCapacity: math.unit(375, "people"),
  58327. name: "Front",
  58328. image: {
  58329. source: "./media/characters/managarmr/true-divine-front.svg",
  58330. extra: 725/573,
  58331. bottom: 120/845
  58332. },
  58333. extraAttributes: {
  58334. "wingspan": {
  58335. name: "Wingspan",
  58336. power: 1,
  58337. type: "length",
  58338. base: math.unit(20, "meters")
  58339. },
  58340. "pawSize": {
  58341. name: "Paw Size",
  58342. power: 1,
  58343. type: "length",
  58344. base: math.unit(1.5, "meters")
  58345. },
  58346. },
  58347. form: "true-divine",
  58348. },
  58349. },
  58350. [
  58351. {
  58352. name: "Normal",
  58353. height: math.unit(6 + 1/12, "feet"),
  58354. form: "casual",
  58355. default: true
  58356. },
  58357. {
  58358. name: "Normal",
  58359. height: math.unit(7, "feet"),
  58360. form: "base",
  58361. default: true
  58362. },
  58363. ],
  58364. {
  58365. "casual": {
  58366. name: "Casual",
  58367. default: true
  58368. },
  58369. "base": {
  58370. name: "Base",
  58371. },
  58372. "true-divine": {
  58373. name: "True Divine",
  58374. },
  58375. }
  58376. ))
  58377. characterMakers.push(() => makeCharacter(
  58378. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58379. {
  58380. front: {
  58381. height: math.unit(1.8, "meters"),
  58382. weight: math.unit(110, "kg"),
  58383. name: "Front",
  58384. image: {
  58385. source: "./media/characters/mystra/front.svg",
  58386. extra: 529/442,
  58387. bottom: 31/560
  58388. }
  58389. },
  58390. frontLewd: {
  58391. height: math.unit(1.8, "meters"),
  58392. weight: math.unit(110, "kg"),
  58393. name: "Front (Lewd)",
  58394. image: {
  58395. source: "./media/characters/mystra/front-lewd.svg",
  58396. extra: 529/442,
  58397. bottom: 31/560
  58398. }
  58399. },
  58400. head: {
  58401. height: math.unit(1.63, "feet"),
  58402. name: "Head",
  58403. image: {
  58404. source: "./media/characters/mystra/head.svg"
  58405. }
  58406. },
  58407. paw: {
  58408. height: math.unit(1.9, "feet"),
  58409. name: "Paw",
  58410. image: {
  58411. source: "./media/characters/mystra/paw.svg"
  58412. }
  58413. },
  58414. },
  58415. [
  58416. {
  58417. name: "Incognito",
  58418. height: math.unit(2.3, "meters")
  58419. },
  58420. {
  58421. name: "Small Macro",
  58422. height: math.unit(300, "meters")
  58423. },
  58424. {
  58425. name: "Small Mega",
  58426. height: math.unit(2, "km")
  58427. },
  58428. {
  58429. name: "Mega",
  58430. height: math.unit(30, "km")
  58431. },
  58432. {
  58433. name: "Small Giga",
  58434. height: math.unit(100, "km")
  58435. },
  58436. {
  58437. name: "Giga",
  58438. height: math.unit(1000, "km"),
  58439. default: true
  58440. },
  58441. {
  58442. name: "Continental",
  58443. height: math.unit(5000, "km")
  58444. },
  58445. {
  58446. name: "Terra",
  58447. height: math.unit(20000, "km")
  58448. },
  58449. {
  58450. name: "Solar",
  58451. height: math.unit(2e6, "km")
  58452. },
  58453. {
  58454. name: "Galactic",
  58455. height: math.unit(528502, "lightyears")
  58456. },
  58457. {
  58458. name: "Universal",
  58459. height: math.unit(20, "universes")
  58460. },
  58461. ]
  58462. ))
  58463. characterMakers.push(() => makeCharacter(
  58464. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58465. {
  58466. front: {
  58467. height: math.unit(2, "meters"),
  58468. weight: math.unit(140, "kg"),
  58469. name: "Front",
  58470. image: {
  58471. source: "./media/characters/caleb/front.svg",
  58472. extra: 873/817,
  58473. bottom: 47/920
  58474. }
  58475. },
  58476. back: {
  58477. height: math.unit(2, "meters"),
  58478. weight: math.unit(140, "kg"),
  58479. name: "Back",
  58480. image: {
  58481. source: "./media/characters/caleb/back.svg",
  58482. extra: 877/828,
  58483. bottom: 24/901
  58484. }
  58485. },
  58486. snakeTail: {
  58487. height: math.unit(1.44, "feet"),
  58488. name: "Snake Tail",
  58489. image: {
  58490. source: "./media/characters/caleb/snake-tail.svg"
  58491. }
  58492. },
  58493. dick: {
  58494. height: math.unit(2.6, "feet"),
  58495. name: "Dick",
  58496. image: {
  58497. source: "./media/characters/caleb/dick.svg"
  58498. }
  58499. },
  58500. },
  58501. [
  58502. {
  58503. name: "Incognito",
  58504. height: math.unit(3, "meters")
  58505. },
  58506. {
  58507. name: "Home Size",
  58508. height: math.unit(200, "meters"),
  58509. default: true
  58510. },
  58511. {
  58512. name: "Macro",
  58513. height: math.unit(500, "meters")
  58514. },
  58515. {
  58516. name: "Big Macro",
  58517. height: math.unit(5, "km")
  58518. },
  58519. {
  58520. name: "Giga",
  58521. height: math.unit(250, "km")
  58522. },
  58523. {
  58524. name: "Giga+",
  58525. height: math.unit(5000, "km")
  58526. },
  58527. {
  58528. name: "Small Terra",
  58529. height: math.unit(35e3, "km")
  58530. },
  58531. {
  58532. name: "Terra",
  58533. height: math.unit(2e6, "km")
  58534. },
  58535. {
  58536. name: "Terra+",
  58537. height: math.unit(1.5e6, "km")
  58538. },
  58539. ]
  58540. ))
  58541. characterMakers.push(() => makeCharacter(
  58542. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58543. {
  58544. front: {
  58545. height: math.unit(2, "meters"),
  58546. weight: math.unit(120, "kg"),
  58547. name: "Front",
  58548. image: {
  58549. source: "./media/characters/gilirian/front.svg",
  58550. extra: 805/737,
  58551. bottom: 13/818
  58552. }
  58553. },
  58554. side: {
  58555. height: math.unit(2, "meters"),
  58556. weight: math.unit(120, "kg"),
  58557. name: "Side",
  58558. image: {
  58559. source: "./media/characters/gilirian/side.svg",
  58560. extra: 810/746,
  58561. bottom: 6/816
  58562. }
  58563. },
  58564. back: {
  58565. height: math.unit(2, "meters"),
  58566. weight: math.unit(120, "kg"),
  58567. name: "Back",
  58568. image: {
  58569. source: "./media/characters/gilirian/back.svg",
  58570. extra: 815/745,
  58571. bottom: 15/830
  58572. }
  58573. },
  58574. frontNsfw: {
  58575. height: math.unit(2, "meters"),
  58576. weight: math.unit(120, "kg"),
  58577. name: "Front (NSFW)",
  58578. image: {
  58579. source: "./media/characters/gilirian/front-nsfw.svg",
  58580. extra: 805/737,
  58581. bottom: 13/818
  58582. }
  58583. },
  58584. sideNsfw: {
  58585. height: math.unit(2, "meters"),
  58586. weight: math.unit(120, "kg"),
  58587. name: "Side (NSFW)",
  58588. image: {
  58589. source: "./media/characters/gilirian/side-nsfw.svg",
  58590. extra: 810/746,
  58591. bottom: 6/816
  58592. }
  58593. },
  58594. },
  58595. [
  58596. {
  58597. name: "Incognito",
  58598. height: math.unit(2, "meters"),
  58599. default: true
  58600. },
  58601. {
  58602. name: "Macro",
  58603. height: math.unit(250, "meters")
  58604. },
  58605. {
  58606. name: "Big Macro",
  58607. height: math.unit(1500, "meters")
  58608. },
  58609. {
  58610. name: "Mega",
  58611. height: math.unit(40, "km")
  58612. },
  58613. {
  58614. name: "Giga",
  58615. height: math.unit(300, "km")
  58616. },
  58617. {
  58618. name: "Extra Giga",
  58619. height: math.unit(5000, "km")
  58620. },
  58621. {
  58622. name: "Small Terra",
  58623. height: math.unit(10e3, "km")
  58624. },
  58625. {
  58626. name: "Terra",
  58627. height: math.unit(3e5, "km")
  58628. },
  58629. {
  58630. name: "Galactic",
  58631. height: math.unit(369950, "lightyears")
  58632. },
  58633. ]
  58634. ))
  58635. characterMakers.push(() => makeCharacter(
  58636. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58637. {
  58638. front: {
  58639. height: math.unit(2.5, "meters"),
  58640. weight: math.unit(230, "lb"),
  58641. name: "Front",
  58642. image: {
  58643. source: "./media/characters/tarken/front.svg",
  58644. extra: 764/720,
  58645. bottom: 49/813
  58646. }
  58647. },
  58648. back: {
  58649. height: math.unit(2.5, "meters"),
  58650. weight: math.unit(230, "lb"),
  58651. name: "Back",
  58652. image: {
  58653. source: "./media/characters/tarken/back.svg",
  58654. extra: 756/720,
  58655. bottom: 35/791
  58656. }
  58657. },
  58658. frontNsfw: {
  58659. height: math.unit(2.5, "meters"),
  58660. weight: math.unit(230, "lb"),
  58661. name: "Front (NSFW)",
  58662. image: {
  58663. source: "./media/characters/tarken/front-nsfw.svg",
  58664. extra: 764/720,
  58665. bottom: 49/813
  58666. }
  58667. },
  58668. backNsfw: {
  58669. height: math.unit(2.5, "meters"),
  58670. weight: math.unit(230, "lb"),
  58671. name: "Back (NSFW)",
  58672. image: {
  58673. source: "./media/characters/tarken/back-nsfw.svg",
  58674. extra: 756/720,
  58675. bottom: 35/791
  58676. }
  58677. },
  58678. head: {
  58679. height: math.unit(2.22, "feet"),
  58680. name: "Head",
  58681. image: {
  58682. source: "./media/characters/tarken/head.svg"
  58683. }
  58684. },
  58685. tail: {
  58686. height: math.unit(5.25, "feet"),
  58687. name: "Tail",
  58688. image: {
  58689. source: "./media/characters/tarken/tail.svg"
  58690. }
  58691. },
  58692. dick: {
  58693. height: math.unit(1.95, "feet"),
  58694. name: "Dick",
  58695. image: {
  58696. source: "./media/characters/tarken/dick.svg"
  58697. }
  58698. },
  58699. hand: {
  58700. height: math.unit(1.78, "feet"),
  58701. name: "Hand",
  58702. image: {
  58703. source: "./media/characters/tarken/hand.svg"
  58704. }
  58705. },
  58706. beam: {
  58707. height: math.unit(1.5, "feet"),
  58708. name: "Beam",
  58709. image: {
  58710. source: "./media/characters/tarken/beam.svg"
  58711. }
  58712. },
  58713. },
  58714. [
  58715. {
  58716. name: "Original Size",
  58717. height: math.unit(2.5, "meters")
  58718. },
  58719. {
  58720. name: "Macro",
  58721. height: math.unit(150, "meters"),
  58722. default: true
  58723. },
  58724. {
  58725. name: "Macro+",
  58726. height: math.unit(300, "meters")
  58727. },
  58728. {
  58729. name: "Mega",
  58730. height: math.unit(2, "km")
  58731. },
  58732. {
  58733. name: "Mega+",
  58734. height: math.unit(35, "km")
  58735. },
  58736.  {
  58737. name: "Mega++",
  58738. height: math.unit(60, "km")
  58739. },
  58740. {
  58741. name: "Giga",
  58742. height: math.unit(200, "km")
  58743. },
  58744. {
  58745. name: "Giga+",
  58746. height: math.unit(2500, "km")
  58747. },
  58748. {
  58749. name: "Giga++",
  58750. height: math.unit(6600, "km")
  58751. },
  58752. {
  58753. name: "Terra",
  58754. height: math.unit(20000, "km")
  58755. },
  58756. {
  58757. name: "Terra+",
  58758. height: math.unit(300000, "km")
  58759. },
  58760. ]
  58761. ))
  58762. characterMakers.push(() => makeCharacter(
  58763. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58764. {
  58765. magpie_dressed: {
  58766. height: math.unit(1.7, "meters"),
  58767. weight: math.unit(70, "kg"),
  58768. name: "Dressed",
  58769. image: {
  58770. source: "./media/characters/otreus/magpie-dressed.svg",
  58771. extra: 691/672,
  58772. bottom: 116/807
  58773. },
  58774. form: "magpie",
  58775. default: true
  58776. },
  58777. magpie_nude: {
  58778. height: math.unit(1.7, "meters"),
  58779. weight: math.unit(70, "kg"),
  58780. name: "Nude",
  58781. image: {
  58782. source: "./media/characters/otreus/magpie-nude.svg",
  58783. extra: 691/672,
  58784. bottom: 116/807
  58785. },
  58786. form: "magpie",
  58787. },
  58788. magpie_dressedLewd: {
  58789. height: math.unit(1.7, "meters"),
  58790. weight: math.unit(70, "kg"),
  58791. name: "Dressed (Lewd)",
  58792. image: {
  58793. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58794. extra: 691/672,
  58795. bottom: 116/807
  58796. },
  58797. form: "magpie",
  58798. },
  58799. magpie_nudeLewd: {
  58800. height: math.unit(1.7, "meters"),
  58801. weight: math.unit(70, "kg"),
  58802. name: "Nude (Lewd)",
  58803. image: {
  58804. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58805. extra: 691/672,
  58806. bottom: 116/807
  58807. },
  58808. form: "magpie",
  58809. },
  58810. magpie_leftFoot: {
  58811. height: math.unit(1.58, "feet"),
  58812. name: "Left Foot",
  58813. image: {
  58814. source: "./media/characters/otreus/magpie-left-foot.svg"
  58815. },
  58816. form: "magpie",
  58817. },
  58818. magpie_rightFoot: {
  58819. height: math.unit(1.58, "feet"),
  58820. name: "Right Foot",
  58821. image: {
  58822. source: "./media/characters/otreus/magpie-right-foot.svg"
  58823. },
  58824. form: "magpie",
  58825. },
  58826. magpie_wingspan: {
  58827. height: math.unit(2, "meters"),
  58828. weight: math.unit(70, "kg"),
  58829. name: "Wingspan",
  58830. image: {
  58831. source: "./media/characters/otreus/magpie-wingspan.svg"
  58832. },
  58833. extraAttributes: {
  58834. "wingspan": {
  58835. name: "Wingspan",
  58836. power: 1,
  58837. type: "length",
  58838. base: math.unit(3.35, "meters")
  58839. },
  58840. },
  58841. form: "magpie",
  58842. },
  58843. hippogriff_dressed: {
  58844. height: math.unit(1.7, "meters"),
  58845. weight: math.unit(70, "kg"),
  58846. name: "Dressed",
  58847. image: {
  58848. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58849. extra: 710/689,
  58850. bottom: 67/777
  58851. },
  58852. form: "hippogriff",
  58853. default: true
  58854. },
  58855. hippogriff_nude: {
  58856. height: math.unit(1.7, "meters"),
  58857. weight: math.unit(70, "kg"),
  58858. name: "Nude",
  58859. image: {
  58860. source: "./media/characters/otreus/hippogriff-nude.svg",
  58861. extra: 710/689,
  58862. bottom: 67/777
  58863. },
  58864. form: "hippogriff",
  58865. },
  58866. hippogriff_dressedLewd: {
  58867. height: math.unit(1.7, "meters"),
  58868. weight: math.unit(70, "kg"),
  58869. name: "Dressed (Lewd)",
  58870. image: {
  58871. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58872. extra: 710/689,
  58873. bottom: 67/777
  58874. },
  58875. form: "hippogriff",
  58876. },
  58877. hippogriff_nudeLewd: {
  58878. height: math.unit(1.7, "meters"),
  58879. weight: math.unit(70, "kg"),
  58880. name: "Nude (Lewd)",
  58881. image: {
  58882. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58883. extra: 710/689,
  58884. bottom: 67/777
  58885. },
  58886. form: "hippogriff",
  58887. },
  58888. },
  58889. [
  58890. {
  58891. name: "Original Size",
  58892. height: math.unit(1.7, "meters"),
  58893. allForms: true
  58894. },
  58895. {
  58896. name: "Incognito Size",
  58897. height: math.unit(2, "meters"),
  58898. allForms: true
  58899. },
  58900. {
  58901. name: "Mega",
  58902. height: math.unit(2, "km"),
  58903. allForms: true
  58904. },
  58905. {
  58906. name: "Mega+",
  58907. height: math.unit(40, "km"),
  58908. allForms: true
  58909. },
  58910. {
  58911. name: "Giga",
  58912. height: math.unit(250, "km"),
  58913. allForms: true
  58914. },
  58915. {
  58916. name: "Giga+",
  58917. height: math.unit(3000, "km"),
  58918. allForms: true
  58919. },
  58920. {
  58921. name: "Terra",
  58922. height: math.unit(20000, "km"),
  58923. allForms: true
  58924. },
  58925. {
  58926. name: "Solar (Home Size)",
  58927. height: math.unit(3e6, "km"),
  58928. allForms: true,
  58929. default: true
  58930. },
  58931. ],
  58932. {
  58933. "magpie": {
  58934. name: "Magpie",
  58935. default: true
  58936. },
  58937. "hippogriff": {
  58938. name: "Hippogriff",
  58939. },
  58940. }
  58941. ))
  58942. characterMakers.push(() => makeCharacter(
  58943. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58944. {
  58945. frontDressed: {
  58946. height: math.unit(1.8, "meters"),
  58947. weight: math.unit(90, "kg"),
  58948. name: "Front (Dressed)",
  58949. image: {
  58950. source: "./media/characters/thalia/front-dressed.svg",
  58951. extra: 478/402,
  58952. bottom: 55/533
  58953. }
  58954. },
  58955. backDressed: {
  58956. height: math.unit(1.8, "meters"),
  58957. weight: math.unit(90, "kg"),
  58958. name: "Back (Dressed)",
  58959. image: {
  58960. source: "./media/characters/thalia/back-dressed.svg",
  58961. extra: 500/424,
  58962. bottom: 15/515
  58963. }
  58964. },
  58965. frontNude: {
  58966. height: math.unit(1.8, "meters"),
  58967. weight: math.unit(90, "kg"),
  58968. name: "Front (Nude)",
  58969. image: {
  58970. source: "./media/characters/thalia/front-nude.svg",
  58971. extra: 478/402,
  58972. bottom: 55/533
  58973. }
  58974. },
  58975. backNude: {
  58976. height: math.unit(1.8, "meters"),
  58977. weight: math.unit(90, "kg"),
  58978. name: "Back (Nude)",
  58979. image: {
  58980. source: "./media/characters/thalia/back-nude.svg",
  58981. extra: 500/424,
  58982. bottom: 15/515
  58983. }
  58984. },
  58985. },
  58986. [
  58987. {
  58988. name: "Incognito",
  58989. height: math.unit(3, "meters")
  58990. },
  58991. {
  58992. name: "Macro",
  58993. height: math.unit(500, "meters")
  58994. },
  58995. {
  58996. name: "Mega",
  58997. height: math.unit(5, "km")
  58998. },
  58999. {
  59000. name: "Mega+",
  59001. height: math.unit(30, "km")
  59002. },
  59003. {
  59004. name: "Giga",
  59005. height: math.unit(350, "km")
  59006. },
  59007. {
  59008. name: "Giga+",
  59009. height: math.unit(4000, "km")
  59010. },
  59011. {
  59012. name: "Terra",
  59013. height: math.unit(35000, "km")
  59014. },
  59015. {
  59016. name: "Original Size",
  59017. height: math.unit(130000, "km")
  59018. },
  59019. {
  59020. name: "Solar (Home Size)",
  59021. height: math.unit(4e6, "km"),
  59022. default: true
  59023. },
  59024. ]
  59025. ))
  59026. characterMakers.push(() => makeCharacter(
  59027. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59028. {
  59029. front: {
  59030. height: math.unit(1.8, "meters"),
  59031. weight: math.unit(95, "kg"),
  59032. name: "Front",
  59033. image: {
  59034. source: "./media/characters/shango/front.svg",
  59035. extra: 1925/1774,
  59036. bottom: 67/1992
  59037. }
  59038. },
  59039. back: {
  59040. height: math.unit(1.8, "meters"),
  59041. weight: math.unit(95, "kg"),
  59042. name: "Back",
  59043. image: {
  59044. source: "./media/characters/shango/back.svg",
  59045. extra: 1915/1766,
  59046. bottom: 52/1967
  59047. }
  59048. },
  59049. frontLewd: {
  59050. height: math.unit(1.8, "meters"),
  59051. weight: math.unit(95, "kg"),
  59052. name: "Front (Lewd)",
  59053. image: {
  59054. source: "./media/characters/shango/front-lewd.svg",
  59055. extra: 1925/1774,
  59056. bottom: 67/1992
  59057. }
  59058. },
  59059. backLewd: {
  59060. height: math.unit(1.8, "meters"),
  59061. weight: math.unit(95, "kg"),
  59062. name: "Back (Lewd)",
  59063. image: {
  59064. source: "./media/characters/shango/back-lewd.svg",
  59065. extra: 1915/1766,
  59066. bottom: 52/1967
  59067. }
  59068. },
  59069. maw: {
  59070. height: math.unit(1.64, "feet"),
  59071. name: "Maw",
  59072. image: {
  59073. source: "./media/characters/shango/maw.svg"
  59074. }
  59075. },
  59076. dick: {
  59077. height: math.unit(2.14, "feet"),
  59078. name: "Dick",
  59079. image: {
  59080. source: "./media/characters/shango/dick.svg"
  59081. }
  59082. },
  59083. },
  59084. [
  59085. {
  59086. name: "Incognito",
  59087. height: math.unit(1.8, "meters")
  59088. },
  59089. {
  59090. name: "Home Size",
  59091. height: math.unit(60, "meters"),
  59092. default: true
  59093. },
  59094. {
  59095. name: "Macro",
  59096. height: math.unit(450, "meters")
  59097. },
  59098. {
  59099. name: "Mega",
  59100. height: math.unit(6, "km")
  59101. },
  59102. {
  59103. name: "Mega+",
  59104. height: math.unit(35, "km")
  59105. },
  59106. {
  59107. name: "Giga",
  59108. height: math.unit(500, "km")
  59109. },
  59110. {
  59111. name: "Giga+",
  59112. height: math.unit(5000, "km")
  59113. },
  59114. {
  59115. name: "Terra",
  59116. height: math.unit(60000, "km")
  59117. },
  59118. {
  59119. name: "Terra+",
  59120. height: math.unit(400000, "km")
  59121. },
  59122. ]
  59123. ))
  59124. characterMakers.push(() => makeCharacter(
  59125. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59126. {
  59127. front: {
  59128. height: math.unit(2, "meters"),
  59129. weight: math.unit(95, "kg"),
  59130. name: "Front",
  59131. image: {
  59132. source: "./media/characters/osiris-gryphon/front.svg",
  59133. extra: 1508/1313,
  59134. bottom: 87/1595
  59135. }
  59136. },
  59137. back: {
  59138. height: math.unit(2, "meters"),
  59139. weight: math.unit(95, "kg"),
  59140. name: "Back",
  59141. image: {
  59142. source: "./media/characters/osiris-gryphon/back.svg",
  59143. extra: 1436/1309,
  59144. bottom: 64/1500
  59145. }
  59146. },
  59147. frontLewd: {
  59148. height: math.unit(2, "meters"),
  59149. weight: math.unit(95, "kg"),
  59150. name: "Front-lewd",
  59151. image: {
  59152. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59153. extra: 1508/1313,
  59154. bottom: 87/1595
  59155. }
  59156. },
  59157. wing: {
  59158. height: math.unit(6.3333, "feet"),
  59159. name: "Wing",
  59160. image: {
  59161. source: "./media/characters/osiris-gryphon/wing.svg"
  59162. }
  59163. },
  59164. },
  59165. [
  59166. {
  59167. name: "Incognito",
  59168. height: math.unit(2, "meters")
  59169. },
  59170. {
  59171. name: "Home Size",
  59172. height: math.unit(30, "meters"),
  59173. default: true
  59174. },
  59175. {
  59176. name: "Macro",
  59177. height: math.unit(100, "meters")
  59178. },
  59179. {
  59180. name: "Macro+",
  59181. height: math.unit(350, "meters")
  59182. },
  59183. {
  59184. name: "Mega",
  59185. height: math.unit(40, "km")
  59186. },
  59187. {
  59188. name: "Giga",
  59189. height: math.unit(300, "km")
  59190. },
  59191. {
  59192. name: "Giga+",
  59193. height: math.unit(2000, "km")
  59194. },
  59195. {
  59196. name: "Terra",
  59197. height: math.unit(30000, "km")
  59198. },
  59199. ]
  59200. ))
  59201. characterMakers.push(() => makeCharacter(
  59202. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59203. {
  59204. front: {
  59205. height: math.unit(2.5, "meters"),
  59206. weight: math.unit(200, "kg"),
  59207. name: "Front",
  59208. image: {
  59209. source: "./media/characters/atlas-dragon/front.svg",
  59210. extra: 745/462,
  59211. bottom: 36/781
  59212. }
  59213. },
  59214. back: {
  59215. height: math.unit(2.5, "meters"),
  59216. weight: math.unit(200, "kg"),
  59217. name: "Back",
  59218. image: {
  59219. source: "./media/characters/atlas-dragon/back.svg",
  59220. extra: 848/822,
  59221. bottom: 57/905
  59222. }
  59223. },
  59224. frontLewd: {
  59225. height: math.unit(2.5, "meters"),
  59226. weight: math.unit(200, "kg"),
  59227. name: "Front (Lewd)",
  59228. image: {
  59229. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59230. extra: 745/462,
  59231. bottom: 36/781
  59232. }
  59233. },
  59234. backLewd: {
  59235. height: math.unit(2.5, "meters"),
  59236. weight: math.unit(200, "kg"),
  59237. name: "Back (Lewd)",
  59238. image: {
  59239. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59240. extra: 848/822,
  59241. bottom: 57/905
  59242. }
  59243. },
  59244. },
  59245. [
  59246. {
  59247. name: "Incognito",
  59248. height: math.unit(2.5, "meters")
  59249. },
  59250. {
  59251. name: "Small Macro",
  59252. height: math.unit(50, "meters")
  59253. },
  59254. {
  59255. name: "Macro",
  59256. height: math.unit(350, "meters")
  59257. },
  59258. {
  59259. name: "Mega",
  59260. height: math.unit(5.5, "kilometers")
  59261. },
  59262. {
  59263. name: "Mega+",
  59264. height: math.unit(50, "km")
  59265. },
  59266. {
  59267. name: "Giga",
  59268. height: math.unit(350, "km")
  59269. },
  59270. {
  59271. name: "Giga+",
  59272. height: math.unit(2000, "km")
  59273. },
  59274. {
  59275. name: "Giga++",
  59276. height: math.unit(6500, "km")
  59277. },
  59278. {
  59279. name: "Terra",
  59280. height: math.unit(30000, "km")
  59281. },
  59282. {
  59283. name: "Terra+",
  59284. height: math.unit(250000, "km")
  59285. },
  59286. {
  59287. name: "True Size",
  59288. height: math.unit(100, "multiverses"),
  59289. default: true
  59290. },
  59291. ]
  59292. ))
  59293. characterMakers.push(() => makeCharacter(
  59294. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59295. {
  59296. front: {
  59297. height: math.unit(1.8, "m"),
  59298. weight: math.unit(120, "kg"),
  59299. name: "Front",
  59300. image: {
  59301. source: "./media/characters/chey/front.svg",
  59302. extra: 1359/1270,
  59303. bottom: 18/1377
  59304. }
  59305. },
  59306. arm: {
  59307. height: math.unit(2.05, "feet"),
  59308. name: "Arm",
  59309. image: {
  59310. source: "./media/characters/chey/arm.svg"
  59311. }
  59312. },
  59313. head: {
  59314. height: math.unit(1.89, "feet"),
  59315. name: "Head",
  59316. image: {
  59317. source: "./media/characters/chey/head.svg"
  59318. }
  59319. },
  59320. },
  59321. [
  59322. {
  59323. name: "Original Size",
  59324. height: math.unit(5, "cm")
  59325. },
  59326. {
  59327. name: "Incognito Size",
  59328. height: math.unit(2.4, "m")
  59329. },
  59330. {
  59331. name: "Home Size",
  59332. height: math.unit(200, "meters"),
  59333. default: true
  59334. },
  59335. {
  59336. name: "Mega",
  59337. height: math.unit(2, "km")
  59338. },
  59339. {
  59340. name: "Giga (Preferred Size)",
  59341. height: math.unit(2000, "km")
  59342. },
  59343. {
  59344. name: "Giga+",
  59345. height: math.unit(6000, "km")
  59346. },
  59347. {
  59348. name: "Terra",
  59349. height: math.unit(17000, "km")
  59350. },
  59351. {
  59352. name: "Terra+",
  59353. height: math.unit(75000, "km")
  59354. },
  59355. {
  59356. name: "Terra++",
  59357. height: math.unit(225000, "km")
  59358. },
  59359. ]
  59360. ))
  59361. characterMakers.push(() => makeCharacter(
  59362. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59363. {
  59364. side: {
  59365. height: math.unit(7.8, "meters"),
  59366. name: "Side",
  59367. image: {
  59368. source: "./media/characters/ragnarok/side.svg",
  59369. extra: 725/621,
  59370. bottom: 72/797
  59371. }
  59372. },
  59373. },
  59374. [
  59375. {
  59376. name: "Normal",
  59377. height: math.unit(7.8, "meters"),
  59378. default: true
  59379. },
  59380. ]
  59381. ))
  59382. characterMakers.push(() => makeCharacter(
  59383. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59384. {
  59385. hyena_front: {
  59386. height: math.unit(2.1, "meters"),
  59387. weight: math.unit(110, "kg"),
  59388. name: "Front",
  59389. image: {
  59390. source: "./media/characters/nima/hyena-front.svg",
  59391. extra: 1904/1796,
  59392. bottom: 67/1971
  59393. },
  59394. form: "hyena",
  59395. },
  59396. hyena_back: {
  59397. height: math.unit(2.1, "meters"),
  59398. weight: math.unit(110, "kg"),
  59399. name: "Back",
  59400. image: {
  59401. source: "./media/characters/nima/hyena-back.svg",
  59402. extra: 1964/1884,
  59403. bottom: 35/1999
  59404. },
  59405. form: "hyena",
  59406. },
  59407. shark_front: {
  59408. height: math.unit(1.95, "meters"),
  59409. weight: math.unit(110, "kg"),
  59410. name: "Front",
  59411. image: {
  59412. source: "./media/characters/nima/shark-front.svg",
  59413. extra: 2238/2013,
  59414. bottom: 0/223
  59415. },
  59416. form: "shark",
  59417. },
  59418. paw: {
  59419. height: math.unit(1, "feet"),
  59420. name: "Paw",
  59421. image: {
  59422. source: "./media/characters/nima/paw.svg"
  59423. }
  59424. },
  59425. circlet: {
  59426. height: math.unit(0.3, "feet"),
  59427. name: "Circlet",
  59428. image: {
  59429. source: "./media/characters/nima/circlet.svg"
  59430. }
  59431. },
  59432. necklace: {
  59433. height: math.unit(1.2, "feet"),
  59434. name: "Necklace",
  59435. image: {
  59436. source: "./media/characters/nima/necklace.svg"
  59437. }
  59438. },
  59439. bracelet: {
  59440. height: math.unit(0.51, "feet"),
  59441. name: "Bracelet",
  59442. image: {
  59443. source: "./media/characters/nima/bracelet.svg"
  59444. }
  59445. },
  59446. armband: {
  59447. height: math.unit(1.3, "feet"),
  59448. name: "Armband",
  59449. image: {
  59450. source: "./media/characters/nima/armband.svg"
  59451. }
  59452. },
  59453. },
  59454. [
  59455. {
  59456. name: "Incognito",
  59457. height: math.unit(2.1, "meters"),
  59458. allForms: true
  59459. },
  59460. {
  59461. name: "Small Macro",
  59462. height: math.unit(50, "meters"),
  59463. allForms: true
  59464. },
  59465. {
  59466. name: "Macro",
  59467. height: math.unit(200, "meters"),
  59468. allForms: true
  59469. },
  59470. {
  59471. name: "Mega",
  59472. height: math.unit(2.5, "km"),
  59473. allForms: true
  59474. },
  59475. {
  59476. name: "Mega+",
  59477. height: math.unit(30, "km"),
  59478. allForms: true
  59479. },
  59480. {
  59481. name: "Giga (Home Size)",
  59482. height: math.unit(400, "km"),
  59483. allForms: true,
  59484. default: true
  59485. },
  59486. {
  59487. name: "Giga+",
  59488. height: math.unit(2500, "km"),
  59489. allForms: true
  59490. },
  59491. {
  59492. name: "Giga++",
  59493. height: math.unit(8000, "km"),
  59494. allForms: true
  59495. },
  59496. {
  59497. name: "Terra",
  59498. height: math.unit(20000, "km"),
  59499. allForms: true
  59500. },
  59501. {
  59502. name: "Terra+",
  59503. height: math.unit(70000, "km"),
  59504. allForms: true
  59505. },
  59506. {
  59507. name: "Terra++",
  59508. height: math.unit(600000, "km"),
  59509. allForms: true
  59510. },
  59511. {
  59512. name: "Galactic",
  59513. height: math.unit(40, "galaxies"),
  59514. allForms: true
  59515. },
  59516. {
  59517. name: "Universal",
  59518. height: math.unit(40, "universes"),
  59519. allForms: true
  59520. },
  59521. ],
  59522. {
  59523. "hyena": {
  59524. name: "Hyena",
  59525. default: true
  59526. },
  59527. "shark": {
  59528. name: "Shark",
  59529. },
  59530. }
  59531. ))
  59532. characterMakers.push(() => makeCharacter(
  59533. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59534. {
  59535. anthro_front: {
  59536. height: math.unit(1.5, "meters"),
  59537. name: "Front",
  59538. image: {
  59539. source: "./media/characters/adelaide/anthro-front.svg",
  59540. extra: 860/783,
  59541. bottom: 60/920
  59542. },
  59543. form: "anthro",
  59544. default: true
  59545. },
  59546. hand: {
  59547. height: math.unit(0.65, "feet"),
  59548. name: "Hand",
  59549. image: {
  59550. source: "./media/characters/adelaide/hand.svg"
  59551. },
  59552. form: "anthro"
  59553. },
  59554. foot: {
  59555. height: math.unit(1.38 * 259 / 314, "feet"),
  59556. name: "Foot",
  59557. image: {
  59558. source: "./media/characters/adelaide/foot.svg",
  59559. extra: 259/259,
  59560. bottom: 55/314
  59561. },
  59562. form: "anthro"
  59563. },
  59564. feather: {
  59565. height: math.unit(0.85, "feet"),
  59566. name: "Feather",
  59567. image: {
  59568. source: "./media/characters/adelaide/feather.svg"
  59569. },
  59570. form: "anthro"
  59571. },
  59572. feral_side: {
  59573. height: math.unit(1, "meters"),
  59574. name: "Side",
  59575. image: {
  59576. source: "./media/characters/adelaide/feral-side.svg",
  59577. extra: 550/467,
  59578. bottom: 37/587
  59579. },
  59580. form: "feral",
  59581. default: true
  59582. },
  59583. feral_hand: {
  59584. height: math.unit(0.58, "feet"),
  59585. name: "Hand",
  59586. image: {
  59587. source: "./media/characters/adelaide/hand.svg"
  59588. },
  59589. form: "feral"
  59590. },
  59591. feral_foot: {
  59592. height: math.unit(1.2 * 259 / 314, "feet"),
  59593. name: "Foot",
  59594. image: {
  59595. source: "./media/characters/adelaide/foot.svg",
  59596. extra: 259/259,
  59597. bottom: 55/314
  59598. },
  59599. form: "feral"
  59600. },
  59601. feral_feather: {
  59602. height: math.unit(0.63, "feet"),
  59603. name: "Feather",
  59604. image: {
  59605. source: "./media/characters/adelaide/feather.svg"
  59606. },
  59607. form: "feral"
  59608. },
  59609. },
  59610. [
  59611. {
  59612. name: "Normal",
  59613. height: math.unit(1.5, "meters"),
  59614. form: "anthro",
  59615. default: true
  59616. },
  59617. {
  59618. name: "Normal",
  59619. height: math.unit(1, "meters"),
  59620. form: "feral",
  59621. default: true
  59622. },
  59623. ],
  59624. {
  59625. "anthro": {
  59626. name: "Anthro",
  59627. default: true
  59628. },
  59629. "feral": {
  59630. name: "Feral",
  59631. },
  59632. }
  59633. ))
  59634. characterMakers.push(() => makeCharacter(
  59635. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59636. {
  59637. front: {
  59638. height: math.unit(2.5, "meters"),
  59639. name: "Front",
  59640. image: {
  59641. source: "./media/characters/goa/front.svg",
  59642. extra: 1109/1013,
  59643. bottom: 150/1259
  59644. }
  59645. },
  59646. },
  59647. [
  59648. {
  59649. name: "Normal",
  59650. height: math.unit(2.5, "meters"),
  59651. default: true
  59652. },
  59653. ]
  59654. ))
  59655. characterMakers.push(() => makeCharacter(
  59656. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59657. {
  59658. front: {
  59659. height: math.unit(2, "meters"),
  59660. weight: math.unit(100, "kg"),
  59661. name: "Front",
  59662. image: {
  59663. source: "./media/characters/kiki-weavile/front.svg",
  59664. extra: 357/332,
  59665. bottom: 60/417
  59666. }
  59667. },
  59668. },
  59669. [
  59670. {
  59671. name: "Normal",
  59672. height: math.unit(2, "meters"),
  59673. default: true
  59674. },
  59675. ]
  59676. ))
  59677. characterMakers.push(() => makeCharacter(
  59678. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59679. {
  59680. side: {
  59681. height: math.unit(1.6, "meters"),
  59682. name: "Side",
  59683. image: {
  59684. source: "./media/characters/liza/side.svg",
  59685. extra: 943/915,
  59686. bottom: 72/1015
  59687. }
  59688. },
  59689. },
  59690. [
  59691. {
  59692. name: "Normal",
  59693. height: math.unit(1.6, "meters"),
  59694. default: true
  59695. },
  59696. ]
  59697. ))
  59698. characterMakers.push(() => makeCharacter(
  59699. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59700. {
  59701. side: {
  59702. height: math.unit(2.5, "meters"),
  59703. preyCapacity: math.unit(1, "people"),
  59704. name: "Side",
  59705. image: {
  59706. source: "./media/characters/persephone-sweetbreath/side.svg",
  59707. extra: 796/700,
  59708. bottom: 44/840
  59709. }
  59710. },
  59711. sideVore: {
  59712. height: math.unit(2.5, "meters"),
  59713. preyCapacity: math.unit(1, "people"),
  59714. name: "Side (Full)",
  59715. image: {
  59716. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59717. extra: 796/700,
  59718. bottom: 44/840
  59719. }
  59720. },
  59721. },
  59722. [
  59723. {
  59724. name: "Normal",
  59725. height: math.unit(2.5, "meters"),
  59726. default: true
  59727. },
  59728. ]
  59729. ))
  59730. characterMakers.push(() => makeCharacter(
  59731. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59732. {
  59733. front: {
  59734. height: math.unit(32, "meters"),
  59735. name: "Front",
  59736. image: {
  59737. source: "./media/characters/pierce/front.svg",
  59738. extra: 1695/1475,
  59739. bottom: 185/1880
  59740. }
  59741. },
  59742. side: {
  59743. height: math.unit(32, "meters"),
  59744. name: "Side",
  59745. image: {
  59746. source: "./media/characters/pierce/side.svg",
  59747. extra: 974/859,
  59748. bottom: 43/1017
  59749. }
  59750. },
  59751. frontWingless: {
  59752. height: math.unit(32, "meters"),
  59753. name: "Front (Wingless)",
  59754. image: {
  59755. source: "./media/characters/pierce/front-wingless.svg",
  59756. extra: 1695/1475,
  59757. bottom: 185/1880
  59758. }
  59759. },
  59760. sideWingless: {
  59761. height: math.unit(32, "meters"),
  59762. name: "Side (Wingless)",
  59763. image: {
  59764. source: "./media/characters/pierce/side-wingless.svg",
  59765. extra: 974/859,
  59766. bottom: 43/1017
  59767. }
  59768. },
  59769. maw: {
  59770. height: math.unit(19.3, "meters"),
  59771. name: "Maw",
  59772. image: {
  59773. source: "./media/characters/pierce/maw.svg"
  59774. }
  59775. },
  59776. },
  59777. [
  59778. {
  59779. name: "Small",
  59780. height: math.unit(8.5, "meters")
  59781. },
  59782. {
  59783. name: "Normal",
  59784. height: math.unit(32, "meters"),
  59785. default: true
  59786. },
  59787. ]
  59788. ))
  59789. characterMakers.push(() => makeCharacter(
  59790. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59791. {
  59792. front: {
  59793. height: math.unit(2.3, "meters"),
  59794. weight: math.unit(165, "kg"),
  59795. name: "Front",
  59796. image: {
  59797. source: "./media/characters/shira/front.svg",
  59798. extra: 924/919,
  59799. bottom: 17/941
  59800. },
  59801. form: "cobra",
  59802. default: true
  59803. },
  59804. back: {
  59805. height: math.unit(2.3, "meters"),
  59806. weight: math.unit(165, "kg"),
  59807. name: "Back",
  59808. image: {
  59809. source: "./media/characters/shira/back.svg",
  59810. extra: 928/922,
  59811. bottom: 18/946
  59812. },
  59813. form: "cobra"
  59814. },
  59815. frontLewd: {
  59816. height: math.unit(2.3, "meters"),
  59817. weight: math.unit(165, "kg"),
  59818. name: "Front (Lewd)",
  59819. image: {
  59820. source: "./media/characters/shira/front-lewd.svg",
  59821. extra: 924/919,
  59822. bottom: 17/941
  59823. },
  59824. form: "cobra"
  59825. },
  59826. backLewd: {
  59827. height: math.unit(2.3, "meters"),
  59828. weight: math.unit(165, "kg"),
  59829. name: "Back (Lewd)",
  59830. image: {
  59831. source: "./media/characters/shira/back-lewd.svg",
  59832. extra: 928/922,
  59833. bottom: 18/946
  59834. },
  59835. form: "cobra"
  59836. },
  59837. maw: {
  59838. height: math.unit(1.14, "feet"),
  59839. name: "Maw",
  59840. image: {
  59841. source: "./media/characters/shira/maw.svg"
  59842. },
  59843. form: "cobra"
  59844. },
  59845. magma_front: {
  59846. height: math.unit(2.3, "meters"),
  59847. weight: math.unit(165, "kg"),
  59848. name: "Front",
  59849. image: {
  59850. source: "./media/characters/shira/magma-front.svg",
  59851. extra: 1870/1693,
  59852. bottom: 24/1894
  59853. },
  59854. form: "magma",
  59855. },
  59856. magma_back: {
  59857. height: math.unit(2.3, "meters"),
  59858. weight: math.unit(165, "kg"),
  59859. name: "Back",
  59860. image: {
  59861. source: "./media/characters/shira/magma-back.svg",
  59862. extra: 1918/1756,
  59863. bottom: 46/1964
  59864. },
  59865. form: "magma",
  59866. },
  59867. },
  59868. [
  59869. {
  59870. name: "Incognito",
  59871. height: math.unit(2.3, "meters"),
  59872. allForms: true
  59873. },
  59874. {
  59875. name: "Home Size",
  59876. height: math.unit(150, "meters"),
  59877. default: true,
  59878. allForms: true
  59879. },
  59880. {
  59881. name: "Macro",
  59882. height: math.unit(2, "km"),
  59883. allForms: true
  59884. },
  59885. {
  59886. name: "Mega",
  59887. height: math.unit(30, "km"),
  59888. allForms: true
  59889. },
  59890. {
  59891. name: "Giga",
  59892. height: math.unit(450, "km"),
  59893. allForms: true
  59894. },
  59895. {
  59896. name: "Giga+",
  59897. height: math.unit(3000, "km"),
  59898. allForms: true
  59899. },
  59900. {
  59901. name: "Giga++",
  59902. height: math.unit(6000, "km"),
  59903. allForms: true
  59904. },
  59905. {
  59906. name: "Terra",
  59907. height: math.unit(80000, "km"),
  59908. allForms: true
  59909. },
  59910. {
  59911. name: "Terra+",
  59912. height: math.unit(350000, "km"),
  59913. allForms: true
  59914. },
  59915. {
  59916. name: "Solar",
  59917. height: math.unit(1e6, "km"),
  59918. allForms: true
  59919. },
  59920. ],
  59921. {
  59922. "cobra": {
  59923. name: "Cobra",
  59924. default: true
  59925. },
  59926. "magma": {
  59927. name: "Magma Dragon",
  59928. },
  59929. }
  59930. ))
  59931. characterMakers.push(() => makeCharacter(
  59932. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59933. {
  59934. front: {
  59935. height: math.unit(2, "meters"),
  59936. weight: math.unit(160, "kg"),
  59937. name: "Front",
  59938. image: {
  59939. source: "./media/characters/daxerios/front.svg",
  59940. extra: 1334/1277,
  59941. bottom: 45/1379
  59942. }
  59943. },
  59944. frontLewd: {
  59945. height: math.unit(2, "meters"),
  59946. weight: math.unit(160, "kg"),
  59947. name: "Front (Lewd)",
  59948. image: {
  59949. source: "./media/characters/daxerios/front-lewd.svg",
  59950. extra: 1334/1277,
  59951. bottom: 45/1379
  59952. }
  59953. },
  59954. dick: {
  59955. height: math.unit(2.35, "feet"),
  59956. name: "Dick",
  59957. image: {
  59958. source: "./media/characters/daxerios/dick.svg"
  59959. }
  59960. },
  59961. },
  59962. [
  59963. {
  59964. name: "\"Small\"",
  59965. height: math.unit(5, "meters")
  59966. },
  59967. {
  59968. name: "Original Size",
  59969. height: math.unit(500, "meters"),
  59970. default: true
  59971. },
  59972. {
  59973. name: "Mega",
  59974. height: math.unit(2, "km")
  59975. },
  59976. {
  59977. name: "Mega+",
  59978. height: math.unit(35, "km")
  59979. },
  59980. {
  59981. name: "Giga",
  59982. height: math.unit(250, "km")
  59983. },
  59984. {
  59985. name: "Giga+",
  59986. height: math.unit(3000, "km")
  59987. },
  59988. {
  59989. name: "Terra",
  59990. height: math.unit(25000, "km")
  59991. },
  59992. {
  59993. name: "Terra+",
  59994. height: math.unit(300000, "km")
  59995. },
  59996. {
  59997. name: "Solar",
  59998. height: math.unit(1e6, "km")
  59999. },
  60000. ]
  60001. ))
  60002. characterMakers.push(() => makeCharacter(
  60003. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60004. {
  60005. front: {
  60006. height: math.unit(8 + 4/12, "feet"),
  60007. weight: math.unit(464, "lb"),
  60008. name: "Front",
  60009. image: {
  60010. source: "./media/characters/caveat/front.svg",
  60011. extra: 1861/1678,
  60012. bottom: 40/1901
  60013. }
  60014. },
  60015. },
  60016. [
  60017. {
  60018. name: "Normal",
  60019. height: math.unit(8 + 4/12, "feet"),
  60020. default: true
  60021. },
  60022. ]
  60023. ))
  60024. characterMakers.push(() => makeCharacter(
  60025. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60026. {
  60027. front: {
  60028. height: math.unit(12, "feet"),
  60029. weight: math.unit(1800, "lb"),
  60030. name: "Front",
  60031. image: {
  60032. source: "./media/characters/centbair/front.svg",
  60033. extra: 781/663,
  60034. bottom: 25/806
  60035. }
  60036. },
  60037. frontNsfw: {
  60038. height: math.unit(12, "feet"),
  60039. weight: math.unit(1800, "lb"),
  60040. name: "Front (NSFW)",
  60041. image: {
  60042. source: "./media/characters/centbair/front-nsfw.svg",
  60043. extra: 781/663,
  60044. bottom: 25/806
  60045. }
  60046. },
  60047. back: {
  60048. height: math.unit(12, "feet"),
  60049. weight: math.unit(1800, "lb"),
  60050. name: "Back",
  60051. image: {
  60052. source: "./media/characters/centbair/back.svg",
  60053. extra: 808/761,
  60054. bottom: 19/827
  60055. }
  60056. },
  60057. dick: {
  60058. height: math.unit(6.5, "feet"),
  60059. name: "Dick",
  60060. image: {
  60061. source: "./media/characters/centbair/dick.svg"
  60062. }
  60063. },
  60064. slit: {
  60065. height: math.unit(3.25, "feet"),
  60066. name: "Slit",
  60067. image: {
  60068. source: "./media/characters/centbair/slit.svg"
  60069. }
  60070. },
  60071. },
  60072. [
  60073. {
  60074. name: "Normal",
  60075. height: math.unit(12, "feet"),
  60076. default: true
  60077. },
  60078. ]
  60079. ))
  60080. characterMakers.push(() => makeCharacter(
  60081. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60082. {
  60083. front: {
  60084. height: math.unit(5 + 7/12, "feet"),
  60085. name: "Front",
  60086. image: {
  60087. source: "./media/characters/andy/front.svg",
  60088. extra: 634/588,
  60089. bottom: 36/670
  60090. },
  60091. extraAttributes: {
  60092. "pawLength": {
  60093. name: "Paw Length",
  60094. power: 1,
  60095. type: "length",
  60096. base: math.unit(1, "feet")
  60097. },
  60098. }
  60099. },
  60100. side: {
  60101. height: math.unit(5 + 7/12, "feet"),
  60102. name: "Side",
  60103. image: {
  60104. source: "./media/characters/andy/side.svg",
  60105. extra: 641/596,
  60106. bottom: 34/675
  60107. },
  60108. extraAttributes: {
  60109. "pawLength": {
  60110. name: "Paw Length",
  60111. power: 1,
  60112. type: "length",
  60113. base: math.unit(1, "feet")
  60114. },
  60115. }
  60116. },
  60117. back: {
  60118. height: math.unit(5 + 7/12, "feet"),
  60119. name: "Back",
  60120. image: {
  60121. source: "./media/characters/andy/back.svg",
  60122. extra: 618/583,
  60123. bottom: 39/657
  60124. },
  60125. extraAttributes: {
  60126. "pawLength": {
  60127. name: "Paw Length",
  60128. power: 1,
  60129. type: "length",
  60130. base: math.unit(1, "feet")
  60131. },
  60132. }
  60133. },
  60134. paw: {
  60135. height: math.unit(1.13, "feet"),
  60136. name: "Paw",
  60137. image: {
  60138. source: "./media/characters/andy/paw.svg"
  60139. }
  60140. },
  60141. },
  60142. [
  60143. {
  60144. name: "Micro",
  60145. height: math.unit(4, "inches")
  60146. },
  60147. {
  60148. name: "Normal",
  60149. height: math.unit(5 + 7/12, "feet"),
  60150. default: true
  60151. },
  60152. {
  60153. name: "Macro",
  60154. height: math.unit(390.42, "feet")
  60155. },
  60156. ]
  60157. ))
  60158. characterMakers.push(() => makeCharacter(
  60159. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60160. {
  60161. front: {
  60162. height: math.unit(7, "feet"),
  60163. weight: math.unit(250, "lb"),
  60164. name: "Front",
  60165. image: {
  60166. source: "./media/characters/vix-titan/front.svg",
  60167. extra: 460/428,
  60168. bottom: 15/475
  60169. },
  60170. extraAttributes: {
  60171. "pawWidth": {
  60172. name: "Paw Width",
  60173. power: 1,
  60174. type: "length",
  60175. base: math.unit(0.75, "feet")
  60176. },
  60177. }
  60178. },
  60179. },
  60180. [
  60181. {
  60182. name: "Normal",
  60183. height: math.unit(7, "feet"),
  60184. default: true
  60185. },
  60186. {
  60187. name: "Giant",
  60188. height: math.unit(1500, "feet")
  60189. },
  60190. {
  60191. name: "Mega",
  60192. height: math.unit(10, "miles")
  60193. },
  60194. {
  60195. name: "Giga",
  60196. height: math.unit(150, "miles")
  60197. },
  60198. {
  60199. name: "Tera",
  60200. height: math.unit(144000, "miles")
  60201. },
  60202. ]
  60203. ))
  60204. characterMakers.push(() => makeCharacter(
  60205. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60206. {
  60207. front: {
  60208. height: math.unit(6 + 2/12, "feet"),
  60209. name: "Front",
  60210. image: {
  60211. source: "./media/characters/reiku/front.svg",
  60212. extra: 1910/1757,
  60213. bottom: 103/2013
  60214. },
  60215. extraAttributes: {
  60216. "thighThickness": {
  60217. name: "Thigh Thickness",
  60218. power: 1,
  60219. type: "length",
  60220. base: math.unit(1.12, "feet")
  60221. },
  60222. "assThickness": {
  60223. name: "Ass Thickness",
  60224. power: 1,
  60225. type: "length",
  60226. base: math.unit(1.12*2, "feet")
  60227. },
  60228. }
  60229. },
  60230. side: {
  60231. height: math.unit(6 + 2/12, "feet"),
  60232. name: "Side",
  60233. image: {
  60234. source: "./media/characters/reiku/side.svg",
  60235. extra: 1846/1748,
  60236. bottom: 99/1945
  60237. },
  60238. extraAttributes: {
  60239. "thighThickness": {
  60240. name: "Thigh Thickness",
  60241. power: 1,
  60242. type: "length",
  60243. base: math.unit(1.12, "feet")
  60244. },
  60245. "assThickness": {
  60246. name: "Ass Thickness",
  60247. power: 1,
  60248. type: "length",
  60249. base: math.unit(1.12*2, "feet")
  60250. },
  60251. }
  60252. },
  60253. back: {
  60254. height: math.unit(6 + 2/12, "feet"),
  60255. name: "Back",
  60256. image: {
  60257. source: "./media/characters/reiku/back.svg",
  60258. extra: 1941/1786,
  60259. bottom: 34/1975
  60260. },
  60261. extraAttributes: {
  60262. "thighThickness": {
  60263. name: "Thigh Thickness",
  60264. power: 1,
  60265. type: "length",
  60266. base: math.unit(1.12, "feet")
  60267. },
  60268. "assThickness": {
  60269. name: "Ass Thickness",
  60270. power: 1,
  60271. type: "length",
  60272. base: math.unit(1.12*2, "feet")
  60273. },
  60274. }
  60275. },
  60276. head: {
  60277. height: math.unit(1.8, "feet"),
  60278. name: "Head",
  60279. image: {
  60280. source: "./media/characters/reiku/head.svg"
  60281. }
  60282. },
  60283. tailTop: {
  60284. height: math.unit(8.4, "feet"),
  60285. name: "Tail (Top)",
  60286. image: {
  60287. source: "./media/characters/reiku/tail-top.svg"
  60288. }
  60289. },
  60290. tailBottom: {
  60291. height: math.unit(8.4, "feet"),
  60292. name: "Tail (Bottom)",
  60293. image: {
  60294. source: "./media/characters/reiku/tail-bottom.svg"
  60295. }
  60296. },
  60297. foot: {
  60298. height: math.unit(2.6, "feet"),
  60299. name: "Foot",
  60300. image: {
  60301. source: "./media/characters/reiku/foot.svg"
  60302. }
  60303. },
  60304. footCurled: {
  60305. height: math.unit(2.3, "feet"),
  60306. name: "Foot (Curled)",
  60307. image: {
  60308. source: "./media/characters/reiku/foot-curled.svg"
  60309. }
  60310. },
  60311. footSide: {
  60312. height: math.unit(1.26, "feet"),
  60313. name: "Foot (Side)",
  60314. image: {
  60315. source: "./media/characters/reiku/foot-side.svg"
  60316. }
  60317. },
  60318. },
  60319. [
  60320. {
  60321. name: "Normal",
  60322. height: math.unit(6 + 2/12, "feet"),
  60323. default: true
  60324. },
  60325. ]
  60326. ))
  60327. characterMakers.push(() => makeCharacter(
  60328. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60329. {
  60330. front: {
  60331. height: math.unit(7, "feet"),
  60332. weight: math.unit(500, "kg"),
  60333. name: "Front",
  60334. image: {
  60335. source: "./media/characters/cialda/front.svg",
  60336. extra: 912/745,
  60337. bottom: 55/967
  60338. }
  60339. },
  60340. },
  60341. [
  60342. {
  60343. name: "Normal",
  60344. height: math.unit(7, "feet"),
  60345. default: true
  60346. },
  60347. ]
  60348. ))
  60349. characterMakers.push(() => makeCharacter(
  60350. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60351. {
  60352. side: {
  60353. height: math.unit(6, "feet"),
  60354. weight: math.unit(600, "lb"),
  60355. preyCapacity: math.unit(25, "liters"),
  60356. name: "Side",
  60357. image: {
  60358. source: "./media/characters/darkkin/side.svg",
  60359. extra: 1597/1447,
  60360. bottom: 101/1698
  60361. }
  60362. },
  60363. },
  60364. [
  60365. {
  60366. name: "Canon Height",
  60367. height: math.unit(568, "feet"),
  60368. default: true
  60369. },
  60370. ]
  60371. ))
  60372. characterMakers.push(() => makeCharacter(
  60373. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60374. {
  60375. front: {
  60376. height: math.unit(6, "feet"),
  60377. weight: math.unit(1500, "lb"),
  60378. preyCapacity: math.unit(3, "people"),
  60379. name: "Front",
  60380. image: {
  60381. source: "./media/characters/livnia/front.svg",
  60382. extra: 934/932,
  60383. bottom: 83/1017
  60384. }
  60385. },
  60386. back: {
  60387. height: math.unit(6, "feet"),
  60388. weight: math.unit(1500, "lb"),
  60389. preyCapacity: math.unit(3, "people"),
  60390. name: "Back",
  60391. image: {
  60392. source: "./media/characters/livnia/back.svg",
  60393. extra: 916/915,
  60394. bottom: 58/974
  60395. }
  60396. },
  60397. head: {
  60398. height: math.unit(1.53, "feet"),
  60399. name: "Head",
  60400. image: {
  60401. source: "./media/characters/livnia/head.svg"
  60402. }
  60403. },
  60404. maw: {
  60405. height: math.unit(0.78, "feet"),
  60406. name: "Maw",
  60407. image: {
  60408. source: "./media/characters/livnia/maw.svg"
  60409. }
  60410. },
  60411. genitals: {
  60412. height: math.unit(0.35, "feet"),
  60413. name: "Genitals",
  60414. image: {
  60415. source: "./media/characters/livnia/genitals.svg"
  60416. }
  60417. },
  60418. },
  60419. [
  60420. {
  60421. name: "Normal",
  60422. height: math.unit(1000, "feet"),
  60423. default: true
  60424. },
  60425. ]
  60426. ))
  60427. characterMakers.push(() => makeCharacter(
  60428. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60429. {
  60430. front: {
  60431. height: math.unit(4, "feet"),
  60432. weight: math.unit(73, "lb"),
  60433. name: "Front",
  60434. image: {
  60435. source: "./media/characters/hayaku/front.svg",
  60436. extra: 1011/888,
  60437. bottom: 33/1044
  60438. }
  60439. },
  60440. back: {
  60441. height: math.unit(4, "feet"),
  60442. weight: math.unit(73, "lb"),
  60443. name: "Back",
  60444. image: {
  60445. source: "./media/characters/hayaku/back.svg",
  60446. extra: 1040/930,
  60447. bottom: 20/1060
  60448. }
  60449. },
  60450. },
  60451. [
  60452. {
  60453. name: "Normal",
  60454. height: math.unit(4, "feet"),
  60455. default: true
  60456. },
  60457. ]
  60458. ))
  60459. characterMakers.push(() => makeCharacter(
  60460. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60461. {
  60462. front: {
  60463. height: math.unit(6 + 7/12, "feet"),
  60464. weight: math.unit(300, "lb"),
  60465. name: "Front",
  60466. image: {
  60467. source: "./media/characters/athena-bryzant/front.svg",
  60468. extra: 870/835,
  60469. bottom: 33/903
  60470. }
  60471. },
  60472. back: {
  60473. height: math.unit(6 + 7/12, "feet"),
  60474. weight: math.unit(300, "lb"),
  60475. name: "Back",
  60476. image: {
  60477. source: "./media/characters/athena-bryzant/back.svg",
  60478. extra: 858/823,
  60479. bottom: 30/888
  60480. }
  60481. },
  60482. head: {
  60483. height: math.unit(2.38, "feet"),
  60484. name: "Head",
  60485. image: {
  60486. source: "./media/characters/athena-bryzant/head.svg"
  60487. }
  60488. },
  60489. wings: {
  60490. height: math.unit(2.85, "feet"),
  60491. name: "Wings",
  60492. image: {
  60493. source: "./media/characters/athena-bryzant/wings.svg"
  60494. }
  60495. },
  60496. },
  60497. [
  60498. {
  60499. name: "Normal",
  60500. height: math.unit(6 + 7/12, "feet"),
  60501. default: true
  60502. },
  60503. {
  60504. name: "Big",
  60505. height: math.unit(8, "feet")
  60506. },
  60507. {
  60508. name: "Very Big",
  60509. height: math.unit(11, "feet")
  60510. },
  60511. ]
  60512. ))
  60513. characterMakers.push(() => makeCharacter(
  60514. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60515. {
  60516. side: {
  60517. height: math.unit(3, "meters"),
  60518. weight: math.unit(7500, "kg"),
  60519. preyCapacity: math.unit(1e12, "people"),
  60520. name: "Side",
  60521. image: {
  60522. source: "./media/characters/zel-kesh/side.svg",
  60523. extra: 910/407,
  60524. bottom: 147/1057
  60525. }
  60526. },
  60527. },
  60528. [
  60529. {
  60530. name: "Normal",
  60531. height: math.unit(3, "meters"),
  60532. default: true
  60533. },
  60534. ]
  60535. ))
  60536. characterMakers.push(() => makeCharacter(
  60537. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60538. {
  60539. front: {
  60540. height: math.unit(2, "meters"),
  60541. weight: math.unit(95, "kg"),
  60542. name: "Front",
  60543. image: {
  60544. source: "./media/characters/kane-fox/front.svg",
  60545. extra: 945/888,
  60546. bottom: 27/972
  60547. }
  60548. },
  60549. back: {
  60550. height: math.unit(2, "meters"),
  60551. weight: math.unit(95, "kg"),
  60552. name: "Back",
  60553. image: {
  60554. source: "./media/characters/kane-fox/back.svg",
  60555. extra: 959/914,
  60556. bottom: 15/974
  60557. }
  60558. },
  60559. frontLewd: {
  60560. height: math.unit(2, "meters"),
  60561. weight: math.unit(95, "kg"),
  60562. name: "Front (Lewd)",
  60563. image: {
  60564. source: "./media/characters/kane-fox/front-lewd.svg",
  60565. extra: 945/888,
  60566. bottom: 27/972
  60567. }
  60568. },
  60569. },
  60570. [
  60571. {
  60572. name: "Home Size",
  60573. height: math.unit(2, "meters"),
  60574. default: true
  60575. },
  60576. {
  60577. name: "Macro",
  60578. height: math.unit(200, "meters")
  60579. },
  60580. {
  60581. name: "Small Mega",
  60582. height: math.unit(3, "km")
  60583. },
  60584. {
  60585. name: "Mega",
  60586. height: math.unit(50, "km")
  60587. },
  60588. {
  60589. name: "Giga",
  60590. height: math.unit(200, "km")
  60591. },
  60592. {
  60593. name: "Giga+",
  60594. height: math.unit(2500, "km")
  60595. },
  60596. {
  60597. name: "Terra",
  60598. height: math.unit(70000, "km")
  60599. },
  60600. {
  60601. name: "Terra+",
  60602. height: math.unit(150000, "km")
  60603. },
  60604. {
  60605. name: "Terra++",
  60606. height: math.unit(400000, "km")
  60607. },
  60608. ]
  60609. ))
  60610. characterMakers.push(() => makeCharacter(
  60611. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60612. {
  60613. otter_front: {
  60614. height: math.unit(1.8, "meters"),
  60615. weight: math.unit(90, "kg"),
  60616. name: "Front",
  60617. image: {
  60618. source: "./media/characters/ayranus/otter-front.svg",
  60619. extra: 468/452,
  60620. bottom: 43/511
  60621. },
  60622. form: "otter",
  60623. },
  60624. otter_frontLewd: {
  60625. height: math.unit(1.8, "meters"),
  60626. weight: math.unit(90, "kg"),
  60627. name: "Front (Lewd)",
  60628. image: {
  60629. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60630. extra: 468/452,
  60631. bottom: 43/511
  60632. },
  60633. form: "otter",
  60634. },
  60635. lionbat_front: {
  60636. height: math.unit(1.8, "meters"),
  60637. weight: math.unit(90, "kg"),
  60638. name: "Front (Lewd)",
  60639. image: {
  60640. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60641. extra: 797/740,
  60642. bottom: 78/875
  60643. },
  60644. form: "lionbat",
  60645. },
  60646. paw: {
  60647. height: math.unit(1.5, "feet"),
  60648. name: "Paw",
  60649. image: {
  60650. source: "./media/characters/ayranus/paw.svg"
  60651. },
  60652. },
  60653. },
  60654. [
  60655. {
  60656. name: "Incognito",
  60657. height: math.unit(1.8, "meters"),
  60658. allForms: true
  60659. },
  60660. {
  60661. name: "Macro",
  60662. height: math.unit(60, "meters"),
  60663. allForms: true
  60664. },
  60665. {
  60666. name: "Macro+",
  60667. height: math.unit(200, "meters"),
  60668. allForms: true
  60669. },
  60670. {
  60671. name: "Mega",
  60672. height: math.unit(35, "km"),
  60673. allForms: true
  60674. },
  60675. {
  60676. name: "Giga",
  60677. height: math.unit(220, "km"),
  60678. allForms: true
  60679. },
  60680. {
  60681. name: "Giga+",
  60682. height: math.unit(1500, "km"),
  60683. allForms: true
  60684. },
  60685. {
  60686. name: "Terra",
  60687. height: math.unit(13000, "km"),
  60688. allForms: true
  60689. },
  60690. {
  60691. name: "Terra+",
  60692. height: math.unit(500000, "km"),
  60693. allForms: true
  60694. },
  60695. {
  60696. name: "Galactic",
  60697. height: math.unit(486080, "parsecs"),
  60698. default: true,
  60699. allForms: true
  60700. },
  60701. ],
  60702. {
  60703. "otter": {
  60704. name: "Otter",
  60705. default: true
  60706. },
  60707. "lionbat": {
  60708. name: "Lionbat",
  60709. },
  60710. }
  60711. ))
  60712. characterMakers.push(() => makeCharacter(
  60713. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60714. {
  60715. front: {
  60716. height: math.unit(7 + 4/12, "feet"),
  60717. weight: math.unit(400, "lb"),
  60718. name: "Front",
  60719. image: {
  60720. source: "./media/characters/proxy/front.svg",
  60721. extra: 1605/1542,
  60722. bottom: 55/1660
  60723. }
  60724. },
  60725. side: {
  60726. height: math.unit(7 + 4/12, "feet"),
  60727. weight: math.unit(400, "lb"),
  60728. name: "Side",
  60729. image: {
  60730. source: "./media/characters/proxy/side.svg",
  60731. extra: 794/759,
  60732. bottom: 6/800
  60733. }
  60734. },
  60735. hand: {
  60736. height: math.unit(1.54, "feet"),
  60737. name: "Hand",
  60738. image: {
  60739. source: "./media/characters/proxy/hand.svg"
  60740. }
  60741. },
  60742. paw: {
  60743. height: math.unit(1.53, "feet"),
  60744. name: "Paw",
  60745. image: {
  60746. source: "./media/characters/proxy/paw.svg"
  60747. }
  60748. },
  60749. maw: {
  60750. height: math.unit(1.9, "feet"),
  60751. name: "Maw",
  60752. image: {
  60753. source: "./media/characters/proxy/maw.svg"
  60754. }
  60755. },
  60756. },
  60757. [
  60758. {
  60759. name: "Normal",
  60760. height: math.unit(7 + 4/12, "feet"),
  60761. default: true
  60762. },
  60763. ]
  60764. ))
  60765. characterMakers.push(() => makeCharacter(
  60766. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60767. {
  60768. front: {
  60769. height: math.unit(4, "meters"),
  60770. name: "Front",
  60771. image: {
  60772. source: "./media/characters/crocozilla/front.svg",
  60773. extra: 1790/1742,
  60774. bottom: 78/1868
  60775. }
  60776. },
  60777. },
  60778. [
  60779. {
  60780. name: "Normal",
  60781. height: math.unit(4, "meters"),
  60782. default: true
  60783. },
  60784. ]
  60785. ))
  60786. characterMakers.push(() => makeCharacter(
  60787. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60788. {
  60789. front: {
  60790. height: math.unit(1.8, "meters"),
  60791. weight: math.unit(120, "kg"),
  60792. name: "Front",
  60793. image: {
  60794. source: "./media/characters/kurz/front.svg",
  60795. extra: 1960/1824,
  60796. bottom: 41/2001
  60797. }
  60798. },
  60799. back: {
  60800. height: math.unit(1.8, "meters"),
  60801. weight: math.unit(120, "kg"),
  60802. name: "Back",
  60803. image: {
  60804. source: "./media/characters/kurz/back.svg",
  60805. extra: 1906/1787,
  60806. bottom: 60/1966
  60807. }
  60808. },
  60809. frontLewd: {
  60810. height: math.unit(1.8, "meters"),
  60811. weight: math.unit(120, "kg"),
  60812. name: "Front (Lewd)",
  60813. image: {
  60814. source: "./media/characters/kurz/front-lewd.svg",
  60815. extra: 1960/1824,
  60816. bottom: 41/2001
  60817. }
  60818. },
  60819. maw: {
  60820. height: math.unit(0.69, "meters"),
  60821. name: "Maw",
  60822. image: {
  60823. source: "./media/characters/kurz/maw.svg"
  60824. }
  60825. },
  60826. },
  60827. [
  60828. {
  60829. name: "Original Size",
  60830. height: math.unit(1.8, "meters")
  60831. },
  60832. {
  60833. name: "Incognito Size",
  60834. height: math.unit(2.4, "meters"),
  60835. default: true
  60836. },
  60837. {
  60838. name: "Macro",
  60839. height: math.unit(30, "meters")
  60840. },
  60841. {
  60842. name: "Macro+",
  60843. height: math.unit(250, "meters")
  60844. },
  60845. {
  60846. name: "Mega",
  60847. height: math.unit(2, "km")
  60848. },
  60849. {
  60850. name: "Mega+",
  60851. height: math.unit(35, "km")
  60852. },
  60853. {
  60854. name: "Mega++",
  60855. height: math.unit(75, "km")
  60856. },
  60857. {
  60858. name: "Giga",
  60859. height: math.unit(250, "km")
  60860. },
  60861. {
  60862. name: "Terra",
  60863. height: math.unit(15000, "km")
  60864. },
  60865. {
  60866. name: "Terra+",
  60867. height: math.unit(2250000, "km")
  60868. },
  60869. ]
  60870. ))
  60871. characterMakers.push(() => makeCharacter(
  60872. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60873. {
  60874. front: {
  60875. height: math.unit(16 + 3/12, "feet"),
  60876. weight: math.unit(3575, "lb"),
  60877. name: "Front",
  60878. image: {
  60879. source: "./media/characters/nikita/front.svg",
  60880. extra: 1064/955,
  60881. bottom: 47/1111
  60882. }
  60883. },
  60884. },
  60885. [
  60886. {
  60887. name: "Normal",
  60888. height: math.unit(16 + 3/12, "feet"),
  60889. default: true
  60890. },
  60891. {
  60892. name: "Big",
  60893. height: math.unit(21, "feet")
  60894. },
  60895. {
  60896. name: "Biggest",
  60897. height: math.unit(50, "feet")
  60898. },
  60899. ]
  60900. ))
  60901. characterMakers.push(() => makeCharacter(
  60902. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60903. {
  60904. front: {
  60905. height: math.unit(1.92, "m"),
  60906. weight: math.unit(76, "kg"),
  60907. name: "Front",
  60908. image: {
  60909. source: "./media/characters/kyara/front.svg",
  60910. extra: 1550/1438,
  60911. bottom: 139/1689
  60912. }
  60913. },
  60914. back: {
  60915. height: math.unit(1.92, "m"),
  60916. weight: math.unit(76, "kg"),
  60917. name: "Back",
  60918. image: {
  60919. source: "./media/characters/kyara/back.svg",
  60920. extra: 1523/1427,
  60921. bottom: 83/1606
  60922. }
  60923. },
  60924. head: {
  60925. height: math.unit(1.22, "feet"),
  60926. name: "Head",
  60927. image: {
  60928. source: "./media/characters/kyara/head.svg"
  60929. }
  60930. },
  60931. maw: {
  60932. height: math.unit(0.73, "feet"),
  60933. name: "Maw",
  60934. image: {
  60935. source: "./media/characters/kyara/maw.svg"
  60936. }
  60937. },
  60938. paws: {
  60939. height: math.unit(0.95, "feet"),
  60940. name: "Paws",
  60941. image: {
  60942. source: "./media/characters/kyara/paws.svg"
  60943. }
  60944. },
  60945. },
  60946. [
  60947. {
  60948. name: "Normal",
  60949. height: math.unit(1.92, "meters"),
  60950. default: true
  60951. },
  60952. {
  60953. name: "Mini Macro",
  60954. height: math.unit(192, "meters")
  60955. },
  60956. {
  60957. name: "Macro",
  60958. height: math.unit(480, "meters")
  60959. },
  60960. {
  60961. name: "Mega Macro",
  60962. height: math.unit(1440, "meters")
  60963. },
  60964. ]
  60965. ))
  60966. characterMakers.push(() => makeCharacter(
  60967. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60968. {
  60969. front: {
  60970. height: math.unit(6, "feet"),
  60971. weight: math.unit(160, "lbs"),
  60972. preyCapacity: math.unit(0.05, "people"),
  60973. name: "Front",
  60974. image: {
  60975. source: "./media/characters/layla-amari/front.svg",
  60976. extra: 1922/1723,
  60977. bottom: 90/2012
  60978. }
  60979. },
  60980. back: {
  60981. height: math.unit(6, "feet"),
  60982. weight: math.unit(160, "lbs"),
  60983. preyCapacity: math.unit(0.05, "people"),
  60984. name: "Back",
  60985. image: {
  60986. source: "./media/characters/layla-amari/back.svg",
  60987. extra: 1917/1718,
  60988. bottom: 50/1967
  60989. }
  60990. },
  60991. frontDressed: {
  60992. height: math.unit(6, "feet"),
  60993. weight: math.unit(160, "lbs"),
  60994. preyCapacity: math.unit(0.05, "people"),
  60995. name: "Front (Dressed)",
  60996. image: {
  60997. source: "./media/characters/layla-amari/front-dressed.svg",
  60998. extra: 1922/1723,
  60999. bottom: 90/2012
  61000. }
  61001. },
  61002. face: {
  61003. height: math.unit(0.93, "feet"),
  61004. name: "Face",
  61005. image: {
  61006. source: "./media/characters/layla-amari/face.svg"
  61007. }
  61008. },
  61009. hand: {
  61010. height: math.unit(0.66 , "feet"),
  61011. name: "Hand",
  61012. image: {
  61013. source: "./media/characters/layla-amari/hand.svg"
  61014. }
  61015. },
  61016. foot: {
  61017. height: math.unit(1, "feet"),
  61018. name: "Foot",
  61019. image: {
  61020. source: "./media/characters/layla-amari/foot.svg"
  61021. }
  61022. },
  61023. necklace: {
  61024. height: math.unit(0.32, "feet"),
  61025. name: "Necklace",
  61026. image: {
  61027. source: "./media/characters/layla-amari/necklace.svg"
  61028. }
  61029. },
  61030. nipple: {
  61031. height: math.unit(0.2, "feet"),
  61032. name: "Nipple",
  61033. image: {
  61034. source: "./media/characters/layla-amari/nipple.svg"
  61035. }
  61036. },
  61037. slit: {
  61038. height: math.unit(0.26, "feet"),
  61039. name: "Slit",
  61040. image: {
  61041. source: "./media/characters/layla-amari/slit.svg"
  61042. }
  61043. },
  61044. },
  61045. [
  61046. {
  61047. name: "Natural",
  61048. height: math.unit(825, "feet"),
  61049. default: true
  61050. },
  61051. {
  61052. name: "Enhanced",
  61053. height: math.unit(8250, "feet")
  61054. },
  61055. {
  61056. name: "Apparent Size",
  61057. height: math.unit(9.04363e+8, "meters")
  61058. },
  61059. ]
  61060. ))
  61061. characterMakers.push(() => makeCharacter(
  61062. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61063. {
  61064. front: {
  61065. height: math.unit(1.3, "meters"),
  61066. name: "Front",
  61067. image: {
  61068. source: "./media/characters/percy/front.svg",
  61069. extra: 1444/1289,
  61070. bottom: 54/1498
  61071. }
  61072. },
  61073. },
  61074. [
  61075. {
  61076. name: "Normal",
  61077. height: math.unit(1.3, "meters"),
  61078. default: true
  61079. },
  61080. ]
  61081. ))
  61082. characterMakers.push(() => makeCharacter(
  61083. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61084. {
  61085. side: {
  61086. height: math.unit(10, "meters"),
  61087. name: "Side",
  61088. image: {
  61089. source: "./media/characters/grev/side.svg",
  61090. extra: 653/266,
  61091. bottom: 77/730
  61092. }
  61093. },
  61094. head: {
  61095. height: math.unit(16.2, "m"),
  61096. name: "Head",
  61097. image: {
  61098. source: "./media/characters/grev/head.svg"
  61099. }
  61100. },
  61101. dick: {
  61102. height: math.unit(2.8135932034, "m"),
  61103. name: "Dick",
  61104. image: {
  61105. source: "./media/characters/grev/dick.svg"
  61106. }
  61107. },
  61108. },
  61109. [
  61110. {
  61111. name: "Friend-Sized",
  61112. height: math.unit(80, "cm")
  61113. },
  61114. {
  61115. name: "Normal",
  61116. height: math.unit(10, "meters"),
  61117. default: true
  61118. },
  61119. {
  61120. name: "Macro",
  61121. height: math.unit(200, "meters")
  61122. },
  61123. ]
  61124. ))
  61125. characterMakers.push(() => makeCharacter(
  61126. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61127. {
  61128. front: {
  61129. height: math.unit(19.75, "feet"),
  61130. weight: math.unit(20000, "lb"),
  61131. name: "Front",
  61132. image: {
  61133. source: "./media/characters/azuuca/front.svg",
  61134. extra: 1593/1511,
  61135. bottom: 55/1648
  61136. }
  61137. },
  61138. },
  61139. [
  61140. {
  61141. name: "Normal",
  61142. height: math.unit(19.75, "feet"),
  61143. default: true
  61144. },
  61145. ]
  61146. ))
  61147. characterMakers.push(() => makeCharacter(
  61148. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61149. {
  61150. front: {
  61151. height: math.unit(15, "feet"),
  61152. weight: math.unit(1500, "lb"),
  61153. name: "Front",
  61154. image: {
  61155. source: "./media/characters/valuria/front.svg",
  61156. extra: 1588/1486,
  61157. bottom: 31/1619
  61158. }
  61159. },
  61160. },
  61161. [
  61162. {
  61163. name: "Normal",
  61164. height: math.unit(15, "feet"),
  61165. default: true
  61166. },
  61167. {
  61168. name: "Small",
  61169. height: math.unit(500, "feet")
  61170. },
  61171. {
  61172. name: "Macro",
  61173. height: math.unit(4000, "feet")
  61174. },
  61175. {
  61176. name: "Mega Macro",
  61177. height: math.unit(2000, "miles")
  61178. },
  61179. {
  61180. name: "Giga Macro",
  61181. height: math.unit(3e6, "miles")
  61182. },
  61183. ]
  61184. ))
  61185. characterMakers.push(() => makeCharacter(
  61186. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61187. {
  61188. front: {
  61189. height: math.unit(3500, "solarradii"),
  61190. name: "Front",
  61191. image: {
  61192. source: "./media/characters/terigaia/front.svg",
  61193. extra: 1531/1451,
  61194. bottom: 98/1629
  61195. }
  61196. },
  61197. },
  61198. [
  61199. {
  61200. name: "Normal",
  61201. height: math.unit(3500, "solarradii"),
  61202. default: true
  61203. },
  61204. ]
  61205. ))
  61206. characterMakers.push(() => makeCharacter(
  61207. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61208. {
  61209. front: {
  61210. height: math.unit(9.34, "feet"),
  61211. weight: math.unit(600, "lb"),
  61212. name: "Front",
  61213. image: {
  61214. source: "./media/characters/blair-blaziken/front.svg",
  61215. extra: 1557/1462,
  61216. bottom: 55/1612
  61217. }
  61218. },
  61219. },
  61220. [
  61221. {
  61222. name: "Normal",
  61223. height: math.unit(9.34, "feet"),
  61224. default: true
  61225. },
  61226. ]
  61227. ))
  61228. characterMakers.push(() => makeCharacter(
  61229. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61230. {
  61231. pistrogre_front: {
  61232. height: math.unit(10, "feet"),
  61233. weight: math.unit(10, "tons"),
  61234. name: "Front",
  61235. image: {
  61236. source: "./media/characters/braxia/pistrogre-front.svg",
  61237. extra: 1531/1334,
  61238. bottom: 114/1645
  61239. },
  61240. form: "pistrogre",
  61241. default: true
  61242. },
  61243. human_front: {
  61244. height: math.unit(10, "feet"),
  61245. weight: math.unit(10, "tons"),
  61246. name: "Front",
  61247. image: {
  61248. source: "./media/characters/braxia/human-front.svg",
  61249. extra: 1574/1501,
  61250. bottom: 37/1611
  61251. },
  61252. form: "human",
  61253. default: true
  61254. },
  61255. },
  61256. [
  61257. {
  61258. name: "Normal",
  61259. height: math.unit(10, "feet"),
  61260. default: true,
  61261. allForms: true
  61262. },
  61263. {
  61264. name: "Macro",
  61265. height: math.unit(1000, "feet"),
  61266. allForms: true
  61267. },
  61268. {
  61269. name: "Mega Macro",
  61270. height: math.unit(100, "miles"),
  61271. allForms: true
  61272. },
  61273. {
  61274. name: "Cosmic",
  61275. height: math.unit(1000000, "lightyears"),
  61276. allForms: true
  61277. },
  61278. {
  61279. name: "ϐѮԆԬӁꭍϞԢ",
  61280. height: math.unit(1000, "multiverses"),
  61281. allForms: true
  61282. },
  61283. ],
  61284. {
  61285. "pistrogre": {
  61286. name: "Pistrogre",
  61287. default: true
  61288. },
  61289. "human": {
  61290. name: "Human",
  61291. },
  61292. }
  61293. ))
  61294. characterMakers.push(() => makeCharacter(
  61295. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61296. {
  61297. front: {
  61298. height: math.unit(6 + 1/12, "feet"),
  61299. weight: math.unit(280, "lb"),
  61300. name: "Front",
  61301. image: {
  61302. source: "./media/characters/kiriga-yato/front.svg",
  61303. extra: 445/394,
  61304. bottom: 11/456
  61305. }
  61306. },
  61307. },
  61308. [
  61309. {
  61310. name: "Descended",
  61311. height: math.unit(3, "feet")
  61312. },
  61313. {
  61314. name: "Average",
  61315. height: math.unit(6 + 1/12, "feet"),
  61316. default: true
  61317. },
  61318. {
  61319. name: "Ascended",
  61320. height: math.unit(9 + 2/12, "feet")
  61321. },
  61322. ]
  61323. ))
  61324. characterMakers.push(() => makeCharacter(
  61325. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61326. {
  61327. front: {
  61328. height: math.unit(6, "feet"),
  61329. weight: math.unit(150, "lb"),
  61330. name: "Front",
  61331. image: {
  61332. source: "./media/characters/kylie/front.svg",
  61333. extra: 1114/1046,
  61334. bottom: 65/1179
  61335. },
  61336. extraAttributes: {
  61337. "hoofSize": {
  61338. name: "Hoof Size",
  61339. power: 2,
  61340. type: "area",
  61341. base: math.unit(0.034, "m^2")
  61342. },
  61343. "footSize": {
  61344. name: "Foot Size",
  61345. power: 2,
  61346. type: "area",
  61347. base: math.unit(0.75, "m^2")
  61348. },
  61349. }
  61350. },
  61351. side: {
  61352. height: math.unit(6, "feet"),
  61353. weight: math.unit(150, "lb"),
  61354. name: "Side",
  61355. image: {
  61356. source: "./media/characters/kylie/side.svg",
  61357. extra: 1178/1110,
  61358. bottom: 21/1199
  61359. },
  61360. extraAttributes: {
  61361. "hoofSize": {
  61362. name: "Hoof Size",
  61363. power: 2,
  61364. type: "area",
  61365. base: math.unit(0.034, "m^2")
  61366. },
  61367. "footSize": {
  61368. name: "Foot Size",
  61369. power: 2,
  61370. type: "area",
  61371. base: math.unit(0.75, "m^2")
  61372. },
  61373. }
  61374. },
  61375. back: {
  61376. height: math.unit(6, "feet"),
  61377. weight: math.unit(150, "lb"),
  61378. name: "Back",
  61379. image: {
  61380. source: "./media/characters/kylie/back.svg",
  61381. extra: 1115/1047,
  61382. bottom: 66/1181
  61383. },
  61384. extraAttributes: {
  61385. "hoofSize": {
  61386. name: "Hoof Size",
  61387. power: 2,
  61388. type: "area",
  61389. base: math.unit(0.034, "m^2")
  61390. },
  61391. "footSize": {
  61392. name: "Foot Size",
  61393. power: 2,
  61394. type: "area",
  61395. base: math.unit(0.75, "m^2")
  61396. },
  61397. }
  61398. },
  61399. head: {
  61400. height: math.unit(1.85, "feet"),
  61401. name: "Head",
  61402. image: {
  61403. source: "./media/characters/kylie/head.svg"
  61404. }
  61405. },
  61406. },
  61407. [
  61408. {
  61409. name: "Normal",
  61410. height: math.unit(90, "meters"),
  61411. default: true
  61412. },
  61413. ]
  61414. ))
  61415. characterMakers.push(() => makeCharacter(
  61416. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61417. {
  61418. front: {
  61419. height: math.unit(245, "feet"),
  61420. weight: math.unit(400000, "lb"),
  61421. name: "Front",
  61422. image: {
  61423. source: "./media/characters/sabado/front.svg",
  61424. extra: 1309/1164,
  61425. bottom: 29/1338
  61426. }
  61427. },
  61428. },
  61429. [
  61430. {
  61431. name: "Normal",
  61432. height: math.unit(245, "feet"),
  61433. default: true
  61434. },
  61435. ]
  61436. ))
  61437. characterMakers.push(() => makeCharacter(
  61438. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61439. {
  61440. shark_front: {
  61441. height: math.unit(2, "meters"),
  61442. weight: math.unit(200, "kg"),
  61443. name: "Front",
  61444. image: {
  61445. source: "./media/characters/zechal/shark-front.svg",
  61446. extra: 969/925,
  61447. bottom: 74/1043
  61448. },
  61449. form: "shark",
  61450. },
  61451. shark_back: {
  61452. height: math.unit(2, "meters"),
  61453. weight: math.unit(200, "kg"),
  61454. name: "Back",
  61455. image: {
  61456. source: "./media/characters/zechal/shark-back.svg",
  61457. extra: 994/949,
  61458. bottom: 176/1170
  61459. },
  61460. form: "shark",
  61461. },
  61462. shark_frontLewd: {
  61463. height: math.unit(2, "meters"),
  61464. weight: math.unit(200, "kg"),
  61465. name: "Front (Lewd)",
  61466. image: {
  61467. source: "./media/characters/zechal/shark-front-lewd.svg",
  61468. extra: 969/925,
  61469. bottom: 74/1043
  61470. },
  61471. form: "shark",
  61472. },
  61473. shark_side: {
  61474. height: math.unit(1.56, "meters"),
  61475. weight: math.unit(200, "kg"),
  61476. name: "Side",
  61477. image: {
  61478. source: "./media/characters/zechal/shark-side.svg"
  61479. },
  61480. form: "shark",
  61481. },
  61482. dragon_front: {
  61483. height: math.unit(2, "meters"),
  61484. weight: math.unit(200, "kg"),
  61485. name: "Front",
  61486. image: {
  61487. source: "./media/characters/zechal/dragon-front.svg",
  61488. extra: 1041/925,
  61489. bottom: 74/1115
  61490. },
  61491. form: "dragon",
  61492. },
  61493. dragon_back: {
  61494. height: math.unit(2, "meters"),
  61495. weight: math.unit(200, "kg"),
  61496. name: "Back",
  61497. image: {
  61498. source: "./media/characters/zechal/dragon-back.svg",
  61499. extra: 1061/949,
  61500. bottom: 176/1237
  61501. },
  61502. form: "dragon",
  61503. },
  61504. dragon_frontLewd: {
  61505. height: math.unit(2, "meters"),
  61506. weight: math.unit(200, "kg"),
  61507. name: "Front (Lewd)",
  61508. image: {
  61509. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61510. extra: 1041/925,
  61511. bottom: 74/1115
  61512. },
  61513. form: "dragon",
  61514. },
  61515. dragon_side: {
  61516. height: math.unit(1.56, "meters"),
  61517. weight: math.unit(200, "kg"),
  61518. name: "Side",
  61519. image: {
  61520. source: "./media/characters/zechal/dragon-side.svg"
  61521. },
  61522. form: "dragon",
  61523. },
  61524. foot: {
  61525. height: math.unit(0.5, "meters"),
  61526. name: "Foot",
  61527. image: {
  61528. source: "./media/characters/zechal/foot.svg"
  61529. }
  61530. },
  61531. sheathFront: {
  61532. height: math.unit(0.45, "meters"),
  61533. name: "Sheath (Front)",
  61534. image: {
  61535. source: "./media/characters/zechal/sheath-front.svg"
  61536. }
  61537. },
  61538. sheathSide: {
  61539. height: math.unit(0.45, "meters"),
  61540. name: "Sheath (Side)",
  61541. image: {
  61542. source: "./media/characters/zechal/sheath-side.svg"
  61543. }
  61544. },
  61545. },
  61546. [
  61547. {
  61548. name: "Incognito",
  61549. height: math.unit(2, "meters"),
  61550. allForms: true
  61551. },
  61552. {
  61553. name: "Small Rampage",
  61554. height: math.unit(25, "meters"),
  61555. allForms: true
  61556. },
  61557. {
  61558. name: "Home Size",
  61559. height: math.unit(250, "meters"),
  61560. allForms: true,
  61561. default: true
  61562. },
  61563. {
  61564. name: "Macro+",
  61565. height: math.unit(700, "meters"),
  61566. allForms: true
  61567. },
  61568. {
  61569. name: "Small Mega",
  61570. height: math.unit(3, "km"),
  61571. allForms: true
  61572. },
  61573. {
  61574. name: "Mega",
  61575. height: math.unit(15, "km"),
  61576. allForms: true
  61577. },
  61578. {
  61579. name: "Giga",
  61580. height: math.unit(300, "km"),
  61581. allForms: true
  61582. },
  61583. {
  61584. name: "Giga+",
  61585. height: math.unit(1750, "km"),
  61586. allForms: true
  61587. },
  61588. {
  61589. name: "Continental",
  61590. height: math.unit(5000, "km"),
  61591. allForms: true
  61592. },
  61593. {
  61594. name: "Terra",
  61595. height: math.unit(20000, "km"),
  61596. allForms: true
  61597. },
  61598. {
  61599. name: "Terra+",
  61600. height: math.unit(300000, "km"),
  61601. allForms: true
  61602. },
  61603. {
  61604. name: "Solar",
  61605. height: math.unit(40000000, "km"),
  61606. allForms: true
  61607. },
  61608. {
  61609. name: "Galactic",
  61610. height: math.unit(810133, "parsecs"),
  61611. allForms: true
  61612. },
  61613. {
  61614. name: "Universal",
  61615. height: math.unit(25, "universes"),
  61616. allForms: true
  61617. },
  61618. ],
  61619. {
  61620. "shark": {
  61621. name: "Shark",
  61622. default: true
  61623. },
  61624. "dragon": {
  61625. name: "Dragon",
  61626. },
  61627. }
  61628. ))
  61629. characterMakers.push(() => makeCharacter(
  61630. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61631. {
  61632. front: {
  61633. height: math.unit(2.2, "meters"),
  61634. weight: math.unit(150, "kg"),
  61635. name: "Front",
  61636. image: {
  61637. source: "./media/characters/sergis/front.svg",
  61638. extra: 1314/1312,
  61639. bottom: 112/1426
  61640. }
  61641. },
  61642. back: {
  61643. height: math.unit(2.2, "meters"),
  61644. weight: math.unit(150, "kg"),
  61645. name: "Back",
  61646. image: {
  61647. source: "./media/characters/sergis/back.svg",
  61648. extra: 1335/1333,
  61649. bottom: 19/1354
  61650. }
  61651. },
  61652. frontLewd: {
  61653. height: math.unit(2.2, "meters"),
  61654. weight: math.unit(150, "kg"),
  61655. name: "Front (Lewd)",
  61656. image: {
  61657. source: "./media/characters/sergis/front-lewd.svg",
  61658. extra: 1314/1312,
  61659. bottom: 112/1426
  61660. }
  61661. },
  61662. frontDressed: {
  61663. height: math.unit(2.2, "meters"),
  61664. weight: math.unit(150, "kg"),
  61665. name: "Front (Dressed)",
  61666. image: {
  61667. source: "./media/characters/sergis/front-dressed.svg",
  61668. extra: 1330/1328,
  61669. bottom: 95/1425
  61670. }
  61671. },
  61672. frontDressedLewd: {
  61673. height: math.unit(2.2, "meters"),
  61674. weight: math.unit(150, "kg"),
  61675. name: "Front (Dressed, Lewd)",
  61676. image: {
  61677. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61678. extra: 1330/1328,
  61679. bottom: 95/1425
  61680. }
  61681. },
  61682. maw: {
  61683. height: math.unit(0.48, "meters"),
  61684. name: "Maw",
  61685. image: {
  61686. source: "./media/characters/sergis/maw.svg"
  61687. }
  61688. },
  61689. sheath: {
  61690. height: math.unit(0.38, "meters"),
  61691. name: "Sheath",
  61692. image: {
  61693. source: "./media/characters/sergis/sheath.svg"
  61694. }
  61695. },
  61696. },
  61697. [
  61698. {
  61699. name: "Incognito Size",
  61700. height: math.unit(2.2, "meters")
  61701. },
  61702. {
  61703. name: "Small Macro",
  61704. height: math.unit(40, "meters")
  61705. },
  61706. {
  61707. name: "Macro",
  61708. height: math.unit(150, "meters")
  61709. },
  61710. {
  61711. name: "Macro+",
  61712. height: math.unit(300, "meters")
  61713. },
  61714. {
  61715. name: "Mega",
  61716. height: math.unit(2.5, "km")
  61717. },
  61718. {
  61719. name: "Mega+",
  61720. height: math.unit(30, "km")
  61721. },
  61722. {
  61723. name: "Home Size",
  61724. height: math.unit(300, "km"),
  61725. default: true
  61726. },
  61727. {
  61728. name: "Giga+",
  61729. height: math.unit(1000, "km")
  61730. },
  61731. {
  61732. name: "Giga++",
  61733. height: math.unit(6000, "km")
  61734. },
  61735. {
  61736. name: "Terra",
  61737. height: math.unit(70000, "km")
  61738. },
  61739. {
  61740. name: "Terra+",
  61741. height: math.unit(200000, "km")
  61742. },
  61743. {
  61744. name: "Galactic",
  61745. height: math.unit(634200, "lightyears")
  61746. },
  61747. ]
  61748. ))
  61749. characterMakers.push(() => makeCharacter(
  61750. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61751. {
  61752. standard: {
  61753. height: math.unit(1 + 5/12, "feet"),
  61754. name: "Standard",
  61755. image: {
  61756. source: "./media/characters/spade/standard.svg",
  61757. extra: 1794/1703,
  61758. bottom: 115/1909
  61759. }
  61760. },
  61761. disguised: {
  61762. height: math.unit(1 + 5/12, "feet"),
  61763. name: "Disguised",
  61764. image: {
  61765. source: "./media/characters/spade/disguised.svg",
  61766. extra: 1794/1700,
  61767. bottom: 98/1892
  61768. }
  61769. },
  61770. },
  61771. [
  61772. {
  61773. name: "Normal",
  61774. height: math.unit(1 + 5/12, "feet"),
  61775. default: true
  61776. },
  61777. ]
  61778. ))
  61779. characterMakers.push(() => makeCharacter(
  61780. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61781. {
  61782. frontNsfw: {
  61783. height: math.unit(5, "meters"),
  61784. weight: math.unit(2000, "kg"),
  61785. preyCapacity: math.unit(5, "people"),
  61786. name: "Front (NSFW)",
  61787. image: {
  61788. source: "./media/characters/zeanlain/front-nsfw.svg",
  61789. extra: 1087/938,
  61790. bottom: 93/1180
  61791. },
  61792. extraAttributes: {
  61793. "wingspan": {
  61794. name: "Wingspan",
  61795. power: 1,
  61796. type: "length",
  61797. base: math.unit(10, "meters")
  61798. },
  61799. "footSize": {
  61800. name: "Foot Size",
  61801. power: 1,
  61802. type: "length",
  61803. base: math.unit(0.68, "meters")
  61804. },
  61805. "cockLength": {
  61806. name: "Cock Length",
  61807. power: 1,
  61808. type: "length",
  61809. base: math.unit(1.69, "meters")
  61810. },
  61811. "ballVolume": {
  61812. name: "Ball Volume",
  61813. power: 3,
  61814. type: "volume",
  61815. base: math.unit(0.028, "m^3")
  61816. },
  61817. }
  61818. },
  61819. front: {
  61820. height: math.unit(5, "meters"),
  61821. weight: math.unit(2000, "kg"),
  61822. preyCapacity: math.unit(3, "people"),
  61823. name: "Front",
  61824. image: {
  61825. source: "./media/characters/zeanlain/front.svg",
  61826. extra: 1087/938,
  61827. bottom: 93/1180
  61828. },
  61829. extraAttributes: {
  61830. "wingspan": {
  61831. name: "Wingspan",
  61832. power: 1,
  61833. type: "length",
  61834. base: math.unit(10, "meters")
  61835. },
  61836. "footSize": {
  61837. name: "Foot Size",
  61838. power: 1,
  61839. type: "length",
  61840. base: math.unit(0.68, "meters")
  61841. },
  61842. }
  61843. },
  61844. },
  61845. [
  61846. {
  61847. name: "Normal",
  61848. height: math.unit(5, "meters"),
  61849. default: true
  61850. },
  61851. ]
  61852. ))
  61853. characterMakers.push(() => makeCharacter(
  61854. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61855. {
  61856. front: {
  61857. height: math.unit(10, "meters"),
  61858. weight: math.unit(250000, "kg"),
  61859. name: "Front",
  61860. image: {
  61861. source: "./media/characters/airamis/front.svg",
  61862. extra: 865/835,
  61863. bottom: 13/878
  61864. }
  61865. },
  61866. },
  61867. [
  61868. {
  61869. name: "Normal",
  61870. height: math.unit(10, "meters"),
  61871. default: true
  61872. },
  61873. ]
  61874. ))
  61875. characterMakers.push(() => makeCharacter(
  61876. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61877. {
  61878. front: {
  61879. height: math.unit(3 + 3/12, "feet"),
  61880. weight: math.unit(75, "lb"),
  61881. name: "Front",
  61882. image: {
  61883. source: "./media/characters/corra-tourmaline/front.svg",
  61884. extra: 1037/864,
  61885. bottom: 39/1076
  61886. }
  61887. },
  61888. back: {
  61889. height: math.unit(3 + 3/12, "feet"),
  61890. weight: math.unit(75, "lb"),
  61891. name: "Back",
  61892. image: {
  61893. source: "./media/characters/corra-tourmaline/back.svg",
  61894. extra: 1022/849,
  61895. bottom: 26/1048
  61896. }
  61897. },
  61898. dressed: {
  61899. height: math.unit(3 + 3/12, "feet"),
  61900. weight: math.unit(75, "lb"),
  61901. name: "Dressed",
  61902. image: {
  61903. source: "./media/characters/corra-tourmaline/dressed.svg",
  61904. extra: 1037/864,
  61905. bottom: 39/1076
  61906. }
  61907. },
  61908. beans: {
  61909. height: math.unit(0.37, "feet"),
  61910. name: "Beans",
  61911. image: {
  61912. source: "./media/characters/corra-tourmaline/beans.svg"
  61913. }
  61914. },
  61915. },
  61916. [
  61917. {
  61918. name: "Normal",
  61919. height: math.unit(3 + 3/12, "feet"),
  61920. default: true
  61921. },
  61922. {
  61923. name: "Macro",
  61924. height: math.unit(32, "feet")
  61925. },
  61926. ]
  61927. ))
  61928. characterMakers.push(() => makeCharacter(
  61929. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61930. {
  61931. front: {
  61932. height: math.unit(6 + 2/12, "feet"),
  61933. weight: math.unit(203, "lb"),
  61934. name: "Front",
  61935. image: {
  61936. source: "./media/characters/maki-kawa/front.svg",
  61937. extra: 950/890,
  61938. bottom: 62/1012
  61939. }
  61940. },
  61941. back: {
  61942. height: math.unit(6 + 2/12, "feet"),
  61943. weight: math.unit(203, "lb"),
  61944. name: "Back",
  61945. image: {
  61946. source: "./media/characters/maki-kawa/back.svg",
  61947. extra: 953/878,
  61948. bottom: 49/1002
  61949. }
  61950. },
  61951. frontBarista: {
  61952. height: math.unit(6 + 2/12, "feet"),
  61953. weight: math.unit(203, "lb"),
  61954. name: "Front (Barista)",
  61955. image: {
  61956. source: "./media/characters/maki-kawa/front-barista.svg",
  61957. extra: 943/883,
  61958. bottom: 69/1012
  61959. }
  61960. },
  61961. backBarista: {
  61962. height: math.unit(6 + 2/12, "feet"),
  61963. weight: math.unit(203, "lb"),
  61964. name: "Back (Barista)",
  61965. image: {
  61966. source: "./media/characters/maki-kawa/back-barista.svg",
  61967. extra: 953/878,
  61968. bottom: 49/1002
  61969. }
  61970. },
  61971. frontWrestler: {
  61972. height: math.unit(6 + 2/12, "feet"),
  61973. weight: math.unit(203, "lb"),
  61974. name: "Front (Wrestler)",
  61975. image: {
  61976. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61977. extra: 950/890,
  61978. bottom: 62/1012
  61979. }
  61980. },
  61981. backWrestler: {
  61982. height: math.unit(6 + 2/12, "feet"),
  61983. weight: math.unit(203, "lb"),
  61984. name: "Back (Wrestler)",
  61985. image: {
  61986. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61987. extra: 953/878,
  61988. bottom: 49/1002
  61989. }
  61990. },
  61991. headFront: {
  61992. height: math.unit(1.64, "feet"),
  61993. name: "Head (Front)",
  61994. image: {
  61995. source: "./media/characters/maki-kawa/head-front.svg"
  61996. }
  61997. },
  61998. headSide: {
  61999. height: math.unit(1.59, "feet"),
  62000. name: "Head (Side)",
  62001. image: {
  62002. source: "./media/characters/maki-kawa/head-side.svg"
  62003. }
  62004. },
  62005. paw: {
  62006. height: math.unit(0.9, "feet"),
  62007. name: "Paw",
  62008. image: {
  62009. source: "./media/characters/maki-kawa/paw.svg"
  62010. }
  62011. },
  62012. },
  62013. [
  62014. {
  62015. name: "Normal",
  62016. height: math.unit(6 + 2/12, "feet"),
  62017. default: true
  62018. },
  62019. {
  62020. name: "Macro",
  62021. height: math.unit(617, "feet")
  62022. },
  62023. ]
  62024. ))
  62025. characterMakers.push(() => makeCharacter(
  62026. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62027. {
  62028. front: {
  62029. height: math.unit(10, "feet"),
  62030. weight: math.unit(1500, "lb"),
  62031. name: "Front",
  62032. image: {
  62033. source: "./media/characters/lennox/front.svg",
  62034. extra: 1623/1496,
  62035. bottom: 18/1641
  62036. }
  62037. },
  62038. back: {
  62039. height: math.unit(10, "feet"),
  62040. weight: math.unit(1500, "lb"),
  62041. name: "Back",
  62042. image: {
  62043. source: "./media/characters/lennox/back.svg",
  62044. extra: 1641/1481,
  62045. bottom: 13/1654
  62046. }
  62047. },
  62048. maw: {
  62049. height: math.unit(2.94, "feet"),
  62050. name: "Maw",
  62051. image: {
  62052. source: "./media/characters/lennox/maw.svg"
  62053. }
  62054. },
  62055. },
  62056. [
  62057. {
  62058. name: "Micro",
  62059. height: math.unit(1, "inch")
  62060. },
  62061. {
  62062. name: "Normal",
  62063. height: math.unit(10, "feet"),
  62064. default: true
  62065. },
  62066. {
  62067. name: "Macro",
  62068. height: math.unit(200, "feet")
  62069. },
  62070. ]
  62071. ))
  62072. characterMakers.push(() => makeCharacter(
  62073. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62074. {
  62075. frontDressed: {
  62076. height: math.unit(15 + 7/12, "feet"),
  62077. weight: math.unit(5000, "lb"),
  62078. name: "Front (Dressed)",
  62079. image: {
  62080. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62081. extra: 1136/1023,
  62082. bottom: 51/1187
  62083. }
  62084. },
  62085. backDressed: {
  62086. height: math.unit(15 + 7/12, "feet"),
  62087. weight: math.unit(5000, "lb"),
  62088. name: "Back (Dressed)",
  62089. image: {
  62090. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62091. extra: 2359/2143,
  62092. bottom: 103/2462
  62093. }
  62094. },
  62095. front: {
  62096. height: math.unit(15 + 7/12, "feet"),
  62097. weight: math.unit(5000, "lb"),
  62098. name: "Front",
  62099. image: {
  62100. source: "./media/characters/vyse-iron-thunder/front.svg",
  62101. extra: 1136/1023,
  62102. bottom: 51/1187
  62103. }
  62104. },
  62105. hand: {
  62106. height: math.unit(2.36, "feet"),
  62107. name: "Hand",
  62108. image: {
  62109. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62110. }
  62111. },
  62112. foot: {
  62113. height: math.unit(1.72, "feet"),
  62114. name: "Foot",
  62115. image: {
  62116. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62117. }
  62118. },
  62119. mouth: {
  62120. height: math.unit(2, "feet"),
  62121. name: "Mouth",
  62122. image: {
  62123. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62124. }
  62125. },
  62126. eye: {
  62127. height: math.unit(0.58, "feet"),
  62128. name: "Eye",
  62129. image: {
  62130. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62131. }
  62132. },
  62133. },
  62134. [
  62135. {
  62136. name: "Normal",
  62137. height: math.unit(15 + 7/12, "feet"),
  62138. default: true
  62139. },
  62140. {
  62141. name: "Macro",
  62142. height: math.unit(157, "feet")
  62143. },
  62144. {
  62145. name: "Macro+",
  62146. height: math.unit(1570, "feet")
  62147. },
  62148. {
  62149. name: "Macro++",
  62150. height: math.unit(15700, "feet")
  62151. },
  62152. {
  62153. name: "Macro+++",
  62154. height: math.unit(157000, "feet")
  62155. },
  62156. {
  62157. name: "Macro++++",
  62158. height: math.unit(1570000, "feet")
  62159. },
  62160. ]
  62161. ))
  62162. characterMakers.push(() => makeCharacter(
  62163. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62164. {
  62165. side: {
  62166. height: math.unit(6, "feet"),
  62167. weight: math.unit(115, "lb"),
  62168. name: "Side",
  62169. image: {
  62170. source: "./media/characters/moonbeam/side.svg",
  62171. extra: 839/485,
  62172. bottom: 60/899
  62173. }
  62174. },
  62175. },
  62176. [
  62177. {
  62178. name: "Normal",
  62179. height: math.unit(6, "feet"),
  62180. default: true
  62181. },
  62182. ]
  62183. ))
  62184. characterMakers.push(() => makeCharacter(
  62185. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62186. {
  62187. front: {
  62188. height: math.unit(3500, "miles"),
  62189. weight: math.unit(1659, "petatonnes"),
  62190. name: "Front",
  62191. image: {
  62192. source: "./media/characters/baltica/front.svg",
  62193. extra: 429/428,
  62194. bottom: 41/470
  62195. }
  62196. },
  62197. back: {
  62198. height: math.unit(3500, "miles"),
  62199. weight: math.unit(1659, "petatonnes"),
  62200. name: "Back",
  62201. image: {
  62202. source: "./media/characters/baltica/back.svg",
  62203. extra: 452/451,
  62204. bottom: 8/460
  62205. }
  62206. },
  62207. },
  62208. [
  62209. {
  62210. name: "Gigamacro",
  62211. height: math.unit(3500, "miles"),
  62212. default: true
  62213. },
  62214. ]
  62215. ))
  62216. characterMakers.push(() => makeCharacter(
  62217. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62218. {
  62219. front: {
  62220. height: math.unit(6 + 10/12, "feet"),
  62221. weight: math.unit(200, "lb"),
  62222. name: "Front",
  62223. image: {
  62224. source: "./media/characters/shadow-wolf/front.svg",
  62225. extra: 1931/1760,
  62226. bottom: 88/2019
  62227. }
  62228. },
  62229. },
  62230. [
  62231. {
  62232. name: "Normal",
  62233. height: math.unit(6 + 10/12, "feet"),
  62234. default: true
  62235. },
  62236. ]
  62237. ))
  62238. characterMakers.push(() => makeCharacter(
  62239. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62240. {
  62241. front: {
  62242. height: math.unit(5 + 10/12, "feet"),
  62243. name: "Front",
  62244. image: {
  62245. source: "./media/characters/quincy-praying-mantis/front.svg",
  62246. extra: 1055/891,
  62247. bottom: 92/1147
  62248. }
  62249. },
  62250. soles: {
  62251. height: math.unit(0.85, "feet"),
  62252. name: "Soles",
  62253. image: {
  62254. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62255. extra: 429/324,
  62256. bottom: 89/518
  62257. },
  62258. extraAttributes: {
  62259. "shoeSize": {
  62260. name: "Shoe Size",
  62261. power: 1,
  62262. type: "length",
  62263. base: math.unit(23, "ShoeSizeMensUS"),
  62264. defaultUnit: "ShoeSizeMensUS"
  62265. },
  62266. }
  62267. },
  62268. foot: {
  62269. height: math.unit(0.72, "feet"),
  62270. name: "Foot",
  62271. image: {
  62272. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62273. extra: 349/349,
  62274. bottom: 76/425
  62275. }
  62276. },
  62277. },
  62278. [
  62279. {
  62280. name: "Normal",
  62281. height: math.unit(5 + 10/12, "feet"),
  62282. default: true
  62283. },
  62284. ]
  62285. ))
  62286. characterMakers.push(() => makeCharacter(
  62287. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62288. {
  62289. front: {
  62290. height: math.unit(6, "feet"),
  62291. name: "Front",
  62292. image: {
  62293. source: "./media/characters/christopher-redwood/front.svg",
  62294. extra: 1402/1341,
  62295. bottom: 23/1425
  62296. }
  62297. },
  62298. back: {
  62299. height: math.unit(6, "feet"),
  62300. name: "Back",
  62301. image: {
  62302. source: "./media/characters/christopher-redwood/back.svg",
  62303. extra: 1406/1345,
  62304. bottom: 36/1442
  62305. }
  62306. },
  62307. head: {
  62308. height: math.unit(1.685, "feet"),
  62309. name: "Head",
  62310. image: {
  62311. source: "./media/characters/christopher-redwood/head.svg"
  62312. }
  62313. },
  62314. },
  62315. [
  62316. {
  62317. name: "Normal",
  62318. height: math.unit(6, "feet"),
  62319. default: true
  62320. },
  62321. ]
  62322. ))
  62323. characterMakers.push(() => makeCharacter(
  62324. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62325. {
  62326. front: {
  62327. height: math.unit(1.9, "meters"),
  62328. weight: math.unit(140, "lb"),
  62329. name: "Front",
  62330. image: {
  62331. source: "./media/characters/kara-fox/front.svg",
  62332. extra: 766/711,
  62333. bottom: 41/807
  62334. }
  62335. },
  62336. back: {
  62337. height: math.unit(1.9, "meters"),
  62338. weight: math.unit(140, "lb"),
  62339. name: "Back",
  62340. image: {
  62341. source: "./media/characters/kara-fox/back.svg",
  62342. extra: 766/596,
  62343. bottom: 29/795
  62344. }
  62345. },
  62346. maw: {
  62347. height: math.unit(0.78, "feet"),
  62348. name: "Maw",
  62349. image: {
  62350. source: "./media/characters/kara-fox/maw.svg"
  62351. }
  62352. },
  62353. pawpads: {
  62354. height: math.unit(0.96, "feet"),
  62355. name: "Pawpads",
  62356. image: {
  62357. source: "./media/characters/kara-fox/pawpads.svg"
  62358. }
  62359. },
  62360. },
  62361. [
  62362. {
  62363. name: "Normal",
  62364. height: math.unit(1.9, "meters"),
  62365. default: true
  62366. },
  62367. {
  62368. name: "Giantess",
  62369. height: math.unit(80, "meters")
  62370. },
  62371. ]
  62372. ))
  62373. characterMakers.push(() => makeCharacter(
  62374. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62375. {
  62376. front: {
  62377. height: math.unit(12, "feet"),
  62378. name: "Front",
  62379. image: {
  62380. source: "./media/characters/naomi-espeon/front.svg",
  62381. extra: 892/797,
  62382. bottom: 5/897
  62383. }
  62384. },
  62385. back: {
  62386. height: math.unit(12, "feet"),
  62387. name: "Back",
  62388. image: {
  62389. source: "./media/characters/naomi-espeon/back.svg",
  62390. extra: 890/785,
  62391. bottom: 12/902
  62392. }
  62393. },
  62394. },
  62395. [
  62396. {
  62397. name: "Normal",
  62398. height: math.unit(12, "feet"),
  62399. default: true
  62400. },
  62401. ]
  62402. ))
  62403. characterMakers.push(() => makeCharacter(
  62404. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62405. {
  62406. anthro_front: {
  62407. height: math.unit(8, "feet"),
  62408. weight: math.unit(625, "lb"),
  62409. name: "Front",
  62410. image: {
  62411. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62412. extra: 638/574,
  62413. bottom: 73/711
  62414. },
  62415. form: "anthro",
  62416. default: true
  62417. },
  62418. anthro_back: {
  62419. height: math.unit(8, "feet"),
  62420. weight: math.unit(625, "lb"),
  62421. name: "Back",
  62422. image: {
  62423. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62424. extra: 674/614,
  62425. bottom: 7/681
  62426. },
  62427. form: "anthro",
  62428. },
  62429. taur_side: {
  62430. height: math.unit(16, "feet"),
  62431. weight: math.unit(4.5, "tons"),
  62432. name: "Side",
  62433. image: {
  62434. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62435. extra: 704/646,
  62436. bottom: 132/836
  62437. },
  62438. form: "taur",
  62439. default: true
  62440. },
  62441. },
  62442. [
  62443. {
  62444. name: "Normal",
  62445. height: math.unit(8, "feet"),
  62446. default: true,
  62447. form: "anthro"
  62448. },
  62449. {
  62450. name: "Normal",
  62451. height: math.unit(16, "feet"),
  62452. default: true,
  62453. form: "taur"
  62454. },
  62455. ],
  62456. {
  62457. "anthro": {
  62458. name: "Anthro",
  62459. default: true
  62460. },
  62461. "taur": {
  62462. name: "Taur",
  62463. },
  62464. }
  62465. ))
  62466. //characters
  62467. function makeCharacters() {
  62468. const results = [];
  62469. characterMakers.forEach(character => {
  62470. results.push(character());
  62471. });
  62472. return results;
  62473. }