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

66712 строки
1.7 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", "humanoid"]
  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", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. }
  2439. //species
  2440. function getSpeciesInfo(speciesList) {
  2441. let result = new Set();
  2442. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2443. result.add(entry)
  2444. });
  2445. return Array.from(result);
  2446. };
  2447. function getSpeciesInfoHelper(species) {
  2448. if (!speciesData[species]) {
  2449. console.warn(species + " doesn't exist");
  2450. return [];
  2451. }
  2452. if (speciesData[species].parents) {
  2453. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2454. } else {
  2455. return [species];
  2456. }
  2457. }
  2458. characterMakers.push(() => makeCharacter(
  2459. {
  2460. name: "Fen",
  2461. species: ["crux"],
  2462. description: {
  2463. title: "Bio",
  2464. text: "Very furry. Sheds on everything."
  2465. },
  2466. tags: [
  2467. "anthro",
  2468. "goo"
  2469. ]
  2470. },
  2471. {
  2472. front: {
  2473. height: math.unit(12, "feet"),
  2474. weight: math.unit(2400, "lb"),
  2475. preyCapacity: math.unit(1, "people"),
  2476. name: "Front",
  2477. image: {
  2478. source: "./media/characters/fen/front.svg",
  2479. extra: 1804/1562,
  2480. bottom: 205/2009
  2481. },
  2482. extraAttributes: {
  2483. pawSize: {
  2484. name: "Paw Size",
  2485. power: 2,
  2486. type: "area",
  2487. base: math.unit(0.35, "m^2")
  2488. }
  2489. }
  2490. },
  2491. diving: {
  2492. height: math.unit(4.9, "meters"),
  2493. weight: math.unit(2400, "lb"),
  2494. name: "Diving",
  2495. image: {
  2496. source: "./media/characters/fen/diving.svg"
  2497. }
  2498. },
  2499. sleeby: {
  2500. height: math.unit(3.45, "meters"),
  2501. weight: math.unit(2400, "lb"),
  2502. name: "Sleeby",
  2503. image: {
  2504. source: "./media/characters/fen/sleeby.svg"
  2505. }
  2506. },
  2507. goo: {
  2508. height: math.unit(12, "feet"),
  2509. weight: math.unit(3600, "lb"),
  2510. volume: math.unit(1000, "liters"),
  2511. preyCapacity: math.unit(6, "people"),
  2512. name: "Goo",
  2513. image: {
  2514. source: "./media/characters/fen/goo.svg",
  2515. extra: 1307/1071,
  2516. bottom: 134/1441
  2517. }
  2518. },
  2519. horror: {
  2520. height: math.unit(13.6, "feet"),
  2521. weight: math.unit(2400, "lb"),
  2522. preyCapacity: math.unit(1, "people"),
  2523. name: "Horror",
  2524. image: {
  2525. source: "./media/characters/fen/horror.svg",
  2526. extra: 893/797,
  2527. bottom: 0/893
  2528. }
  2529. },
  2530. gooNsfw: {
  2531. height: math.unit(12, "feet"),
  2532. weight: math.unit(3750, "lb"),
  2533. volume: math.unit(1000, "liters"),
  2534. preyCapacity: math.unit(6, "people"),
  2535. name: "Goo (NSFW)",
  2536. image: {
  2537. source: "./media/characters/fen/goo-nsfw.svg",
  2538. extra: 1875/1734,
  2539. bottom: 122/1997
  2540. }
  2541. },
  2542. maw: {
  2543. height: math.unit(5.03, "feet"),
  2544. name: "Maw",
  2545. image: {
  2546. source: "./media/characters/fen/maw.svg"
  2547. }
  2548. },
  2549. gooCeiling: {
  2550. height: math.unit(6.6, "feet"),
  2551. weight: math.unit(3000, "lb"),
  2552. volume: math.unit(1000, "liters"),
  2553. preyCapacity: math.unit(6, "people"),
  2554. name: "Maw (Goo)",
  2555. image: {
  2556. source: "./media/characters/fen/goo-maw.svg"
  2557. }
  2558. },
  2559. paw: {
  2560. height: math.unit(3.77, "feet"),
  2561. name: "Paw",
  2562. image: {
  2563. source: "./media/characters/fen/paw.svg"
  2564. },
  2565. extraAttributes: {
  2566. "toeSize": {
  2567. name: "Toe Size",
  2568. power: 2,
  2569. type: "area",
  2570. base: math.unit(0.02875, "m^2")
  2571. },
  2572. "pawSize": {
  2573. name: "Paw Size",
  2574. power: 2,
  2575. type: "area",
  2576. base: math.unit(0.378, "m^2")
  2577. },
  2578. }
  2579. },
  2580. tail: {
  2581. height: math.unit(12.1, "feet"),
  2582. name: "Tail",
  2583. image: {
  2584. source: "./media/characters/fen/tail.svg"
  2585. }
  2586. },
  2587. tailFull: {
  2588. height: math.unit(12.1, "feet"),
  2589. name: "Full Tail",
  2590. image: {
  2591. source: "./media/characters/fen/tail-full.svg"
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(12, "feet"),
  2596. weight: math.unit(2400, "lb"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/fen/back.svg",
  2600. },
  2601. info: {
  2602. description: {
  2603. mode: "append",
  2604. text: "\n\nHe is not currently looking at you."
  2605. }
  2606. }
  2607. },
  2608. full: {
  2609. height: math.unit(1.85, "meter"),
  2610. weight: math.unit(3200, "lb"),
  2611. preyCapacity: math.unit(3, "people"),
  2612. name: "Full",
  2613. image: {
  2614. source: "./media/characters/fen/full.svg",
  2615. extra: 1133/859,
  2616. bottom: 145/1278
  2617. },
  2618. info: {
  2619. description: {
  2620. mode: "append",
  2621. text: "\n\nMunch."
  2622. }
  2623. }
  2624. },
  2625. gooLounging: {
  2626. height: math.unit(4.53, "feet"),
  2627. weight: math.unit(3000, "lb"),
  2628. preyCapacity: math.unit(6, "people"),
  2629. name: "Goo (Lounging)",
  2630. image: {
  2631. source: "./media/characters/fen/goo-lounging.svg",
  2632. bottom: 116 / 613
  2633. }
  2634. },
  2635. lounging: {
  2636. height: math.unit(10.52, "feet"),
  2637. weight: math.unit(2400, "lb"),
  2638. name: "Lounging",
  2639. image: {
  2640. source: "./media/characters/fen/lounging.svg"
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Small",
  2647. height: math.unit(2.2428, "meter")
  2648. },
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(12, "feet"),
  2652. default: true,
  2653. },
  2654. {
  2655. name: "Big",
  2656. height: math.unit(20, "feet")
  2657. },
  2658. {
  2659. name: "Minimacro",
  2660. height: math.unit(40, "feet"),
  2661. info: {
  2662. description: {
  2663. mode: "append",
  2664. text: "\n\nTOO DAMN BIG"
  2665. }
  2666. }
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(100, "feet"),
  2671. info: {
  2672. description: {
  2673. mode: "append",
  2674. text: "\n\nTOO DAMN BIG"
  2675. }
  2676. }
  2677. },
  2678. {
  2679. name: "Megamacro",
  2680. height: math.unit(2, "miles")
  2681. },
  2682. {
  2683. name: "Gigamacro",
  2684. height: math.unit(10, "earths")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(183, "cm"),
  2693. weight: math.unit(80, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/sofia-fluttertail/front.svg",
  2697. bottom: 0.01,
  2698. extra: 2154 / 2081
  2699. }
  2700. },
  2701. frontAlt: {
  2702. height: math.unit(183, "cm"),
  2703. weight: math.unit(80, "kg"),
  2704. name: "Front (alt)",
  2705. image: {
  2706. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(183, "cm"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/back.svg"
  2715. }
  2716. },
  2717. kneeling: {
  2718. height: math.unit(125, "cm"),
  2719. weight: math.unit(80, "kg"),
  2720. name: "Kneeling",
  2721. image: {
  2722. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2723. extra: 1033 / 977,
  2724. bottom: 23.7 / 1057
  2725. }
  2726. },
  2727. maw: {
  2728. height: math.unit(183 / 5, "cm"),
  2729. name: "Maw",
  2730. image: {
  2731. source: "./media/characters/sofia-fluttertail/maw.svg"
  2732. }
  2733. },
  2734. mawcloseup: {
  2735. height: math.unit(183 / 5 * 0.41, "cm"),
  2736. name: "Maw (Closeup)",
  2737. image: {
  2738. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2739. }
  2740. },
  2741. paws: {
  2742. height: math.unit(1.17, "feet"),
  2743. name: "Paws",
  2744. image: {
  2745. source: "./media/characters/sofia-fluttertail/paws.svg",
  2746. extra: 851 / 851,
  2747. bottom: 17 / 868
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Normal",
  2754. height: math.unit(1.83, "meter")
  2755. },
  2756. {
  2757. name: "Size Thief",
  2758. height: math.unit(18, "feet")
  2759. },
  2760. {
  2761. name: "50 Foot Collie",
  2762. height: math.unit(50, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(96, "feet"),
  2767. default: true
  2768. },
  2769. {
  2770. name: "Megamerger",
  2771. height: math.unit(650, "feet")
  2772. },
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(7, "feet"),
  2780. weight: math.unit(100, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/march/front.svg",
  2784. extra: 1992/1851,
  2785. bottom: 39/2031
  2786. }
  2787. },
  2788. foot: {
  2789. height: math.unit(0.9, "feet"),
  2790. name: "Foot",
  2791. image: {
  2792. source: "./media/characters/march/foot.svg"
  2793. }
  2794. },
  2795. },
  2796. [
  2797. {
  2798. name: "Normal",
  2799. height: math.unit(7.9, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(220, "meters")
  2804. },
  2805. {
  2806. name: "Megamacro",
  2807. height: math.unit(2.98, "km"),
  2808. default: true
  2809. },
  2810. {
  2811. name: "Gigamacro",
  2812. height: math.unit(15963, "km")
  2813. },
  2814. {
  2815. name: "Teramacro",
  2816. height: math.unit(2980000000, "km")
  2817. },
  2818. {
  2819. name: "Examacro",
  2820. height: math.unit(250, "parsecs")
  2821. },
  2822. ]
  2823. ))
  2824. characterMakers.push(() => makeCharacter(
  2825. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2826. {
  2827. front: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(60, "kg"),
  2830. name: "Front",
  2831. image: {
  2832. source: "./media/characters/noir/front.svg",
  2833. extra: 1,
  2834. bottom: 0.032
  2835. }
  2836. },
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(6.6, "feet")
  2842. },
  2843. {
  2844. name: "Macro",
  2845. height: math.unit(500, "feet")
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(2.5, "km"),
  2850. default: true
  2851. },
  2852. {
  2853. name: "Gigamacro",
  2854. height: math.unit(22500, "km")
  2855. },
  2856. {
  2857. name: "Teramacro",
  2858. height: math.unit(2500000000, "km")
  2859. },
  2860. {
  2861. name: "Examacro",
  2862. height: math.unit(200, "parsecs")
  2863. },
  2864. ]
  2865. ))
  2866. characterMakers.push(() => makeCharacter(
  2867. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2868. {
  2869. front: {
  2870. height: math.unit(7, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Front",
  2873. image: {
  2874. source: "./media/characters/okuri/front.svg",
  2875. extra: 739/665,
  2876. bottom: 39/778
  2877. }
  2878. },
  2879. back: {
  2880. height: math.unit(7, "feet"),
  2881. weight: math.unit(100, "kg"),
  2882. name: "Back",
  2883. image: {
  2884. source: "./media/characters/okuri/back.svg",
  2885. extra: 734/653,
  2886. bottom: 13/747
  2887. }
  2888. },
  2889. sitting: {
  2890. height: math.unit(2.95, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Sitting",
  2893. image: {
  2894. source: "./media/characters/okuri/sitting.svg",
  2895. extra: 370/318,
  2896. bottom: 99/469
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Smallest",
  2903. height: math.unit(5 + 2/12, "feet")
  2904. },
  2905. {
  2906. name: "Smaller",
  2907. height: math.unit(300, "feet")
  2908. },
  2909. {
  2910. name: "Small",
  2911. height: math.unit(1000, "feet")
  2912. },
  2913. {
  2914. name: "Macro",
  2915. height: math.unit(1, "mile")
  2916. },
  2917. {
  2918. name: "Mega Macro (Small)",
  2919. height: math.unit(20, "km")
  2920. },
  2921. {
  2922. name: "Mega Macro (Large)",
  2923. height: math.unit(600, "km")
  2924. },
  2925. {
  2926. name: "Giga Macro",
  2927. height: math.unit(10000, "km")
  2928. },
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(577560, "km"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Large",
  2936. height: math.unit(4, "galaxies")
  2937. },
  2938. {
  2939. name: "Largest",
  2940. height: math.unit(15, "multiverses")
  2941. },
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(7, "feet"),
  2949. weight: math.unit(100, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/manny/front.svg",
  2953. extra: 1,
  2954. bottom: 0.06
  2955. }
  2956. },
  2957. back: {
  2958. height: math.unit(7, "feet"),
  2959. weight: math.unit(100, "kg"),
  2960. name: "Back",
  2961. image: {
  2962. source: "./media/characters/manny/back.svg",
  2963. extra: 1,
  2964. bottom: 0.014
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(7, "feet"),
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(78, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Macro+",
  2980. height: math.unit(300, "meters")
  2981. },
  2982. {
  2983. name: "Macro++",
  2984. height: math.unit(2400, "meters")
  2985. },
  2986. {
  2987. name: "Megamacro",
  2988. height: math.unit(5167, "meters")
  2989. },
  2990. {
  2991. name: "Gigamacro",
  2992. height: math.unit(41769, "miles")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(7, "feet"),
  3001. weight: math.unit(100, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/adake/front-1.svg"
  3005. }
  3006. },
  3007. frontAlt: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(100, "kg"),
  3010. name: "Front (Alt)",
  3011. image: {
  3012. source: "./media/characters/adake/front-2.svg",
  3013. extra: 1,
  3014. bottom: 0.01
  3015. }
  3016. },
  3017. back: {
  3018. height: math.unit(7, "feet"),
  3019. weight: math.unit(100, "kg"),
  3020. name: "Back",
  3021. image: {
  3022. source: "./media/characters/adake/back.svg",
  3023. }
  3024. },
  3025. kneel: {
  3026. height: math.unit(5.385, "feet"),
  3027. weight: math.unit(100, "kg"),
  3028. name: "Kneeling",
  3029. image: {
  3030. source: "./media/characters/adake/kneel.svg",
  3031. bottom: 0.052
  3032. }
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(7, "feet"),
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(78, "feet"),
  3043. default: true
  3044. },
  3045. {
  3046. name: "Macro+",
  3047. height: math.unit(300, "meters")
  3048. },
  3049. {
  3050. name: "Macro++",
  3051. height: math.unit(2400, "meters")
  3052. },
  3053. {
  3054. name: "Megamacro",
  3055. height: math.unit(5167, "meters")
  3056. },
  3057. {
  3058. name: "Gigamacro",
  3059. height: math.unit(41769, "miles")
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(1.65, "meters"),
  3068. weight: math.unit(50, "kg"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/elijah/front.svg",
  3072. extra: 858 / 830,
  3073. bottom: 95.5 / 953.8559
  3074. }
  3075. },
  3076. back: {
  3077. height: math.unit(1.65, "meters"),
  3078. weight: math.unit(50, "kg"),
  3079. name: "Back",
  3080. image: {
  3081. source: "./media/characters/elijah/back.svg",
  3082. extra: 895 / 850,
  3083. bottom: 5.3 / 897.956
  3084. }
  3085. },
  3086. frontNsfw: {
  3087. height: math.unit(1.65, "meters"),
  3088. weight: math.unit(50, "kg"),
  3089. name: "Front (NSFW)",
  3090. image: {
  3091. source: "./media/characters/elijah/front-nsfw.svg",
  3092. extra: 858 / 830,
  3093. bottom: 95.5 / 953.8559
  3094. }
  3095. },
  3096. backNsfw: {
  3097. height: math.unit(1.65, "meters"),
  3098. weight: math.unit(50, "kg"),
  3099. name: "Back (NSFW)",
  3100. image: {
  3101. source: "./media/characters/elijah/back-nsfw.svg",
  3102. extra: 895 / 850,
  3103. bottom: 5.3 / 897.956
  3104. }
  3105. },
  3106. dick: {
  3107. height: math.unit(1, "feet"),
  3108. name: "Dick",
  3109. image: {
  3110. source: "./media/characters/elijah/dick.svg"
  3111. }
  3112. },
  3113. beakOpen: {
  3114. height: math.unit(1.25, "feet"),
  3115. name: "Beak (Open)",
  3116. image: {
  3117. source: "./media/characters/elijah/beak-open.svg"
  3118. }
  3119. },
  3120. beakShut: {
  3121. height: math.unit(1.25, "feet"),
  3122. name: "Beak (Shut)",
  3123. image: {
  3124. source: "./media/characters/elijah/beak-shut.svg"
  3125. }
  3126. },
  3127. footFlexing: {
  3128. height: math.unit(1.61, "feet"),
  3129. name: "Foot (Flexing)",
  3130. image: {
  3131. source: "./media/characters/elijah/foot-flexing.svg"
  3132. }
  3133. },
  3134. footStepping: {
  3135. height: math.unit(1.44, "feet"),
  3136. name: "Foot (Stepping)",
  3137. image: {
  3138. source: "./media/characters/elijah/foot-stepping.svg"
  3139. }
  3140. },
  3141. plantigradeLeg: {
  3142. height: math.unit(2.34, "feet"),
  3143. name: "Plantigrade Leg",
  3144. image: {
  3145. source: "./media/characters/elijah/plantigrade-leg.svg"
  3146. }
  3147. },
  3148. plantigradeFootLeft: {
  3149. height: math.unit(0.9, "feet"),
  3150. name: "Plantigrade Foot (Left)",
  3151. image: {
  3152. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3153. }
  3154. },
  3155. plantigradeFootRight: {
  3156. height: math.unit(0.9, "feet"),
  3157. name: "Plantigrade Foot (Right)",
  3158. image: {
  3159. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3160. }
  3161. },
  3162. },
  3163. [
  3164. {
  3165. name: "Normal",
  3166. height: math.unit(1.65, "meters")
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(55, "meters"),
  3171. default: true
  3172. },
  3173. {
  3174. name: "Macro+",
  3175. height: math.unit(105, "meters")
  3176. },
  3177. ]
  3178. ))
  3179. characterMakers.push(() => makeCharacter(
  3180. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3181. {
  3182. front: {
  3183. height: math.unit(7 + 2/12, "feet"),
  3184. weight: math.unit(320, "kg"),
  3185. preyCapacity: math.unit(0.276549935, "people"),
  3186. name: "Front",
  3187. image: {
  3188. source: "./media/characters/rai/front.svg",
  3189. extra: 1802/1696,
  3190. bottom: 68/1870
  3191. },
  3192. form: "anthro",
  3193. default: true
  3194. },
  3195. frontDressed: {
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. weight: math.unit(320, "kg"),
  3198. preyCapacity: math.unit(0.276549935, "people"),
  3199. name: "Front (Dressed)",
  3200. image: {
  3201. source: "./media/characters/rai/front-dressed.svg",
  3202. extra: 1802/1696,
  3203. bottom: 68/1870
  3204. },
  3205. form: "anthro"
  3206. },
  3207. side: {
  3208. height: math.unit(7 + 2/12, "feet"),
  3209. weight: math.unit(320, "kg"),
  3210. preyCapacity: math.unit(0.276549935, "people"),
  3211. name: "Side",
  3212. image: {
  3213. source: "./media/characters/rai/side.svg",
  3214. extra: 1789/1710,
  3215. bottom: 115/1904
  3216. },
  3217. form: "anthro"
  3218. },
  3219. back: {
  3220. height: math.unit(7 + 2/12, "feet"),
  3221. weight: math.unit(320, "kg"),
  3222. preyCapacity: math.unit(0.276549935, "people"),
  3223. name: "Back",
  3224. image: {
  3225. source: "./media/characters/rai/back.svg",
  3226. extra: 1770/1707,
  3227. bottom: 28/1798
  3228. },
  3229. form: "anthro"
  3230. },
  3231. feral: {
  3232. height: math.unit(9.5, "feet"),
  3233. weight: math.unit(640, "kg"),
  3234. preyCapacity: math.unit(4, "people"),
  3235. name: "Feral",
  3236. image: {
  3237. source: "./media/characters/rai/feral.svg",
  3238. extra: 945/553,
  3239. bottom: 176/1121
  3240. },
  3241. form: "feral",
  3242. default: true
  3243. },
  3244. dragon: {
  3245. height: math.unit(23, "feet"),
  3246. weight: math.unit(50000, "lb"),
  3247. name: "Dragon",
  3248. image: {
  3249. source: "./media/characters/rai/dragon.svg",
  3250. extra: 2498 / 2030,
  3251. bottom: 85.2 / 2584
  3252. },
  3253. form: "dragon",
  3254. default: true
  3255. },
  3256. maw: {
  3257. height: math.unit(1.69, "feet"),
  3258. name: "Maw",
  3259. image: {
  3260. source: "./media/characters/rai/maw.svg"
  3261. },
  3262. form: "anthro"
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(7 + 2/12, "feet"),
  3269. form: "anthro"
  3270. },
  3271. {
  3272. name: "Big",
  3273. height: math.unit(11, "feet"),
  3274. form: "anthro"
  3275. },
  3276. {
  3277. name: "Minimacro",
  3278. height: math.unit(77, "feet"),
  3279. form: "anthro"
  3280. },
  3281. {
  3282. name: "Macro",
  3283. height: math.unit(302, "feet"),
  3284. default: true,
  3285. form: "anthro"
  3286. },
  3287. {
  3288. name: "Normal",
  3289. height: math.unit(9.5, "feet"),
  3290. form: "feral",
  3291. default: true
  3292. },
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(23, "feet"),
  3296. form: "dragon",
  3297. default: true
  3298. }
  3299. ],
  3300. {
  3301. "anthro": {
  3302. name: "Anthro",
  3303. default: true
  3304. },
  3305. "feral": {
  3306. name: "Feral",
  3307. },
  3308. "dragon": {
  3309. name: "Dragon",
  3310. },
  3311. }
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3315. {
  3316. frontDressed: {
  3317. height: math.unit(216, "feet"),
  3318. weight: math.unit(7000000, "lb"),
  3319. preyCapacity: math.unit(1321, "people"),
  3320. name: "Front (Dressed)",
  3321. image: {
  3322. source: "./media/characters/jazzy/front-dressed.svg",
  3323. extra: 2738 / 2651,
  3324. bottom: 41.8 / 2786
  3325. }
  3326. },
  3327. backDressed: {
  3328. height: math.unit(216, "feet"),
  3329. weight: math.unit(7000000, "lb"),
  3330. preyCapacity: math.unit(1321, "people"),
  3331. name: "Back (Dressed)",
  3332. image: {
  3333. source: "./media/characters/jazzy/back-dressed.svg",
  3334. extra: 2775 / 2673,
  3335. bottom: 36.8 / 2817
  3336. }
  3337. },
  3338. front: {
  3339. height: math.unit(216, "feet"),
  3340. weight: math.unit(7000000, "lb"),
  3341. preyCapacity: math.unit(1321, "people"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/jazzy/front.svg",
  3345. extra: 2738 / 2651,
  3346. bottom: 41.8 / 2786
  3347. }
  3348. },
  3349. back: {
  3350. height: math.unit(216, "feet"),
  3351. weight: math.unit(7000000, "lb"),
  3352. preyCapacity: math.unit(1321, "people"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/jazzy/back.svg",
  3356. extra: 2775 / 2673,
  3357. bottom: 36.8 / 2817
  3358. }
  3359. },
  3360. maw: {
  3361. height: math.unit(20, "feet"),
  3362. name: "Maw",
  3363. image: {
  3364. source: "./media/characters/jazzy/maw.svg"
  3365. }
  3366. },
  3367. paws: {
  3368. height: math.unit(27.5, "feet"),
  3369. name: "Paws",
  3370. image: {
  3371. source: "./media/characters/jazzy/paws.svg"
  3372. }
  3373. },
  3374. eye: {
  3375. height: math.unit(4.4, "feet"),
  3376. name: "Eye",
  3377. image: {
  3378. source: "./media/characters/jazzy/eye.svg"
  3379. }
  3380. },
  3381. droneOffense: {
  3382. height: math.unit(9.5, "inches"),
  3383. name: "Drone (Offense)",
  3384. image: {
  3385. source: "./media/characters/jazzy/drone-offense.svg"
  3386. }
  3387. },
  3388. droneRecon: {
  3389. height: math.unit(9.5, "inches"),
  3390. name: "Drone (Recon)",
  3391. image: {
  3392. source: "./media/characters/jazzy/drone-recon.svg"
  3393. }
  3394. },
  3395. droneDefense: {
  3396. height: math.unit(9.5, "inches"),
  3397. name: "Drone (Defense)",
  3398. image: {
  3399. source: "./media/characters/jazzy/drone-defense.svg"
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(216, "feet"),
  3407. default: true
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(9 + 6/12, "feet"),
  3416. weight: math.unit(700, "lb"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/flamm/front.svg",
  3420. extra: 1736/1596,
  3421. bottom: 93/1829
  3422. }
  3423. },
  3424. buff: {
  3425. height: math.unit(9 + 6/12, "feet"),
  3426. weight: math.unit(950, "lb"),
  3427. name: "Buff",
  3428. image: {
  3429. source: "./media/characters/flamm/buff.svg",
  3430. extra: 3018/2874,
  3431. bottom: 221/3239
  3432. }
  3433. },
  3434. },
  3435. [
  3436. {
  3437. name: "Normal",
  3438. height: math.unit(9.5, "feet")
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(200, "feet"),
  3443. default: true
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(5 + 3/12, "feet"),
  3452. weight: math.unit(60, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/zephiro/front.svg",
  3456. extra: 1873/1761,
  3457. bottom: 147/2020
  3458. }
  3459. },
  3460. side: {
  3461. height: math.unit(5 + 3/12, "feet"),
  3462. weight: math.unit(60, "kg"),
  3463. name: "Side",
  3464. image: {
  3465. source: "./media/characters/zephiro/side.svg",
  3466. extra: 1929/1827,
  3467. bottom: 65/1994
  3468. }
  3469. },
  3470. back: {
  3471. height: math.unit(5 + 3/12, "feet"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Back",
  3474. image: {
  3475. source: "./media/characters/zephiro/back.svg",
  3476. extra: 1926/1816,
  3477. bottom: 41/1967
  3478. }
  3479. },
  3480. hand: {
  3481. height: math.unit(0.68, "feet"),
  3482. name: "Hand",
  3483. image: {
  3484. source: "./media/characters/zephiro/hand.svg"
  3485. }
  3486. },
  3487. paw: {
  3488. height: math.unit(1, "feet"),
  3489. name: "Paw",
  3490. image: {
  3491. source: "./media/characters/zephiro/paw.svg"
  3492. }
  3493. },
  3494. beans: {
  3495. height: math.unit(0.93, "feet"),
  3496. name: "Beans",
  3497. image: {
  3498. source: "./media/characters/zephiro/beans.svg"
  3499. }
  3500. },
  3501. },
  3502. [
  3503. {
  3504. name: "Micro",
  3505. height: math.unit(3, "inches")
  3506. },
  3507. {
  3508. name: "Normal",
  3509. height: math.unit(5 + 3 / 12, "feet"),
  3510. default: true
  3511. },
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(118, "feet")
  3515. },
  3516. ]
  3517. ))
  3518. characterMakers.push(() => makeCharacter(
  3519. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3520. {
  3521. front: {
  3522. height: math.unit(5, "feet"),
  3523. weight: math.unit(90, "kg"),
  3524. preyCapacity: math.unit(14, "people"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/fory/front.svg",
  3528. extra: 2862 / 2674,
  3529. bottom: 180 / 3043.8
  3530. },
  3531. form: "weaselbun",
  3532. default: true,
  3533. extraAttributes: {
  3534. "pawSize": {
  3535. name: "Paw Size",
  3536. power: 2,
  3537. type: "area",
  3538. base: math.unit(0.1596, "m^2")
  3539. },
  3540. "pawLength": {
  3541. name: "Paw Length",
  3542. power: 1,
  3543. type: "length",
  3544. base: math.unit(0.7, "m")
  3545. }
  3546. }
  3547. },
  3548. back: {
  3549. height: math.unit(5, "feet"),
  3550. weight: math.unit(90, "kg"),
  3551. preyCapacity: math.unit(14, "people"),
  3552. name: "Back",
  3553. image: {
  3554. source: "./media/characters/fory/back.svg",
  3555. extra: 1790/1672,
  3556. bottom: 84/1874
  3557. },
  3558. form: "weaselbun",
  3559. extraAttributes: {
  3560. "pawSize": {
  3561. name: "Paw Size",
  3562. power: 2,
  3563. type: "area",
  3564. base: math.unit(0.1596, "m^2")
  3565. },
  3566. "pawLength": {
  3567. name: "Paw Length",
  3568. power: 1,
  3569. type: "length",
  3570. base: math.unit(0.7, "m")
  3571. }
  3572. }
  3573. },
  3574. paw: {
  3575. height: math.unit(2.14, "feet"),
  3576. name: "Paw",
  3577. image: {
  3578. source: "./media/characters/fory/paw.svg"
  3579. },
  3580. form: "weaselbun",
  3581. extraAttributes: {
  3582. "pawSize": {
  3583. name: "Paw Size",
  3584. power: 2,
  3585. type: "area",
  3586. base: math.unit(0.1596, "m^2")
  3587. },
  3588. "pawLength": {
  3589. name: "Paw Length",
  3590. power: 1,
  3591. type: "length",
  3592. base: math.unit(0.48, "m")
  3593. }
  3594. }
  3595. },
  3596. bunBack: {
  3597. height: math.unit(3, "feet"),
  3598. weight: math.unit(20, "kg"),
  3599. preyCapacity: math.unit(3, "people"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/fory/bun-back.svg",
  3603. extra: 1749/1564,
  3604. bottom: 246/1995
  3605. },
  3606. form: "bun",
  3607. default: true,
  3608. extraAttributes: {
  3609. "pawSize": {
  3610. name: "Paw Size",
  3611. power: 2,
  3612. type: "area",
  3613. base: math.unit(0.072, "m^2")
  3614. },
  3615. "pawLength": {
  3616. name: "Paw Length",
  3617. power: 1,
  3618. type: "length",
  3619. base: math.unit(0.45, "m")
  3620. }
  3621. }
  3622. },
  3623. },
  3624. [
  3625. {
  3626. name: "Normal",
  3627. height: math.unit(5, "feet"),
  3628. form: "weaselbun"
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(50, "feet"),
  3633. default: true,
  3634. form: "weaselbun"
  3635. },
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(10, "miles"),
  3639. form: "weaselbun"
  3640. },
  3641. {
  3642. name: "Gigamacro",
  3643. height: math.unit(5, "earths"),
  3644. form: "weaselbun"
  3645. },
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(3, "feet"),
  3649. default: true,
  3650. form: "bun"
  3651. },
  3652. {
  3653. name: "Fun-Size",
  3654. height: math.unit(12, "feet"),
  3655. form: "bun"
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(100, "feet"),
  3660. form: "bun"
  3661. },
  3662. {
  3663. name: "Planetary",
  3664. height: math.unit(3, "earths"),
  3665. form: "bun"
  3666. },
  3667. ],
  3668. {
  3669. "weaselbun": {
  3670. name: "Weaselbun",
  3671. default: true
  3672. },
  3673. "bun": {
  3674. name: "Bun",
  3675. },
  3676. }
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(7, "feet"),
  3683. weight: math.unit(90, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/kurrikage/front.svg",
  3687. extra: 1845/1733,
  3688. bottom: 119/1964
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(7, "feet"),
  3693. weight: math.unit(90, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/kurrikage/back.svg",
  3697. extra: 1790/1677,
  3698. bottom: 61/1851
  3699. }
  3700. },
  3701. dressed: {
  3702. height: math.unit(7, "feet"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Dressed",
  3705. image: {
  3706. source: "./media/characters/kurrikage/dressed.svg",
  3707. extra: 1845/1733,
  3708. bottom: 119/1964
  3709. }
  3710. },
  3711. foot: {
  3712. height: math.unit(1.5, "feet"),
  3713. name: "Foot",
  3714. image: {
  3715. source: "./media/characters/kurrikage/foot.svg"
  3716. }
  3717. },
  3718. staff: {
  3719. height: math.unit(6.7, "feet"),
  3720. name: "Staff",
  3721. image: {
  3722. source: "./media/characters/kurrikage/staff.svg"
  3723. }
  3724. },
  3725. peek: {
  3726. height: math.unit(1.05, "feet"),
  3727. name: "Peeking",
  3728. image: {
  3729. source: "./media/characters/kurrikage/peek.svg",
  3730. bottom: 0.08
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(12, "feet"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Big",
  3742. height: math.unit(20, "feet")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(500, "feet")
  3747. },
  3748. {
  3749. name: "Megamacro",
  3750. height: math.unit(20, "miles")
  3751. },
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/shingo/front.svg",
  3763. extra: 1900/1825,
  3764. bottom: 82/1982
  3765. }
  3766. },
  3767. side: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Side",
  3771. image: {
  3772. source: "./media/characters/shingo/side.svg",
  3773. extra: 1930/1865,
  3774. bottom: 16/1946
  3775. }
  3776. },
  3777. back: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Back",
  3781. image: {
  3782. source: "./media/characters/shingo/back.svg",
  3783. extra: 1922/1852,
  3784. bottom: 16/1938
  3785. }
  3786. },
  3787. frontDressed: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(150, "lb"),
  3790. name: "Front-dressed",
  3791. image: {
  3792. source: "./media/characters/shingo/front-dressed.svg",
  3793. extra: 1900/1825,
  3794. bottom: 82/1982
  3795. }
  3796. },
  3797. paw: {
  3798. height: math.unit(1.29, "feet"),
  3799. name: "Paw",
  3800. image: {
  3801. source: "./media/characters/shingo/paw.svg"
  3802. }
  3803. },
  3804. hand: {
  3805. height: math.unit(1.07, "feet"),
  3806. name: "Hand",
  3807. image: {
  3808. source: "./media/characters/shingo/hand.svg"
  3809. }
  3810. },
  3811. frontAlt: {
  3812. height: math.unit(6, "feet"),
  3813. weight: math.unit(75, "kg"),
  3814. name: "Front (Alt)",
  3815. image: {
  3816. source: "./media/characters/shingo/front-alt.svg",
  3817. extra: 3511 / 3338,
  3818. bottom: 0.005
  3819. }
  3820. },
  3821. frontAlt2: {
  3822. height: math.unit(6, "feet"),
  3823. weight: math.unit(75, "kg"),
  3824. name: "Front (Alt 2)",
  3825. image: {
  3826. source: "./media/characters/shingo/front-alt-2.svg",
  3827. extra: 706/681,
  3828. bottom: 11/717
  3829. }
  3830. },
  3831. pawAlt: {
  3832. height: math.unit(1, "feet"),
  3833. name: "Paw (Alt)",
  3834. image: {
  3835. source: "./media/characters/shingo/paw-alt.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Micro",
  3842. height: math.unit(4, "inches")
  3843. },
  3844. {
  3845. name: "Normal",
  3846. height: math.unit(6, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro",
  3851. height: math.unit(108, "feet")
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(1500, "feet")
  3856. },
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3861. {
  3862. side: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(75, "kg"),
  3865. name: "Side",
  3866. image: {
  3867. source: "./media/characters/aigey/side.svg"
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Macro",
  3874. height: math.unit(200, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Megamacro",
  3879. height: math.unit(100, "miles")
  3880. },
  3881. ]
  3882. )
  3883. )
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(13, "feet"),
  3889. weight: math.unit(1036.80, "kg"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/natasha/front.svg",
  3893. extra: 1301/1210,
  3894. bottom: 39/1340
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(13, "feet"),
  3899. weight: math.unit(1036.80, "kg"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/natasha/back.svg",
  3903. extra: 1342/1252,
  3904. bottom: 20/1362
  3905. }
  3906. },
  3907. head: {
  3908. height: math.unit(3.48, "feet"),
  3909. name: "Head",
  3910. image: {
  3911. source: "./media/characters/natasha/head.svg"
  3912. }
  3913. },
  3914. jaws: {
  3915. height: math.unit(3.52, "feet"),
  3916. name: "Jaws",
  3917. image: {
  3918. source: "./media/characters/natasha/jaws.svg"
  3919. }
  3920. },
  3921. paws: {
  3922. height: math.unit(2.7, "feet"),
  3923. name: "Paws",
  3924. image: {
  3925. source: "./media/characters/natasha/paws.svg"
  3926. }
  3927. },
  3928. collar: {
  3929. height: math.unit(0.89, "feet"),
  3930. name: "Collar",
  3931. image: {
  3932. source: "./media/characters/natasha/collar.svg"
  3933. }
  3934. },
  3935. gauge: {
  3936. height: math.unit(0.36, "feet"),
  3937. name: "Gauge",
  3938. image: {
  3939. source: "./media/characters/natasha/gauge.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Shortstack",
  3946. height: math.unit(3, "feet")
  3947. },
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(13, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(100, "feet")
  3956. },
  3957. {
  3958. name: "Macro+",
  3959. height: math.unit(260, "feet")
  3960. },
  3961. {
  3962. name: "Macro++",
  3963. height: math.unit(1, "mile")
  3964. },
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(75, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/malik/front.svg",
  3976. extra: 1750/1561,
  3977. bottom: 80/1830
  3978. },
  3979. extraAttributes: {
  3980. "toeSize": {
  3981. name: "Toe Size",
  3982. power: 2,
  3983. type: "area",
  3984. base: math.unit(0.0159, "m^2")
  3985. },
  3986. "pawSize": {
  3987. name: "Paw Size",
  3988. power: 2,
  3989. type: "area",
  3990. base: math.unit(0.09834, "m^2")
  3991. },
  3992. }
  3993. },
  3994. side: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(75, "kg"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/malik/side.svg",
  4000. extra: 1802/1685,
  4001. bottom: 42/1844
  4002. },
  4003. extraAttributes: {
  4004. "toeSize": {
  4005. name: "Toe Size",
  4006. power: 2,
  4007. type: "area",
  4008. base: math.unit(0.0159, "m^2")
  4009. },
  4010. "pawSize": {
  4011. name: "Paw Size",
  4012. power: 2,
  4013. type: "area",
  4014. base: math.unit(0.09834, "m^2")
  4015. },
  4016. }
  4017. },
  4018. back: {
  4019. height: math.unit(6, "feet"),
  4020. weight: math.unit(75, "kg"),
  4021. name: "Back",
  4022. image: {
  4023. source: "./media/characters/malik/back.svg",
  4024. extra: 1803/1607,
  4025. bottom: 33/1836
  4026. },
  4027. extraAttributes: {
  4028. "toeSize": {
  4029. name: "Toe Size",
  4030. power: 2,
  4031. type: "area",
  4032. base: math.unit(0.0159, "m^2")
  4033. },
  4034. "pawSize": {
  4035. name: "Paw Size",
  4036. power: 2,
  4037. type: "area",
  4038. base: math.unit(0.09834, "m^2")
  4039. },
  4040. }
  4041. },
  4042. },
  4043. [
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(156, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro+",
  4051. height: math.unit(1188, "feet")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(75, "kg"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/sefer/front.svg",
  4064. extra: 848 / 659,
  4065. bottom: 28.3 / 876.442
  4066. }
  4067. },
  4068. back: {
  4069. height: math.unit(6, "feet"),
  4070. weight: math.unit(75, "kg"),
  4071. name: "Back",
  4072. image: {
  4073. source: "./media/characters/sefer/back.svg",
  4074. extra: 864 / 695,
  4075. bottom: 10 / 871
  4076. }
  4077. },
  4078. frontDressed: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(75, "kg"),
  4081. name: "Dressed",
  4082. image: {
  4083. source: "./media/characters/sefer/dressed.svg",
  4084. extra: 839 / 653,
  4085. bottom: 37.6 / 878
  4086. }
  4087. },
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(6, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Big",
  4097. height: math.unit(8, "meters")
  4098. },
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4103. {
  4104. body: {
  4105. height: math.unit(2.2428, "meter"),
  4106. weight: math.unit(124.738, "kg"),
  4107. name: "Body",
  4108. image: {
  4109. extra: 1225 / 1050,
  4110. source: "./media/characters/north/front.svg"
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Micro",
  4117. height: math.unit(4, "inches")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(63, "meters")
  4122. },
  4123. {
  4124. name: "Megamacro",
  4125. height: math.unit(101, "miles"),
  4126. default: true
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4132. {
  4133. angled: {
  4134. height: math.unit(4, "meter"),
  4135. weight: math.unit(150, "kg"),
  4136. name: "Angled",
  4137. image: {
  4138. source: "./media/characters/talan/angled-sfw.svg",
  4139. bottom: 29 / 3734
  4140. }
  4141. },
  4142. angledNsfw: {
  4143. height: math.unit(4, "meter"),
  4144. weight: math.unit(150, "kg"),
  4145. name: "Angled (NSFW)",
  4146. image: {
  4147. source: "./media/characters/talan/angled-nsfw.svg",
  4148. bottom: 29 / 3734
  4149. }
  4150. },
  4151. frontNsfw: {
  4152. height: math.unit(4, "meter"),
  4153. weight: math.unit(150, "kg"),
  4154. name: "Front (NSFW)",
  4155. image: {
  4156. source: "./media/characters/talan/front-nsfw.svg",
  4157. bottom: 29 / 3734
  4158. }
  4159. },
  4160. sideNsfw: {
  4161. height: math.unit(4, "meter"),
  4162. weight: math.unit(150, "kg"),
  4163. name: "Side (NSFW)",
  4164. image: {
  4165. source: "./media/characters/talan/side-nsfw.svg",
  4166. bottom: 29 / 3734
  4167. }
  4168. },
  4169. back: {
  4170. height: math.unit(4, "meter"),
  4171. weight: math.unit(150, "kg"),
  4172. name: "Back",
  4173. image: {
  4174. source: "./media/characters/talan/back.svg"
  4175. }
  4176. },
  4177. dickBottom: {
  4178. height: math.unit(0.621, "meter"),
  4179. name: "Dick (Bottom)",
  4180. image: {
  4181. source: "./media/characters/talan/dick-bottom.svg"
  4182. }
  4183. },
  4184. dickTop: {
  4185. height: math.unit(0.621, "meter"),
  4186. name: "Dick (Top)",
  4187. image: {
  4188. source: "./media/characters/talan/dick-top.svg"
  4189. }
  4190. },
  4191. dickSide: {
  4192. height: math.unit(0.305, "meter"),
  4193. name: "Dick (Side)",
  4194. image: {
  4195. source: "./media/characters/talan/dick-side.svg"
  4196. }
  4197. },
  4198. dickFront: {
  4199. height: math.unit(0.305, "meter"),
  4200. name: "Dick (Front)",
  4201. image: {
  4202. source: "./media/characters/talan/dick-front.svg"
  4203. }
  4204. },
  4205. },
  4206. [
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(4, "meters")
  4210. },
  4211. {
  4212. name: "Macro",
  4213. height: math.unit(100, "meters")
  4214. },
  4215. {
  4216. name: "Megamacro",
  4217. height: math.unit(2, "miles"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Gigamacro",
  4222. height: math.unit(5000, "miles")
  4223. },
  4224. {
  4225. name: "Teramacro",
  4226. height: math.unit(100, "parsecs")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(2, "meter"),
  4235. weight: math.unit(90, "kg"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/gael'rathus/front.svg"
  4239. }
  4240. },
  4241. frontAlt: {
  4242. height: math.unit(2, "meter"),
  4243. weight: math.unit(90, "kg"),
  4244. name: "Front (alt)",
  4245. image: {
  4246. source: "./media/characters/gael'rathus/front-alt.svg"
  4247. }
  4248. },
  4249. frontAlt2: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(90, "kg"),
  4252. name: "Front (alt 2)",
  4253. image: {
  4254. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(9, "feet"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Large",
  4266. height: math.unit(25, "feet")
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(0.25, "miles")
  4271. },
  4272. {
  4273. name: "Megamacro",
  4274. height: math.unit(10, "miles")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4280. {
  4281. side: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(140, "kg"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/sosha/side.svg",
  4287. extra: 1170/1006,
  4288. bottom: 94/1264
  4289. }
  4290. },
  4291. maw: {
  4292. height: math.unit(2.87, "feet"),
  4293. name: "Maw",
  4294. image: {
  4295. source: "./media/characters/sosha/maw.svg",
  4296. extra: 966/865,
  4297. bottom: 0/966
  4298. }
  4299. },
  4300. cooch: {
  4301. height: math.unit(5.6, "feet"),
  4302. name: "Cooch",
  4303. image: {
  4304. source: "./media/characters/sosha/cooch.svg"
  4305. }
  4306. },
  4307. },
  4308. [
  4309. {
  4310. name: "Normal",
  4311. height: math.unit(12, "feet"),
  4312. default: true
  4313. }
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4318. {
  4319. side: {
  4320. height: math.unit(5 + 5 / 12, "feet"),
  4321. weight: math.unit(170, "kg"),
  4322. name: "Side",
  4323. image: {
  4324. source: "./media/characters/runnola/side.svg",
  4325. extra: 741 / 448,
  4326. bottom: 0.05
  4327. }
  4328. },
  4329. },
  4330. [
  4331. {
  4332. name: "Small",
  4333. height: math.unit(3, "feet")
  4334. },
  4335. {
  4336. name: "Normal",
  4337. height: math.unit(5 + 5 / 12, "feet"),
  4338. default: true
  4339. },
  4340. {
  4341. name: "Big",
  4342. height: math.unit(10, "feet")
  4343. },
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4348. {
  4349. front: {
  4350. height: math.unit(2, "meter"),
  4351. weight: math.unit(50, "kg"),
  4352. name: "Front",
  4353. image: {
  4354. source: "./media/characters/kurribird/front.svg",
  4355. bottom: 0.015
  4356. }
  4357. },
  4358. frontAlt: {
  4359. height: math.unit(1.5, "meter"),
  4360. weight: math.unit(50, "kg"),
  4361. name: "Front (Alt)",
  4362. image: {
  4363. source: "./media/characters/kurribird/front-alt.svg",
  4364. extra: 1.45
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(7, "feet")
  4372. },
  4373. {
  4374. name: "Big",
  4375. height: math.unit(12, "feet"),
  4376. default: true
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(1500, "feet")
  4381. },
  4382. {
  4383. name: "Megamacro",
  4384. height: math.unit(2, "miles")
  4385. }
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4390. {
  4391. front: {
  4392. height: math.unit(2, "meter"),
  4393. weight: math.unit(80, "kg"),
  4394. name: "Front",
  4395. image: {
  4396. source: "./media/characters/elbial/front.svg",
  4397. extra: 1643 / 1556,
  4398. bottom: 60.2 / 1696
  4399. }
  4400. },
  4401. side: {
  4402. height: math.unit(2, "meter"),
  4403. weight: math.unit(80, "kg"),
  4404. name: "Side",
  4405. image: {
  4406. source: "./media/characters/elbial/side.svg",
  4407. extra: 1601/1528,
  4408. bottom: 97/1698
  4409. }
  4410. },
  4411. back: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Back",
  4415. image: {
  4416. source: "./media/characters/elbial/back.svg",
  4417. extra: 1653/1569,
  4418. bottom: 20/1673
  4419. }
  4420. },
  4421. frontDressed: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Front (Dressed)",
  4425. image: {
  4426. source: "./media/characters/elbial/front-dressed.svg",
  4427. extra: 1638/1569,
  4428. bottom: 70/1708
  4429. }
  4430. },
  4431. genitals: {
  4432. height: math.unit(2 / 3.367, "meter"),
  4433. name: "Genitals",
  4434. image: {
  4435. source: "./media/characters/elbial/genitals.svg"
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Large",
  4442. height: math.unit(100, "feet")
  4443. },
  4444. {
  4445. name: "Macro",
  4446. height: math.unit(500, "feet"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Megamacro",
  4451. height: math.unit(10, "miles")
  4452. },
  4453. {
  4454. name: "Gigamacro",
  4455. height: math.unit(25000, "miles")
  4456. },
  4457. {
  4458. name: "Full-Size",
  4459. height: math.unit(8000000, "gigaparsecs")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(2, "meter"),
  4468. weight: math.unit(60, "kg"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/noah/front.svg",
  4472. extra: 1383/1313,
  4473. bottom: 104/1487
  4474. }
  4475. },
  4476. hand: {
  4477. height: math.unit(0.6, "feet"),
  4478. name: "Hand",
  4479. image: {
  4480. source: "./media/characters/noah/hand.svg"
  4481. }
  4482. },
  4483. talons: {
  4484. height: math.unit(1.385, "feet"),
  4485. name: "Talons",
  4486. image: {
  4487. source: "./media/characters/noah/talons.svg"
  4488. }
  4489. },
  4490. beak: {
  4491. height: math.unit(0.43, "feet"),
  4492. name: "Beak",
  4493. image: {
  4494. source: "./media/characters/noah/beak.svg"
  4495. }
  4496. },
  4497. collar: {
  4498. height: math.unit(0.88, "feet"),
  4499. name: "Collar",
  4500. image: {
  4501. source: "./media/characters/noah/collar.svg"
  4502. }
  4503. },
  4504. eyeNarrow: {
  4505. height: math.unit(0.18, "feet"),
  4506. name: "Eye (Narrow)",
  4507. image: {
  4508. source: "./media/characters/noah/eye-narrow.svg"
  4509. }
  4510. },
  4511. eyeNormal: {
  4512. height: math.unit(0.18, "feet"),
  4513. name: "Eye (Normal)",
  4514. image: {
  4515. source: "./media/characters/noah/eye-normal.svg"
  4516. }
  4517. },
  4518. eyeWide: {
  4519. height: math.unit(0.18, "feet"),
  4520. name: "Eye (Wide)",
  4521. image: {
  4522. source: "./media/characters/noah/eye-wide.svg"
  4523. }
  4524. },
  4525. ear: {
  4526. height: math.unit(0.64, "feet"),
  4527. name: "Ear",
  4528. image: {
  4529. source: "./media/characters/noah/ear.svg"
  4530. }
  4531. },
  4532. },
  4533. [
  4534. {
  4535. name: "Large",
  4536. height: math.unit(50, "feet")
  4537. },
  4538. {
  4539. name: "Macro",
  4540. height: math.unit(750, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "Megamacro",
  4545. height: math.unit(50, "miles")
  4546. },
  4547. {
  4548. name: "Gigamacro",
  4549. height: math.unit(100000, "miles")
  4550. },
  4551. {
  4552. name: "Full-Size",
  4553. height: math.unit(3000000000, "miles")
  4554. }
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(2, "meter"),
  4562. weight: math.unit(80, "kg"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/natalya/front.svg"
  4566. }
  4567. },
  4568. back: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(80, "kg"),
  4571. name: "Back",
  4572. image: {
  4573. source: "./media/characters/natalya/back.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(150, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Megamacro",
  4585. height: math.unit(5, "miles")
  4586. },
  4587. {
  4588. name: "Full-Size",
  4589. height: math.unit(600, "kiloparsecs")
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4595. {
  4596. front: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(50, "kg"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/erestrebah/front.svg",
  4602. extra: 1262/1162,
  4603. bottom: 96/1358
  4604. }
  4605. },
  4606. back: {
  4607. height: math.unit(2, "meter"),
  4608. weight: math.unit(50, "kg"),
  4609. name: "Back",
  4610. image: {
  4611. source: "./media/characters/erestrebah/back.svg",
  4612. extra: 1257/1139,
  4613. bottom: 13/1270
  4614. }
  4615. },
  4616. wing: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(50, "kg"),
  4619. name: "Wing",
  4620. image: {
  4621. source: "./media/characters/erestrebah/wing.svg",
  4622. extra: 1262/1162,
  4623. bottom: 96/1358
  4624. }
  4625. },
  4626. mouth: {
  4627. height: math.unit(0.39, "feet"),
  4628. name: "Mouth",
  4629. image: {
  4630. source: "./media/characters/erestrebah/mouth.svg"
  4631. }
  4632. }
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(10, "feet")
  4638. },
  4639. {
  4640. name: "Large",
  4641. height: math.unit(50, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Macro",
  4646. height: math.unit(300, "feet")
  4647. },
  4648. {
  4649. name: "Macro+",
  4650. height: math.unit(750, "feet")
  4651. },
  4652. {
  4653. name: "Megamacro",
  4654. height: math.unit(3, "miles")
  4655. }
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4660. {
  4661. front: {
  4662. height: math.unit(2, "meter"),
  4663. weight: math.unit(80, "kg"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/jennifer/front.svg",
  4667. bottom: 0.11,
  4668. extra: 1.16
  4669. }
  4670. },
  4671. frontAlt: {
  4672. height: math.unit(2, "meter"),
  4673. weight: math.unit(80, "kg"),
  4674. name: "Front (Alt)",
  4675. image: {
  4676. source: "./media/characters/jennifer/front-alt.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Canon Height",
  4683. height: math.unit(120, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Macro+",
  4688. height: math.unit(300, "feet")
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(20000, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(2, "meter"),
  4701. weight: math.unit(50, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/kalista/front.svg",
  4705. extra: 1314/1145,
  4706. bottom: 101/1415
  4707. }
  4708. },
  4709. back: {
  4710. height: math.unit(2, "meter"),
  4711. weight: math.unit(50, "kg"),
  4712. name: "Back",
  4713. image: {
  4714. source: "./media/characters/kalista/back.svg",
  4715. extra: 1366 / 1156,
  4716. bottom: 33.9 / 1362.78
  4717. }
  4718. }
  4719. },
  4720. [
  4721. {
  4722. name: "Uncomfortably Small",
  4723. height: math.unit(10, "feet")
  4724. },
  4725. {
  4726. name: "Small",
  4727. height: math.unit(30, "feet")
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(100, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Macro+",
  4736. height: math.unit(2000, "feet")
  4737. },
  4738. {
  4739. name: "True Form",
  4740. height: math.unit(8924, "miles")
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(2, "meter"),
  4749. weight: math.unit(120, "kg"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/ggv/front.svg"
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(2, "meter"),
  4757. weight: math.unit(120, "kg"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/ggv/side.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Extremely Puny",
  4767. height: math.unit(9 + 5 / 12, "feet")
  4768. },
  4769. {
  4770. name: "Horribly Small",
  4771. height: math.unit(47.7, "miles"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "Reasonably Sized",
  4776. height: math.unit(25000, "parsecs")
  4777. },
  4778. {
  4779. name: "Slightly Uncompressed",
  4780. height: math.unit(7.77e31, "parsecs")
  4781. },
  4782. {
  4783. name: "Omniversal",
  4784. height: math.unit(1e300, "meters")
  4785. },
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(2, "meter"),
  4793. weight: math.unit(75, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/napalm/front.svg"
  4797. }
  4798. },
  4799. back: {
  4800. height: math.unit(2, "meter"),
  4801. weight: math.unit(75, "lb"),
  4802. name: "Back",
  4803. image: {
  4804. source: "./media/characters/napalm/back.svg"
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Standard",
  4811. height: math.unit(55, "feet"),
  4812. default: true
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(7 + 5 / 6, "feet"),
  4821. weight: math.unit(325, "lb"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/asana/front.svg",
  4825. extra: 1133 / 1060,
  4826. bottom: 15.2 / 1148.6
  4827. }
  4828. },
  4829. back: {
  4830. height: math.unit(7 + 5 / 6, "feet"),
  4831. weight: math.unit(325, "lb"),
  4832. name: "Back",
  4833. image: {
  4834. source: "./media/characters/asana/back.svg",
  4835. extra: 1114 / 1043,
  4836. bottom: 5 / 1120
  4837. }
  4838. },
  4839. dressedDark: {
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. weight: math.unit(325, "lb"),
  4842. name: "Dressed (Dark)",
  4843. image: {
  4844. source: "./media/characters/asana/dressed-dark.svg",
  4845. extra: 1133 / 1060,
  4846. bottom: 15.2 / 1148.6
  4847. }
  4848. },
  4849. dressedLight: {
  4850. height: math.unit(7 + 5 / 6, "feet"),
  4851. weight: math.unit(325, "lb"),
  4852. name: "Dressed (Light)",
  4853. image: {
  4854. source: "./media/characters/asana/dressed-light.svg",
  4855. extra: 1133 / 1060,
  4856. bottom: 15.2 / 1148.6
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Standard",
  4863. height: math.unit(7 + 5 / 6, "feet"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Large",
  4868. height: math.unit(10, "meters")
  4869. },
  4870. {
  4871. name: "Macro",
  4872. height: math.unit(2500, "meters")
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(5e6, "meters")
  4877. },
  4878. {
  4879. name: "Examacro",
  4880. height: math.unit(5e12, "lightyears")
  4881. },
  4882. {
  4883. name: "Max Size",
  4884. height: math.unit(1e31, "lightyears")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4890. {
  4891. front: {
  4892. height: math.unit(2, "meter"),
  4893. weight: math.unit(60, "kg"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/ebony/front.svg",
  4897. bottom: 0.03,
  4898. extra: 1045 / 810 + 0.03
  4899. }
  4900. },
  4901. side: {
  4902. height: math.unit(2, "meter"),
  4903. weight: math.unit(60, "kg"),
  4904. name: "Side",
  4905. image: {
  4906. source: "./media/characters/ebony/side.svg",
  4907. bottom: 0.03,
  4908. extra: 1045 / 810 + 0.03
  4909. }
  4910. },
  4911. back: {
  4912. height: math.unit(2, "meter"),
  4913. weight: math.unit(60, "kg"),
  4914. name: "Back",
  4915. image: {
  4916. source: "./media/characters/ebony/back.svg",
  4917. bottom: 0.01,
  4918. extra: 1045 / 810 + 0.01
  4919. }
  4920. },
  4921. },
  4922. [
  4923. // TODO check why I did this lol
  4924. {
  4925. name: "Standard",
  4926. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(200, "feet")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(13000, "km")
  4936. }
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(175, "lb"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/mountain/front.svg",
  4948. extra: 972 / 955,
  4949. bottom: 64 / 1036.6
  4950. }
  4951. },
  4952. back: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(175, "lb"),
  4955. name: "Back",
  4956. image: {
  4957. source: "./media/characters/mountain/back.svg",
  4958. extra: 970 / 950,
  4959. bottom: 28.25 / 999
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Large",
  4966. height: math.unit(20, "meters")
  4967. },
  4968. {
  4969. name: "Macro",
  4970. height: math.unit(300, "meters")
  4971. },
  4972. {
  4973. name: "Gigamacro",
  4974. height: math.unit(10000, "km"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Examacro",
  4979. height: math.unit(10e9, "lightyears")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(8, "feet"),
  4988. weight: math.unit(500, "lb"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/rick/front.svg"
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(8, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Macro",
  5003. height: math.unit(5, "km")
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(8, "feet"),
  5012. weight: math.unit(120, "lb"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/ona/front.svg"
  5016. }
  5017. },
  5018. frontAlt: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(120, "lb"),
  5021. name: "Front (Alt)",
  5022. image: {
  5023. source: "./media/characters/ona/front-alt.svg"
  5024. }
  5025. },
  5026. back: {
  5027. height: math.unit(8, "feet"),
  5028. weight: math.unit(120, "lb"),
  5029. name: "Back",
  5030. image: {
  5031. source: "./media/characters/ona/back.svg"
  5032. }
  5033. },
  5034. foot: {
  5035. height: math.unit(1.1, "feet"),
  5036. name: "Foot",
  5037. image: {
  5038. source: "./media/characters/ona/foot.svg"
  5039. }
  5040. }
  5041. },
  5042. [
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(70, "km"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Gigamacro",
  5050. height: math.unit(681818, "miles")
  5051. },
  5052. {
  5053. name: "Examacro",
  5054. height: math.unit(3800000, "lightyears")
  5055. },
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5060. {
  5061. front: {
  5062. height: math.unit(12, "feet"),
  5063. weight: math.unit(3000, "lb"),
  5064. name: "Front",
  5065. image: {
  5066. source: "./media/characters/mech/front.svg",
  5067. extra: 2900 / 2770,
  5068. bottom: 110 / 3010
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(12, "feet"),
  5073. weight: math.unit(3000, "lb"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/mech/back.svg",
  5077. extra: 3011 / 2890,
  5078. bottom: 94 / 3105
  5079. }
  5080. },
  5081. maw: {
  5082. height: math.unit(3.07, "feet"),
  5083. name: "Maw",
  5084. image: {
  5085. source: "./media/characters/mech/maw.svg"
  5086. }
  5087. },
  5088. head: {
  5089. height: math.unit(3.07, "feet"),
  5090. name: "Head",
  5091. image: {
  5092. source: "./media/characters/mech/head.svg"
  5093. }
  5094. },
  5095. dick: {
  5096. height: math.unit(1.43, "feet"),
  5097. name: "Dick",
  5098. image: {
  5099. source: "./media/characters/mech/dick.svg"
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(12, "feet")
  5107. },
  5108. {
  5109. name: "Macro",
  5110. height: math.unit(300, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Macro+",
  5115. height: math.unit(1500, "feet")
  5116. },
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5121. {
  5122. front: {
  5123. height: math.unit(1.3, "meter"),
  5124. weight: math.unit(30, "kg"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/gregory/front.svg",
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(1.3, "meter"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(20, "meter")
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(2.8, "meter"),
  5148. weight: math.unit(200, "kg"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/elory/front.svg",
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(2.8, "meter"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Macro",
  5163. height: math.unit(38, "meter")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(470, "feet"),
  5172. weight: math.unit(924, "tons"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/angelpatamon/front.svg",
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(470, "feet"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Deity Size I",
  5187. height: math.unit(28651.2, "km")
  5188. },
  5189. {
  5190. name: "Deity Size II",
  5191. height: math.unit(171907.2, "km")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5197. {
  5198. side: {
  5199. height: math.unit(7.2, "meter"),
  5200. weight: math.unit(8.2, "tons"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/cryae/side.svg",
  5204. extra: 3500 / 1500
  5205. }
  5206. }
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(7.2, "meter"),
  5212. default: true
  5213. }
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5218. {
  5219. front: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(175, "lb"),
  5222. name: "Front",
  5223. image: {
  5224. source: "./media/characters/xera/front.svg",
  5225. extra: 2377 / 1972,
  5226. bottom: 75.5 / 2452
  5227. }
  5228. },
  5229. side: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(175, "lb"),
  5232. name: "Side",
  5233. image: {
  5234. source: "./media/characters/xera/side.svg",
  5235. extra: 2345 / 2019,
  5236. bottom: 39.7 / 2384
  5237. }
  5238. },
  5239. back: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(175, "lb"),
  5242. name: "Back",
  5243. image: {
  5244. source: "./media/characters/xera/back.svg",
  5245. extra: 2095 / 1984,
  5246. bottom: 67 / 2166
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Small",
  5253. height: math.unit(10, "feet")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(500, "meters"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Macro+",
  5262. height: math.unit(10, "km")
  5263. },
  5264. {
  5265. name: "Gigamacro",
  5266. height: math.unit(25000, "km")
  5267. },
  5268. {
  5269. name: "Teramacro",
  5270. height: math.unit(3e6, "km")
  5271. }
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(175, "lb"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/nebula/front.svg",
  5283. extra: 2566 / 2362,
  5284. bottom: 81 / 2644
  5285. }
  5286. }
  5287. },
  5288. [
  5289. {
  5290. name: "Small",
  5291. height: math.unit(4.5, "meters")
  5292. },
  5293. {
  5294. name: "Macro",
  5295. height: math.unit(1500, "meters"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(150, "km")
  5301. },
  5302. {
  5303. name: "Gigamacro",
  5304. height: math.unit(27000, "km")
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(225, "lb"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/abysgar/front.svg",
  5317. extra: 1739/1614,
  5318. bottom: 71/1810
  5319. }
  5320. },
  5321. frontNsfw: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(225, "lb"),
  5324. name: "Front (NSFW)",
  5325. image: {
  5326. source: "./media/characters/abysgar/front-nsfw.svg",
  5327. extra: 1739/1614,
  5328. bottom: 71/1810
  5329. }
  5330. },
  5331. back: {
  5332. height: math.unit(4.6, "feet"),
  5333. weight: math.unit(225, "lb"),
  5334. name: "Back",
  5335. image: {
  5336. source: "./media/characters/abysgar/back.svg",
  5337. extra: 1384/1327,
  5338. bottom: 0/1384
  5339. }
  5340. },
  5341. head: {
  5342. height: math.unit(1.25, "feet"),
  5343. name: "Head",
  5344. image: {
  5345. source: "./media/characters/abysgar/head.svg",
  5346. extra: 669/569,
  5347. bottom: 0/669
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Small",
  5354. height: math.unit(4.5, "meters")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(1250, "meters"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Megamacro",
  5363. height: math.unit(125, "km")
  5364. },
  5365. {
  5366. name: "Gigamacro",
  5367. height: math.unit(26000, "km")
  5368. }
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5373. {
  5374. front: {
  5375. height: math.unit(6, "feet"),
  5376. weight: math.unit(180, "lb"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/yakuz/front.svg"
  5380. }
  5381. }
  5382. },
  5383. [
  5384. {
  5385. name: "Small",
  5386. height: math.unit(5, "meters")
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(1500, "meters"),
  5391. default: true
  5392. },
  5393. {
  5394. name: "Megamacro",
  5395. height: math.unit(200, "km")
  5396. },
  5397. {
  5398. name: "Gigamacro",
  5399. height: math.unit(100000, "km")
  5400. }
  5401. ]
  5402. ))
  5403. characterMakers.push(() => makeCharacter(
  5404. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5405. {
  5406. front: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(175, "lb"),
  5409. name: "Front",
  5410. image: {
  5411. source: "./media/characters/mirova/front.svg",
  5412. extra: 3334 / 3071,
  5413. bottom: 42 / 3375.6
  5414. }
  5415. }
  5416. },
  5417. [
  5418. {
  5419. name: "Small",
  5420. height: math.unit(5, "meters")
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(900, "meters"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Megamacro",
  5429. height: math.unit(135, "km")
  5430. },
  5431. {
  5432. name: "Gigamacro",
  5433. height: math.unit(20000, "km")
  5434. }
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5439. {
  5440. side: {
  5441. height: math.unit(28.35, "feet"),
  5442. weight: math.unit(99.75, "tons"),
  5443. name: "Side",
  5444. image: {
  5445. source: "./media/characters/asana-mech/side.svg",
  5446. extra: 923 / 699,
  5447. bottom: 50 / 975
  5448. }
  5449. },
  5450. chaingun: {
  5451. height: math.unit(7, "feet"),
  5452. weight: math.unit(2400, "lb"),
  5453. name: "Chaingun",
  5454. image: {
  5455. source: "./media/characters/asana-mech/chaingun.svg"
  5456. }
  5457. },
  5458. laser: {
  5459. height: math.unit(7.12, "feet"),
  5460. weight: math.unit(2000, "lb"),
  5461. name: "Laser",
  5462. image: {
  5463. source: "./media/characters/asana-mech/laser.svg"
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(28.35, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(2500, "feet")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(25, "miles")
  5480. },
  5481. {
  5482. name: "Examacro",
  5483. height: math.unit(6e8, "lightyears")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5, "meters"),
  5492. weight: math.unit(1000, "kg"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/asche/front.svg",
  5496. extra: 1258 / 1190,
  5497. bottom: 47 / 1305
  5498. }
  5499. },
  5500. frontUnderwear: {
  5501. height: math.unit(5, "meters"),
  5502. weight: math.unit(1000, "kg"),
  5503. name: "Front (Underwear)",
  5504. image: {
  5505. source: "./media/characters/asche/front-underwear.svg",
  5506. extra: 1258 / 1190,
  5507. bottom: 47 / 1305
  5508. }
  5509. },
  5510. frontDressed: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Front (Dressed)",
  5514. image: {
  5515. source: "./media/characters/asche/front-dressed.svg",
  5516. extra: 1258 / 1190,
  5517. bottom: 47 / 1305
  5518. }
  5519. },
  5520. frontArmor: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Front (Armored)",
  5524. image: {
  5525. source: "./media/characters/asche/front-armored.svg",
  5526. extra: 1374 / 1308,
  5527. bottom: 23 / 1397
  5528. }
  5529. },
  5530. mp724: {
  5531. height: math.unit(0.96, "meters"),
  5532. weight: math.unit(38, "kg"),
  5533. name: "H&K MP724",
  5534. image: {
  5535. source: "./media/characters/asche/h&k-mp724.svg"
  5536. }
  5537. },
  5538. side: {
  5539. height: math.unit(5, "meters"),
  5540. weight: math.unit(1000, "kg"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/asche/side.svg",
  5544. extra: 1717 / 1609,
  5545. bottom: 0.005
  5546. }
  5547. },
  5548. back: {
  5549. height: math.unit(5, "meters"),
  5550. weight: math.unit(1000, "kg"),
  5551. name: "Back",
  5552. image: {
  5553. source: "./media/characters/asche/back.svg",
  5554. extra: 1570 / 1501
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "DEFCON 5",
  5561. height: math.unit(5, "meters")
  5562. },
  5563. {
  5564. name: "DEFCON 4",
  5565. height: math.unit(500, "meters"),
  5566. default: true
  5567. },
  5568. {
  5569. name: "DEFCON 3",
  5570. height: math.unit(5, "km")
  5571. },
  5572. {
  5573. name: "DEFCON 2",
  5574. height: math.unit(500, "km")
  5575. },
  5576. {
  5577. name: "DEFCON 1",
  5578. height: math.unit(500000, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 0",
  5582. height: math.unit(3, "gigaparsecs")
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(7, "feet"),
  5591. weight: math.unit(92.7, "kg"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/gale/front.svg",
  5595. extra: 977/919,
  5596. bottom: 105/1082
  5597. }
  5598. },
  5599. side: {
  5600. height: math.unit(6.7, "feet"),
  5601. weight: math.unit(92.7, "kg"),
  5602. name: "Side",
  5603. image: {
  5604. source: "./media/characters/gale/side.svg",
  5605. extra: 978/922,
  5606. bottom: 140/1118
  5607. }
  5608. },
  5609. back: {
  5610. height: math.unit(7, "feet"),
  5611. weight: math.unit(92.7, "kg"),
  5612. name: "Back",
  5613. image: {
  5614. source: "./media/characters/gale/back.svg",
  5615. extra: 966/920,
  5616. bottom: 61/1027
  5617. }
  5618. },
  5619. maw: {
  5620. height: math.unit(2.23, "feet"),
  5621. name: "Maw",
  5622. image: {
  5623. source: "./media/characters/gale/maw.svg"
  5624. }
  5625. },
  5626. foot: {
  5627. height: math.unit(2.1, "feet"),
  5628. name: "Foot",
  5629. image: {
  5630. source: "./media/characters/gale/foot.svg"
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(7, "feet")
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(150, "feet"),
  5642. default: true
  5643. },
  5644. {
  5645. name: "Macro+",
  5646. height: math.unit(300, "feet")
  5647. },
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5652. {
  5653. front: {
  5654. height: math.unit(5 + 10/12, "feet"),
  5655. weight: math.unit(67, "kg"),
  5656. name: "Front",
  5657. image: {
  5658. source: "./media/characters/draylen/front.svg",
  5659. extra: 832/777,
  5660. bottom: 85/917
  5661. }
  5662. }
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(5 + 10/12, "feet")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(150, "feet"),
  5672. default: true
  5673. }
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(7 + 9 / 12, "feet"),
  5681. weight: math.unit(379, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/chez/front.svg"
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(7 + 9 / 12, "feet"),
  5689. weight: math.unit(379, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/chez/side.svg"
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(7 + 9 / 12, "feet"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "God King",
  5704. height: math.unit(9750000, "meters")
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(275, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/kaylum/front.svg",
  5717. bottom: 0.01,
  5718. extra: 1166 / 1031
  5719. }
  5720. },
  5721. frontWingless: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(275, "lbs"),
  5724. name: "Front (Wingless)",
  5725. image: {
  5726. source: "./media/characters/kaylum/front-wingless.svg",
  5727. bottom: 0.01,
  5728. extra: 1117 / 1031
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(3.05, "meters")
  5736. },
  5737. {
  5738. name: "Master",
  5739. height: math.unit(5.5, "meters")
  5740. },
  5741. {
  5742. name: "Rampage",
  5743. height: math.unit(19, "meters")
  5744. },
  5745. {
  5746. name: "Macro Lite",
  5747. height: math.unit(37, "meters")
  5748. },
  5749. {
  5750. name: "Hyper Predator",
  5751. height: math.unit(61, "meters")
  5752. },
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(138, "meters"),
  5756. default: true
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(5 + 5 / 12, "feet"),
  5765. weight: math.unit(120, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/geta/front.svg",
  5769. extra: 1003/933,
  5770. bottom: 21/1024
  5771. }
  5772. },
  5773. paw: {
  5774. height: math.unit(0.35, "feet"),
  5775. name: "Paw",
  5776. image: {
  5777. source: "./media/characters/geta/paw.svg"
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Micro",
  5784. height: math.unit(3, "inches"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(5 + 5 / 12, "feet")
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(300, "lbs"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/tyrnn/front.svg"
  5802. }
  5803. }
  5804. },
  5805. [
  5806. {
  5807. name: "Main Height",
  5808. height: math.unit(355, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Fave. Height",
  5813. height: math.unit(2400, "feet")
  5814. }
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5819. {
  5820. front: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(300, "lbs"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/appledectomy/front.svg"
  5826. }
  5827. }
  5828. },
  5829. [
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(2500, "feet")
  5833. },
  5834. {
  5835. name: "Megamacro",
  5836. height: math.unit(50, "miles"),
  5837. default: true
  5838. },
  5839. {
  5840. name: "Gigamacro",
  5841. height: math.unit(5000, "miles")
  5842. },
  5843. {
  5844. name: "Teramacro",
  5845. height: math.unit(250000, "miles")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(200, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/vulpes/front.svg",
  5858. extra: 573 / 543,
  5859. bottom: 0.033
  5860. }
  5861. },
  5862. side: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(200, "lbs"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/vulpes/side.svg",
  5868. extra: 577 / 549,
  5869. bottom: 11 / 588
  5870. }
  5871. },
  5872. back: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Back",
  5876. image: {
  5877. source: "./media/characters/vulpes/back.svg",
  5878. extra: 573 / 549,
  5879. bottom: 20 / 593
  5880. }
  5881. },
  5882. feet: {
  5883. height: math.unit(1.276, "feet"),
  5884. name: "Feet",
  5885. image: {
  5886. source: "./media/characters/vulpes/feet.svg"
  5887. }
  5888. },
  5889. maw: {
  5890. height: math.unit(1.18, "feet"),
  5891. name: "Maw",
  5892. image: {
  5893. source: "./media/characters/vulpes/maw.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Micro",
  5900. height: math.unit(2, "inches")
  5901. },
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(6.3, "feet")
  5905. },
  5906. {
  5907. name: "Macro",
  5908. height: math.unit(850, "feet")
  5909. },
  5910. {
  5911. name: "Megamacro",
  5912. height: math.unit(7500, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Gigamacro",
  5917. height: math.unit(570000, "miles")
  5918. }
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5923. {
  5924. front: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(210, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/rain-fallen/front.svg"
  5930. }
  5931. },
  5932. side: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(210, "lbs"),
  5935. name: "Side",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/side.svg"
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(210, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/rain-fallen/back.svg"
  5946. }
  5947. },
  5948. feral: {
  5949. height: math.unit(9, "feet"),
  5950. weight: math.unit(700, "lbs"),
  5951. name: "Feral",
  5952. image: {
  5953. source: "./media/characters/rain-fallen/feral.svg"
  5954. }
  5955. },
  5956. },
  5957. [
  5958. {
  5959. name: "Meddling with Mortals",
  5960. height: math.unit(8 + 8/12, "feet")
  5961. },
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(5, "meter")
  5965. },
  5966. {
  5967. name: "Macro",
  5968. height: math.unit(150, "meter"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Megamacro",
  5973. height: math.unit(278e6, "meter")
  5974. },
  5975. {
  5976. name: "Gigamacro",
  5977. height: math.unit(2e9, "meter")
  5978. },
  5979. {
  5980. name: "Teramacro",
  5981. height: math.unit(8e12, "meter")
  5982. },
  5983. {
  5984. name: "Devourer",
  5985. height: math.unit(14, "zettameters")
  5986. },
  5987. {
  5988. name: "Scarlet King",
  5989. height: math.unit(18, "yottameters")
  5990. },
  5991. {
  5992. name: "Void",
  5993. height: math.unit(1e88, "yottameters")
  5994. }
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5999. {
  6000. standing: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(180, "lbs"),
  6003. name: "Standing",
  6004. image: {
  6005. source: "./media/characters/zaakira/standing.svg",
  6006. extra: 1599/1504,
  6007. bottom: 39/1638
  6008. }
  6009. },
  6010. laying: {
  6011. height: math.unit(3.3, "feet"),
  6012. weight: math.unit(180, "lbs"),
  6013. name: "Laying",
  6014. image: {
  6015. source: "./media/characters/zaakira/laying.svg"
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(12, "feet")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(279, "feet"),
  6027. default: true
  6028. }
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6033. {
  6034. femSfw: {
  6035. height: math.unit(8, "feet"),
  6036. weight: math.unit(350, "lb"),
  6037. name: "Fem",
  6038. image: {
  6039. source: "./media/characters/sigvald/fem-sfw.svg",
  6040. extra: 182 / 164,
  6041. bottom: 8.7 / 190.5
  6042. }
  6043. },
  6044. femNsfw: {
  6045. height: math.unit(8, "feet"),
  6046. weight: math.unit(350, "lb"),
  6047. name: "Fem (NSFW)",
  6048. image: {
  6049. source: "./media/characters/sigvald/fem-nsfw.svg",
  6050. extra: 182 / 164,
  6051. bottom: 8.7 / 190.5
  6052. }
  6053. },
  6054. maleNsfw: {
  6055. height: math.unit(8, "feet"),
  6056. weight: math.unit(350, "lb"),
  6057. name: "Male (NSFW)",
  6058. image: {
  6059. source: "./media/characters/sigvald/male-nsfw.svg",
  6060. extra: 182 / 164,
  6061. bottom: 8.7 / 190.5
  6062. }
  6063. },
  6064. hermNsfw: {
  6065. height: math.unit(8, "feet"),
  6066. weight: math.unit(350, "lb"),
  6067. name: "Herm (NSFW)",
  6068. image: {
  6069. source: "./media/characters/sigvald/herm-nsfw.svg",
  6070. extra: 182 / 164,
  6071. bottom: 8.7 / 190.5
  6072. }
  6073. },
  6074. dick: {
  6075. height: math.unit(2.36, "feet"),
  6076. name: "Dick",
  6077. image: {
  6078. source: "./media/characters/sigvald/dick.svg"
  6079. }
  6080. },
  6081. eye: {
  6082. height: math.unit(0.31, "feet"),
  6083. name: "Eye",
  6084. image: {
  6085. source: "./media/characters/sigvald/eye.svg"
  6086. }
  6087. },
  6088. mouth: {
  6089. height: math.unit(0.92, "feet"),
  6090. name: "Mouth",
  6091. image: {
  6092. source: "./media/characters/sigvald/mouth.svg"
  6093. }
  6094. },
  6095. paws: {
  6096. height: math.unit(2.2, "feet"),
  6097. name: "Paws",
  6098. image: {
  6099. source: "./media/characters/sigvald/paws.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(8, "feet")
  6107. },
  6108. {
  6109. name: "Large",
  6110. height: math.unit(12, "feet")
  6111. },
  6112. {
  6113. name: "Larger",
  6114. height: math.unit(20, "feet")
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(150, "feet")
  6119. },
  6120. {
  6121. name: "Macro+",
  6122. height: math.unit(200, "feet"),
  6123. default: true
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6129. {
  6130. side: {
  6131. height: math.unit(12, "feet"),
  6132. weight: math.unit(2000, "kg"),
  6133. name: "Side",
  6134. image: {
  6135. source: "./media/characters/scott/side.svg",
  6136. extra: 754 / 724,
  6137. bottom: 0.069
  6138. }
  6139. },
  6140. upright: {
  6141. height: math.unit(12, "feet"),
  6142. weight: math.unit(2000, "kg"),
  6143. name: "Upright",
  6144. image: {
  6145. source: "./media/characters/scott/upright.svg",
  6146. extra: 3881 / 3722,
  6147. bottom: 0.05
  6148. }
  6149. },
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(12, "feet"),
  6155. default: true
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6161. {
  6162. side: {
  6163. height: math.unit(8, "meters"),
  6164. weight: math.unit(84755, "lbs"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/tobias/side.svg",
  6168. extra: 1474 / 1096,
  6169. bottom: 38.9 / 1513.1235
  6170. }
  6171. },
  6172. maw: {
  6173. height: math.unit(2.3, "meters"),
  6174. name: "Maw",
  6175. image: {
  6176. source: "./media/characters/tobias/maw.svg"
  6177. }
  6178. },
  6179. burp: {
  6180. height: math.unit(2.85, "meters"),
  6181. name: "Burp",
  6182. image: {
  6183. source: "./media/characters/tobias/burp.svg"
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(8, "meters"),
  6191. default: true
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6197. {
  6198. front: {
  6199. height: math.unit(5.5, "feet"),
  6200. weight: math.unit(400, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/kieran/front.svg",
  6204. extra: 2694 / 2364,
  6205. bottom: 217 / 2908
  6206. }
  6207. },
  6208. side: {
  6209. height: math.unit(5.5, "feet"),
  6210. weight: math.unit(400, "lbs"),
  6211. name: "Side",
  6212. image: {
  6213. source: "./media/characters/kieran/side.svg",
  6214. extra: 875 / 777,
  6215. bottom: 84.6 / 959
  6216. }
  6217. },
  6218. },
  6219. [
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(5.5, "feet"),
  6223. default: true
  6224. },
  6225. ]
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6229. {
  6230. side: {
  6231. height: math.unit(2, "meters"),
  6232. weight: math.unit(70, "kg"),
  6233. name: "Side",
  6234. image: {
  6235. source: "./media/characters/sanya/side.svg",
  6236. bottom: 0.02,
  6237. extra: 1.02
  6238. }
  6239. },
  6240. },
  6241. [
  6242. {
  6243. name: "Small",
  6244. height: math.unit(2, "meters")
  6245. },
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(3, "meters")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(16, "meters"),
  6253. default: true
  6254. },
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(2, "meters"),
  6262. weight: math.unit(120, "kg"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/miranda/front.svg",
  6266. extra: 195 / 185,
  6267. bottom: 10.9 / 206.5
  6268. }
  6269. },
  6270. back: {
  6271. height: math.unit(2, "meters"),
  6272. weight: math.unit(120, "kg"),
  6273. name: "Back",
  6274. image: {
  6275. source: "./media/characters/miranda/back.svg",
  6276. extra: 201 / 193,
  6277. bottom: 2.3 / 203.7
  6278. }
  6279. },
  6280. },
  6281. [
  6282. {
  6283. name: "Normal",
  6284. height: math.unit(10, "feet"),
  6285. default: true
  6286. }
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "James", species: ["deer"], tags: ["anthro"] },
  6291. {
  6292. side: {
  6293. height: math.unit(2, "meters"),
  6294. weight: math.unit(100, "kg"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/james/front.svg",
  6298. extra: 10 / 8.5
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(8.5, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6312. {
  6313. side: {
  6314. height: math.unit(9.5, "feet"),
  6315. weight: math.unit(2500, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/heather/side.svg"
  6319. }
  6320. },
  6321. },
  6322. [
  6323. {
  6324. name: "Normal",
  6325. height: math.unit(9.5, "feet"),
  6326. default: true
  6327. }
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6332. {
  6333. side: {
  6334. height: math.unit(6.5, "feet"),
  6335. weight: math.unit(400, "lbs"),
  6336. name: "Side",
  6337. image: {
  6338. source: "./media/characters/lukas/side.svg",
  6339. extra: 7.25 / 6.5
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(6.5, "feet"),
  6347. default: true
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6353. {
  6354. side: {
  6355. height: math.unit(5, "feet"),
  6356. weight: math.unit(3000, "lbs"),
  6357. name: "Side",
  6358. image: {
  6359. source: "./media/characters/louise/side.svg"
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5, "feet"),
  6367. default: true
  6368. }
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6373. {
  6374. side: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(150, "lbs"),
  6377. name: "Side",
  6378. image: {
  6379. source: "./media/characters/ramona/side.svg",
  6380. extra: 871/854,
  6381. bottom: 41/912
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(6 + 4/12, "feet")
  6389. },
  6390. {
  6391. name: "Minimacro",
  6392. height: math.unit(5.3, "meters"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(20, "stories")
  6398. },
  6399. {
  6400. name: "Macro+",
  6401. height: math.unit(50, "stories")
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6407. {
  6408. standing: {
  6409. height: math.unit(5.75, "feet"),
  6410. weight: math.unit(160, "lbs"),
  6411. name: "Standing",
  6412. image: {
  6413. source: "./media/characters/deerpuff/standing.svg",
  6414. extra: 682 / 624
  6415. }
  6416. },
  6417. sitting: {
  6418. height: math.unit(5.75 / 1.79, "feet"),
  6419. weight: math.unit(160, "lbs"),
  6420. name: "Sitting",
  6421. image: {
  6422. source: "./media/characters/deerpuff/sitting.svg",
  6423. bottom: 44 / 400,
  6424. extra: 1
  6425. }
  6426. },
  6427. taurLaying: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(400, "lbs"),
  6430. name: "Taur (Laying)",
  6431. image: {
  6432. source: "./media/characters/deerpuff/taur-laying.svg"
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Puffball",
  6439. height: math.unit(6, "inches")
  6440. },
  6441. {
  6442. name: "Normalpuff",
  6443. height: math.unit(5.75, "feet")
  6444. },
  6445. {
  6446. name: "Macropuff",
  6447. height: math.unit(1500, "feet"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Megapuff",
  6452. height: math.unit(500, "miles")
  6453. },
  6454. {
  6455. name: "Gigapuff",
  6456. height: math.unit(250000, "miles")
  6457. },
  6458. {
  6459. name: "Omegapuff",
  6460. height: math.unit(1000, "lightyears")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6466. {
  6467. stomping: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(170, "lbs"),
  6470. name: "Stomping",
  6471. image: {
  6472. source: "./media/characters/vivian/stomping.svg"
  6473. }
  6474. },
  6475. sitting: {
  6476. height: math.unit(6 / 1.75, "feet"),
  6477. weight: math.unit(170, "lbs"),
  6478. name: "Sitting",
  6479. image: {
  6480. source: "./media/characters/vivian/sitting.svg",
  6481. bottom: 1 / 6.4,
  6482. extra: 1,
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(7, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Macro",
  6494. height: math.unit(10, "stories")
  6495. },
  6496. {
  6497. name: "Macro+",
  6498. height: math.unit(30, "stories")
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(10, "miles")
  6503. },
  6504. {
  6505. name: "Megamacro+",
  6506. height: math.unit(2750000, "meters")
  6507. },
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(160, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/prince/front.svg",
  6519. extra: 1938/1682,
  6520. bottom: 45/1983
  6521. }
  6522. },
  6523. back: {
  6524. height: math.unit(6, "feet"),
  6525. weight: math.unit(160, "lbs"),
  6526. name: "Back",
  6527. image: {
  6528. source: "./media/characters/prince/back.svg",
  6529. extra: 1955/1726,
  6530. bottom: 6/1961
  6531. }
  6532. },
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(7.75, "feet"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Not cute",
  6542. height: math.unit(17, "feet")
  6543. },
  6544. {
  6545. name: "I said NOT",
  6546. height: math.unit(91, "feet")
  6547. },
  6548. {
  6549. name: "Please stop",
  6550. height: math.unit(560, "feet")
  6551. },
  6552. {
  6553. name: "What have you done",
  6554. height: math.unit(2200, "feet")
  6555. },
  6556. {
  6557. name: "Deer God",
  6558. height: math.unit(3.6, "miles")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6564. {
  6565. standing: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(300, "lbs"),
  6568. name: "Standing",
  6569. image: {
  6570. source: "./media/characters/psymon/standing.svg",
  6571. extra: 1888 / 1810,
  6572. bottom: 0.05
  6573. }
  6574. },
  6575. slithering: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(300, "lbs"),
  6578. name: "Slithering",
  6579. image: {
  6580. source: "./media/characters/psymon/slithering.svg",
  6581. extra: 1330 / 1224
  6582. }
  6583. },
  6584. slitheringAlt: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(300, "lbs"),
  6587. name: "Slithering (Alt)",
  6588. image: {
  6589. source: "./media/characters/psymon/slithering-alt.svg",
  6590. extra: 1330 / 1224
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(11.25, "feet"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Large",
  6602. height: math.unit(27, "feet")
  6603. },
  6604. {
  6605. name: "Giant",
  6606. height: math.unit(87, "feet")
  6607. },
  6608. {
  6609. name: "Macro",
  6610. height: math.unit(365, "feet")
  6611. },
  6612. {
  6613. name: "Megamacro",
  6614. height: math.unit(3, "miles")
  6615. },
  6616. {
  6617. name: "World Serpent",
  6618. height: math.unit(8000, "miles")
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6624. {
  6625. front: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(180, "lbs"),
  6628. name: "Front",
  6629. image: {
  6630. source: "./media/characters/daimos/front.svg",
  6631. extra: 4160 / 3897,
  6632. bottom: 0.021
  6633. }
  6634. }
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(8, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Big Dog",
  6644. height: math.unit(22, "feet")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(127, "feet")
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(3600, "feet")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6658. {
  6659. side: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(180, "lbs"),
  6662. name: "Side",
  6663. image: {
  6664. source: "./media/characters/blake/side.svg",
  6665. extra: 1212 / 1120,
  6666. bottom: 0.05
  6667. }
  6668. },
  6669. crouched: {
  6670. height: math.unit(6 * 0.57, "feet"),
  6671. weight: math.unit(180, "lbs"),
  6672. name: "Crouched",
  6673. image: {
  6674. source: "./media/characters/blake/crouched.svg",
  6675. extra: 840 / 587,
  6676. bottom: 0.04
  6677. }
  6678. },
  6679. bent: {
  6680. height: math.unit(6 * 0.75, "feet"),
  6681. weight: math.unit(180, "lbs"),
  6682. name: "Bent",
  6683. image: {
  6684. source: "./media/characters/blake/bent.svg",
  6685. extra: 592 / 544,
  6686. bottom: 0.035
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(8 + 1 / 6, "feet"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Big Backside",
  6698. height: math.unit(37, "feet")
  6699. },
  6700. {
  6701. name: "Subway Shredder",
  6702. height: math.unit(72, "feet")
  6703. },
  6704. {
  6705. name: "City Carver",
  6706. height: math.unit(1675, "feet")
  6707. },
  6708. {
  6709. name: "Tectonic Tweaker",
  6710. height: math.unit(2300, "miles")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(180, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/guisetto/front.svg",
  6723. extra: 856 / 817,
  6724. bottom: 0.06
  6725. }
  6726. },
  6727. airborne: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Airborne",
  6731. image: {
  6732. source: "./media/characters/guisetto/airborne.svg",
  6733. extra: 584 / 525
  6734. }
  6735. },
  6736. },
  6737. [
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(10 + 11 / 12, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Large",
  6745. height: math.unit(35, "feet")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(475, "feet")
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(6, "feet"),
  6758. weight: math.unit(180, "lbs"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/luxor/front.svg",
  6762. extra: 2940 / 2152
  6763. }
  6764. },
  6765. back: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(180, "lbs"),
  6768. name: "Back",
  6769. image: {
  6770. source: "./media/characters/luxor/back.svg",
  6771. extra: 1083 / 960
  6772. }
  6773. },
  6774. },
  6775. [
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(5 + 5 / 6, "feet"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Lamp",
  6783. height: math.unit(50, "feet")
  6784. },
  6785. {
  6786. name: "Lämp",
  6787. height: math.unit(300, "feet")
  6788. },
  6789. {
  6790. name: "The sun is a lamp",
  6791. height: math.unit(250000, "miles")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6797. {
  6798. front: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(50, "lbs"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/huoyan/front.svg"
  6804. }
  6805. },
  6806. side: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(180, "lbs"),
  6809. name: "Side",
  6810. image: {
  6811. source: "./media/characters/huoyan/side.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Chef",
  6818. height: math.unit(9, "feet")
  6819. },
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(65, "feet"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(780, "feet")
  6828. },
  6829. {
  6830. name: "Flaming Mountain",
  6831. height: math.unit(4.8, "miles")
  6832. },
  6833. {
  6834. name: "Celestial",
  6835. height: math.unit(765000, "miles")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(5 + 3 / 4, "feet"),
  6844. weight: math.unit(120, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/tails/front.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(5 + 3 / 4, "feet"),
  6855. default: true
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(4, "feet"),
  6864. weight: math.unit(50, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/rainy/front.svg"
  6868. }
  6869. }
  6870. },
  6871. [
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(800, "feet"),
  6875. default: true
  6876. }
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(150, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/rainier/front.svg"
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Micro",
  6894. height: math.unit(2, "mm"),
  6895. default: true
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(8 + 4/12, "feet"),
  6904. weight: math.unit(450, "kilograms"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/andy-renard/front.svg",
  6908. extra: 862/809,
  6909. bottom: 85/947
  6910. },
  6911. extraAttributes: {
  6912. "pawSize": {
  6913. name: "Paw Size",
  6914. power: 2,
  6915. type: "area",
  6916. base: math.unit(0.45*0.3, "meters^2")
  6917. },
  6918. "handSize": {
  6919. name: "Hand Size",
  6920. power: 2,
  6921. type: "area",
  6922. base: math.unit(0.4 * 0.3, "meters^2")
  6923. },
  6924. "cockSize": {
  6925. name: "Cock Length",
  6926. power: 1,
  6927. type: "length",
  6928. base: math.unit(0.75, "meters")
  6929. },
  6930. "ballDiameter": {
  6931. name: "Ball Diameter",
  6932. power: 1,
  6933. type: "length",
  6934. base: math.unit(0.3, "meters")
  6935. },
  6936. "ballVolume": {
  6937. name: "Ball Volume",
  6938. power: 3,
  6939. type: "volume",
  6940. base: math.unit(0.01413716694, "meters^3")
  6941. },
  6942. }
  6943. },
  6944. back: {
  6945. height: math.unit(8 + 4/12, "feet"),
  6946. weight: math.unit(450, "kilograms"),
  6947. name: "Back",
  6948. image: {
  6949. source: "./media/characters/andy-renard/back.svg",
  6950. extra: 1112/1033,
  6951. bottom: 64/1176
  6952. },
  6953. extraAttributes: {
  6954. "pawSize": {
  6955. name: "Paw Size",
  6956. power: 2,
  6957. type: "area",
  6958. base: math.unit(0.45*0.3, "meters^2")
  6959. },
  6960. "handSize": {
  6961. name: "Hand Size",
  6962. power: 2,
  6963. type: "area",
  6964. base: math.unit(0.4 * 0.3, "meters^2")
  6965. },
  6966. "cockSize": {
  6967. name: "Cock Length",
  6968. power: 1,
  6969. type: "length",
  6970. base: math.unit(0.75, "meters")
  6971. },
  6972. "ballDiameter": {
  6973. name: "Ball Diameter",
  6974. power: 1,
  6975. type: "length",
  6976. base: math.unit(0.3, "meters")
  6977. },
  6978. "ballVolume": {
  6979. name: "Ball Volume",
  6980. power: 3,
  6981. type: "volume",
  6982. base: math.unit(0.01413716694, "meters^3")
  6983. },
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Tall",
  6990. height: math.unit(6 + 8/12, "feet")
  6991. },
  6992. {
  6993. name: "Very Tall",
  6994. height: math.unit(8 + 4/12, "feet")
  6995. },
  6996. {
  6997. name: "Mini Macro",
  6998. height: math.unit(15, "feet"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Giant",
  7003. height: math.unit(50, "feet")
  7004. },
  7005. {
  7006. name: "Nice",
  7007. height: math.unit(69, "feet")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(100, "feet")
  7012. },
  7013. {
  7014. name: "Enormous",
  7015. height: math.unit(500, "feet")
  7016. },
  7017. {
  7018. name: "Gargantuan",
  7019. height: math.unit(1000, "feet")
  7020. },
  7021. {
  7022. name: "Mega",
  7023. height: math.unit(1, "mile")
  7024. },
  7025. {
  7026. name: "Giga",
  7027. height: math.unit(50, "miles")
  7028. },
  7029. {
  7030. name: "Tera",
  7031. height: math.unit(1000, "miles")
  7032. },
  7033. {
  7034. name: "Cosmic",
  7035. height: math.unit(1.5, "galaxies")
  7036. },
  7037. {
  7038. name: "God",
  7039. height: math.unit(1.5, "universes")
  7040. },
  7041. {
  7042. name: "Chief Execute God",
  7043. height: math.unit(1.5, "multiverses")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(210, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/cimmaron/front-sfw.svg",
  7056. extra: 701 / 676,
  7057. bottom: 0.046
  7058. }
  7059. },
  7060. back: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(210, "lbs"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/cimmaron/back-sfw.svg",
  7066. extra: 701 / 676,
  7067. bottom: 0.046
  7068. }
  7069. },
  7070. frontNsfw: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(210, "lbs"),
  7073. name: "Front (NSFW)",
  7074. image: {
  7075. source: "./media/characters/cimmaron/front-nsfw.svg",
  7076. extra: 701 / 676,
  7077. bottom: 0.046
  7078. }
  7079. },
  7080. backNsfw: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(210, "lbs"),
  7083. name: "Back (NSFW)",
  7084. image: {
  7085. source: "./media/characters/cimmaron/back-nsfw.svg",
  7086. extra: 701 / 676,
  7087. bottom: 0.046
  7088. }
  7089. },
  7090. dick: {
  7091. height: math.unit(1.714, "feet"),
  7092. name: "Dick",
  7093. image: {
  7094. source: "./media/characters/cimmaron/dick.svg"
  7095. }
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(6, "feet"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Macro Mayor",
  7106. height: math.unit(350, "meters")
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(200, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/akari/front.svg",
  7119. extra: 962 / 901,
  7120. bottom: 0.04
  7121. }
  7122. }
  7123. },
  7124. [
  7125. {
  7126. name: "Micro",
  7127. height: math.unit(5, "inches"),
  7128. default: true
  7129. },
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(7, "feet")
  7133. },
  7134. ]
  7135. ))
  7136. characterMakers.push(() => makeCharacter(
  7137. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7138. {
  7139. front: {
  7140. height: math.unit(6, "feet"),
  7141. weight: math.unit(140, "lbs"),
  7142. name: "Front",
  7143. image: {
  7144. source: "./media/characters/cynosura/front.svg",
  7145. extra: 437/410,
  7146. bottom: 9/446
  7147. }
  7148. },
  7149. back: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(140, "lbs"),
  7152. name: "Back",
  7153. image: {
  7154. source: "./media/characters/cynosura/back.svg",
  7155. extra: 1304/1160,
  7156. bottom: 71/1375
  7157. }
  7158. },
  7159. },
  7160. [
  7161. {
  7162. name: "Micro",
  7163. height: math.unit(4, "inches")
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(5.75, "feet"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Tall",
  7172. height: math.unit(10, "feet")
  7173. },
  7174. {
  7175. name: "Big",
  7176. height: math.unit(20, "feet")
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(50, "feet")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(13 + 2/12, "feet"),
  7189. weight: math.unit(800, "kg"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/gin/front.svg",
  7193. extra: 1312/1191,
  7194. bottom: 45/1357
  7195. }
  7196. },
  7197. mouth: {
  7198. height: math.unit(2.39 * 1.8, "feet"),
  7199. name: "Mouth",
  7200. image: {
  7201. source: "./media/characters/gin/mouth.svg"
  7202. }
  7203. },
  7204. hand: {
  7205. height: math.unit(1.57 * 2.19, "feet"),
  7206. name: "Hand",
  7207. image: {
  7208. source: "./media/characters/gin/hand.svg"
  7209. }
  7210. },
  7211. foot: {
  7212. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7213. name: "Foot",
  7214. image: {
  7215. source: "./media/characters/gin/foot.svg"
  7216. }
  7217. },
  7218. sole: {
  7219. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7220. name: "Sole",
  7221. image: {
  7222. source: "./media/characters/gin/sole.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Very Small",
  7229. height: math.unit(13 + 2 / 12, "feet")
  7230. },
  7231. {
  7232. name: "Micro",
  7233. height: math.unit(600, "miles")
  7234. },
  7235. {
  7236. name: "Regular",
  7237. height: math.unit(20, "earths"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(2.2, "solarradii")
  7243. },
  7244. {
  7245. name: "Teramacro",
  7246. height: math.unit(1.2, "galaxies")
  7247. },
  7248. {
  7249. name: "Omegamacro",
  7250. height: math.unit(200, "universes")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(6 + 1 / 6, "feet"),
  7259. weight: math.unit(178, "lbs"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/guy/front.svg"
  7263. }
  7264. }
  7265. },
  7266. [
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(6 + 1 / 6, "feet"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Large",
  7274. height: math.unit(25 + 7 / 12, "feet")
  7275. },
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(60 + 9 / 12, "feet")
  7279. },
  7280. {
  7281. name: "Macro+",
  7282. height: math.unit(246, "feet")
  7283. },
  7284. {
  7285. name: "Macro++",
  7286. height: math.unit(878, "feet")
  7287. }
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(9, "feet"),
  7295. weight: math.unit(800, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/tiberius/front.svg",
  7299. extra: 2295 / 2071
  7300. }
  7301. },
  7302. back: {
  7303. height: math.unit(9, "feet"),
  7304. weight: math.unit(800, "lbs"),
  7305. name: "Back",
  7306. image: {
  7307. source: "./media/characters/tiberius/back.svg",
  7308. extra: 2373 / 2160
  7309. }
  7310. },
  7311. },
  7312. [
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(9, "feet"),
  7316. default: true
  7317. }
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7322. {
  7323. front: {
  7324. height: math.unit(6, "feet"),
  7325. weight: math.unit(600, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/surgo/front.svg",
  7329. extra: 3591 / 2227
  7330. }
  7331. },
  7332. back: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(600, "lbs"),
  7335. name: "Back",
  7336. image: {
  7337. source: "./media/characters/surgo/back.svg",
  7338. extra: 3557 / 2228
  7339. }
  7340. },
  7341. laying: {
  7342. height: math.unit(6 * 0.85, "feet"),
  7343. weight: math.unit(600, "lbs"),
  7344. name: "Laying",
  7345. image: {
  7346. source: "./media/characters/surgo/laying.svg"
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(6, "feet"),
  7354. default: true
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7360. {
  7361. side: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(150, "lbs"),
  7364. name: "Side",
  7365. image: {
  7366. source: "./media/characters/cibus/side.svg",
  7367. extra: 800 / 400
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(6, "feet"),
  7375. default: true
  7376. }
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(6, "feet"),
  7384. weight: math.unit(240, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/nibbles/front.svg"
  7388. }
  7389. },
  7390. side: {
  7391. height: math.unit(6, "feet"),
  7392. weight: math.unit(240, "lbs"),
  7393. name: "Side",
  7394. image: {
  7395. source: "./media/characters/nibbles/side.svg"
  7396. }
  7397. },
  7398. },
  7399. [
  7400. {
  7401. name: "Normal",
  7402. height: math.unit(9, "feet"),
  7403. default: true
  7404. }
  7405. ]
  7406. ))
  7407. characterMakers.push(() => makeCharacter(
  7408. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7409. {
  7410. side: {
  7411. height: math.unit(5 + 1 / 6, "feet"),
  7412. weight: math.unit(130, "lbs"),
  7413. name: "Side",
  7414. image: {
  7415. source: "./media/characters/rikky/side.svg",
  7416. extra: 851 / 801
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(5 + 1 / 6, "feet")
  7424. },
  7425. {
  7426. name: "Macro",
  7427. height: math.unit(152, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(7, "miles")
  7433. }
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7438. {
  7439. side: {
  7440. height: math.unit(370, "cm"),
  7441. weight: math.unit(350, "lbs"),
  7442. name: "Side",
  7443. image: {
  7444. source: "./media/characters/malfressa/side.svg"
  7445. }
  7446. },
  7447. walking: {
  7448. height: math.unit(370, "cm"),
  7449. weight: math.unit(350, "lbs"),
  7450. name: "Walking",
  7451. image: {
  7452. source: "./media/characters/malfressa/walking.svg"
  7453. }
  7454. },
  7455. feral: {
  7456. height: math.unit(2500, "cm"),
  7457. weight: math.unit(100000, "lbs"),
  7458. name: "Feral",
  7459. image: {
  7460. source: "./media/characters/malfressa/feral.svg",
  7461. extra: 2108 / 837,
  7462. bottom: 0.02
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(370, "cm")
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(300, "meters"),
  7474. default: true
  7475. }
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(6, "feet"),
  7483. weight: math.unit(60, "kg"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/jaro/front.svg",
  7487. extra: 845/817,
  7488. bottom: 45/890
  7489. }
  7490. },
  7491. back: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(60, "kg"),
  7494. name: "Back",
  7495. image: {
  7496. source: "./media/characters/jaro/back.svg",
  7497. extra: 847/817,
  7498. bottom: 34/881
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Micro",
  7505. height: math.unit(7, "inches")
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(5.5, "feet"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Minimacro",
  7514. height: math.unit(20, "feet")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(200, "meters")
  7519. }
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7524. {
  7525. front: {
  7526. height: math.unit(6, "feet"),
  7527. weight: math.unit(195, "lb"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/rogue/front.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(90, "feet"),
  7538. default: true
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7544. {
  7545. standing: {
  7546. height: math.unit(5 + 8 / 12, "feet"),
  7547. weight: math.unit(140, "lb"),
  7548. name: "Standing",
  7549. image: {
  7550. source: "./media/characters/piper/standing.svg",
  7551. extra: 1440/1284,
  7552. bottom: 66/1506
  7553. }
  7554. },
  7555. running: {
  7556. height: math.unit(5 + 8 / 12, "feet"),
  7557. weight: math.unit(140, "lb"),
  7558. name: "Running",
  7559. image: {
  7560. source: "./media/characters/piper/running.svg",
  7561. extra: 3948/3655,
  7562. bottom: 0/3948
  7563. }
  7564. },
  7565. sole: {
  7566. height: math.unit(0.81, "feet"),
  7567. weight: math.unit(2, "kg"),
  7568. name: "Sole",
  7569. image: {
  7570. source: "./media/characters/piper/sole.svg"
  7571. }
  7572. },
  7573. nipple: {
  7574. height: math.unit(0.25, "feet"),
  7575. weight: math.unit(1.5, "lb"),
  7576. name: "Nipple",
  7577. image: {
  7578. source: "./media/characters/piper/nipple.svg"
  7579. }
  7580. },
  7581. head: {
  7582. height: math.unit(1.1, "feet"),
  7583. name: "Head",
  7584. image: {
  7585. source: "./media/characters/piper/head.svg"
  7586. }
  7587. },
  7588. },
  7589. [
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(2, "inches")
  7593. },
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(5 + 8 / 12, "feet")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(250, "feet"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Megamacro",
  7605. height: math.unit(7, "miles")
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(6, "feet"),
  7614. weight: math.unit(220, "lb"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/gemini/front.svg"
  7618. }
  7619. },
  7620. back: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(220, "lb"),
  7623. name: "Back",
  7624. image: {
  7625. source: "./media/characters/gemini/back.svg"
  7626. }
  7627. },
  7628. kneeling: {
  7629. height: math.unit(6 / 1.5, "feet"),
  7630. weight: math.unit(220, "lb"),
  7631. name: "Kneeling",
  7632. image: {
  7633. source: "./media/characters/gemini/kneeling.svg",
  7634. bottom: 0.02
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(300, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Megamacro",
  7646. height: math.unit(6900, "meters")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7652. {
  7653. anthro: {
  7654. height: math.unit(2.35, "meters"),
  7655. weight: math.unit(73, "kg"),
  7656. name: "Anthro",
  7657. image: {
  7658. source: "./media/characters/alicia/anthro.svg",
  7659. extra: 2571 / 2385,
  7660. bottom: 75 / 2648
  7661. }
  7662. },
  7663. paw: {
  7664. height: math.unit(1.32, "feet"),
  7665. name: "Paw",
  7666. image: {
  7667. source: "./media/characters/alicia/paw.svg"
  7668. }
  7669. },
  7670. feral: {
  7671. height: math.unit(1.69, "meters"),
  7672. weight: math.unit(73, "kg"),
  7673. name: "Feral",
  7674. image: {
  7675. source: "./media/characters/alicia/feral.svg",
  7676. extra: 2123 / 1715,
  7677. bottom: 222 / 2349
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(2.35, "meters")
  7685. },
  7686. {
  7687. name: "Macro",
  7688. height: math.unit(60, "meters"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Megamacro",
  7693. height: math.unit(10000, "kilometers")
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(7, "feet"),
  7702. weight: math.unit(250, "lbs"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/archy/front.svg"
  7706. }
  7707. }
  7708. },
  7709. [
  7710. {
  7711. name: "Micro",
  7712. height: math.unit(1, "inch")
  7713. },
  7714. {
  7715. name: "Shorty",
  7716. height: math.unit(5, "feet")
  7717. },
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(7, "feet")
  7721. },
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(600, "meters"),
  7725. default: true
  7726. },
  7727. {
  7728. name: "Megamacro",
  7729. height: math.unit(1, "mile")
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(1.65, "meters"),
  7738. weight: math.unit(74, "kg"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/berri/front.svg",
  7742. extra: 857 / 837,
  7743. bottom: 18 / 877
  7744. }
  7745. },
  7746. bum: {
  7747. height: math.unit(1.46, "feet"),
  7748. name: "Bum",
  7749. image: {
  7750. source: "./media/characters/berri/bum.svg"
  7751. }
  7752. },
  7753. mouth: {
  7754. height: math.unit(0.44, "feet"),
  7755. name: "Mouth",
  7756. image: {
  7757. source: "./media/characters/berri/mouth.svg"
  7758. }
  7759. },
  7760. paw: {
  7761. height: math.unit(0.826, "feet"),
  7762. name: "Paw",
  7763. image: {
  7764. source: "./media/characters/berri/paw.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(1.65, "meters")
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(60, "m"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(9.213, "km")
  7781. },
  7782. {
  7783. name: "Planet Eater",
  7784. height: math.unit(489, "megameters")
  7785. },
  7786. {
  7787. name: "Teramacro",
  7788. height: math.unit(2471635000000, "meters")
  7789. },
  7790. {
  7791. name: "Examacro",
  7792. height: math.unit(8.0624e+26, "meters")
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(1.72, "meters"),
  7801. weight: math.unit(68, "kg"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/lexi/front.svg"
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Very Smol",
  7811. height: math.unit(10, "mm")
  7812. },
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(6.8, "cm"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(1.72, "m")
  7821. }
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(1.69, "meters"),
  7829. weight: math.unit(68, "kg"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/martin/front.svg",
  7833. extra: 596 / 581
  7834. }
  7835. }
  7836. },
  7837. [
  7838. {
  7839. name: "Micro",
  7840. height: math.unit(6.85, "cm"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Normal",
  7845. height: math.unit(1.69, "m")
  7846. }
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(1.69, "meters"),
  7854. weight: math.unit(68, "kg"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/juno/front.svg"
  7858. }
  7859. }
  7860. },
  7861. [
  7862. {
  7863. name: "Micro",
  7864. height: math.unit(7, "cm")
  7865. },
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(1.89, "m")
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(353, "meters"),
  7873. default: true
  7874. }
  7875. ]
  7876. ))
  7877. characterMakers.push(() => makeCharacter(
  7878. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7879. {
  7880. front: {
  7881. height: math.unit(1.93, "meters"),
  7882. weight: math.unit(83, "kg"),
  7883. name: "Front",
  7884. image: {
  7885. source: "./media/characters/samantha/front.svg"
  7886. }
  7887. },
  7888. frontClothed: {
  7889. height: math.unit(1.93, "meters"),
  7890. weight: math.unit(83, "kg"),
  7891. name: "Front (Clothed)",
  7892. image: {
  7893. source: "./media/characters/samantha/front-clothed.svg"
  7894. }
  7895. },
  7896. back: {
  7897. height: math.unit(1.93, "meters"),
  7898. weight: math.unit(83, "kg"),
  7899. name: "Back",
  7900. image: {
  7901. source: "./media/characters/samantha/back.svg"
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(1.93, "m")
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(74, "meters"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Macro+",
  7917. height: math.unit(223, "meters"),
  7918. },
  7919. {
  7920. name: "Megamacro",
  7921. height: math.unit(8381, "meters"),
  7922. },
  7923. {
  7924. name: "Megamacro+",
  7925. height: math.unit(12000, "kilometers")
  7926. },
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(1.92, "meters"),
  7934. weight: math.unit(80, "kg"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/dr-clay/front.svg"
  7938. }
  7939. },
  7940. frontClothed: {
  7941. height: math.unit(1.92, "meters"),
  7942. weight: math.unit(80, "kg"),
  7943. name: "Front (Clothed)",
  7944. image: {
  7945. source: "./media/characters/dr-clay/front-clothed.svg"
  7946. }
  7947. }
  7948. },
  7949. [
  7950. {
  7951. name: "Normal",
  7952. height: math.unit(1.92, "m")
  7953. },
  7954. {
  7955. name: "Macro",
  7956. height: math.unit(214, "meters"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Macro+",
  7961. height: math.unit(12.237, "meters"),
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(557, "megameters"),
  7966. },
  7967. {
  7968. name: "Unimaginable",
  7969. height: math.unit(120e9, "lightyears")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(2, "meters"),
  7978. weight: math.unit(80, "kg"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7982. }
  7983. }
  7984. },
  7985. [
  7986. {
  7987. name: "Teramacro",
  7988. height: math.unit(500000, "lightyears"),
  7989. default: true
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7995. {
  7996. crux: {
  7997. height: math.unit(2, "meters"),
  7998. weight: math.unit(150, "kg"),
  7999. name: "Crux",
  8000. image: {
  8001. source: "./media/characters/vemus/crux.svg",
  8002. extra: 1074/936,
  8003. bottom: 23/1097
  8004. }
  8005. },
  8006. skunkTanuki: {
  8007. height: math.unit(2, "meters"),
  8008. weight: math.unit(150, "kg"),
  8009. name: "Skunk-Tanuki",
  8010. image: {
  8011. source: "./media/characters/vemus/skunk-tanuki.svg",
  8012. extra: 926/893,
  8013. bottom: 20/946
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(4, "meters"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Big",
  8025. height: math.unit(8, "meters")
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(100, "meters")
  8030. },
  8031. {
  8032. name: "Macro+",
  8033. height: math.unit(1500, "meters")
  8034. },
  8035. {
  8036. name: "Stellar",
  8037. height: math.unit(14e8, "meters")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(2, "meters"),
  8046. weight: math.unit(70, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/beherit/front.svg",
  8050. extra: 1234/1109,
  8051. bottom: 55/1289
  8052. }
  8053. }
  8054. },
  8055. [
  8056. {
  8057. name: "Normal",
  8058. height: math.unit(6, "feet")
  8059. },
  8060. {
  8061. name: "Lorg",
  8062. height: math.unit(25, "feet"),
  8063. default: true
  8064. },
  8065. {
  8066. name: "Lorger",
  8067. height: math.unit(75, "feet")
  8068. },
  8069. {
  8070. name: "Macro",
  8071. height: math.unit(200, "meters")
  8072. },
  8073. ]
  8074. ))
  8075. characterMakers.push(() => makeCharacter(
  8076. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8077. {
  8078. front: {
  8079. height: math.unit(2, "meters"),
  8080. weight: math.unit(150, "kg"),
  8081. name: "Front",
  8082. image: {
  8083. source: "./media/characters/everett/front.svg",
  8084. extra: 1017/866,
  8085. bottom: 86/1103
  8086. }
  8087. },
  8088. paw: {
  8089. height: math.unit(2 / 3.6, "meters"),
  8090. name: "Paw",
  8091. image: {
  8092. source: "./media/characters/everett/paw.svg"
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(15, "feet"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Lorg",
  8104. height: math.unit(70, "feet"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Lorger",
  8109. height: math.unit(250, "feet")
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(500, "meters")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(2, "meters"),
  8122. weight: math.unit(86, "kg"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/rose/front.svg",
  8126. extra: 1785/1636,
  8127. bottom: 30/1815
  8128. },
  8129. form: "liom",
  8130. default: true
  8131. },
  8132. frontSporty: {
  8133. height: math.unit(2, "meters"),
  8134. weight: math.unit(86, "kg"),
  8135. name: "Front (Sporty)",
  8136. image: {
  8137. source: "./media/characters/rose/front-sporty.svg",
  8138. extra: 350/335,
  8139. bottom: 10/360
  8140. },
  8141. form: "liom"
  8142. },
  8143. frontAlt: {
  8144. height: math.unit(1.6, "meters"),
  8145. weight: math.unit(86, "kg"),
  8146. name: "Front (Alt)",
  8147. image: {
  8148. source: "./media/characters/rose/front-alt.svg",
  8149. extra: 299/283,
  8150. bottom: 3/302
  8151. },
  8152. form: "liom"
  8153. },
  8154. plush: {
  8155. height: math.unit(2, "meters"),
  8156. weight: math.unit(86/3, "kg"),
  8157. name: "Plush",
  8158. image: {
  8159. source: "./media/characters/rose/plush.svg",
  8160. extra: 361/337,
  8161. bottom: 11/372
  8162. },
  8163. form: "plush",
  8164. default: true
  8165. },
  8166. faeStanding: {
  8167. height: math.unit(10, "cm"),
  8168. weight: math.unit(10, "grams"),
  8169. name: "Standing",
  8170. image: {
  8171. source: "./media/characters/rose/fae-standing.svg",
  8172. extra: 1189/1060,
  8173. bottom: 27/1216
  8174. },
  8175. form: "fae",
  8176. default: true
  8177. },
  8178. faeSitting: {
  8179. height: math.unit(5, "cm"),
  8180. weight: math.unit(10, "grams"),
  8181. name: "Sitting",
  8182. image: {
  8183. source: "./media/characters/rose/fae-sitting.svg",
  8184. extra: 737/577,
  8185. bottom: 356/1093
  8186. },
  8187. form: "fae"
  8188. },
  8189. faePaw: {
  8190. height: math.unit(1.35, "cm"),
  8191. name: "Paw",
  8192. image: {
  8193. source: "./media/characters/rose/fae-paw.svg"
  8194. },
  8195. form: "fae"
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "True Micro",
  8201. height: math.unit(9, "cm"),
  8202. form: "liom"
  8203. },
  8204. {
  8205. name: "Micro",
  8206. height: math.unit(16, "cm"),
  8207. form: "liom"
  8208. },
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(1.85, "meters"),
  8212. default: true,
  8213. form: "liom"
  8214. },
  8215. {
  8216. name: "Mini-Macro",
  8217. height: math.unit(5, "meters"),
  8218. form: "liom"
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(15, "meters"),
  8223. form: "liom"
  8224. },
  8225. {
  8226. name: "True Macro",
  8227. height: math.unit(40, "meters"),
  8228. form: "liom"
  8229. },
  8230. {
  8231. name: "City Scale",
  8232. height: math.unit(1, "km"),
  8233. form: "liom"
  8234. },
  8235. {
  8236. name: "Plushie",
  8237. height: math.unit(9, "cm"),
  8238. form: "plush",
  8239. default: true
  8240. },
  8241. {
  8242. name: "Fae",
  8243. height: math.unit(10, "cm"),
  8244. form: "fae",
  8245. default: true
  8246. },
  8247. ],
  8248. {
  8249. "liom": {
  8250. name: "Liom"
  8251. },
  8252. "plush": {
  8253. name: "Plush"
  8254. },
  8255. "fae": {
  8256. name: "Fae Fox",
  8257. default: true
  8258. }
  8259. }
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8263. {
  8264. front: {
  8265. height: math.unit(2, "meters"),
  8266. weight: math.unit(350, "lbs"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/regal/front.svg"
  8270. }
  8271. },
  8272. back: {
  8273. height: math.unit(2, "meters"),
  8274. weight: math.unit(350, "lbs"),
  8275. name: "Back",
  8276. image: {
  8277. source: "./media/characters/regal/back.svg"
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(350, "feet"),
  8285. default: true
  8286. }
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8291. {
  8292. standing: {
  8293. height: math.unit(4 + 11/12, "feet"),
  8294. weight: math.unit(100, "lb"),
  8295. name: "Standing",
  8296. image: {
  8297. source: "./media/characters/opal/standing.svg",
  8298. extra: 1588/1513,
  8299. bottom: 23/1611
  8300. }
  8301. },
  8302. sitting: {
  8303. height: math.unit(2.3, "feet"),
  8304. weight: math.unit(100, "lb"),
  8305. name: "Sitting",
  8306. image: {
  8307. source: "./media/characters/opal/sitting.svg",
  8308. extra: 1031/892,
  8309. bottom: 142/1173
  8310. }
  8311. },
  8312. hand: {
  8313. height: math.unit(0.59, "feet"),
  8314. name: "Hand",
  8315. image: {
  8316. source: "./media/characters/opal/hand.svg"
  8317. }
  8318. },
  8319. foot: {
  8320. height: math.unit(0.61, "feet"),
  8321. name: "Foot",
  8322. image: {
  8323. source: "./media/characters/opal/foot.svg"
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Small",
  8330. height: math.unit(4 + 11 / 12, "feet")
  8331. },
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(20, "feet"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(120, "feet")
  8340. },
  8341. {
  8342. name: "Megamacro",
  8343. height: math.unit(80, "miles")
  8344. },
  8345. {
  8346. name: "True Size",
  8347. height: math.unit(100000, "lightyears")
  8348. },
  8349. ]
  8350. ))
  8351. characterMakers.push(() => makeCharacter(
  8352. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8353. {
  8354. front: {
  8355. height: math.unit(6, "feet"),
  8356. weight: math.unit(200, "lbs"),
  8357. name: "Front",
  8358. image: {
  8359. source: "./media/characters/vector-wuff/front.svg"
  8360. }
  8361. }
  8362. },
  8363. [
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(2.8, "meters")
  8367. },
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(450, "meters"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Megamacro",
  8375. height: math.unit(15, "kilometers")
  8376. }
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(256, "lbs"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/dannik/front.svg"
  8388. }
  8389. }
  8390. },
  8391. [
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(69.57, "meters"),
  8395. default: true
  8396. },
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8401. {
  8402. front: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(120, "lbs"),
  8405. name: "Front",
  8406. image: {
  8407. source: "./media/characters/azura-saharah/front.svg"
  8408. }
  8409. },
  8410. back: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(120, "lbs"),
  8413. name: "Back",
  8414. image: {
  8415. source: "./media/characters/azura-saharah/back.svg"
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(100, "feet"),
  8423. default: true
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8429. {
  8430. side: {
  8431. height: math.unit(5 + 4 / 12, "feet"),
  8432. weight: math.unit(163, "lbs"),
  8433. name: "Side",
  8434. image: {
  8435. source: "./media/characters/kennedy/side.svg"
  8436. }
  8437. }
  8438. },
  8439. [
  8440. {
  8441. name: "Standard Doggo",
  8442. height: math.unit(5 + 4 / 12, "feet")
  8443. },
  8444. {
  8445. name: "Big Doggo",
  8446. height: math.unit(25 + 3 / 12, "feet"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(5 + 5/12, "feet"),
  8456. weight: math.unit(100, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/odios-de-lunar/front.svg",
  8460. extra: 1468/1323,
  8461. bottom: 22/1490
  8462. }
  8463. }
  8464. },
  8465. [
  8466. {
  8467. name: "Micro",
  8468. height: math.unit(3, "inches")
  8469. },
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(5.5, "feet"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(100, "feet")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8483. {
  8484. back: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(220, "lbs"),
  8487. name: "Back",
  8488. image: {
  8489. source: "./media/characters/mandake/back.svg"
  8490. }
  8491. }
  8492. },
  8493. [
  8494. {
  8495. name: "Normal",
  8496. height: math.unit(7, "feet"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(78, "feet")
  8502. },
  8503. {
  8504. name: "Macro+",
  8505. height: math.unit(300, "meters")
  8506. },
  8507. {
  8508. name: "Macro++",
  8509. height: math.unit(2400, "feet")
  8510. },
  8511. {
  8512. name: "Megamacro",
  8513. height: math.unit(5167, "meters")
  8514. },
  8515. {
  8516. name: "Gigamacro",
  8517. height: math.unit(41769, "miles")
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(6, "feet"),
  8526. weight: math.unit(120, "lbs"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/yozey/front.svg"
  8530. }
  8531. },
  8532. frontAlt: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(120, "lbs"),
  8535. name: "Front (Alt)",
  8536. image: {
  8537. source: "./media/characters/yozey/front-alt.svg"
  8538. }
  8539. },
  8540. side: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(120, "lbs"),
  8543. name: "Side",
  8544. image: {
  8545. source: "./media/characters/yozey/side.svg"
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(3, "inches"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(6, "feet")
  8558. }
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(103, "lbs"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/valeska-voss/front.svg"
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Mini-Sized Sub",
  8576. height: math.unit(3.1, "inches")
  8577. },
  8578. {
  8579. name: "Mid-Sized Sub",
  8580. height: math.unit(6.2, "inches")
  8581. },
  8582. {
  8583. name: "Full-Sized Sub",
  8584. height: math.unit(9.3, "inches")
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(5 + 2 / 12, "foot"),
  8589. default: true
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(160, "lbs"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/gene-zeta/front.svg",
  8602. extra: 3006 / 2826,
  8603. bottom: 182 / 3188
  8604. }
  8605. }
  8606. },
  8607. [
  8608. {
  8609. name: "Micro",
  8610. height: math.unit(6, "inches")
  8611. },
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(5 + 11 / 12, "foot"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(140, "feet")
  8620. },
  8621. {
  8622. name: "Supercharged",
  8623. height: math.unit(2500, "feet")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(350, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/razinox/front.svg",
  8636. extra: 1686 / 1548,
  8637. bottom: 28.2 / 1868
  8638. }
  8639. },
  8640. back: {
  8641. height: math.unit(6, "feet"),
  8642. weight: math.unit(350, "lbs"),
  8643. name: "Back",
  8644. image: {
  8645. source: "./media/characters/razinox/back.svg",
  8646. extra: 1660 / 1590,
  8647. bottom: 15 / 1665
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(10 + 8 / 12, "foot")
  8655. },
  8656. {
  8657. name: "Minimacro",
  8658. height: math.unit(15, "foot")
  8659. },
  8660. {
  8661. name: "Macro",
  8662. height: math.unit(60, "foot"),
  8663. default: true
  8664. },
  8665. {
  8666. name: "Megamacro",
  8667. height: math.unit(5, "miles")
  8668. },
  8669. {
  8670. name: "Gigamacro",
  8671. height: math.unit(6000, "miles")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(150, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/cobalt/front.svg"
  8684. }
  8685. }
  8686. },
  8687. [
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(8 + 1 / 12, "foot")
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(111, "foot"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Supracosmic",
  8699. height: math.unit(1e42, "feet")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(5, "inches"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/amanda/front.svg",
  8711. extra: 926/791,
  8712. bottom: 38/964
  8713. }
  8714. },
  8715. back: {
  8716. height: math.unit(5, "inches"),
  8717. name: "Back",
  8718. image: {
  8719. source: "./media/characters/amanda/back.svg",
  8720. extra: 909/805,
  8721. bottom: 43/952
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Micro",
  8728. height: math.unit(5, "inches"),
  8729. default: true
  8730. },
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(2.75, "meters"),
  8738. weight: math.unit(1200, "lb"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/teal/front.svg",
  8742. extra: 2463 / 2320,
  8743. bottom: 166 / 2629
  8744. }
  8745. },
  8746. back: {
  8747. height: math.unit(2.75, "meters"),
  8748. weight: math.unit(1200, "lb"),
  8749. name: "Back",
  8750. image: {
  8751. source: "./media/characters/teal/back.svg",
  8752. extra: 2580 / 2489,
  8753. bottom: 151 / 2731
  8754. }
  8755. },
  8756. sitting: {
  8757. height: math.unit(1.9, "meters"),
  8758. weight: math.unit(1200, "lb"),
  8759. name: "Sitting",
  8760. image: {
  8761. source: "./media/characters/teal/sitting.svg",
  8762. extra: 623 / 590,
  8763. bottom: 121 / 744
  8764. }
  8765. },
  8766. standing: {
  8767. height: math.unit(2.75, "meters"),
  8768. weight: math.unit(1200, "lb"),
  8769. name: "Standing",
  8770. image: {
  8771. source: "./media/characters/teal/standing.svg",
  8772. extra: 923 / 893,
  8773. bottom: 60 / 983
  8774. }
  8775. },
  8776. stretching: {
  8777. height: math.unit(3.65, "meters"),
  8778. weight: math.unit(1200, "lb"),
  8779. name: "Stretching",
  8780. image: {
  8781. source: "./media/characters/teal/stretching.svg",
  8782. extra: 1276 / 1244,
  8783. bottom: 0 / 1276
  8784. }
  8785. },
  8786. legged: {
  8787. height: math.unit(1.3, "meters"),
  8788. weight: math.unit(100, "lb"),
  8789. name: "Legged",
  8790. image: {
  8791. source: "./media/characters/teal/legged.svg",
  8792. extra: 462 / 437,
  8793. bottom: 24 / 486
  8794. }
  8795. },
  8796. naga: {
  8797. height: math.unit(5.4, "meters"),
  8798. weight: math.unit(4000, "lb"),
  8799. name: "Naga",
  8800. image: {
  8801. source: "./media/characters/teal/naga.svg",
  8802. extra: 1902 / 1858,
  8803. bottom: 0 / 1902
  8804. }
  8805. },
  8806. hand: {
  8807. height: math.unit(0.52, "meters"),
  8808. name: "Hand",
  8809. image: {
  8810. source: "./media/characters/teal/hand.svg"
  8811. }
  8812. },
  8813. maw: {
  8814. height: math.unit(0.43, "meters"),
  8815. name: "Maw",
  8816. image: {
  8817. source: "./media/characters/teal/maw.svg"
  8818. }
  8819. },
  8820. slit: {
  8821. height: math.unit(0.25, "meters"),
  8822. name: "Slit",
  8823. image: {
  8824. source: "./media/characters/teal/slit.svg"
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(2.75, "meters"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(300, "feet")
  8837. },
  8838. {
  8839. name: "Macro+",
  8840. height: math.unit(2000, "feet")
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8846. {
  8847. frontCat: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(180, "lbs"),
  8850. name: "Front (Cat)",
  8851. image: {
  8852. source: "./media/characters/ravin-amulet/front-cat.svg"
  8853. }
  8854. },
  8855. frontCatAlt: {
  8856. height: math.unit(6, "feet"),
  8857. weight: math.unit(180, "lbs"),
  8858. name: "Front (Alt, Cat)",
  8859. image: {
  8860. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8861. }
  8862. },
  8863. frontWerewolf: {
  8864. height: math.unit(6 * 1.2, "feet"),
  8865. weight: math.unit(225, "lbs"),
  8866. name: "Front (Werewolf)",
  8867. image: {
  8868. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8869. }
  8870. },
  8871. backWerewolf: {
  8872. height: math.unit(6 * 1.2, "feet"),
  8873. weight: math.unit(225, "lbs"),
  8874. name: "Back (Werewolf)",
  8875. image: {
  8876. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Nano",
  8883. height: math.unit(1, "micrometer")
  8884. },
  8885. {
  8886. name: "Micro",
  8887. height: math.unit(1, "inch")
  8888. },
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(6, "feet"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(60, "feet")
  8897. }
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(165, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/fluoresce/front.svg"
  8909. }
  8910. }
  8911. },
  8912. [
  8913. {
  8914. name: "Micro",
  8915. height: math.unit(6, "cm")
  8916. },
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(5 + 7 / 12, "feet"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Macro",
  8924. height: math.unit(56, "feet")
  8925. },
  8926. {
  8927. name: "Megamacro",
  8928. height: math.unit(1.9, "miles")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(9 + 6 / 12, "feet"),
  8937. weight: math.unit(523, "lbs"),
  8938. name: "Side",
  8939. image: {
  8940. source: "./media/characters/aurora/side.svg",
  8941. extra: 474/393,
  8942. bottom: 5/479
  8943. }
  8944. }
  8945. },
  8946. [
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(9 + 6 / 12, "feet")
  8950. },
  8951. {
  8952. name: "Macro",
  8953. height: math.unit(96, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Macro+",
  8958. height: math.unit(243, "feet")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(194, "cm"),
  8967. weight: math.unit(90, "kg"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/ranek/front.svg",
  8971. extra: 1862/1791,
  8972. bottom: 80/1942
  8973. }
  8974. },
  8975. back: {
  8976. height: math.unit(194, "cm"),
  8977. weight: math.unit(90, "kg"),
  8978. name: "Back",
  8979. image: {
  8980. source: "./media/characters/ranek/back.svg",
  8981. extra: 1853/1787,
  8982. bottom: 74/1927
  8983. }
  8984. },
  8985. feral: {
  8986. height: math.unit(30, "cm"),
  8987. weight: math.unit(1.6, "lbs"),
  8988. name: "Feral",
  8989. image: {
  8990. source: "./media/characters/ranek/feral.svg",
  8991. extra: 990/631,
  8992. bottom: 29/1019
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(194, "cm"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(100, "meters")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(5 + 6 / 12, "feet"),
  9013. weight: math.unit(153, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/andrew-cooper/front.svg"
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Nano",
  9023. height: math.unit(1, "mm")
  9024. },
  9025. {
  9026. name: "Micro",
  9027. height: math.unit(2, "inches")
  9028. },
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(5 + 6 / 12, "feet"),
  9032. default: true
  9033. }
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(6, "feet"),
  9041. weight: math.unit(180, "lbs"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/akane-sato/front.svg",
  9045. extra: 1219 / 1140
  9046. }
  9047. },
  9048. back: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(180, "lbs"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/akane-sato/back.svg",
  9054. extra: 1219 / 1170
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(2.5, "meters")
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(250, "meters"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "Megamacro",
  9070. height: math.unit(25, "km")
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(6, "feet"),
  9079. weight: math.unit(65, "kg"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/rook/front.svg",
  9083. extra: 960 / 950
  9084. }
  9085. }
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(8.8, "feet")
  9091. },
  9092. {
  9093. name: "Macro",
  9094. height: math.unit(88, "feet"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Megamacro",
  9099. height: math.unit(8, "miles")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(12 + 2 / 12, "feet"),
  9108. weight: math.unit(808, "lbs"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/prodigy/front.svg"
  9112. }
  9113. }
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(12 + 2 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(143, "feet")
  9124. },
  9125. {
  9126. name: "Macro+",
  9127. height: math.unit(400, "feet")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(225, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/daniel/front.svg"
  9140. }
  9141. },
  9142. leaning: {
  9143. height: math.unit(6, "feet"),
  9144. weight: math.unit(225, "lbs"),
  9145. name: "Leaning",
  9146. image: {
  9147. source: "./media/characters/daniel/leaning.svg"
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(1000, "feet"),
  9155. default: true
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(88, "lbs"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/chiros/front.svg",
  9168. extra: 306 / 226
  9169. }
  9170. },
  9171. side: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(88, "lbs"),
  9174. name: "Side",
  9175. image: {
  9176. source: "./media/characters/chiros/side.svg",
  9177. extra: 306 / 226
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(6, "cm"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9191. {
  9192. front: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(100, "lbs"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/selka/front.svg",
  9198. extra: 947 / 887
  9199. }
  9200. }
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(5, "cm"),
  9206. default: true
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(8 + 3 / 12, "feet"),
  9215. weight: math.unit(424, "lbs"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/verin/front.svg",
  9219. extra: 1845 / 1550
  9220. }
  9221. },
  9222. frontArmored: {
  9223. height: math.unit(8 + 3 / 12, "feet"),
  9224. weight: math.unit(424, "lbs"),
  9225. name: "Front (Armored)",
  9226. image: {
  9227. source: "./media/characters/verin/front-armor.svg",
  9228. extra: 1845 / 1550,
  9229. bottom: 0.01
  9230. }
  9231. },
  9232. back: {
  9233. height: math.unit(8 + 3 / 12, "feet"),
  9234. weight: math.unit(424, "lbs"),
  9235. name: "Back",
  9236. image: {
  9237. source: "./media/characters/verin/back.svg",
  9238. bottom: 0.1,
  9239. extra: 1
  9240. }
  9241. },
  9242. foot: {
  9243. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9244. name: "Foot",
  9245. image: {
  9246. source: "./media/characters/verin/foot.svg"
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Normal",
  9253. height: math.unit(8 + 3 / 12, "feet")
  9254. },
  9255. {
  9256. name: "Minimacro",
  9257. height: math.unit(21, "feet"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "Macro",
  9262. height: math.unit(626, "feet")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(2.718, "meters"),
  9271. weight: math.unit(150, "lbs"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/sovrim-terraquian/front.svg",
  9275. extra: 1752/1689,
  9276. bottom: 36/1788
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(2.718, "meters"),
  9281. weight: math.unit(150, "lbs"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/sovrim-terraquian/back.svg",
  9285. extra: 1698/1657,
  9286. bottom: 58/1756
  9287. }
  9288. },
  9289. tongue: {
  9290. height: math.unit(2.865, "feet"),
  9291. name: "Tongue",
  9292. image: {
  9293. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9294. }
  9295. },
  9296. hand: {
  9297. height: math.unit(1.61, "feet"),
  9298. name: "Hand",
  9299. image: {
  9300. source: "./media/characters/sovrim-terraquian/hand.svg"
  9301. }
  9302. },
  9303. foot: {
  9304. height: math.unit(1.05, "feet"),
  9305. name: "Foot",
  9306. image: {
  9307. source: "./media/characters/sovrim-terraquian/foot.svg"
  9308. }
  9309. },
  9310. footAlt: {
  9311. height: math.unit(0.88, "feet"),
  9312. name: "Foot (Alt)",
  9313. image: {
  9314. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(2, "inches")
  9322. },
  9323. {
  9324. name: "Small",
  9325. height: math.unit(1, "meter")
  9326. },
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(Math.E, "meters"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Macro",
  9334. height: math.unit(20, "meters")
  9335. },
  9336. {
  9337. name: "Macro+",
  9338. height: math.unit(400, "meters")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(7, "feet"),
  9347. weight: math.unit(489, "lbs"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/reece-silvermane/front.svg",
  9351. bottom: 0.02,
  9352. extra: 1
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(1.5, "miles"),
  9360. default: true
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(6, "feet"),
  9369. weight: math.unit(78, "kg"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/kane/front.svg",
  9373. extra: 978 / 899
  9374. }
  9375. },
  9376. back: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(78, "kg"),
  9379. name: "Back",
  9380. image: {
  9381. source: "./media/characters/kane/back.svg",
  9382. extra: 1966/1800,
  9383. bottom: 0/1966
  9384. }
  9385. },
  9386. head: {
  9387. height: math.unit(1.4, "feet"),
  9388. name: "Head",
  9389. image: {
  9390. source: "./media/characters/kane/head.svg"
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(2.1, "m"),
  9398. },
  9399. {
  9400. name: "Macro",
  9401. height: math.unit(1, "km"),
  9402. default: true
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(200, "kg"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/tegon/front.svg",
  9415. bottom: 0.01,
  9416. extra: 1
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Micro",
  9423. height: math.unit(1, "inch")
  9424. },
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(6 + 3 / 12, "feet"),
  9428. default: true
  9429. },
  9430. {
  9431. name: "Macro",
  9432. height: math.unit(300, "feet")
  9433. },
  9434. {
  9435. name: "Megamacro",
  9436. height: math.unit(69, "miles")
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9442. {
  9443. side: {
  9444. height: math.unit(6, "feet"),
  9445. weight: math.unit(2304, "lbs"),
  9446. name: "Side",
  9447. image: {
  9448. source: "./media/characters/arcturax/side.svg",
  9449. extra: 790 / 376,
  9450. bottom: 0.01
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Micro",
  9457. height: math.unit(2, "inch")
  9458. },
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(6, "feet")
  9462. },
  9463. {
  9464. name: "Macro",
  9465. height: math.unit(39, "feet"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Megamacro",
  9470. height: math.unit(7, "miles")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(50, "lbs"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/sentri/front.svg",
  9483. extra: 1750 / 1570,
  9484. bottom: 0.025
  9485. }
  9486. },
  9487. frontAlt: {
  9488. height: math.unit(6, "feet"),
  9489. weight: math.unit(50, "lbs"),
  9490. name: "Front (Alt)",
  9491. image: {
  9492. source: "./media/characters/sentri/front-alt.svg",
  9493. extra: 1750 / 1570,
  9494. bottom: 0.025
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(15, "feet"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Macro",
  9506. height: math.unit(2500, "feet")
  9507. }
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(5 + 8 / 12, "feet"),
  9515. weight: math.unit(130, "lbs"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/corvin/front.svg",
  9519. extra: 1803 / 1629
  9520. }
  9521. },
  9522. frontShirt: {
  9523. height: math.unit(5 + 8 / 12, "feet"),
  9524. weight: math.unit(130, "lbs"),
  9525. name: "Front (Shirt)",
  9526. image: {
  9527. source: "./media/characters/corvin/front-shirt.svg",
  9528. extra: 1803 / 1629
  9529. }
  9530. },
  9531. frontPoncho: {
  9532. height: math.unit(5 + 8 / 12, "feet"),
  9533. weight: math.unit(130, "lbs"),
  9534. name: "Front (Poncho)",
  9535. image: {
  9536. source: "./media/characters/corvin/front-poncho.svg",
  9537. extra: 1803 / 1629
  9538. }
  9539. },
  9540. side: {
  9541. height: math.unit(5 + 8 / 12, "feet"),
  9542. weight: math.unit(130, "lbs"),
  9543. name: "Side",
  9544. image: {
  9545. source: "./media/characters/corvin/side.svg",
  9546. extra: 1012 / 945
  9547. }
  9548. },
  9549. back: {
  9550. height: math.unit(5 + 8 / 12, "feet"),
  9551. weight: math.unit(130, "lbs"),
  9552. name: "Back",
  9553. image: {
  9554. source: "./media/characters/corvin/back.svg",
  9555. extra: 1803 / 1629
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Micro",
  9562. height: math.unit(3, "inches")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 8 / 12, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(300, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(500, "miles")
  9576. }
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(135, "lbs"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/q/front.svg",
  9588. extra: 854 / 752,
  9589. bottom: 0.005
  9590. }
  9591. },
  9592. back: {
  9593. height: math.unit(6, "feet"),
  9594. weight: math.unit(130, "lbs"),
  9595. name: "Back",
  9596. image: {
  9597. source: "./media/characters/q/back.svg",
  9598. extra: 854 / 752
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(90, "feet"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Extra Macro",
  9610. height: math.unit(300, "feet"),
  9611. },
  9612. {
  9613. name: "BIG WALF",
  9614. height: math.unit(750, "feet"),
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(3, "feet"),
  9623. weight: math.unit(28, "lbs"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/citrine/front.svg"
  9627. }
  9628. }
  9629. },
  9630. [
  9631. {
  9632. name: "Normal",
  9633. height: math.unit(3, "feet"),
  9634. default: true
  9635. }
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9640. {
  9641. front: {
  9642. height: math.unit(14, "feet"),
  9643. weight: math.unit(1450, "kg"),
  9644. preyCapacity: math.unit(15, "people"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/aura-starwind/front.svg",
  9648. extra: 1440/1327,
  9649. bottom: 11/1451
  9650. }
  9651. },
  9652. side: {
  9653. height: math.unit(14, "feet"),
  9654. weight: math.unit(1450, "kg"),
  9655. preyCapacity: math.unit(15, "people"),
  9656. name: "Side",
  9657. image: {
  9658. source: "./media/characters/aura-starwind/side.svg",
  9659. extra: 1654 / 1497
  9660. }
  9661. },
  9662. taur: {
  9663. height: math.unit(18, "feet"),
  9664. weight: math.unit(5500, "kg"),
  9665. preyCapacity: math.unit(50, "people"),
  9666. name: "Taur",
  9667. image: {
  9668. source: "./media/characters/aura-starwind/taur.svg",
  9669. extra: 1760 / 1650
  9670. }
  9671. },
  9672. feral: {
  9673. height: math.unit(46, "feet"),
  9674. weight: math.unit(25000, "kg"),
  9675. preyCapacity: math.unit(120, "people"),
  9676. name: "Feral",
  9677. image: {
  9678. source: "./media/characters/aura-starwind/feral.svg"
  9679. }
  9680. },
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(14, "feet"),
  9686. default: true
  9687. },
  9688. {
  9689. name: "Macro",
  9690. height: math.unit(50, "meters")
  9691. },
  9692. {
  9693. name: "Megamacro",
  9694. height: math.unit(5000, "meters")
  9695. },
  9696. {
  9697. name: "Gigamacro",
  9698. height: math.unit(100000, "kilometers")
  9699. },
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9704. {
  9705. front: {
  9706. height: math.unit(2 + 7 / 12, "feet"),
  9707. weight: math.unit(32, "lbs"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/rivet/front.svg",
  9711. extra: 1716 / 1658,
  9712. bottom: 0.03
  9713. }
  9714. },
  9715. foot: {
  9716. height: math.unit(0.551, "feet"),
  9717. name: "Rivet's Foot",
  9718. image: {
  9719. source: "./media/characters/rivet/foot.svg"
  9720. },
  9721. rename: true
  9722. }
  9723. },
  9724. [
  9725. {
  9726. name: "Micro",
  9727. height: math.unit(1.5, "inches"),
  9728. },
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(2 + 7 / 12, "feet"),
  9732. default: true
  9733. },
  9734. {
  9735. name: "Macro",
  9736. height: math.unit(85, "feet")
  9737. },
  9738. {
  9739. name: "Megamacro",
  9740. height: math.unit(2.2, "km")
  9741. }
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9746. {
  9747. front: {
  9748. height: math.unit(5 + 9 / 12, "feet"),
  9749. weight: math.unit(150, "lbs"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/coffee/front.svg",
  9753. extra: 946/880,
  9754. bottom: 66/1012
  9755. }
  9756. },
  9757. foot: {
  9758. height: math.unit(1.29, "feet"),
  9759. name: "Foot",
  9760. image: {
  9761. source: "./media/characters/coffee/foot.svg"
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Micro",
  9768. height: math.unit(2, "inches"),
  9769. },
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(5 + 9 / 12, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(800, "feet")
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(25, "miles")
  9782. }
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(6, "feet"),
  9790. weight: math.unit(200, "lbs"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/chari-gal/front.svg",
  9794. extra: 735/649,
  9795. bottom: 55/790
  9796. },
  9797. form: "normal",
  9798. default: true
  9799. },
  9800. back: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(200, "lb"),
  9803. name: "Back",
  9804. image: {
  9805. source: "./media/characters/chari-gal/back.svg",
  9806. extra: 762/666,
  9807. bottom: 31/793
  9808. },
  9809. form: "normal"
  9810. },
  9811. mouth: {
  9812. height: math.unit(1.35, "feet"),
  9813. name: "Mouth",
  9814. image: {
  9815. source: "./media/characters/chari-gal/mouth.svg"
  9816. },
  9817. form: "normal"
  9818. },
  9819. gigantamax: {
  9820. height: math.unit(6 * 16, "feet"),
  9821. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9822. name: "Gigantamax",
  9823. image: {
  9824. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9825. extra: 1507/1149,
  9826. bottom: 254/1761
  9827. },
  9828. form: "gigantamax",
  9829. default: true
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(5 + 7 / 12, "feet"),
  9836. form: "normal",
  9837. },
  9838. {
  9839. name: "Macro",
  9840. height: math.unit(200, "feet"),
  9841. default: true,
  9842. form: "normal"
  9843. },
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9847. form: "gigantamax",
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(16 * 200, "feet"),
  9852. default: true,
  9853. form: "gigantamax"
  9854. },
  9855. ],
  9856. {
  9857. "normal": {
  9858. name: "Normal",
  9859. default: true
  9860. },
  9861. "gigantamax": {
  9862. name: "Gigantamax",
  9863. },
  9864. }
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lbs"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/nova/front.svg",
  9875. extra: 5000 / 4722,
  9876. bottom: 0.02
  9877. }
  9878. }
  9879. },
  9880. [
  9881. {
  9882. name: "Micro-",
  9883. height: math.unit(0.8, "inches")
  9884. },
  9885. {
  9886. name: "Micro",
  9887. height: math.unit(2, "inches"),
  9888. default: true
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9894. {
  9895. koboldFront: {
  9896. height: math.unit(3 + 1 / 12, "feet"),
  9897. weight: math.unit(21.7, "lbs"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/argent/kobold-front.svg",
  9901. extra: 1471 / 1331,
  9902. bottom: 100.8 / 1575.5
  9903. },
  9904. form: "kobold",
  9905. default: true
  9906. },
  9907. dragonFront: {
  9908. height: math.unit(75, "inches"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/argent/dragon-front.svg",
  9912. extra: 1389/1248,
  9913. bottom: 54/1443
  9914. },
  9915. form: "dragon",
  9916. },
  9917. dragonBack: {
  9918. height: math.unit(75, "inches"),
  9919. name: "Back",
  9920. image: {
  9921. source: "./media/characters/argent/dragon-back.svg",
  9922. extra: 1399/1271,
  9923. bottom: 23/1422
  9924. },
  9925. form: "dragon",
  9926. },
  9927. dragonDressed: {
  9928. height: math.unit(75, "inches"),
  9929. name: "Dressed",
  9930. image: {
  9931. source: "./media/characters/argent/dragon-dressed.svg",
  9932. extra: 1350/1215,
  9933. bottom: 26/1376
  9934. },
  9935. form: "dragon"
  9936. },
  9937. dragonHead: {
  9938. height: math.unit(23.5, "inches"),
  9939. name: "Head",
  9940. image: {
  9941. source: "./media/characters/argent/dragon-head.svg"
  9942. },
  9943. form: "dragon",
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Micro",
  9949. height: math.unit(2, "inches"),
  9950. form: "kobold",
  9951. },
  9952. {
  9953. name: "Normal",
  9954. height: math.unit(3 + 1 / 12, "feet"),
  9955. form: "kobold",
  9956. default: true
  9957. },
  9958. {
  9959. name: "Macro",
  9960. height: math.unit(120, "feet"),
  9961. form: "kobold",
  9962. },
  9963. {
  9964. name: "Speck",
  9965. height: math.unit(1, "mm"),
  9966. form: "dragon",
  9967. },
  9968. {
  9969. name: "Tiny",
  9970. height: math.unit(1, "cm"),
  9971. form: "dragon",
  9972. },
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(5, "cm"),
  9976. form: "dragon",
  9977. },
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(75, "inches"),
  9981. form: "dragon",
  9982. default: true
  9983. },
  9984. {
  9985. name: "Extra Tall",
  9986. height: math.unit(9, "feet"),
  9987. form: "dragon",
  9988. },
  9989. {
  9990. name: "Inconvenient",
  9991. height: math.unit(5, "meters"),
  9992. form: "dragon",
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(70, "meters"),
  9997. form: "dragon",
  9998. },
  9999. {
  10000. name: "Macro+",
  10001. height: math.unit(250, "meters"),
  10002. form: "dragon",
  10003. },
  10004. {
  10005. name: "Megamacro",
  10006. height: math.unit(20, "km"),
  10007. form: "dragon",
  10008. },
  10009. {
  10010. name: "Mountainous",
  10011. height: math.unit(100, "km"),
  10012. form: "dragon",
  10013. },
  10014. {
  10015. name: "Continental",
  10016. height: math.unit(2, "megameters"),
  10017. form: "dragon",
  10018. },
  10019. {
  10020. name: "Too Big",
  10021. height: math.unit(900, "megameters"),
  10022. form: "dragon",
  10023. },
  10024. ],
  10025. {
  10026. "kobold": {
  10027. name: "Kobold",
  10028. default: true
  10029. },
  10030. "dragon": {
  10031. name: "Dragon",
  10032. },
  10033. }
  10034. ))
  10035. characterMakers.push(() => makeCharacter(
  10036. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10037. {
  10038. lamp: {
  10039. height: math.unit(7 * 1559 / 989, "feet"),
  10040. name: "Magic Lamp",
  10041. image: {
  10042. source: "./media/characters/mira-al-cul/lamp.svg",
  10043. extra: 1617 / 1559
  10044. }
  10045. },
  10046. front: {
  10047. height: math.unit(7, "feet"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/mira-al-cul/front.svg",
  10051. extra: 1044 / 990
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Heavily Restricted",
  10058. height: math.unit(7 * 1559 / 989, "feet")
  10059. },
  10060. {
  10061. name: "Freshly Freed",
  10062. height: math.unit(50 * 1559 / 989, "feet")
  10063. },
  10064. {
  10065. name: "World Encompassing",
  10066. height: math.unit(10000 * 1559 / 989, "miles")
  10067. },
  10068. {
  10069. name: "Galactic",
  10070. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10071. },
  10072. {
  10073. name: "Palmed Universe",
  10074. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Multiversal Matriarch",
  10079. height: math.unit(8.87e10, "yottameters")
  10080. },
  10081. {
  10082. name: "Void Mother",
  10083. height: math.unit(3.14e110, "yottaparsecs")
  10084. },
  10085. {
  10086. name: "Toying with Transcendence",
  10087. height: math.unit(1e307, "meters")
  10088. },
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10093. {
  10094. front: {
  10095. height: math.unit(17 + 1 / 12, "feet"),
  10096. weight: math.unit(476.2 * 5, "lbs"),
  10097. name: "Front",
  10098. image: {
  10099. source: "./media/characters/kuro-shi-uchū/front.svg",
  10100. extra: 2329 / 1835,
  10101. bottom: 0.02
  10102. }
  10103. },
  10104. },
  10105. [
  10106. {
  10107. name: "Micro",
  10108. height: math.unit(2, "inches")
  10109. },
  10110. {
  10111. name: "Normal",
  10112. height: math.unit(12, "meters")
  10113. },
  10114. {
  10115. name: "Planetary",
  10116. height: math.unit(0.00929, "AU"),
  10117. default: true
  10118. },
  10119. {
  10120. name: "Universal",
  10121. height: math.unit(20, "gigaparsecs")
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10127. {
  10128. front: {
  10129. height: math.unit(5 + 2 / 12, "feet"),
  10130. weight: math.unit(120, "lbs"),
  10131. name: "Front",
  10132. image: {
  10133. source: "./media/characters/katherine/front.svg",
  10134. extra: 2075 / 1969
  10135. }
  10136. },
  10137. dress: {
  10138. height: math.unit(5 + 2 / 12, "feet"),
  10139. weight: math.unit(120, "lbs"),
  10140. name: "Dress",
  10141. image: {
  10142. source: "./media/characters/katherine/dress.svg",
  10143. extra: 2258 / 2064
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(1, "inches"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(5 + 2 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(100, "meters")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(80, "miles")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(7 + 8 / 12, "feet"),
  10172. weight: math.unit(250, "lbs"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/yevis/front.svg",
  10176. extra: 1938 / 1755
  10177. }
  10178. }
  10179. },
  10180. [
  10181. {
  10182. name: "Mortal",
  10183. height: math.unit(7 + 8 / 12, "feet")
  10184. },
  10185. {
  10186. name: "Battle",
  10187. height: math.unit(25 + 11 / 12, "feet")
  10188. },
  10189. {
  10190. name: "Wrath",
  10191. height: math.unit(1654 + 11 / 12, "feet")
  10192. },
  10193. {
  10194. name: "Planet Destroyer",
  10195. height: math.unit(12000, "miles")
  10196. },
  10197. {
  10198. name: "Galaxy Conqueror",
  10199. height: math.unit(1.45, "zettameters"),
  10200. default: true
  10201. },
  10202. {
  10203. name: "Universal War",
  10204. height: math.unit(184, "gigaparsecs")
  10205. },
  10206. {
  10207. name: "Eternity War",
  10208. height: math.unit(1.98e55, "yottaparsecs")
  10209. },
  10210. ]
  10211. ))
  10212. characterMakers.push(() => makeCharacter(
  10213. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10214. {
  10215. front: {
  10216. height: math.unit(5 + 8 / 12, "feet"),
  10217. weight: math.unit(63, "kg"),
  10218. name: "Front",
  10219. image: {
  10220. source: "./media/characters/xavier/front.svg",
  10221. extra: 944 / 883
  10222. }
  10223. },
  10224. frontStretch: {
  10225. height: math.unit(5 + 8 / 12, "feet"),
  10226. weight: math.unit(63, "kg"),
  10227. name: "Stretching",
  10228. image: {
  10229. source: "./media/characters/xavier/front-stretch.svg",
  10230. extra: 962 / 820
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(5 + 8 / 12, "feet")
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(100, "meters"),
  10242. default: true
  10243. },
  10244. {
  10245. name: "McLargeHuge",
  10246. height: math.unit(10, "miles")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(5 + 5 / 12, "feet"),
  10255. weight: math.unit(150, "lb"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/joshii/front.svg",
  10259. extra: 765 / 653,
  10260. bottom: 51 / 816
  10261. }
  10262. },
  10263. foot: {
  10264. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10265. name: "Foot",
  10266. image: {
  10267. source: "./media/characters/joshii/foot.svg"
  10268. }
  10269. },
  10270. },
  10271. [
  10272. {
  10273. name: "Micro",
  10274. height: math.unit(2, "inches")
  10275. },
  10276. {
  10277. name: "Normal",
  10278. height: math.unit(5 + 5 / 12, "feet")
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(785, "feet"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Megamacro",
  10287. height: math.unit(24.5, "miles")
  10288. },
  10289. ]
  10290. ))
  10291. characterMakers.push(() => makeCharacter(
  10292. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10293. {
  10294. front: {
  10295. height: math.unit(6, "feet"),
  10296. weight: math.unit(150, "lb"),
  10297. name: "Front",
  10298. image: {
  10299. source: "./media/characters/goddess-elizabeth/front.svg",
  10300. extra: 1800 / 1525,
  10301. bottom: 0.005
  10302. }
  10303. },
  10304. foot: {
  10305. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10306. name: "Foot",
  10307. image: {
  10308. source: "./media/characters/goddess-elizabeth/foot.svg"
  10309. }
  10310. },
  10311. mouth: {
  10312. height: math.unit(6, "feet"),
  10313. name: "Mouth",
  10314. image: {
  10315. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Micro",
  10322. height: math.unit(12, "feet")
  10323. },
  10324. {
  10325. name: "Normal",
  10326. height: math.unit(80, "miles"),
  10327. default: true
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(15000, "parsecs")
  10332. },
  10333. ]
  10334. ))
  10335. characterMakers.push(() => makeCharacter(
  10336. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10337. {
  10338. front: {
  10339. height: math.unit(5 + 9 / 12, "feet"),
  10340. weight: math.unit(144, "lb"),
  10341. name: "Front",
  10342. image: {
  10343. source: "./media/characters/kara/front.svg"
  10344. }
  10345. },
  10346. feet: {
  10347. height: math.unit(6 / 6.765, "feet"),
  10348. name: "Kara's Feet",
  10349. rename: true,
  10350. image: {
  10351. source: "./media/characters/kara/feet.svg"
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(5 + 9 / 12, "feet")
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(174, "feet"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(18, "feet"),
  10372. weight: math.unit(4050, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/tyrone/front.svg",
  10376. extra: 2405 / 2270,
  10377. bottom: 182 / 2587
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Normal",
  10384. height: math.unit(18, "feet"),
  10385. default: true
  10386. },
  10387. {
  10388. name: "Macro",
  10389. height: math.unit(300, "feet")
  10390. },
  10391. {
  10392. name: "Megamacro",
  10393. height: math.unit(15, "km")
  10394. },
  10395. {
  10396. name: "Gigamacro",
  10397. height: math.unit(500, "km")
  10398. },
  10399. {
  10400. name: "Teramacro",
  10401. height: math.unit(0.5, "gigameters")
  10402. },
  10403. {
  10404. name: "Omnimacro",
  10405. height: math.unit(1e252, "yottauniverse")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(7 + 8 / 12, "feet"),
  10414. weight: math.unit(120, "lb"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/danny/front.svg",
  10418. extra: 1490 / 1350
  10419. }
  10420. },
  10421. back: {
  10422. height: math.unit(7 + 8 / 12, "feet"),
  10423. weight: math.unit(120, "lb"),
  10424. name: "Back",
  10425. image: {
  10426. source: "./media/characters/danny/back.svg",
  10427. extra: 1490 / 1350
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(7 + 8 / 12, "feet"),
  10435. default: true
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(3.5, "inches"),
  10444. weight: math.unit(19, "grams"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/mallow/front.svg",
  10448. extra: 471 / 431
  10449. }
  10450. },
  10451. back: {
  10452. height: math.unit(3.5, "inches"),
  10453. weight: math.unit(19, "grams"),
  10454. name: "Back",
  10455. image: {
  10456. source: "./media/characters/mallow/back.svg",
  10457. extra: 471 / 431
  10458. }
  10459. },
  10460. },
  10461. [
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(3.5, "inches"),
  10465. default: true
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10471. {
  10472. front: {
  10473. height: math.unit(9, "feet"),
  10474. weight: math.unit(230, "kg"),
  10475. name: "Front",
  10476. image: {
  10477. source: "./media/characters/starry-aqua/front.svg"
  10478. }
  10479. },
  10480. back: {
  10481. height: math.unit(9, "feet"),
  10482. weight: math.unit(230, "kg"),
  10483. name: "Back",
  10484. image: {
  10485. source: "./media/characters/starry-aqua/back.svg"
  10486. }
  10487. },
  10488. hand: {
  10489. height: math.unit(9 * 0.1168, "feet"),
  10490. name: "Hand",
  10491. image: {
  10492. source: "./media/characters/starry-aqua/hand.svg"
  10493. }
  10494. },
  10495. foot: {
  10496. height: math.unit(9 * 0.18, "feet"),
  10497. name: "Foot",
  10498. image: {
  10499. source: "./media/characters/starry-aqua/foot.svg"
  10500. }
  10501. }
  10502. },
  10503. [
  10504. {
  10505. name: "Micro",
  10506. height: math.unit(3, "inches")
  10507. },
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(9, "feet")
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(300, "feet"),
  10515. default: true
  10516. },
  10517. {
  10518. name: "Megamacro",
  10519. height: math.unit(3200, "feet")
  10520. }
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(15, "feet"),
  10528. weight: math.unit(5026, "lb"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/luka-towers/front.svg",
  10532. extra: 1269/1133,
  10533. bottom: 51/1320
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(15, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Minimacro",
  10545. height: math.unit(25, "feet")
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(320, "feet")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(35000, "feet")
  10554. },
  10555. {
  10556. name: "Gigamacro",
  10557. height: math.unit(4000, "miles")
  10558. },
  10559. {
  10560. name: "Teramacro",
  10561. height: math.unit(15000, "miles")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(150, "lb"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/natalie-nightring/front.svg",
  10574. extra: 1,
  10575. bottom: 0.06
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Uh Oh",
  10582. height: math.unit(0.1, "mm")
  10583. },
  10584. {
  10585. name: "Small",
  10586. height: math.unit(3, "inches")
  10587. },
  10588. {
  10589. name: "Human Scale",
  10590. height: math.unit(6, "feet")
  10591. },
  10592. {
  10593. name: "Librarian",
  10594. height: math.unit(50, "feet"),
  10595. default: true
  10596. },
  10597. {
  10598. name: "Immense",
  10599. height: math.unit(200, "miles")
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(180, "lbs"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/danni-rosie/front.svg",
  10612. extra: 1260 / 1128,
  10613. bottom: 0.022
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Micro",
  10620. height: math.unit(2, "inches"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(5 + 9 / 12, "feet"),
  10630. weight: math.unit(220, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/samantha-kruse/front.svg",
  10634. extra: (985 / 935),
  10635. bottom: 0.03
  10636. }
  10637. },
  10638. frontUndressed: {
  10639. height: math.unit(5 + 9 / 12, "feet"),
  10640. weight: math.unit(220, "lb"),
  10641. name: "Front (Undressed)",
  10642. image: {
  10643. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10644. extra: (973 / 923),
  10645. bottom: 0.025
  10646. }
  10647. },
  10648. fat: {
  10649. height: math.unit(5 + 9 / 12, "feet"),
  10650. weight: math.unit(900, "lb"),
  10651. name: "Front (Fat)",
  10652. image: {
  10653. source: "./media/characters/samantha-kruse/fat.svg",
  10654. extra: 2688 / 2561
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(5 + 9 / 12, "feet"),
  10662. default: true
  10663. }
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10668. {
  10669. back: {
  10670. height: math.unit(5 + 4 / 12, "feet"),
  10671. weight: math.unit(4963, "lb"),
  10672. name: "Back",
  10673. image: {
  10674. source: "./media/characters/amelia-rosie/back.svg",
  10675. extra: 1113 / 963,
  10676. bottom: 0.01
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Level 0",
  10683. height: math.unit(5 + 4 / 12, "feet")
  10684. },
  10685. {
  10686. name: "Level 1",
  10687. height: math.unit(164597, "feet"),
  10688. default: true
  10689. },
  10690. {
  10691. name: "Level 2",
  10692. height: math.unit(956243, "miles")
  10693. },
  10694. {
  10695. name: "Level 3",
  10696. height: math.unit(29421709423, "miles")
  10697. },
  10698. {
  10699. name: "Level 4",
  10700. height: math.unit(154, "lightyears")
  10701. },
  10702. {
  10703. name: "Level 5",
  10704. height: math.unit(4738272, "lightyears")
  10705. },
  10706. {
  10707. name: "Level 6",
  10708. height: math.unit(145787152896, "lightyears")
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(5 + 11 / 12, "feet"),
  10717. weight: math.unit(65, "kg"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/rook-kitara/front.svg",
  10721. extra: 1347 / 1274,
  10722. bottom: 0.005
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Totally Unfair",
  10729. height: math.unit(1.8, "mm")
  10730. },
  10731. {
  10732. name: "Lap Rookie",
  10733. height: math.unit(1.4, "feet")
  10734. },
  10735. {
  10736. name: "Normal",
  10737. height: math.unit(5 + 11 / 12, "feet"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "How Did This Happen",
  10742. height: math.unit(80, "miles")
  10743. }
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(7, "feet"),
  10751. weight: math.unit(300, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/pisces/front.svg",
  10755. extra: 2255 / 2115,
  10756. bottom: 0.03
  10757. }
  10758. },
  10759. back: {
  10760. height: math.unit(7, "feet"),
  10761. weight: math.unit(300, "lb"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/pisces/back.svg",
  10765. extra: 2146 / 2055,
  10766. bottom: 0.04
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(7, "feet"),
  10774. default: true
  10775. },
  10776. {
  10777. name: "Swimming Pool",
  10778. height: math.unit(12.2, "meters")
  10779. },
  10780. {
  10781. name: "Olympic Swimming Pool",
  10782. height: math.unit(56.3, "meters")
  10783. },
  10784. {
  10785. name: "Lake Superior",
  10786. height: math.unit(93900, "meters")
  10787. },
  10788. {
  10789. name: "Mediterranean Sea",
  10790. height: math.unit(644457, "meters")
  10791. },
  10792. {
  10793. name: "World's Oceans",
  10794. height: math.unit(4567491, "meters")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(2.3, "meters"),
  10803. weight: math.unit(120, "kg"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/zelas/front.svg"
  10807. }
  10808. },
  10809. side: {
  10810. height: math.unit(2.3, "meters"),
  10811. weight: math.unit(120, "kg"),
  10812. name: "Side",
  10813. image: {
  10814. source: "./media/characters/zelas/side.svg"
  10815. }
  10816. },
  10817. back: {
  10818. height: math.unit(2.3, "meters"),
  10819. weight: math.unit(120, "kg"),
  10820. name: "Back",
  10821. image: {
  10822. source: "./media/characters/zelas/back.svg"
  10823. }
  10824. },
  10825. foot: {
  10826. height: math.unit(1.116, "feet"),
  10827. name: "Foot",
  10828. image: {
  10829. source: "./media/characters/zelas/foot.svg"
  10830. }
  10831. },
  10832. },
  10833. [
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(2.3, "meters")
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(30, "meters"),
  10841. default: true
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10847. {
  10848. front: {
  10849. height: math.unit(1, "inch"),
  10850. weight: math.unit(0.21, "grams"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/talbot/front.svg",
  10854. extra: 594 / 544
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Micro",
  10861. height: math.unit(1, "inch"),
  10862. default: true
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10868. {
  10869. front: {
  10870. height: math.unit(3 + 3 / 12, "feet"),
  10871. weight: math.unit(51.8, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/fliss/front.svg",
  10875. extra: 840 / 640
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Teeny Tiny",
  10882. height: math.unit(1, "mm")
  10883. },
  10884. {
  10885. name: "Small",
  10886. height: math.unit(1, "inch"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Standard Sylveon",
  10891. height: math.unit(3 + 3 / 12, "feet")
  10892. },
  10893. {
  10894. name: "Large Nuisance",
  10895. height: math.unit(33, "feet")
  10896. },
  10897. {
  10898. name: "City Filler",
  10899. height: math.unit(3000, "feet")
  10900. },
  10901. {
  10902. name: "New Horizon",
  10903. height: math.unit(6000, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(5, "cm"),
  10912. weight: math.unit(1.94, "g"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/fleta/front.svg",
  10916. extra: 835 / 803
  10917. }
  10918. },
  10919. back: {
  10920. height: math.unit(5, "cm"),
  10921. weight: math.unit(1.94, "g"),
  10922. name: "Back",
  10923. image: {
  10924. source: "./media/characters/fleta/back.svg",
  10925. extra: 835 / 803
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Micro",
  10932. height: math.unit(5, "cm"),
  10933. default: true
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(225, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/dominic/front.svg",
  10946. extra: 1770 / 1620,
  10947. bottom: 0.025
  10948. }
  10949. },
  10950. back: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(225, "lb"),
  10953. name: "Back",
  10954. image: {
  10955. source: "./media/characters/dominic/back.svg",
  10956. extra: 1745 / 1620,
  10957. bottom: 0.065
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Nano",
  10964. height: math.unit(0.1, "mm")
  10965. },
  10966. {
  10967. name: "Micro-",
  10968. height: math.unit(1, "mm")
  10969. },
  10970. {
  10971. name: "Micro",
  10972. height: math.unit(4, "inches")
  10973. },
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(6 + 4 / 12, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "Macro",
  10981. height: math.unit(115, "feet")
  10982. },
  10983. {
  10984. name: "Macro+",
  10985. height: math.unit(955, "feet")
  10986. },
  10987. {
  10988. name: "Megamacro",
  10989. height: math.unit(8990, "feet")
  10990. },
  10991. {
  10992. name: "Gigmacro",
  10993. height: math.unit(9310, "miles")
  10994. },
  10995. {
  10996. name: "Teramacro",
  10997. height: math.unit(1567005010, "miles")
  10998. },
  10999. {
  11000. name: "Examacro",
  11001. height: math.unit(1425, "parsecs")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(400, "feet"),
  11010. weight: math.unit(44444444, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/major-colonel/front.svg"
  11014. }
  11015. },
  11016. back: {
  11017. height: math.unit(400, "feet"),
  11018. weight: math.unit(44444444, "lb"),
  11019. name: "Back",
  11020. image: {
  11021. source: "./media/characters/major-colonel/back.svg"
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(400, "feet"),
  11029. default: true
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11035. {
  11036. catFront: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(120, "lb"),
  11039. name: "Front (Cat Side)",
  11040. image: {
  11041. source: "./media/characters/axel-lycan/cat-front.svg",
  11042. extra: 430 / 402,
  11043. bottom: 43 / 472.35
  11044. }
  11045. },
  11046. catBack: {
  11047. height: math.unit(6, "feet"),
  11048. weight: math.unit(120, "lb"),
  11049. name: "Back (Cat Side)",
  11050. image: {
  11051. source: "./media/characters/axel-lycan/cat-back.svg",
  11052. extra: 447 / 419,
  11053. bottom: 23.3 / 469
  11054. }
  11055. },
  11056. wolfFront: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(120, "lb"),
  11059. name: "Front (Wolf Side)",
  11060. image: {
  11061. source: "./media/characters/axel-lycan/wolf-front.svg",
  11062. extra: 485 / 456,
  11063. bottom: 19 / 504
  11064. }
  11065. },
  11066. wolfBack: {
  11067. height: math.unit(6, "feet"),
  11068. weight: math.unit(120, "lb"),
  11069. name: "Back (Wolf Side)",
  11070. image: {
  11071. source: "./media/characters/axel-lycan/wolf-back.svg",
  11072. extra: 475 / 438,
  11073. bottom: 39.2 / 514
  11074. }
  11075. },
  11076. },
  11077. [
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(1, "km"),
  11081. default: true
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11087. {
  11088. front: {
  11089. height: math.unit(5 + 9 / 12, "feet"),
  11090. weight: math.unit(175, "lb"),
  11091. name: "Front",
  11092. image: {
  11093. source: "./media/characters/vanrel-hyena/front.svg",
  11094. extra: 1086 / 1010,
  11095. bottom: 0.04
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(5 + 9 / 12, "feet"),
  11103. default: true
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(103, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/abbott-absol/front.svg",
  11116. extra: 765/694,
  11117. bottom: 47/812
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Megamicro",
  11124. height: math.unit(0.1, "mm")
  11125. },
  11126. {
  11127. name: "Micro",
  11128. height: math.unit(1, "inch")
  11129. },
  11130. {
  11131. name: "Normal",
  11132. height: math.unit(6, "feet"),
  11133. default: true
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11139. {
  11140. front: {
  11141. height: math.unit(6, "feet"),
  11142. weight: math.unit(264, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/hector/front.svg",
  11146. extra: 2280 / 2130,
  11147. bottom: 0.07
  11148. }
  11149. },
  11150. },
  11151. [
  11152. {
  11153. name: "Normal",
  11154. height: math.unit(12.25, "foot"),
  11155. default: true
  11156. },
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(160, "feet")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(150, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/sal/front.svg",
  11172. extra: 1846 / 1699,
  11173. bottom: 0.04
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Megamacro",
  11180. height: math.unit(10, "miles"),
  11181. default: true
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11187. {
  11188. front: {
  11189. height: math.unit(3, "meters"),
  11190. weight: math.unit(450, "kg"),
  11191. name: "front",
  11192. image: {
  11193. source: "./media/characters/ranger/front.svg",
  11194. extra: 2401 / 2243,
  11195. bottom: 0.05
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(3, "meters"),
  11203. default: true
  11204. },
  11205. ]
  11206. ))
  11207. characterMakers.push(() => makeCharacter(
  11208. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11209. {
  11210. front: {
  11211. height: math.unit(14, "feet"),
  11212. weight: math.unit(800, "kg"),
  11213. name: "Front",
  11214. image: {
  11215. source: "./media/characters/theresa/front.svg",
  11216. extra: 3575 / 3346,
  11217. bottom: 0.03
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(14, "feet"),
  11225. default: true
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11231. {
  11232. front: {
  11233. height: math.unit(6, "feet"),
  11234. weight: math.unit(3, "kg"),
  11235. name: "Front",
  11236. image: {
  11237. source: "./media/characters/ine/front.svg",
  11238. extra: 678 / 539,
  11239. bottom: 0.023
  11240. }
  11241. },
  11242. },
  11243. [
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(2.265, "feet"),
  11247. default: true
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(5, "feet"),
  11256. weight: math.unit(30, "kg"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/vial/front.svg",
  11260. extra: 1365 / 1277,
  11261. bottom: 0.04
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(5, "feet"),
  11269. default: true
  11270. },
  11271. ]
  11272. ))
  11273. characterMakers.push(() => makeCharacter(
  11274. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11275. {
  11276. side: {
  11277. height: math.unit(3.4, "meters"),
  11278. weight: math.unit(1000, "lb"),
  11279. name: "Side",
  11280. image: {
  11281. source: "./media/characters/rovoska/side.svg",
  11282. extra: 4403 / 1515
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(3.4, "meters"),
  11290. default: true
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(8, "feet"),
  11299. weight: math.unit(315, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/gunner-rotthbauer/front.svg"
  11303. }
  11304. },
  11305. back: {
  11306. height: math.unit(8, "feet"),
  11307. weight: math.unit(315, "lb"),
  11308. name: "Back",
  11309. image: {
  11310. source: "./media/characters/gunner-rotthbauer/back.svg"
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Micro",
  11317. height: math.unit(3.5, "inches")
  11318. },
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(8, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(250, "feet")
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(1, "AU")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(5 + 5 / 12, "feet"),
  11339. weight: math.unit(140, "lb"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/allatia/front.svg",
  11343. extra: 1227 / 1180,
  11344. bottom: 0.027
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Normal",
  11351. height: math.unit(5 + 5 / 12, "feet")
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(250, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(8, "miles")
  11361. }
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11366. {
  11367. front: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(120, "lb"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/tene/front.svg",
  11373. extra: 814/750,
  11374. bottom: 36/850
  11375. }
  11376. },
  11377. stomping: {
  11378. height: math.unit(2.025, "meters"),
  11379. weight: math.unit(120, "lb"),
  11380. name: "Stomping",
  11381. image: {
  11382. source: "./media/characters/tene/stomping.svg",
  11383. extra: 885/821,
  11384. bottom: 15/900
  11385. }
  11386. },
  11387. sitting: {
  11388. height: math.unit(1, "meter"),
  11389. weight: math.unit(120, "lb"),
  11390. name: "Sitting",
  11391. image: {
  11392. source: "./media/characters/tene/sitting.svg",
  11393. extra: 396/366,
  11394. bottom: 79/475
  11395. }
  11396. },
  11397. smiling: {
  11398. height: math.unit(1.2, "feet"),
  11399. name: "Smiling",
  11400. image: {
  11401. source: "./media/characters/tene/smiling.svg",
  11402. extra: 1364/1071,
  11403. bottom: 0/1364
  11404. }
  11405. },
  11406. smug: {
  11407. height: math.unit(1.3, "feet"),
  11408. name: "Smug",
  11409. image: {
  11410. source: "./media/characters/tene/smug.svg",
  11411. extra: 1323/1082,
  11412. bottom: 0/1323
  11413. }
  11414. },
  11415. feral: {
  11416. height: math.unit(3.9, "feet"),
  11417. weight: math.unit(250, "lb"),
  11418. name: "Feral",
  11419. image: {
  11420. source: "./media/characters/tene/feral.svg",
  11421. extra: 717 / 458,
  11422. bottom: 0.179
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(6, "feet")
  11430. },
  11431. {
  11432. name: "Macro",
  11433. height: math.unit(300, "feet"),
  11434. default: true
  11435. },
  11436. {
  11437. name: "Megamacro",
  11438. height: math.unit(5, "miles")
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11444. {
  11445. side: {
  11446. height: math.unit(6, "feet"),
  11447. name: "Side",
  11448. image: {
  11449. source: "./media/characters/evander/side.svg",
  11450. extra: 877 / 477
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(0.83, "meters"),
  11458. default: true
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(12, "feet"),
  11467. weight: math.unit(1000, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11471. extra: 1762 / 1611
  11472. }
  11473. },
  11474. back: {
  11475. height: math.unit(12, "feet"),
  11476. weight: math.unit(1000, "lb"),
  11477. name: "Back",
  11478. image: {
  11479. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11480. extra: 1762 / 1611
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(12, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Kaiju",
  11492. height: math.unit(150, "feet")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(5 + 11/12, "feet"),
  11501. weight: math.unit(180, "lb"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/zero-alurus/front.svg",
  11505. extra: 1032/957,
  11506. bottom: 10/1042
  11507. }
  11508. },
  11509. back: {
  11510. height: math.unit(5 + 11/12, "feet"),
  11511. weight: math.unit(180, "lb"),
  11512. name: "Back",
  11513. image: {
  11514. source: "./media/characters/zero-alurus/back.svg",
  11515. extra: 1027/950,
  11516. bottom: 12/1039
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(5 + 11 / 12, "feet")
  11524. },
  11525. {
  11526. name: "Mini-Macro",
  11527. height: math.unit(25, "feet")
  11528. },
  11529. {
  11530. name: "Macro",
  11531. height: math.unit(90, "feet"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Macro+",
  11536. height: math.unit(500, "feet")
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(1200, "feet")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(200, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/mega-shi/front.svg",
  11553. extra: 1279 / 1250,
  11554. bottom: 0.02
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(200, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/mega-shi/back.svg",
  11563. extra: 1279 / 1250,
  11564. bottom: 0.02
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Micro",
  11571. height: math.unit(16 + 6 / 12, "feet")
  11572. },
  11573. {
  11574. name: "Third Dimension",
  11575. height: math.unit(40, "meters")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(660, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(10, "miles")
  11585. },
  11586. {
  11587. name: "Planetary Launch",
  11588. height: math.unit(500, "miles")
  11589. },
  11590. {
  11591. name: "Interstellar",
  11592. height: math.unit(1e9, "miles")
  11593. },
  11594. {
  11595. name: "Leaving the Universe",
  11596. height: math.unit(1, "gigaparsec")
  11597. },
  11598. {
  11599. name: "Travelling Universes",
  11600. height: math.unit(30e15, "parsecs")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(5 + 4/12, "feet"),
  11609. weight: math.unit(120, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/odyssey/front.svg",
  11613. extra: 1747/1571,
  11614. bottom: 47/1794
  11615. }
  11616. },
  11617. side: {
  11618. height: math.unit(5.1, "feet"),
  11619. weight: math.unit(120, "lb"),
  11620. name: "Side",
  11621. image: {
  11622. source: "./media/characters/odyssey/side.svg",
  11623. extra: 1847/1619,
  11624. bottom: 47/1894
  11625. }
  11626. },
  11627. lounging: {
  11628. height: math.unit(1.464, "feet"),
  11629. weight: math.unit(120, "lb"),
  11630. name: "Lounging",
  11631. image: {
  11632. source: "./media/characters/odyssey/lounging.svg",
  11633. extra: 1235/837,
  11634. bottom: 551/1786
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(5 + 4 / 12, "feet")
  11642. },
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(1, "km")
  11646. },
  11647. {
  11648. name: "Megamacro",
  11649. height: math.unit(3000, "km")
  11650. },
  11651. {
  11652. name: "Gigamacro",
  11653. height: math.unit(1, "AU"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Omniversal",
  11658. height: math.unit(100e14, "lightyears")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(5 + 10/12, "feet"),
  11667. name: "Front",
  11668. image: {
  11669. source: "./media/characters/mekuto/front.svg",
  11670. extra: 875/835,
  11671. bottom: 46/921
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Minimicro",
  11678. height: math.unit(0.2, "inches")
  11679. },
  11680. {
  11681. name: "Micro",
  11682. height: math.unit(1.5, "inches")
  11683. },
  11684. {
  11685. name: "Normal",
  11686. height: math.unit(5 + 10 / 12, "feet"),
  11687. default: true
  11688. },
  11689. {
  11690. name: "Minimacro",
  11691. height: math.unit(17 + 9 / 12, "feet")
  11692. },
  11693. {
  11694. name: "Macro",
  11695. height: math.unit(177.5, "feet")
  11696. },
  11697. {
  11698. name: "Megamacro",
  11699. height: math.unit(152, "miles")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11705. {
  11706. front: {
  11707. height: math.unit(6.5, "inches"),
  11708. weight: math.unit(13, "oz"),
  11709. name: "Front",
  11710. image: {
  11711. source: "./media/characters/dafydd-tomos/front.svg",
  11712. extra: 2990 / 2603,
  11713. bottom: 0.03
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Micro",
  11720. height: math.unit(6.5, "inches"),
  11721. default: true
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(150, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/splinter/front.svg",
  11734. extra: 2990 / 2882,
  11735. bottom: 0.04
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(6, "feet"),
  11740. weight: math.unit(150, "lb"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/splinter/back.svg",
  11744. extra: 2990 / 2882,
  11745. bottom: 0.04
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(6, "feet")
  11753. },
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(230, "meters"),
  11757. default: true
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(4 + 10 / 12, "feet"),
  11766. weight: math.unit(480, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/snow-gabumon/front.svg",
  11770. extra: 1140 / 963,
  11771. bottom: 0.058
  11772. }
  11773. },
  11774. back: {
  11775. height: math.unit(4 + 10 / 12, "feet"),
  11776. weight: math.unit(480, "lb"),
  11777. name: "Back",
  11778. image: {
  11779. source: "./media/characters/snow-gabumon/back.svg",
  11780. extra: 1115 / 962,
  11781. bottom: 0.041
  11782. }
  11783. },
  11784. frontUndresed: {
  11785. height: math.unit(4 + 10 / 12, "feet"),
  11786. weight: math.unit(480, "lb"),
  11787. name: "Front (Undressed)",
  11788. image: {
  11789. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11790. extra: 1061 / 960,
  11791. bottom: 0.045
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Micro",
  11798. height: math.unit(1, "inch")
  11799. },
  11800. {
  11801. name: "Normal",
  11802. height: math.unit(4 + 10 / 12, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(200, "feet")
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(120, "miles")
  11812. },
  11813. {
  11814. name: "Gigamacro",
  11815. height: math.unit(9800, "miles")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(1.7, "meters"),
  11824. weight: math.unit(140, "lb"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/moody/front.svg",
  11828. extra: 3226 / 3007,
  11829. bottom: 0.087
  11830. }
  11831. },
  11832. },
  11833. [
  11834. {
  11835. name: "Micro",
  11836. height: math.unit(1, "mm")
  11837. },
  11838. {
  11839. name: "Normal",
  11840. height: math.unit(1.7, "meters"),
  11841. default: true
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(80, "meters")
  11846. },
  11847. {
  11848. name: "Macro+",
  11849. height: math.unit(500, "meters")
  11850. },
  11851. ]
  11852. ))
  11853. characterMakers.push(() => makeCharacter(
  11854. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11855. {
  11856. front: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(150, "lb"),
  11859. name: "Front",
  11860. image: {
  11861. source: "./media/characters/zyas/front.svg",
  11862. extra: 1180 / 1120,
  11863. bottom: 0.045
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(10, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(500, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(5, "miles")
  11880. },
  11881. {
  11882. name: "Teramacro",
  11883. height: math.unit(150000, "miles")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(6, "feet"),
  11892. weight: math.unit(150, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/cuon/front.svg",
  11896. extra: 1390 / 1320,
  11897. bottom: 0.008
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Micro",
  11904. height: math.unit(3, "inches")
  11905. },
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(18 + 9 / 12, "feet"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(360, "feet")
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(360, "miles")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(2.4, "meters"),
  11926. weight: math.unit(70, "kg"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/nyanuxk/front.svg",
  11930. extra: 1172 / 1084,
  11931. bottom: 0.065
  11932. }
  11933. },
  11934. side: {
  11935. height: math.unit(2.4, "meters"),
  11936. weight: math.unit(70, "kg"),
  11937. name: "Side",
  11938. image: {
  11939. source: "./media/characters/nyanuxk/side.svg",
  11940. extra: 1190 / 1132,
  11941. bottom: 0.007
  11942. }
  11943. },
  11944. back: {
  11945. height: math.unit(2.4, "meters"),
  11946. weight: math.unit(70, "kg"),
  11947. name: "Back",
  11948. image: {
  11949. source: "./media/characters/nyanuxk/back.svg",
  11950. extra: 1200 / 1141,
  11951. bottom: 0.015
  11952. }
  11953. },
  11954. foot: {
  11955. height: math.unit(0.52, "meters"),
  11956. name: "Foot",
  11957. image: {
  11958. source: "./media/characters/nyanuxk/foot.svg"
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Micro",
  11965. height: math.unit(2, "cm")
  11966. },
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(2.4, "meters"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Smaller Macro",
  11974. height: math.unit(120, "meters")
  11975. },
  11976. {
  11977. name: "Bigger Macro",
  11978. height: math.unit(1.2, "km")
  11979. },
  11980. {
  11981. name: "Megamacro",
  11982. height: math.unit(15, "kilometers")
  11983. },
  11984. {
  11985. name: "Gigamacro",
  11986. height: math.unit(2000, "km")
  11987. },
  11988. {
  11989. name: "Teramacro",
  11990. height: math.unit(500000, "km")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11996. {
  11997. side: {
  11998. height: math.unit(6, "feet"),
  11999. name: "Side",
  12000. image: {
  12001. source: "./media/characters/ailbhe/side.svg",
  12002. extra: 757 / 464,
  12003. bottom: 0.041
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(1.07, "meters"),
  12011. default: true
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(120, "kg"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/zevulfius/front.svg",
  12024. extra: 965 / 903
  12025. }
  12026. },
  12027. side: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(120, "kg"),
  12030. name: "Side",
  12031. image: {
  12032. source: "./media/characters/zevulfius/side.svg",
  12033. extra: 939 / 900
  12034. }
  12035. },
  12036. back: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(120, "kg"),
  12039. name: "Back",
  12040. image: {
  12041. source: "./media/characters/zevulfius/back.svg",
  12042. extra: 918 / 854,
  12043. bottom: 0.005
  12044. }
  12045. },
  12046. foot: {
  12047. height: math.unit(6 / 3.72, "feet"),
  12048. name: "Foot",
  12049. image: {
  12050. source: "./media/characters/zevulfius/foot.svg"
  12051. }
  12052. },
  12053. },
  12054. [
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(750, "meters")
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(20, "km"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Gigamacro",
  12066. height: math.unit(2000, "km")
  12067. },
  12068. {
  12069. name: "Teramacro",
  12070. height: math.unit(250000, "km")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12076. {
  12077. front: {
  12078. height: math.unit(100, "feet"),
  12079. weight: math.unit(350, "kg"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/rikes/front.svg",
  12083. extra: 1565 / 1483,
  12084. bottom: 0.017
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(100, "feet"),
  12092. default: true
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12098. {
  12099. front: {
  12100. height: math.unit(8, "feet"),
  12101. weight: math.unit(356, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/adam-silver-mane/front.svg",
  12105. extra: 1036/937,
  12106. bottom: 63/1099
  12107. }
  12108. },
  12109. side: {
  12110. height: math.unit(8, "feet"),
  12111. weight: math.unit(356, "lb"),
  12112. name: "Side",
  12113. image: {
  12114. source: "./media/characters/adam-silver-mane/side.svg",
  12115. extra: 997/901,
  12116. bottom: 59/1056
  12117. }
  12118. },
  12119. frontNsfw: {
  12120. height: math.unit(8, "feet"),
  12121. weight: math.unit(356, "lb"),
  12122. name: "Front (NSFW)",
  12123. image: {
  12124. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12125. extra: 1036/937,
  12126. bottom: 63/1099
  12127. }
  12128. },
  12129. sideNsfw: {
  12130. height: math.unit(8, "feet"),
  12131. weight: math.unit(356, "lb"),
  12132. name: "Side (NSFW)",
  12133. image: {
  12134. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12135. extra: 997/901,
  12136. bottom: 59/1056
  12137. }
  12138. },
  12139. dick: {
  12140. height: math.unit(2.1, "feet"),
  12141. name: "Dick",
  12142. image: {
  12143. source: "./media/characters/adam-silver-mane/dick.svg"
  12144. }
  12145. },
  12146. taur: {
  12147. height: math.unit(16, "feet"),
  12148. weight: math.unit(1500, "kg"),
  12149. name: "Taur",
  12150. image: {
  12151. source: "./media/characters/adam-silver-mane/taur.svg",
  12152. extra: 1713 / 1571,
  12153. bottom: 0.01
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(8, "feet")
  12161. },
  12162. {
  12163. name: "Minimacro",
  12164. height: math.unit(80, "feet")
  12165. },
  12166. {
  12167. name: "MDA",
  12168. height: math.unit(80, "meters")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(800, "feet"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(8000, "feet")
  12178. },
  12179. {
  12180. name: "Gigamacro",
  12181. height: math.unit(800, "miles")
  12182. },
  12183. {
  12184. name: "Teramacro",
  12185. height: math.unit(80000, "miles")
  12186. },
  12187. {
  12188. name: "Celestial",
  12189. height: math.unit(8e6, "miles")
  12190. },
  12191. {
  12192. name: "Star Dragon",
  12193. height: math.unit(800000, "parsecs")
  12194. },
  12195. {
  12196. name: "Godly",
  12197. height: math.unit(800, "teraparsecs")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(150, "lb"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/ky'owin/front.svg",
  12210. extra: 3862/3053,
  12211. bottom: 74/3936
  12212. }
  12213. },
  12214. },
  12215. [
  12216. {
  12217. name: "Normal",
  12218. height: math.unit(6 + 8 / 12, "feet")
  12219. },
  12220. {
  12221. name: "Large",
  12222. height: math.unit(68, "feet")
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(132, "feet")
  12227. },
  12228. {
  12229. name: "Macro+",
  12230. height: math.unit(340, "feet")
  12231. },
  12232. {
  12233. name: "Macro++",
  12234. height: math.unit(680, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Megamacro",
  12239. height: math.unit(1, "mile")
  12240. },
  12241. {
  12242. name: "Megamacro+",
  12243. height: math.unit(10, "miles")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(4, "feet"),
  12252. weight: math.unit(50, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/mal/front.svg",
  12256. extra: 785 / 724,
  12257. bottom: 0.07
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Micro",
  12264. height: math.unit(4, "inches")
  12265. },
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(4, "feet"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Macro",
  12273. height: math.unit(200, "feet")
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12279. {
  12280. front: {
  12281. height: math.unit(6, "feet"),
  12282. weight: math.unit(150, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/jordan-deware/front.svg",
  12286. extra: 1191 / 1012
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Nano",
  12293. height: math.unit(0.01, "mm")
  12294. },
  12295. {
  12296. name: "Minimicro",
  12297. height: math.unit(1, "mm")
  12298. },
  12299. {
  12300. name: "Micro",
  12301. height: math.unit(0.5, "inches")
  12302. },
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(4, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Minimacro",
  12310. height: math.unit(40, "meters")
  12311. },
  12312. {
  12313. name: "Small Macro",
  12314. height: math.unit(400, "meters")
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(4, "miles")
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(40, "miles")
  12323. },
  12324. {
  12325. name: "Megamacro+",
  12326. height: math.unit(400, "miles")
  12327. },
  12328. {
  12329. name: "Gigamacro",
  12330. height: math.unit(400000, "miles")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(6, "feet"),
  12339. weight: math.unit(150, "lb"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/kimiko/front.svg",
  12343. extra: 875/832,
  12344. bottom: 36/911
  12345. }
  12346. },
  12347. side: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(150, "lb"),
  12350. name: "Side",
  12351. image: {
  12352. source: "./media/characters/kimiko/side.svg",
  12353. extra: 448/270,
  12354. bottom: 7/455
  12355. }
  12356. },
  12357. maw: {
  12358. height: math.unit(0.81 / 15 * 6, "feet"),
  12359. name: "Maw",
  12360. image: {
  12361. source: "./media/characters/kimiko/maw.svg"
  12362. }
  12363. },
  12364. },
  12365. [
  12366. {
  12367. name: "Normal",
  12368. height: math.unit(15, "feet"),
  12369. default: true
  12370. },
  12371. {
  12372. name: "Macro",
  12373. height: math.unit(220, "feet")
  12374. },
  12375. {
  12376. name: "Macro+",
  12377. height: math.unit(1450, "feet")
  12378. },
  12379. {
  12380. name: "Megamacro",
  12381. height: math.unit(11500, "feet")
  12382. },
  12383. {
  12384. name: "Gigamacro",
  12385. height: math.unit(9500, "miles")
  12386. },
  12387. {
  12388. name: "Teramacro",
  12389. height: math.unit(2208005005, "miles")
  12390. },
  12391. {
  12392. name: "Examacro",
  12393. height: math.unit(2750, "parsecs")
  12394. },
  12395. {
  12396. name: "Zettamacro",
  12397. height: math.unit(101500, "parsecs")
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(6, "feet"),
  12406. weight: math.unit(70, "kg"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/andrew-sleepy/front.svg"
  12410. }
  12411. },
  12412. side: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(70, "kg"),
  12415. name: "Side",
  12416. image: {
  12417. source: "./media/characters/andrew-sleepy/side.svg"
  12418. }
  12419. },
  12420. },
  12421. [
  12422. {
  12423. name: "Micro",
  12424. height: math.unit(1, "mm"),
  12425. default: true
  12426. },
  12427. ]
  12428. ))
  12429. characterMakers.push(() => makeCharacter(
  12430. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12431. {
  12432. front: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(150, "lb"),
  12435. name: "Front",
  12436. image: {
  12437. source: "./media/characters/judio/front.svg",
  12438. extra: 1258 / 1110
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(5 + 6 / 12, "feet")
  12446. },
  12447. {
  12448. name: "Macro",
  12449. height: math.unit(1000, "feet"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Megamacro",
  12454. height: math.unit(10, "miles")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12460. {
  12461. frontDressed: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(68, "kg"),
  12464. name: "Front (Dressed)",
  12465. image: {
  12466. source: "./media/characters/nomaxice/front-dressed.svg",
  12467. extra: 1137/824,
  12468. bottom: 74/1211
  12469. }
  12470. },
  12471. frontShorts: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(68, "kg"),
  12474. name: "Front (Shorts)",
  12475. image: {
  12476. source: "./media/characters/nomaxice/front-shorts.svg",
  12477. extra: 1137/824,
  12478. bottom: 74/1211
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(68, "kg"),
  12484. name: "Back",
  12485. image: {
  12486. source: "./media/characters/nomaxice/back.svg",
  12487. extra: 822/786,
  12488. bottom: 39/861
  12489. }
  12490. },
  12491. hand: {
  12492. height: math.unit(0.565, "feet"),
  12493. name: "Hand",
  12494. image: {
  12495. source: "./media/characters/nomaxice/hand.svg"
  12496. }
  12497. },
  12498. foot: {
  12499. height: math.unit(1, "feet"),
  12500. name: "Foot",
  12501. image: {
  12502. source: "./media/characters/nomaxice/foot.svg"
  12503. }
  12504. },
  12505. },
  12506. [
  12507. {
  12508. name: "Micro",
  12509. height: math.unit(8, "cm")
  12510. },
  12511. {
  12512. name: "Norm",
  12513. height: math.unit(1.82, "m")
  12514. },
  12515. {
  12516. name: "Norm+",
  12517. height: math.unit(8.8, "feet"),
  12518. default: true
  12519. },
  12520. {
  12521. name: "Big",
  12522. height: math.unit(8, "meters")
  12523. },
  12524. {
  12525. name: "Macro",
  12526. height: math.unit(18, "meters")
  12527. },
  12528. {
  12529. name: "Macro+",
  12530. height: math.unit(88, "meters")
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12536. {
  12537. front: {
  12538. height: math.unit(12, "feet"),
  12539. weight: math.unit(1.5, "tons"),
  12540. name: "Front",
  12541. image: {
  12542. source: "./media/characters/dydros/front.svg",
  12543. extra: 863 / 800,
  12544. bottom: 0.015
  12545. }
  12546. },
  12547. back: {
  12548. height: math.unit(12, "feet"),
  12549. weight: math.unit(1.5, "tons"),
  12550. name: "Back",
  12551. image: {
  12552. source: "./media/characters/dydros/back.svg",
  12553. extra: 900 / 843,
  12554. bottom: 0.005
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(12, "feet"),
  12562. default: true
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(100, "kg"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/riggi/front.svg",
  12575. extra: 5787 / 5303
  12576. }
  12577. },
  12578. hyper: {
  12579. height: math.unit(6 * 5 / 3, "feet"),
  12580. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12581. name: "Hyper",
  12582. image: {
  12583. source: "./media/characters/riggi/hyper.svg",
  12584. extra: 3595 / 3485
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Small Macro",
  12591. height: math.unit(50, "feet")
  12592. },
  12593. {
  12594. name: "Default",
  12595. height: math.unit(200, "feet"),
  12596. default: true
  12597. },
  12598. {
  12599. name: "Loom",
  12600. height: math.unit(10000, "feet")
  12601. },
  12602. {
  12603. name: "Cruising Altitude",
  12604. height: math.unit(30000, "feet")
  12605. },
  12606. {
  12607. name: "Megamacro",
  12608. height: math.unit(100, "miles")
  12609. },
  12610. {
  12611. name: "Continent Sized",
  12612. height: math.unit(2800, "miles")
  12613. },
  12614. {
  12615. name: "Earth Sized",
  12616. height: math.unit(8000, "miles")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(250, "lb"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/alexi/front.svg",
  12629. extra: 3483 / 3291,
  12630. bottom: 0.04
  12631. }
  12632. },
  12633. back: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(250, "lb"),
  12636. name: "Back",
  12637. image: {
  12638. source: "./media/characters/alexi/back.svg",
  12639. extra: 3533 / 3356,
  12640. bottom: 0.021
  12641. }
  12642. },
  12643. frontTransforming: {
  12644. height: math.unit(8.58, "feet"),
  12645. weight: math.unit(1300, "lb"),
  12646. name: "Transforming",
  12647. image: {
  12648. source: "./media/characters/alexi/front-transforming.svg",
  12649. extra: 437 / 409,
  12650. bottom: 19 / 458.66
  12651. }
  12652. },
  12653. frontTransformed: {
  12654. height: math.unit(12.5, "feet"),
  12655. weight: math.unit(4000, "lb"),
  12656. name: "Transformed",
  12657. image: {
  12658. source: "./media/characters/alexi/front-transformed.svg",
  12659. extra: 639 / 614,
  12660. bottom: 30.55 / 671
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(14, "feet"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Minimacro",
  12672. height: math.unit(30, "meters")
  12673. },
  12674. {
  12675. name: "Macro",
  12676. height: math.unit(500, "meters")
  12677. },
  12678. {
  12679. name: "Megamacro",
  12680. height: math.unit(9000, "km")
  12681. },
  12682. {
  12683. name: "Teramacro",
  12684. height: math.unit(384000, "km")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(150, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/kayroo/front.svg",
  12697. extra: 1153 / 1038,
  12698. bottom: 0.06
  12699. }
  12700. },
  12701. foot: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(150, "lb"),
  12704. name: "Foot",
  12705. image: {
  12706. source: "./media/characters/kayroo/foot.svg"
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(8, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Minimacro",
  12718. height: math.unit(250, "feet")
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(2800, "feet")
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(5200, "feet")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(27000, "feet")
  12731. },
  12732. {
  12733. name: "Omega",
  12734. height: math.unit(45000, "feet")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(18, "feet"),
  12743. weight: math.unit(5800, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/rhys/front.svg",
  12747. extra: 3386 / 3090,
  12748. bottom: 0.07
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(18, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Working Size",
  12760. height: math.unit(200, "feet")
  12761. },
  12762. {
  12763. name: "Demolition Size",
  12764. height: math.unit(2000, "feet")
  12765. },
  12766. {
  12767. name: "Maximum Licensed Size",
  12768. height: math.unit(5, "miles")
  12769. },
  12770. {
  12771. name: "Maximum Observed Size",
  12772. height: math.unit(10, "yottameters")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(250, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/toto/front.svg",
  12785. extra: 527 / 479,
  12786. bottom: 0.05
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Micro",
  12793. height: math.unit(3, "feet")
  12794. },
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(10, "feet")
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(150, "feet"),
  12802. default: true
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(1200, "feet")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "King", species: ["lion"], tags: ["anthro"] },
  12812. {
  12813. back: {
  12814. height: math.unit(6, "feet"),
  12815. weight: math.unit(150, "lb"),
  12816. name: "Back",
  12817. image: {
  12818. source: "./media/characters/king/back.svg"
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Micro",
  12825. height: math.unit(2, "inches")
  12826. },
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(8, "feet")
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(200, "feet"),
  12834. default: true
  12835. },
  12836. {
  12837. name: "Megamacro",
  12838. height: math.unit(50, "miles")
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12844. {
  12845. front: {
  12846. height: math.unit(11, "feet"),
  12847. weight: math.unit(1400, "lb"),
  12848. name: "Front",
  12849. image: {
  12850. source: "./media/characters/cordite/front.svg",
  12851. extra: 1919/1827,
  12852. bottom: 40/1959
  12853. }
  12854. },
  12855. side: {
  12856. height: math.unit(11, "feet"),
  12857. weight: math.unit(1400, "lb"),
  12858. name: "Side",
  12859. image: {
  12860. source: "./media/characters/cordite/side.svg",
  12861. extra: 1908/1793,
  12862. bottom: 38/1946
  12863. }
  12864. },
  12865. back: {
  12866. height: math.unit(11, "feet"),
  12867. weight: math.unit(1400, "lb"),
  12868. name: "Back",
  12869. image: {
  12870. source: "./media/characters/cordite/back.svg",
  12871. extra: 1938/1837,
  12872. bottom: 10/1948
  12873. }
  12874. },
  12875. feral: {
  12876. height: math.unit(2, "feet"),
  12877. weight: math.unit(90, "lb"),
  12878. name: "Feral",
  12879. image: {
  12880. source: "./media/characters/cordite/feral.svg",
  12881. extra: 1260 / 755,
  12882. bottom: 0.05
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(11, "feet"),
  12890. default: true
  12891. },
  12892. ]
  12893. ))
  12894. characterMakers.push(() => makeCharacter(
  12895. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12896. {
  12897. front: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(150, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/pianostrong/front.svg",
  12903. extra: 6577 / 6254,
  12904. bottom: 0.02
  12905. }
  12906. },
  12907. side: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(150, "lb"),
  12910. name: "Side",
  12911. image: {
  12912. source: "./media/characters/pianostrong/side.svg",
  12913. extra: 6106 / 5730
  12914. }
  12915. },
  12916. back: {
  12917. height: math.unit(6, "feet"),
  12918. weight: math.unit(150, "lb"),
  12919. name: "Back",
  12920. image: {
  12921. source: "./media/characters/pianostrong/back.svg",
  12922. extra: 6085 / 5733,
  12923. bottom: 0.01
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Macro",
  12930. height: math.unit(100, "feet")
  12931. },
  12932. {
  12933. name: "Macro+",
  12934. height: math.unit(300, "feet"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Macro++",
  12939. height: math.unit(1000, "feet")
  12940. },
  12941. ]
  12942. ))
  12943. characterMakers.push(() => makeCharacter(
  12944. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12945. {
  12946. front: {
  12947. height: math.unit(6, "feet"),
  12948. weight: math.unit(150, "lb"),
  12949. name: "Front",
  12950. image: {
  12951. source: "./media/characters/kona/front.svg",
  12952. extra: 2960 / 2629,
  12953. bottom: 0.005
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Normal",
  12960. height: math.unit(11 + 8 / 12, "feet")
  12961. },
  12962. {
  12963. name: "Macro",
  12964. height: math.unit(850, "feet"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Macro+",
  12969. height: math.unit(1.5, "km"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Megamacro",
  12974. height: math.unit(80, "miles")
  12975. },
  12976. {
  12977. name: "Gigamacro",
  12978. height: math.unit(3500, "miles")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12984. {
  12985. side: {
  12986. height: math.unit(1.9, "meters"),
  12987. weight: math.unit(326, "kg"),
  12988. name: "Side",
  12989. image: {
  12990. source: "./media/characters/levi/side.svg",
  12991. extra: 1704 / 1334,
  12992. bottom: 0.02
  12993. }
  12994. },
  12995. },
  12996. [
  12997. {
  12998. name: "Normal",
  12999. height: math.unit(1.9, "meters"),
  13000. default: true
  13001. },
  13002. {
  13003. name: "Macro",
  13004. height: math.unit(20, "meters")
  13005. },
  13006. {
  13007. name: "Macro+",
  13008. height: math.unit(200, "meters")
  13009. },
  13010. {
  13011. name: "Megamacro",
  13012. height: math.unit(2, "km")
  13013. },
  13014. {
  13015. name: "Megamacro+",
  13016. height: math.unit(20, "km")
  13017. },
  13018. {
  13019. name: "Gigamacro",
  13020. height: math.unit(2500, "km")
  13021. },
  13022. {
  13023. name: "Gigamacro+",
  13024. height: math.unit(120000, "km")
  13025. },
  13026. {
  13027. name: "Teramacro",
  13028. height: math.unit(7.77e6, "km")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(6 + 4/12, "feet"),
  13037. weight: math.unit(190, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/bmc/front.svg",
  13041. extra: 1626/1472,
  13042. bottom: 79/1705
  13043. }
  13044. },
  13045. back: {
  13046. height: math.unit(6 + 4/12, "feet"),
  13047. weight: math.unit(190, "lb"),
  13048. name: "Back",
  13049. image: {
  13050. source: "./media/characters/bmc/back.svg",
  13051. extra: 1640/1479,
  13052. bottom: 45/1685
  13053. }
  13054. },
  13055. frontArmor: {
  13056. height: math.unit(6 + 4/12, "feet"),
  13057. weight: math.unit(190, "lb"),
  13058. name: "Front-armor",
  13059. image: {
  13060. source: "./media/characters/bmc/front-armor.svg",
  13061. extra: 1538/1468,
  13062. bottom: 79/1617
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Human-sized",
  13069. height: math.unit(6 + 4 / 12, "feet")
  13070. },
  13071. {
  13072. name: "Interactive Size",
  13073. height: math.unit(25, "feet")
  13074. },
  13075. {
  13076. name: "Small",
  13077. height: math.unit(250, "feet")
  13078. },
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(1250, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Good Day",
  13086. height: math.unit(88, "miles")
  13087. },
  13088. {
  13089. name: "Largest Measured Size",
  13090. height: math.unit(105.960, "galaxies")
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13096. {
  13097. front: {
  13098. height: math.unit(20, "feet"),
  13099. weight: math.unit(2016, "kg"),
  13100. name: "Front",
  13101. image: {
  13102. source: "./media/characters/sven-the-kaiju/front.svg",
  13103. extra: 1277/1250,
  13104. bottom: 35/1312
  13105. }
  13106. },
  13107. mouth: {
  13108. height: math.unit(1.85, "feet"),
  13109. name: "Mouth",
  13110. image: {
  13111. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13112. }
  13113. },
  13114. },
  13115. [
  13116. {
  13117. name: "Fairy",
  13118. height: math.unit(6, "inches")
  13119. },
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(20, "feet"),
  13123. default: true
  13124. },
  13125. {
  13126. name: "Rampage",
  13127. height: math.unit(200, "feet")
  13128. },
  13129. {
  13130. name: "Archfey Forest Guardian",
  13131. height: math.unit(1, "mile")
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13137. {
  13138. front: {
  13139. height: math.unit(4, "meters"),
  13140. weight: math.unit(2, "tons"),
  13141. name: "Front",
  13142. image: {
  13143. source: "./media/characters/marik/front.svg",
  13144. extra: 1057 / 1003,
  13145. bottom: 0.08
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Normal",
  13152. height: math.unit(4, "meters"),
  13153. default: true
  13154. },
  13155. {
  13156. name: "Macro",
  13157. height: math.unit(20, "meters")
  13158. },
  13159. {
  13160. name: "Megamacro",
  13161. height: math.unit(50, "km")
  13162. },
  13163. {
  13164. name: "Gigamacro",
  13165. height: math.unit(100, "km")
  13166. },
  13167. {
  13168. name: "Alpha Macro",
  13169. height: math.unit(7.88e7, "yottameters")
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(6, "feet"),
  13178. weight: math.unit(110, "lb"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/mel/front.svg",
  13182. extra: 736 / 617,
  13183. bottom: 0.017
  13184. }
  13185. },
  13186. },
  13187. [
  13188. {
  13189. name: "Pico",
  13190. height: math.unit(3, "pm")
  13191. },
  13192. {
  13193. name: "Nano",
  13194. height: math.unit(3, "nm")
  13195. },
  13196. {
  13197. name: "Micro",
  13198. height: math.unit(0.3, "mm"),
  13199. default: true
  13200. },
  13201. {
  13202. name: "Micro+",
  13203. height: math.unit(3, "mm")
  13204. },
  13205. {
  13206. name: "Normal",
  13207. height: math.unit(5 + 10.5 / 12, "feet")
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13213. {
  13214. kaiju: {
  13215. height: math.unit(1.75, "meters"),
  13216. weight: math.unit(55, "kg"),
  13217. name: "Kaiju",
  13218. image: {
  13219. source: "./media/characters/lykonous/kaiju.svg",
  13220. extra: 1055 / 946,
  13221. bottom: 0.135
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(2.5, "meters"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Kaiju Dragon",
  13233. height: math.unit(60, "meters")
  13234. },
  13235. {
  13236. name: "Mega Kaiju",
  13237. height: math.unit(120, "km")
  13238. },
  13239. {
  13240. name: "Giga Kaiju",
  13241. height: math.unit(200, "megameters")
  13242. },
  13243. {
  13244. name: "Terra Kaiju",
  13245. height: math.unit(400, "gigameters")
  13246. },
  13247. {
  13248. name: "Kaiju Dragon God",
  13249. height: math.unit(13000, "exaparsecs")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/blü/front.svg",
  13262. extra: 1883 / 1564,
  13263. bottom: 0.031
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(13, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Big Boi",
  13275. height: math.unit(150, "meters")
  13276. },
  13277. {
  13278. name: "Mini Stomper",
  13279. height: math.unit(300, "meters")
  13280. },
  13281. {
  13282. name: "Macro",
  13283. height: math.unit(1000, "meters")
  13284. },
  13285. {
  13286. name: "Megamacro",
  13287. height: math.unit(11000, "meters")
  13288. },
  13289. {
  13290. name: "Gigamacro",
  13291. height: math.unit(11000, "km")
  13292. },
  13293. {
  13294. name: "Teramacro",
  13295. height: math.unit(420000, "km")
  13296. },
  13297. {
  13298. name: "Examacro",
  13299. height: math.unit(120, "parsecs")
  13300. },
  13301. {
  13302. name: "God Tho",
  13303. height: math.unit(98000000000, "parsecs")
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13309. {
  13310. taurFront: {
  13311. height: math.unit(6, "feet"),
  13312. weight: math.unit(200, "lb"),
  13313. name: "Taur (Front)",
  13314. image: {
  13315. source: "./media/characters/scales/taur-front.svg",
  13316. extra: 1,
  13317. bottom: 0.05
  13318. }
  13319. },
  13320. taurBack: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(200, "lb"),
  13323. name: "Taur (Back)",
  13324. image: {
  13325. source: "./media/characters/scales/taur-back.svg",
  13326. extra: 1,
  13327. bottom: 0.08
  13328. }
  13329. },
  13330. anthro: {
  13331. height: math.unit(6 * 7 / 12, "feet"),
  13332. weight: math.unit(100, "lb"),
  13333. name: "Anthro",
  13334. image: {
  13335. source: "./media/characters/scales/anthro.svg",
  13336. extra: 1,
  13337. bottom: 0.06
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(12, "feet"),
  13345. default: true
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13351. {
  13352. front: {
  13353. height: math.unit(6, "feet"),
  13354. weight: math.unit(150, "lb"),
  13355. name: "Front",
  13356. image: {
  13357. source: "./media/characters/koragos/front.svg",
  13358. extra: 841 / 794,
  13359. bottom: 0.035
  13360. }
  13361. },
  13362. back: {
  13363. height: math.unit(6, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Back",
  13366. image: {
  13367. source: "./media/characters/koragos/back.svg",
  13368. extra: 841 / 810,
  13369. bottom: 0.022
  13370. }
  13371. },
  13372. },
  13373. [
  13374. {
  13375. name: "Normal",
  13376. height: math.unit(6 + 11 / 12, "feet"),
  13377. default: true
  13378. },
  13379. {
  13380. name: "Macro",
  13381. height: math.unit(490, "feet")
  13382. },
  13383. {
  13384. name: "Megamacro",
  13385. height: math.unit(10, "miles")
  13386. },
  13387. {
  13388. name: "Gigamacro",
  13389. height: math.unit(50, "miles")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(250, "lb"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/xylrem/front.svg",
  13402. extra: 3323 / 3050,
  13403. bottom: 0.065
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(4, "feet")
  13411. },
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(16, "feet"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(2720, "feet")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(25000, "miles")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(8, "feet"),
  13432. weight: math.unit(250, "kg"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/ikideru/front.svg",
  13436. extra: 930 / 870,
  13437. bottom: 0.087
  13438. }
  13439. },
  13440. back: {
  13441. height: math.unit(8, "feet"),
  13442. weight: math.unit(250, "kg"),
  13443. name: "Back",
  13444. image: {
  13445. source: "./media/characters/ikideru/back.svg",
  13446. extra: 919 / 852,
  13447. bottom: 0.055
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Rare",
  13454. height: math.unit(8, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Playful Loom",
  13459. height: math.unit(80, "feet")
  13460. },
  13461. {
  13462. name: "City Leaner",
  13463. height: math.unit(230, "feet")
  13464. },
  13465. {
  13466. name: "Megamacro",
  13467. height: math.unit(2500, "feet")
  13468. },
  13469. {
  13470. name: "Gigamacro",
  13471. height: math.unit(26400, "feet")
  13472. },
  13473. {
  13474. name: "Tectonic Shifter",
  13475. height: math.unit(1.7, "megameters")
  13476. },
  13477. {
  13478. name: "Planet Carer",
  13479. height: math.unit(21, "megameters")
  13480. },
  13481. {
  13482. name: "God",
  13483. height: math.unit(11157.22, "parsecs")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(120, "lb"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/neo/front.svg"
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Micro",
  13502. height: math.unit(2, "inches"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Human Size",
  13507. height: math.unit(5 + 8 / 12, "feet")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(13 + 10 / 12, "feet"),
  13516. weight: math.unit(5320, "lb"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/chauncey-chantz/front.svg",
  13520. extra: 1587 / 1435,
  13521. bottom: 0.02
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Normal",
  13528. height: math.unit(13 + 10 / 12, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Macro",
  13533. height: math.unit(45, "feet")
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(250, "miles")
  13538. },
  13539. {
  13540. name: "Planetary",
  13541. height: math.unit(10000, "miles")
  13542. },
  13543. {
  13544. name: "Galactic",
  13545. height: math.unit(40000, "parsecs")
  13546. },
  13547. {
  13548. name: "Universal",
  13549. height: math.unit(1, "yottameter")
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13555. {
  13556. front: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(150, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/epifox/front.svg",
  13562. extra: 1,
  13563. bottom: 0.075
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Micro",
  13570. height: math.unit(6, "inches")
  13571. },
  13572. {
  13573. name: "Normal",
  13574. height: math.unit(12, "feet"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Macro",
  13579. height: math.unit(3810, "feet")
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(500, "miles")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(1.8796, "m"),
  13592. weight: math.unit(230, "lb"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/colin-t/front.svg",
  13596. extra: 1272 / 1193,
  13597. bottom: 0.07
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Micro",
  13604. height: math.unit(0.571, "meters")
  13605. },
  13606. {
  13607. name: "Normal",
  13608. height: math.unit(1.8796, "meters"),
  13609. default: true
  13610. },
  13611. {
  13612. name: "Tall",
  13613. height: math.unit(4, "meters")
  13614. },
  13615. {
  13616. name: "Macro",
  13617. height: math.unit(67.241, "meters")
  13618. },
  13619. {
  13620. name: "Megamacro",
  13621. height: math.unit(371.856, "meters")
  13622. },
  13623. {
  13624. name: "Planetary",
  13625. height: math.unit(12631.5689, "km")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(1.85, "meters"),
  13634. weight: math.unit(80, "kg"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/matvei/front.svg",
  13638. extra: 456/447,
  13639. bottom: 8/464
  13640. }
  13641. },
  13642. back: {
  13643. height: math.unit(1.85, "meters"),
  13644. weight: math.unit(80, "kg"),
  13645. name: "Back",
  13646. image: {
  13647. source: "./media/characters/matvei/back.svg",
  13648. extra: 434/427,
  13649. bottom: 11/445
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Normal",
  13656. height: math.unit(1.85, "meters"),
  13657. default: true
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(5 + 9 / 12, "feet"),
  13666. weight: math.unit(70, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/quincy/front.svg",
  13670. extra: 3041 / 2751
  13671. }
  13672. },
  13673. back: {
  13674. height: math.unit(5 + 9 / 12, "feet"),
  13675. weight: math.unit(70, "lb"),
  13676. name: "Back",
  13677. image: {
  13678. source: "./media/characters/quincy/back.svg",
  13679. extra: 3041 / 2751
  13680. }
  13681. },
  13682. flying: {
  13683. height: math.unit(5 + 4 / 12, "feet"),
  13684. weight: math.unit(70, "lb"),
  13685. name: "Flying",
  13686. image: {
  13687. source: "./media/characters/quincy/flying.svg",
  13688. extra: 1044 / 930
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Micro",
  13695. height: math.unit(3, "cm")
  13696. },
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(5 + 9 / 12, "feet")
  13700. },
  13701. {
  13702. name: "Macro",
  13703. height: math.unit(200, "meters"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Megamacro",
  13708. height: math.unit(1000, "meters")
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13714. {
  13715. front: {
  13716. height: math.unit(3 + 11/12, "feet"),
  13717. weight: math.unit(50, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/vanrel/front.svg",
  13721. extra: 1104/949,
  13722. bottom: 52/1156
  13723. }
  13724. },
  13725. back: {
  13726. height: math.unit(3 + 11/12, "feet"),
  13727. weight: math.unit(50, "lb"),
  13728. name: "Back",
  13729. image: {
  13730. source: "./media/characters/vanrel/back.svg",
  13731. extra: 1119/976,
  13732. bottom: 37/1156
  13733. }
  13734. },
  13735. tome: {
  13736. height: math.unit(1.35, "feet"),
  13737. weight: math.unit(10, "lb"),
  13738. name: "Vanrel's Tome",
  13739. rename: true,
  13740. image: {
  13741. source: "./media/characters/vanrel/tome.svg"
  13742. }
  13743. },
  13744. beans: {
  13745. height: math.unit(0.89, "feet"),
  13746. name: "Beans",
  13747. image: {
  13748. source: "./media/characters/vanrel/beans.svg"
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Normal",
  13755. height: math.unit(3 + 11/12, "feet"),
  13756. default: true
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(7 + 5 / 12, "feet"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/kuiper-vanrel/front.svg",
  13768. extra: 1219/1169,
  13769. bottom: 69/1288
  13770. }
  13771. },
  13772. back: {
  13773. height: math.unit(7 + 5 / 12, "feet"),
  13774. name: "Back",
  13775. image: {
  13776. source: "./media/characters/kuiper-vanrel/back.svg",
  13777. extra: 1236/1193,
  13778. bottom: 27/1263
  13779. }
  13780. },
  13781. foot: {
  13782. height: math.unit(0.55, "meters"),
  13783. name: "Foot",
  13784. image: {
  13785. source: "./media/characters/kuiper-vanrel/foot.svg",
  13786. }
  13787. },
  13788. battle: {
  13789. height: math.unit(6.824, "feet"),
  13790. name: "Battle",
  13791. image: {
  13792. source: "./media/characters/kuiper-vanrel/battle.svg",
  13793. extra: 1466 / 1327,
  13794. bottom: 29 / 1492.5
  13795. }
  13796. },
  13797. meerkui: {
  13798. height: math.unit(18, "inches"),
  13799. name: "Meerkui",
  13800. image: {
  13801. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13802. extra: 1354/1289,
  13803. bottom: 69/1423
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(7 + 5 / 12, "feet"),
  13811. default: true
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(8 + 5 / 12, "feet"),
  13820. name: "Front",
  13821. image: {
  13822. source: "./media/characters/keset-vanrel/front.svg",
  13823. extra: 1231/1148,
  13824. bottom: 82/1313
  13825. }
  13826. },
  13827. back: {
  13828. height: math.unit(8 + 5 / 12, "feet"),
  13829. name: "Back",
  13830. image: {
  13831. source: "./media/characters/keset-vanrel/back.svg",
  13832. extra: 1240/1174,
  13833. bottom: 33/1273
  13834. }
  13835. },
  13836. hand: {
  13837. height: math.unit(0.6, "meters"),
  13838. name: "Hand",
  13839. image: {
  13840. source: "./media/characters/keset-vanrel/hand.svg"
  13841. }
  13842. },
  13843. foot: {
  13844. height: math.unit(0.94978, "meters"),
  13845. name: "Foot",
  13846. image: {
  13847. source: "./media/characters/keset-vanrel/foot.svg"
  13848. }
  13849. },
  13850. battle: {
  13851. height: math.unit(7.408, "feet"),
  13852. name: "Battle",
  13853. image: {
  13854. source: "./media/characters/keset-vanrel/battle.svg",
  13855. extra: 1890 / 1386,
  13856. bottom: 73.28 / 1970
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(8 + 5 / 12, "feet"),
  13864. default: true
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/neos/front.svg",
  13877. extra: 1696 / 992,
  13878. bottom: 0.14
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(54, "cm"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Macro",
  13890. height: math.unit(100, "m")
  13891. },
  13892. {
  13893. name: "Megamacro",
  13894. height: math.unit(10, "km")
  13895. },
  13896. {
  13897. name: "Megamacro+",
  13898. height: math.unit(100, "km")
  13899. },
  13900. {
  13901. name: "Gigamacro",
  13902. height: math.unit(100, "Mm")
  13903. },
  13904. {
  13905. name: "Teramacro",
  13906. height: math.unit(100, "Gm")
  13907. },
  13908. {
  13909. name: "Examacro",
  13910. height: math.unit(100, "Em")
  13911. },
  13912. {
  13913. name: "Godly",
  13914. height: math.unit(10000, "Ym")
  13915. },
  13916. {
  13917. name: "Beyond Godly",
  13918. height: math.unit(25, "multiverses")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13924. {
  13925. fluide_tame: {
  13926. height: math.unit(5, "feet"),
  13927. name: "Tame",
  13928. image: {
  13929. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13930. extra: 1655/1574,
  13931. bottom: 231/1886
  13932. },
  13933. form: "fluide",
  13934. default: true
  13935. },
  13936. fluide_nude: {
  13937. height: math.unit(5, "feet"),
  13938. name: "Nude",
  13939. image: {
  13940. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13941. extra: 1655/1574,
  13942. bottom: 231/1886
  13943. },
  13944. form: "fluide",
  13945. },
  13946. male_tame: {
  13947. height: math.unit(5, "feet"),
  13948. name: "Tame",
  13949. image: {
  13950. source: "./media/characters/sammy-mouse/male-tame.svg",
  13951. extra: 1655/1574,
  13952. bottom: 231/1886
  13953. },
  13954. form: "male",
  13955. default: true
  13956. },
  13957. male_nude: {
  13958. height: math.unit(5, "feet"),
  13959. name: "Nude",
  13960. image: {
  13961. source: "./media/characters/sammy-mouse/male-nude.svg",
  13962. extra: 1655/1574,
  13963. bottom: 231/1886
  13964. },
  13965. form: "male",
  13966. },
  13967. female_nude: {
  13968. height: math.unit(5, "feet"),
  13969. name: "Nude",
  13970. image: {
  13971. source: "./media/characters/sammy-mouse/female-nude.svg",
  13972. extra: 1655/1574,
  13973. bottom: 231/1886
  13974. },
  13975. form: "female",
  13976. default: true
  13977. },
  13978. mouth: {
  13979. height: math.unit(0.32, "feet"),
  13980. name: "Mouth",
  13981. image: {
  13982. source: "./media/characters/sammy-mouse/mouth.svg"
  13983. },
  13984. allForms: true
  13985. },
  13986. paw: {
  13987. height: math.unit(0.42, "feet"),
  13988. name: "Paw",
  13989. image: {
  13990. source: "./media/characters/sammy-mouse/paw.svg"
  13991. },
  13992. allForms: true
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Micro",
  13998. height: math.unit(5, "inches"),
  13999. allForms: true
  14000. },
  14001. {
  14002. name: "Normal",
  14003. height: math.unit(5, "feet"),
  14004. default: true,
  14005. allForms: true
  14006. },
  14007. {
  14008. name: "Macro",
  14009. height: math.unit(60, "feet"),
  14010. allForms: true
  14011. },
  14012. ],
  14013. {
  14014. "fluide": {
  14015. name: "Fluide",
  14016. default: true
  14017. },
  14018. "male": {
  14019. name: "Male",
  14020. },
  14021. "female": {
  14022. name: "Female",
  14023. },
  14024. }
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(4, "feet"),
  14031. weight: math.unit(50, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/kole/front.svg",
  14035. extra: 1423 / 1303,
  14036. bottom: 0.025
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(4, "feet"),
  14041. weight: math.unit(50, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/kole/back.svg",
  14045. extra: 1426 / 1280,
  14046. bottom: 0.02
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Normal",
  14053. height: math.unit(4, "feet"),
  14054. default: true
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(2.5, "feet"),
  14063. weight: math.unit(32, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/rufran/front.svg",
  14067. extra: 1313/885,
  14068. bottom: 94/1407
  14069. }
  14070. },
  14071. side: {
  14072. height: math.unit(2.5, "feet"),
  14073. weight: math.unit(32, "lb"),
  14074. name: "Side",
  14075. image: {
  14076. source: "./media/characters/rufran/side.svg",
  14077. extra: 1109/852,
  14078. bottom: 118/1227
  14079. }
  14080. },
  14081. back: {
  14082. height: math.unit(2.5, "feet"),
  14083. weight: math.unit(32, "lb"),
  14084. name: "Back",
  14085. image: {
  14086. source: "./media/characters/rufran/back.svg",
  14087. extra: 1280/878,
  14088. bottom: 131/1411
  14089. }
  14090. },
  14091. mouth: {
  14092. height: math.unit(1.13, "feet"),
  14093. name: "Mouth",
  14094. image: {
  14095. source: "./media/characters/rufran/mouth.svg"
  14096. }
  14097. },
  14098. foot: {
  14099. height: math.unit(1.33, "feet"),
  14100. name: "Foot",
  14101. image: {
  14102. source: "./media/characters/rufran/foot.svg"
  14103. }
  14104. },
  14105. koboldFront: {
  14106. height: math.unit(2 + 6 / 12, "feet"),
  14107. weight: math.unit(20, "lb"),
  14108. name: "Front (Kobold)",
  14109. image: {
  14110. source: "./media/characters/rufran/kobold-front.svg",
  14111. extra: 2041 / 1839,
  14112. bottom: 0.055
  14113. }
  14114. },
  14115. koboldBack: {
  14116. height: math.unit(2 + 6 / 12, "feet"),
  14117. weight: math.unit(20, "lb"),
  14118. name: "Back (Kobold)",
  14119. image: {
  14120. source: "./media/characters/rufran/kobold-back.svg",
  14121. extra: 2054 / 1839,
  14122. bottom: 0.01
  14123. }
  14124. },
  14125. koboldHand: {
  14126. height: math.unit(0.2166, "meters"),
  14127. name: "Hand (Kobold)",
  14128. image: {
  14129. source: "./media/characters/rufran/kobold-hand.svg"
  14130. }
  14131. },
  14132. koboldFoot: {
  14133. height: math.unit(0.185, "meters"),
  14134. name: "Foot (Kobold)",
  14135. image: {
  14136. source: "./media/characters/rufran/kobold-foot.svg"
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Micro",
  14143. height: math.unit(1, "inch")
  14144. },
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(2 + 6 / 12, "feet"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Big",
  14152. height: math.unit(60, "feet")
  14153. },
  14154. {
  14155. name: "Macro",
  14156. height: math.unit(325, "feet")
  14157. },
  14158. ]
  14159. ))
  14160. characterMakers.push(() => makeCharacter(
  14161. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14162. {
  14163. front: {
  14164. height: math.unit(0.3, "meters"),
  14165. weight: math.unit(3.5, "kg"),
  14166. name: "Front",
  14167. image: {
  14168. source: "./media/characters/chip/front.svg",
  14169. extra: 748 / 674
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Micro",
  14176. height: math.unit(1, "inch"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14183. {
  14184. side: {
  14185. height: math.unit(2.3, "meters"),
  14186. weight: math.unit(3500, "lb"),
  14187. name: "Side",
  14188. image: {
  14189. source: "./media/characters/torvid/side.svg",
  14190. extra: 1972 / 722,
  14191. bottom: 0.035
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(2.3, "meters"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14205. {
  14206. front: {
  14207. height: math.unit(2, "meters"),
  14208. weight: math.unit(150.5, "kg"),
  14209. name: "Front",
  14210. image: {
  14211. source: "./media/characters/susan/front.svg",
  14212. extra: 693 / 635,
  14213. bottom: 0.05
  14214. }
  14215. },
  14216. },
  14217. [
  14218. {
  14219. name: "Megamacro",
  14220. height: math.unit(505, "miles"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(6, "feet"),
  14230. weight: math.unit(150, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/raindrops/front.svg",
  14234. extra: 2655 / 2461,
  14235. bottom: 49 / 2705
  14236. }
  14237. },
  14238. back: {
  14239. height: math.unit(6, "feet"),
  14240. weight: math.unit(150, "lb"),
  14241. name: "Back",
  14242. image: {
  14243. source: "./media/characters/raindrops/back.svg",
  14244. extra: 2574 / 2400,
  14245. bottom: 65 / 2634
  14246. }
  14247. },
  14248. },
  14249. [
  14250. {
  14251. name: "Micro",
  14252. height: math.unit(6, "inches")
  14253. },
  14254. {
  14255. name: "Normal",
  14256. height: math.unit(6 + 2 / 12, "feet")
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(131, "feet"),
  14261. default: true
  14262. },
  14263. {
  14264. name: "Megamacro",
  14265. height: math.unit(15, "miles")
  14266. },
  14267. {
  14268. name: "Gigamacro",
  14269. height: math.unit(4000, "miles")
  14270. },
  14271. {
  14272. name: "Teramacro",
  14273. height: math.unit(315000, "miles")
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(2.794, "meters"),
  14282. weight: math.unit(325, "kg"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/tezwa/front.svg",
  14286. extra: 2083 / 1906,
  14287. bottom: 0.031
  14288. }
  14289. },
  14290. foot: {
  14291. height: math.unit(0.687, "meters"),
  14292. name: "Foot",
  14293. image: {
  14294. source: "./media/characters/tezwa/foot.svg"
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(9 + 2 / 12, "feet"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(58, "feet"),
  14311. weight: math.unit(89000, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/typhus/front.svg",
  14315. extra: 816 / 800,
  14316. bottom: 0.065
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Macro",
  14323. height: math.unit(58, "feet"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(12, "feet"),
  14333. weight: math.unit(6, "tonnes"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/lyra-von-wulf/front.svg",
  14337. extra: 1,
  14338. bottom: 0.10
  14339. }
  14340. },
  14341. frontMecha: {
  14342. height: math.unit(12, "feet"),
  14343. weight: math.unit(12, "tonnes"),
  14344. name: "Front (Mecha)",
  14345. image: {
  14346. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14347. extra: 1,
  14348. bottom: 0.042
  14349. }
  14350. },
  14351. maw: {
  14352. height: math.unit(2.2, "feet"),
  14353. name: "Maw",
  14354. image: {
  14355. source: "./media/characters/lyra-von-wulf/maw.svg"
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Classic",
  14367. height: math.unit(50, "feet")
  14368. },
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(500, "feet")
  14372. },
  14373. {
  14374. name: "Megamacro",
  14375. height: math.unit(1, "mile")
  14376. },
  14377. {
  14378. name: "Gigamacro",
  14379. height: math.unit(400, "miles")
  14380. },
  14381. {
  14382. name: "Teramacro",
  14383. height: math.unit(22000, "miles")
  14384. },
  14385. {
  14386. name: "Solarmacro",
  14387. height: math.unit(8600000, "miles")
  14388. },
  14389. {
  14390. name: "Galactic",
  14391. height: math.unit(1057000, "lightyears")
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14397. {
  14398. front: {
  14399. height: math.unit(6 + 10 / 12, "feet"),
  14400. weight: math.unit(150, "lb"),
  14401. name: "Front",
  14402. image: {
  14403. source: "./media/characters/dixon/front.svg",
  14404. extra: 3361 / 3209,
  14405. bottom: 0.01
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(6 + 10 / 12, "feet"),
  14413. default: true
  14414. },
  14415. {
  14416. name: "Big",
  14417. height: math.unit(12, "meters")
  14418. },
  14419. {
  14420. name: "Macro",
  14421. height: math.unit(500, "meters")
  14422. },
  14423. {
  14424. name: "Megamacro",
  14425. height: math.unit(2, "km")
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14431. {
  14432. kingCheetah_front: {
  14433. height: math.unit(1.85, "meters"),
  14434. weight: math.unit(68, "kg"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/kauko/king-cheetah-front.svg",
  14438. extra: 1007/972,
  14439. bottom: 35/1042
  14440. },
  14441. form: "king-cheetah",
  14442. default: true
  14443. },
  14444. kingCheetah_back: {
  14445. height: math.unit(1.85, "meters"),
  14446. weight: math.unit(68, "kg"),
  14447. name: "Back",
  14448. image: {
  14449. source: "./media/characters/kauko/king-cheetah-back.svg",
  14450. extra: 1015/980,
  14451. bottom: 11/1026
  14452. },
  14453. form: "king-cheetah",
  14454. },
  14455. kingCheetah_hand: {
  14456. height: math.unit(0.23, "meters"),
  14457. name: "Hand",
  14458. image: {
  14459. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14460. },
  14461. form: "king-cheetah",
  14462. },
  14463. kingCheetah_paw: {
  14464. height: math.unit(0.38, "meters"),
  14465. name: "Paw",
  14466. image: {
  14467. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14468. },
  14469. form: "king-cheetah",
  14470. },
  14471. kingCheetah_nape: {
  14472. height: math.unit(0.23, "meters"),
  14473. name: "Nape",
  14474. image: {
  14475. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14476. },
  14477. form: "king-cheetah",
  14478. },
  14479. wolf_front: {
  14480. height: math.unit(1.88, "meters"),
  14481. weight: math.unit(74, "kg"),
  14482. name: "Front",
  14483. image: {
  14484. source: "./media/characters/kauko/wolf-front.svg",
  14485. extra: 952/908,
  14486. bottom: 64/1016
  14487. },
  14488. form: "wolf",
  14489. default: true
  14490. },
  14491. wolf_dressed: {
  14492. height: math.unit(1.88, "meters"),
  14493. weight: math.unit(74, "kg"),
  14494. name: "Dressed",
  14495. image: {
  14496. source: "./media/characters/kauko/wolf-dressed.svg",
  14497. extra: 963/916,
  14498. bottom: 101/1064
  14499. },
  14500. form: "wolf",
  14501. },
  14502. wolf_hand: {
  14503. height: math.unit(0.3, "meters"),
  14504. name: "Hand",
  14505. image: {
  14506. source: "./media/characters/kauko/wolf-hand.svg"
  14507. },
  14508. form: "wolf",
  14509. },
  14510. wolf_paw: {
  14511. height: math.unit(0.407, "meters"),
  14512. name: "Paw",
  14513. image: {
  14514. source: "./media/characters/kauko/wolf-paw.svg"
  14515. },
  14516. form: "wolf",
  14517. },
  14518. wolf_nape: {
  14519. height: math.unit(0.25, "meters"),
  14520. name: "Nape",
  14521. image: {
  14522. source: "./media/characters/kauko/wolf-nape.svg"
  14523. },
  14524. form: "wolf",
  14525. },
  14526. },
  14527. [
  14528. {
  14529. name: "Normal",
  14530. height: math.unit(1.85, "m"),
  14531. default: true,
  14532. form: "king-cheetah"
  14533. },
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(1.88, "m"),
  14537. default: true,
  14538. form: "wolf"
  14539. },
  14540. ],
  14541. {
  14542. "king-cheetah": {
  14543. name: "King Cheetah",
  14544. default: true
  14545. },
  14546. "wolf": {
  14547. name: "Wolf",
  14548. },
  14549. }
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14553. {
  14554. frontSfw: {
  14555. height: math.unit(5, "meters"),
  14556. weight: math.unit(4250, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/varg/front-sfw.svg",
  14560. extra: 1103/1010,
  14561. bottom: 50/1153
  14562. },
  14563. form: "anthro",
  14564. default: true
  14565. },
  14566. backSfw: {
  14567. height: math.unit(5, "meters"),
  14568. weight: math.unit(4250, "lb"),
  14569. name: "Back",
  14570. image: {
  14571. source: "./media/characters/varg/back-sfw.svg",
  14572. extra: 1038/1022,
  14573. bottom: 36/1074
  14574. },
  14575. form: "anthro"
  14576. },
  14577. frontNsfw: {
  14578. height: math.unit(5, "meters"),
  14579. weight: math.unit(4250, "lb"),
  14580. name: "Front (NSFW)",
  14581. image: {
  14582. source: "./media/characters/varg/front-nsfw.svg",
  14583. extra: 1103/1010,
  14584. bottom: 50/1153
  14585. },
  14586. form: "anthro"
  14587. },
  14588. sheath: {
  14589. height: math.unit(3.8, "feet"),
  14590. weight: math.unit(90, "kilograms"),
  14591. name: "Sheath",
  14592. image: {
  14593. source: "./media/characters/varg/sheath.svg"
  14594. },
  14595. form: "anthro"
  14596. },
  14597. dick: {
  14598. height: math.unit(4.6, "feet"),
  14599. weight: math.unit(451, "kilograms"),
  14600. name: "Dick",
  14601. image: {
  14602. source: "./media/characters/varg/dick.svg"
  14603. },
  14604. form: "anthro"
  14605. },
  14606. feralSfw: {
  14607. height: math.unit(5, "meters"),
  14608. weight: math.unit(100000, "lb"),
  14609. name: "Side",
  14610. image: {
  14611. source: "./media/characters/varg/feral-sfw.svg",
  14612. extra: 1065/511,
  14613. bottom: 211/1276
  14614. },
  14615. form: "feral",
  14616. default: true
  14617. },
  14618. feralNsfw: {
  14619. height: math.unit(5, "meters"),
  14620. weight: math.unit(100000, "lb"),
  14621. name: "Side (NSFW)",
  14622. image: {
  14623. source: "./media/characters/varg/feral-nsfw.svg",
  14624. extra: 1065/511,
  14625. bottom: 211/1276
  14626. },
  14627. form: "feral",
  14628. },
  14629. feralSheath: {
  14630. height: math.unit(9.8, "feet"),
  14631. weight: math.unit(2000, "kilograms"),
  14632. name: "Sheath",
  14633. image: {
  14634. source: "./media/characters/varg/sheath.svg"
  14635. },
  14636. form: "feral"
  14637. },
  14638. feralDick: {
  14639. height: math.unit(13.11, "feet"),
  14640. weight: math.unit(10440, "kilograms"),
  14641. name: "Dick",
  14642. image: {
  14643. source: "./media/characters/varg/dick.svg"
  14644. },
  14645. form: "feral"
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(5, "meters"),
  14652. form: "anthro"
  14653. },
  14654. {
  14655. name: "Macro",
  14656. height: math.unit(200, "meters"),
  14657. form: "anthro"
  14658. },
  14659. {
  14660. name: "Megamacro",
  14661. height: math.unit(20, "kilometers"),
  14662. form: "anthro"
  14663. },
  14664. {
  14665. name: "True Size",
  14666. height: math.unit(211, "km"),
  14667. form: "anthro",
  14668. default: true
  14669. },
  14670. {
  14671. name: "Gigamacro",
  14672. height: math.unit(1000, "km"),
  14673. form: "anthro"
  14674. },
  14675. {
  14676. name: "Gigamacro+",
  14677. height: math.unit(8000, "km"),
  14678. form: "anthro"
  14679. },
  14680. {
  14681. name: "Teramacro",
  14682. height: math.unit(1000000, "km"),
  14683. form: "anthro"
  14684. },
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(5, "meters"),
  14688. form: "feral"
  14689. },
  14690. {
  14691. name: "Macro",
  14692. height: math.unit(200, "meters"),
  14693. form: "feral"
  14694. },
  14695. {
  14696. name: "Megamacro",
  14697. height: math.unit(20, "kilometers"),
  14698. form: "feral"
  14699. },
  14700. {
  14701. name: "True Size",
  14702. height: math.unit(211, "km"),
  14703. form: "feral",
  14704. default: true
  14705. },
  14706. {
  14707. name: "Gigamacro",
  14708. height: math.unit(1000, "km"),
  14709. form: "feral"
  14710. },
  14711. {
  14712. name: "Gigamacro+",
  14713. height: math.unit(8000, "km"),
  14714. form: "feral"
  14715. },
  14716. {
  14717. name: "Teramacro",
  14718. height: math.unit(1000000, "km"),
  14719. form: "feral"
  14720. },
  14721. ],
  14722. {
  14723. "anthro": {
  14724. name: "Anthro",
  14725. default: true
  14726. },
  14727. "feral": {
  14728. name: "Feral",
  14729. },
  14730. }
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(7 + 7 / 12, "feet"),
  14737. weight: math.unit(267, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/dayza/front.svg",
  14741. extra: 1262 / 1200,
  14742. bottom: 0.035
  14743. }
  14744. },
  14745. side: {
  14746. height: math.unit(7 + 7 / 12, "feet"),
  14747. weight: math.unit(267, "lb"),
  14748. name: "Side",
  14749. image: {
  14750. source: "./media/characters/dayza/side.svg",
  14751. extra: 1295 / 1245,
  14752. bottom: 0.05
  14753. }
  14754. },
  14755. back: {
  14756. height: math.unit(7 + 7 / 12, "feet"),
  14757. weight: math.unit(267, "lb"),
  14758. name: "Back",
  14759. image: {
  14760. source: "./media/characters/dayza/back.svg",
  14761. extra: 1241 / 1170
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Normal",
  14768. height: math.unit(7 + 7 / 12, "feet"),
  14769. default: true
  14770. },
  14771. {
  14772. name: "Macro",
  14773. height: math.unit(155, "feet")
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6 + 5 / 12, "feet"),
  14782. weight: math.unit(160, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/xanthos/front.svg",
  14786. extra: 1,
  14787. bottom: 0.04
  14788. }
  14789. },
  14790. back: {
  14791. height: math.unit(6 + 5 / 12, "feet"),
  14792. weight: math.unit(160, "lb"),
  14793. name: "Back",
  14794. image: {
  14795. source: "./media/characters/xanthos/back.svg",
  14796. extra: 1,
  14797. bottom: 0.03
  14798. }
  14799. },
  14800. hand: {
  14801. height: math.unit(0.928, "feet"),
  14802. name: "Hand",
  14803. image: {
  14804. source: "./media/characters/xanthos/hand.svg"
  14805. }
  14806. },
  14807. foot: {
  14808. height: math.unit(1.286, "feet"),
  14809. name: "Foot",
  14810. image: {
  14811. source: "./media/characters/xanthos/foot.svg"
  14812. }
  14813. },
  14814. },
  14815. [
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(6 + 5 / 12, "feet"),
  14819. default: true
  14820. },
  14821. {
  14822. name: "Normal+",
  14823. height: math.unit(6, "meters")
  14824. },
  14825. {
  14826. name: "Macro",
  14827. height: math.unit(40, "feet")
  14828. },
  14829. {
  14830. name: "Macro+",
  14831. height: math.unit(200, "meters")
  14832. },
  14833. {
  14834. name: "Megamacro",
  14835. height: math.unit(20, "km")
  14836. },
  14837. {
  14838. name: "Megamacro+",
  14839. height: math.unit(100, "km")
  14840. },
  14841. {
  14842. name: "Gigamacro",
  14843. height: math.unit(200, "megameters")
  14844. },
  14845. {
  14846. name: "Gigamacro+",
  14847. height: math.unit(1.5, "gigameters")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6 + 3 / 12, "feet"),
  14856. weight: math.unit(215, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/grynn/front.svg",
  14860. extra: 4627 / 4209,
  14861. bottom: 0.047
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Micro",
  14868. height: math.unit(6, "inches")
  14869. },
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(6 + 3 / 12, "feet"),
  14873. default: true
  14874. },
  14875. {
  14876. name: "Big",
  14877. height: math.unit(104, "feet")
  14878. },
  14879. {
  14880. name: "Macro",
  14881. height: math.unit(944, "feet")
  14882. },
  14883. {
  14884. name: "Macro+",
  14885. height: math.unit(9480, "feet")
  14886. },
  14887. {
  14888. name: "Megamacro",
  14889. height: math.unit(78752, "feet")
  14890. },
  14891. {
  14892. name: "Megamacro+",
  14893. height: math.unit(630128, "feet")
  14894. },
  14895. {
  14896. name: "Megamacro++",
  14897. height: math.unit(3150695, "feet")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(7 + 5 / 12, "feet"),
  14906. weight: math.unit(450, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/mocha-aura/front.svg",
  14910. extra: 1907 / 1817,
  14911. bottom: 0.04
  14912. }
  14913. },
  14914. back: {
  14915. height: math.unit(7 + 5 / 12, "feet"),
  14916. weight: math.unit(450, "lb"),
  14917. name: "Back",
  14918. image: {
  14919. source: "./media/characters/mocha-aura/back.svg",
  14920. extra: 1900 / 1825,
  14921. bottom: 0.045
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Nano",
  14928. height: math.unit(1, "nm")
  14929. },
  14930. {
  14931. name: "Megamicro",
  14932. height: math.unit(1, "mm")
  14933. },
  14934. {
  14935. name: "Micro",
  14936. height: math.unit(3, "inches")
  14937. },
  14938. {
  14939. name: "Normal",
  14940. height: math.unit(7 + 5 / 12, "feet"),
  14941. default: true
  14942. },
  14943. {
  14944. name: "Macro",
  14945. height: math.unit(30, "feet")
  14946. },
  14947. {
  14948. name: "Megamacro",
  14949. height: math.unit(3500, "feet")
  14950. },
  14951. {
  14952. name: "Teramacro",
  14953. height: math.unit(500000, "miles")
  14954. },
  14955. {
  14956. name: "Petamacro",
  14957. height: math.unit(50000000000000000, "parsecs")
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14963. {
  14964. front: {
  14965. height: math.unit(6, "feet"),
  14966. weight: math.unit(150, "lb"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/ilisha-devya/front.svg",
  14970. extra: 1053/1049,
  14971. bottom: 270/1323
  14972. }
  14973. },
  14974. back: {
  14975. height: math.unit(6, "feet"),
  14976. weight: math.unit(150, "lb"),
  14977. name: "Back",
  14978. image: {
  14979. source: "./media/characters/ilisha-devya/back.svg",
  14980. extra: 1131/1128,
  14981. bottom: 39/1170
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Macro",
  14988. height: math.unit(500, "feet"),
  14989. default: true
  14990. },
  14991. {
  14992. name: "Megamacro",
  14993. height: math.unit(10, "miles")
  14994. },
  14995. {
  14996. name: "Gigamacro",
  14997. height: math.unit(100000, "miles")
  14998. },
  14999. {
  15000. name: "Examacro",
  15001. height: math.unit(1e9, "lightyears")
  15002. },
  15003. {
  15004. name: "Omniversal",
  15005. height: math.unit(1e33, "lightyears")
  15006. },
  15007. {
  15008. name: "Beyond Infinite",
  15009. height: math.unit(1e100, "lightyears")
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15015. {
  15016. Side: {
  15017. height: math.unit(6, "feet"),
  15018. weight: math.unit(150, "lb"),
  15019. name: "Side",
  15020. image: {
  15021. source: "./media/characters/mira/side.svg",
  15022. extra: 900 / 799,
  15023. bottom: 0.02
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Human Size",
  15030. height: math.unit(6, "feet")
  15031. },
  15032. {
  15033. name: "Macro",
  15034. height: math.unit(100, "feet"),
  15035. default: true
  15036. },
  15037. {
  15038. name: "Megamacro",
  15039. height: math.unit(10, "miles")
  15040. },
  15041. {
  15042. name: "Gigamacro",
  15043. height: math.unit(25000, "miles")
  15044. },
  15045. {
  15046. name: "Teramacro",
  15047. height: math.unit(300, "AU")
  15048. },
  15049. {
  15050. name: "Full Size",
  15051. height: math.unit(4.5e10, "lightyears")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(150, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/holly/front.svg",
  15064. extra: 639 / 606
  15065. }
  15066. },
  15067. back: {
  15068. height: math.unit(6, "feet"),
  15069. weight: math.unit(150, "lb"),
  15070. name: "Back",
  15071. image: {
  15072. source: "./media/characters/holly/back.svg",
  15073. extra: 623 / 598
  15074. }
  15075. },
  15076. frontWorking: {
  15077. height: math.unit(6, "feet"),
  15078. weight: math.unit(150, "lb"),
  15079. name: "Front (Working)",
  15080. image: {
  15081. source: "./media/characters/holly/front-working.svg",
  15082. extra: 607 / 577,
  15083. bottom: 0.048
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Normal",
  15090. height: math.unit(12 + 3 / 12, "feet"),
  15091. default: true
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(6, "feet"),
  15100. weight: math.unit(150, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/porter/front.svg",
  15104. extra: 1,
  15105. bottom: 0.01
  15106. }
  15107. },
  15108. frontRobes: {
  15109. height: math.unit(6, "feet"),
  15110. weight: math.unit(150, "lb"),
  15111. name: "Front (Robes)",
  15112. image: {
  15113. source: "./media/characters/porter/front-robes.svg",
  15114. extra: 1.01,
  15115. bottom: 0.01
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(11 + 9 / 12, "feet"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15129. {
  15130. legendary: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Legendary",
  15134. image: {
  15135. source: "./media/characters/lucy/legendary.svg",
  15136. extra: 1355 / 1100,
  15137. bottom: 0.045
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Legendary",
  15144. height: math.unit(86882 * 2, "miles"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(6, "feet"),
  15154. weight: math.unit(150, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/drusilla/front.svg",
  15158. extra: 678 / 635,
  15159. bottom: 0.03
  15160. }
  15161. },
  15162. back: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(150, "lb"),
  15165. name: "Back",
  15166. image: {
  15167. source: "./media/characters/drusilla/back.svg",
  15168. extra: 678 / 635,
  15169. bottom: 0.005
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Macro",
  15176. height: math.unit(100, "feet")
  15177. },
  15178. {
  15179. name: "Canon Height",
  15180. height: math.unit(2000, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(6, "feet"),
  15190. weight: math.unit(180, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/renard-thatch/front.svg",
  15194. extra: 2411 / 2275,
  15195. bottom: 0.01
  15196. }
  15197. },
  15198. frontPosing: {
  15199. height: math.unit(6, "feet"),
  15200. weight: math.unit(180, "lb"),
  15201. name: "Front (Posing)",
  15202. image: {
  15203. source: "./media/characters/renard-thatch/front-posing.svg",
  15204. extra: 2381 / 2261,
  15205. bottom: 0.01
  15206. }
  15207. },
  15208. back: {
  15209. height: math.unit(6, "feet"),
  15210. weight: math.unit(180, "lb"),
  15211. name: "Back",
  15212. image: {
  15213. source: "./media/characters/renard-thatch/back.svg",
  15214. extra: 2428 / 2288
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Micro",
  15221. height: math.unit(3, "inches")
  15222. },
  15223. {
  15224. name: "Default",
  15225. height: math.unit(6, "feet"),
  15226. default: true
  15227. },
  15228. {
  15229. name: "Macro",
  15230. height: math.unit(75, "feet")
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15236. {
  15237. front: {
  15238. height: math.unit(1450, "feet"),
  15239. weight: math.unit(1.21e6, "tons"),
  15240. name: "Front",
  15241. image: {
  15242. source: "./media/characters/sekvra/front.svg",
  15243. extra: 1193/1190,
  15244. bottom: 78/1271
  15245. }
  15246. },
  15247. side: {
  15248. height: math.unit(1450, "feet"),
  15249. weight: math.unit(1.21e6, "tons"),
  15250. name: "Side",
  15251. image: {
  15252. source: "./media/characters/sekvra/side.svg",
  15253. extra: 1193/1190,
  15254. bottom: 52/1245
  15255. }
  15256. },
  15257. back: {
  15258. height: math.unit(1450, "feet"),
  15259. weight: math.unit(1.21e6, "tons"),
  15260. name: "Back",
  15261. image: {
  15262. source: "./media/characters/sekvra/back.svg",
  15263. extra: 1219/1216,
  15264. bottom: 21/1240
  15265. }
  15266. },
  15267. frontClothed: {
  15268. height: math.unit(1450, "feet"),
  15269. weight: math.unit(1.21e6, "tons"),
  15270. name: "Front (Clothed)",
  15271. image: {
  15272. source: "./media/characters/sekvra/front-clothed.svg",
  15273. extra: 1192/1189,
  15274. bottom: 79/1271
  15275. }
  15276. },
  15277. },
  15278. [
  15279. {
  15280. name: "Macro",
  15281. height: math.unit(1450, "feet"),
  15282. default: true
  15283. },
  15284. {
  15285. name: "Megamacro",
  15286. height: math.unit(15000, "feet")
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15292. {
  15293. front: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Front",
  15297. image: {
  15298. source: "./media/characters/carmine/front.svg",
  15299. extra: 1557/1538,
  15300. bottom: 68/1625
  15301. }
  15302. },
  15303. frontArmor: {
  15304. height: math.unit(6, "feet"),
  15305. weight: math.unit(150, "lb"),
  15306. name: "Front (Armor)",
  15307. image: {
  15308. source: "./media/characters/carmine/front-armor.svg",
  15309. extra: 1549/1530,
  15310. bottom: 82/1631
  15311. }
  15312. },
  15313. mouth: {
  15314. height: math.unit(0.55, "feet"),
  15315. name: "Mouth",
  15316. image: {
  15317. source: "./media/characters/carmine/mouth.svg"
  15318. }
  15319. },
  15320. hand: {
  15321. height: math.unit(1.05, "feet"),
  15322. name: "Hand",
  15323. image: {
  15324. source: "./media/characters/carmine/hand.svg"
  15325. }
  15326. },
  15327. foot: {
  15328. height: math.unit(0.6, "feet"),
  15329. name: "Foot",
  15330. image: {
  15331. source: "./media/characters/carmine/foot.svg"
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Large",
  15338. height: math.unit(1, "mile")
  15339. },
  15340. {
  15341. name: "Huge",
  15342. height: math.unit(40, "miles"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Colossal",
  15347. height: math.unit(2500, "miles")
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(6, "feet"),
  15356. weight: math.unit(150, "lb"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/elyssia/front.svg",
  15360. extra: 2201 / 2035,
  15361. bottom: 0.05
  15362. }
  15363. },
  15364. frontClothed: {
  15365. height: math.unit(6, "feet"),
  15366. weight: math.unit(150, "lb"),
  15367. name: "Front (Clothed)",
  15368. image: {
  15369. source: "./media/characters/elyssia/front-clothed.svg",
  15370. extra: 2201 / 2035,
  15371. bottom: 0.05
  15372. }
  15373. },
  15374. back: {
  15375. height: math.unit(6, "feet"),
  15376. weight: math.unit(150, "lb"),
  15377. name: "Back",
  15378. image: {
  15379. source: "./media/characters/elyssia/back.svg",
  15380. extra: 2201 / 2035,
  15381. bottom: 0.013
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Smaller",
  15388. height: math.unit(150, "feet")
  15389. },
  15390. {
  15391. name: "Standard",
  15392. height: math.unit(1400, "feet"),
  15393. default: true
  15394. },
  15395. {
  15396. name: "Distracted",
  15397. height: math.unit(15000, "feet")
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(7 + 4/12, "feet"),
  15406. weight: math.unit(690, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/geno-maxwell/front.svg",
  15410. extra: 984/856,
  15411. bottom: 87/1071
  15412. }
  15413. },
  15414. back: {
  15415. height: math.unit(7 + 4/12, "feet"),
  15416. weight: math.unit(690, "lb"),
  15417. name: "Back",
  15418. image: {
  15419. source: "./media/characters/geno-maxwell/back.svg",
  15420. extra: 981/854,
  15421. bottom: 57/1038
  15422. }
  15423. },
  15424. frontCostume: {
  15425. height: math.unit(7 + 4/12, "feet"),
  15426. weight: math.unit(690, "lb"),
  15427. name: "Front (Costume)",
  15428. image: {
  15429. source: "./media/characters/geno-maxwell/front-costume.svg",
  15430. extra: 984/856,
  15431. bottom: 87/1071
  15432. }
  15433. },
  15434. backcostume: {
  15435. height: math.unit(7 + 4/12, "feet"),
  15436. weight: math.unit(690, "lb"),
  15437. name: "Back (Costume)",
  15438. image: {
  15439. source: "./media/characters/geno-maxwell/back-costume.svg",
  15440. extra: 981/854,
  15441. bottom: 57/1038
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Micro",
  15448. height: math.unit(3, "inches")
  15449. },
  15450. {
  15451. name: "Normal",
  15452. height: math.unit(7 + 4 / 12, "feet"),
  15453. default: true
  15454. },
  15455. {
  15456. name: "Macro",
  15457. height: math.unit(220, "feet")
  15458. },
  15459. {
  15460. name: "Megamacro",
  15461. height: math.unit(11, "miles")
  15462. },
  15463. ]
  15464. ))
  15465. characterMakers.push(() => makeCharacter(
  15466. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15467. {
  15468. front: {
  15469. height: math.unit(7 + 4/12, "feet"),
  15470. weight: math.unit(750, "lb"),
  15471. name: "Front",
  15472. image: {
  15473. source: "./media/characters/regena-maxwell/front.svg",
  15474. extra: 984/856,
  15475. bottom: 87/1071
  15476. }
  15477. },
  15478. back: {
  15479. height: math.unit(7 + 4/12, "feet"),
  15480. weight: math.unit(750, "lb"),
  15481. name: "Back",
  15482. image: {
  15483. source: "./media/characters/regena-maxwell/back.svg",
  15484. extra: 981/854,
  15485. bottom: 57/1038
  15486. }
  15487. },
  15488. frontCostume: {
  15489. height: math.unit(7 + 4/12, "feet"),
  15490. weight: math.unit(750, "lb"),
  15491. name: "Front (Costume)",
  15492. image: {
  15493. source: "./media/characters/regena-maxwell/front-costume.svg",
  15494. extra: 984/856,
  15495. bottom: 87/1071
  15496. }
  15497. },
  15498. backcostume: {
  15499. height: math.unit(7 + 4/12, "feet"),
  15500. weight: math.unit(750, "lb"),
  15501. name: "Back (Costume)",
  15502. image: {
  15503. source: "./media/characters/regena-maxwell/back-costume.svg",
  15504. extra: 981/854,
  15505. bottom: 57/1038
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(7 + 4 / 12, "feet"),
  15513. default: true
  15514. },
  15515. {
  15516. name: "Macro",
  15517. height: math.unit(220, "feet")
  15518. },
  15519. {
  15520. name: "Megamacro",
  15521. height: math.unit(11, "miles")
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15534. extra: 860 / 690,
  15535. bottom: 0.03
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(1.7, "meters"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/quilly/front.svg",
  15556. extra: 890 / 776
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Gigamacro",
  15563. height: math.unit(404090, "miles"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(7 + 8 / 12, "feet"),
  15573. weight: math.unit(350, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/tempest/front.svg",
  15577. extra: 1175 / 1086,
  15578. bottom: 0.02
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(7 + 8 / 12, "feet"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15592. {
  15593. side: {
  15594. height: math.unit(4 + 5 / 12, "feet"),
  15595. weight: math.unit(80, "lb"),
  15596. name: "Side",
  15597. image: {
  15598. source: "./media/characters/rodger/side.svg",
  15599. extra: 1235 / 1118
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Micro",
  15606. height: math.unit(1, "inch")
  15607. },
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(4 + 5 / 12, "feet"),
  15611. default: true
  15612. },
  15613. {
  15614. name: "Macro",
  15615. height: math.unit(120, "feet")
  15616. },
  15617. ]
  15618. ))
  15619. characterMakers.push(() => makeCharacter(
  15620. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15621. {
  15622. front: {
  15623. height: math.unit(6, "feet"),
  15624. weight: math.unit(150, "lb"),
  15625. name: "Front",
  15626. image: {
  15627. source: "./media/characters/danyel/front.svg",
  15628. extra: 1185 / 1123,
  15629. bottom: 0.05
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Shrunken",
  15636. height: math.unit(0.5, "mm")
  15637. },
  15638. {
  15639. name: "Micro",
  15640. height: math.unit(1, "mm"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Upsized",
  15645. height: math.unit(5 + 5 / 12, "feet")
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(5 + 6 / 12, "feet"),
  15654. weight: math.unit(200, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/vivian-bijoux/front.svg",
  15658. extra: 1217/1209,
  15659. bottom: 76/1293
  15660. }
  15661. },
  15662. back: {
  15663. height: math.unit(5 + 6 / 12, "feet"),
  15664. weight: math.unit(200, "lb"),
  15665. name: "Back",
  15666. image: {
  15667. source: "./media/characters/vivian-bijoux/back.svg",
  15668. extra: 1214/1208,
  15669. bottom: 51/1265
  15670. }
  15671. },
  15672. dressed: {
  15673. height: math.unit(5 + 6 / 12, "feet"),
  15674. weight: math.unit(200, "lb"),
  15675. name: "Dressed",
  15676. image: {
  15677. source: "./media/characters/vivian-bijoux/dressed.svg",
  15678. extra: 1217/1209,
  15679. bottom: 76/1293
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Normal",
  15686. height: math.unit(5 + 6 / 12, "feet"),
  15687. default: true
  15688. },
  15689. {
  15690. name: "Bad Dream",
  15691. height: math.unit(500, "feet")
  15692. },
  15693. {
  15694. name: "Nightmare",
  15695. height: math.unit(500, "miles")
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(6 + 1 / 12, "feet"),
  15704. weight: math.unit(260, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/zeta/front.svg",
  15708. extra: 1968 / 1889,
  15709. bottom: 0.06
  15710. }
  15711. },
  15712. back: {
  15713. height: math.unit(6 + 1 / 12, "feet"),
  15714. weight: math.unit(260, "lb"),
  15715. name: "Back",
  15716. image: {
  15717. source: "./media/characters/zeta/back.svg",
  15718. extra: 1944 / 1858,
  15719. bottom: 0.03
  15720. }
  15721. },
  15722. hand: {
  15723. height: math.unit(1.112, "feet"),
  15724. name: "Hand",
  15725. image: {
  15726. source: "./media/characters/zeta/hand.svg"
  15727. }
  15728. },
  15729. foot: {
  15730. height: math.unit(1.48, "feet"),
  15731. name: "Foot",
  15732. image: {
  15733. source: "./media/characters/zeta/foot.svg"
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Micro",
  15740. height: math.unit(6, "inches")
  15741. },
  15742. {
  15743. name: "Normal",
  15744. height: math.unit(6 + 1 / 12, "feet"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Macro",
  15749. height: math.unit(20, "feet")
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(6, "feet"),
  15758. weight: math.unit(150, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/jamie-larsen/front.svg",
  15762. extra: 962 / 933,
  15763. bottom: 0.02
  15764. }
  15765. },
  15766. back: {
  15767. height: math.unit(6, "feet"),
  15768. weight: math.unit(150, "lb"),
  15769. name: "Back",
  15770. image: {
  15771. source: "./media/characters/jamie-larsen/back.svg",
  15772. extra: 997 / 946
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Macro",
  15779. height: math.unit(28 + 7 / 12, "feet"),
  15780. default: true
  15781. },
  15782. {
  15783. name: "Macro+",
  15784. height: math.unit(180, "feet")
  15785. },
  15786. {
  15787. name: "Megamacro",
  15788. height: math.unit(10, "miles")
  15789. },
  15790. {
  15791. name: "Gigamacro",
  15792. height: math.unit(200000, "miles")
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(6, "feet"),
  15801. weight: math.unit(120, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/vance/front.svg",
  15805. extra: 1980 / 1890,
  15806. bottom: 0.09
  15807. }
  15808. },
  15809. back: {
  15810. height: math.unit(6, "feet"),
  15811. weight: math.unit(120, "lb"),
  15812. name: "Back",
  15813. image: {
  15814. source: "./media/characters/vance/back.svg",
  15815. extra: 2081 / 1994,
  15816. bottom: 0.014
  15817. }
  15818. },
  15819. hand: {
  15820. height: math.unit(0.88, "feet"),
  15821. name: "Hand",
  15822. image: {
  15823. source: "./media/characters/vance/hand.svg"
  15824. }
  15825. },
  15826. foot: {
  15827. height: math.unit(0.64, "feet"),
  15828. name: "Foot",
  15829. image: {
  15830. source: "./media/characters/vance/foot.svg"
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Small",
  15837. height: math.unit(90, "feet"),
  15838. default: true
  15839. },
  15840. {
  15841. name: "Macro",
  15842. height: math.unit(100, "meters")
  15843. },
  15844. {
  15845. name: "Megamacro",
  15846. height: math.unit(15, "miles")
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(180, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/xochitl/front.svg",
  15859. extra: 2297 / 2261,
  15860. bottom: 0.065
  15861. }
  15862. },
  15863. back: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(180, "lb"),
  15866. name: "Back",
  15867. image: {
  15868. source: "./media/characters/xochitl/back.svg",
  15869. extra: 2386 / 2354,
  15870. bottom: 0.01
  15871. }
  15872. },
  15873. foot: {
  15874. height: math.unit(6 / 5 * 1.15, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Foot",
  15877. image: {
  15878. source: "./media/characters/xochitl/foot.svg"
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Macro",
  15885. height: math.unit(80, "feet")
  15886. },
  15887. {
  15888. name: "Macro+",
  15889. height: math.unit(400, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Gigamacro",
  15894. height: math.unit(80000, "miles")
  15895. },
  15896. {
  15897. name: "Gigamacro+",
  15898. height: math.unit(400000, "miles")
  15899. },
  15900. {
  15901. name: "Teramacro",
  15902. height: math.unit(300, "AU")
  15903. },
  15904. ]
  15905. ))
  15906. characterMakers.push(() => makeCharacter(
  15907. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15908. {
  15909. front: {
  15910. height: math.unit(6, "feet"),
  15911. weight: math.unit(150, "lb"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/vincent/front.svg",
  15915. extra: 1130 / 1080,
  15916. bottom: 0.055
  15917. }
  15918. },
  15919. beak: {
  15920. height: math.unit(6 * 0.1, "feet"),
  15921. name: "Beak",
  15922. image: {
  15923. source: "./media/characters/vincent/beak.svg"
  15924. }
  15925. },
  15926. hand: {
  15927. height: math.unit(6 * 0.85, "feet"),
  15928. weight: math.unit(150, "lb"),
  15929. name: "Hand",
  15930. image: {
  15931. source: "./media/characters/vincent/hand.svg"
  15932. }
  15933. },
  15934. foot: {
  15935. height: math.unit(6 * 0.19, "feet"),
  15936. weight: math.unit(150, "lb"),
  15937. name: "Foot",
  15938. image: {
  15939. source: "./media/characters/vincent/foot.svg"
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Base",
  15946. height: math.unit(6 + 5 / 12, "feet"),
  15947. default: true
  15948. },
  15949. {
  15950. name: "Macro",
  15951. height: math.unit(300, "feet")
  15952. },
  15953. {
  15954. name: "Megamacro",
  15955. height: math.unit(2, "miles")
  15956. },
  15957. {
  15958. name: "Gigamacro",
  15959. height: math.unit(1000, "miles")
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(2, "meters"),
  15968. weight: math.unit(500, "kg"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/coatl/front.svg",
  15972. extra: 3948 / 3500,
  15973. bottom: 0.082
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(4, "meters")
  15981. },
  15982. {
  15983. name: "Macro",
  15984. height: math.unit(100, "meters"),
  15985. default: true
  15986. },
  15987. {
  15988. name: "Macro+",
  15989. height: math.unit(300, "meters")
  15990. },
  15991. {
  15992. name: "Megamacro",
  15993. height: math.unit(3, "gigameters")
  15994. },
  15995. {
  15996. name: "Megamacro+",
  15997. height: math.unit(300, "terameters")
  15998. },
  15999. {
  16000. name: "Megamacro++",
  16001. height: math.unit(3, "lightyears")
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(6, "feet"),
  16010. weight: math.unit(50, "kg"),
  16011. name: "front",
  16012. image: {
  16013. source: "./media/characters/shiroryu/front.svg",
  16014. extra: 1990 / 1935
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Mortal Mingling",
  16021. height: math.unit(3, "meters")
  16022. },
  16023. {
  16024. name: "Kaiju-ish",
  16025. height: math.unit(250, "meters")
  16026. },
  16027. {
  16028. name: "Somewhat Godly",
  16029. height: math.unit(400, "km"),
  16030. default: true
  16031. },
  16032. {
  16033. name: "Planetary",
  16034. height: math.unit(300, "megameters")
  16035. },
  16036. {
  16037. name: "Galaxy-dwarfing",
  16038. height: math.unit(450, "kiloparsecs")
  16039. },
  16040. {
  16041. name: "Universe Eater",
  16042. height: math.unit(150, "gigaparsecs")
  16043. },
  16044. {
  16045. name: "Almost Immeasurable",
  16046. height: math.unit(1.3e266, "yottaparsecs")
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(6, "feet"),
  16055. weight: math.unit(150, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/umeko/front.svg",
  16059. extra: 1,
  16060. bottom: 0.019
  16061. }
  16062. },
  16063. frontArmored: {
  16064. height: math.unit(6, "feet"),
  16065. weight: math.unit(150, "lb"),
  16066. name: "Front (Armored)",
  16067. image: {
  16068. source: "./media/characters/umeko/front-armored.svg",
  16069. extra: 1,
  16070. bottom: 0.021
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Macro",
  16077. height: math.unit(220, "feet"),
  16078. default: true
  16079. },
  16080. {
  16081. name: "Guardian Dragon",
  16082. height: math.unit(50, "miles")
  16083. },
  16084. {
  16085. name: "Cosmic",
  16086. height: math.unit(800000, "miles")
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(6, "feet"),
  16095. weight: math.unit(150, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/cassidy/front.svg",
  16099. extra: 810/808,
  16100. bottom: 41/851
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Canon Height",
  16107. height: math.unit(120, "feet"),
  16108. default: true
  16109. },
  16110. {
  16111. name: "Macro+",
  16112. height: math.unit(400, "feet")
  16113. },
  16114. {
  16115. name: "Macro++",
  16116. height: math.unit(4000, "feet")
  16117. },
  16118. {
  16119. name: "Megamacro",
  16120. height: math.unit(3, "miles")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/isaac/front.svg",
  16133. extra: 896 / 815,
  16134. bottom: 0.11
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Human Size",
  16141. height: math.unit(8, "feet"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Macro",
  16146. height: math.unit(400, "feet")
  16147. },
  16148. {
  16149. name: "Megamacro",
  16150. height: math.unit(50, "miles")
  16151. },
  16152. {
  16153. name: "Canon Height",
  16154. height: math.unit(200, "AU")
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(6, "feet"),
  16163. weight: math.unit(72, "kg"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/sleekit/front.svg",
  16167. extra: 4693 / 4487,
  16168. bottom: 0.012
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Minimum Height",
  16175. height: math.unit(10, "meters")
  16176. },
  16177. {
  16178. name: "Smaller",
  16179. height: math.unit(25, "meters")
  16180. },
  16181. {
  16182. name: "Larger",
  16183. height: math.unit(38, "meters"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Maximum height",
  16188. height: math.unit(100, "meters")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6, "feet"),
  16197. weight: math.unit(150, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/nillia/front.svg",
  16201. extra: 719/665,
  16202. bottom: 6/725
  16203. }
  16204. },
  16205. back: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(150, "lb"),
  16208. name: "Back",
  16209. image: {
  16210. source: "./media/characters/nillia/back.svg",
  16211. extra: 705/651,
  16212. bottom: 5/710
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Canon Height",
  16219. height: math.unit(489, "feet"),
  16220. default: true
  16221. }
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(6, "feet"),
  16229. weight: math.unit(150, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/mesmyriza/front.svg",
  16233. extra: 1541/1291,
  16234. bottom: 87/1628
  16235. }
  16236. },
  16237. foot: {
  16238. height: math.unit(6 / (250 / 35), "feet"),
  16239. name: "Foot",
  16240. image: {
  16241. source: "./media/characters/mesmyriza/foot.svg"
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Macro",
  16248. height: math.unit(457, "meters"),
  16249. default: true
  16250. },
  16251. {
  16252. name: "Megamacro",
  16253. height: math.unit(8, "megameters")
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(6, "feet"),
  16262. weight: math.unit(250, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/saudade/front.svg",
  16266. extra: 1172 / 1139,
  16267. bottom: 0.035
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Micro",
  16274. height: math.unit(3, "inches")
  16275. },
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(6, "feet"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Macro",
  16283. height: math.unit(50, "feet")
  16284. },
  16285. {
  16286. name: "Megamacro",
  16287. height: math.unit(2800, "feet")
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16293. {
  16294. front: {
  16295. height: math.unit(5 + 4 / 12, "feet"),
  16296. weight: math.unit(100, "lb"),
  16297. name: "Front",
  16298. image: {
  16299. source: "./media/characters/keireer/front.svg",
  16300. extra: 716 / 666,
  16301. bottom: 0.05
  16302. }
  16303. },
  16304. },
  16305. [
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(5 + 4 / 12, "feet"),
  16309. default: true
  16310. },
  16311. ]
  16312. ))
  16313. characterMakers.push(() => makeCharacter(
  16314. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16315. {
  16316. front: {
  16317. height: math.unit(5.5, "feet"),
  16318. weight: math.unit(90, "kg"),
  16319. name: "Front",
  16320. image: {
  16321. source: "./media/characters/mirja/front.svg",
  16322. extra: 1452/1262,
  16323. bottom: 67/1519
  16324. }
  16325. },
  16326. frontDressed: {
  16327. height: math.unit(5.5, "feet"),
  16328. weight: math.unit(90, "lb"),
  16329. name: "Front (Dressed)",
  16330. image: {
  16331. source: "./media/characters/mirja/dressed.svg",
  16332. extra: 1452/1262,
  16333. bottom: 67/1519
  16334. }
  16335. },
  16336. back: {
  16337. height: math.unit(6, "feet"),
  16338. weight: math.unit(90, "lb"),
  16339. name: "Back",
  16340. image: {
  16341. source: "./media/characters/mirja/back.svg",
  16342. extra: 1892/1795,
  16343. bottom: 48/1940
  16344. }
  16345. },
  16346. maw: {
  16347. height: math.unit(1.312, "feet"),
  16348. name: "Maw",
  16349. image: {
  16350. source: "./media/characters/mirja/maw.svg"
  16351. }
  16352. },
  16353. paw: {
  16354. height: math.unit(1.15, "feet"),
  16355. name: "Paw",
  16356. image: {
  16357. source: "./media/characters/mirja/paw.svg"
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "\"Incognito\"",
  16364. height: math.unit(3, "meters")
  16365. },
  16366. {
  16367. name: "Strolling Size",
  16368. height: math.unit(15, "km")
  16369. },
  16370. {
  16371. name: "Larger Strolling Size",
  16372. height: math.unit(400, "km")
  16373. },
  16374. {
  16375. name: "Preferred Size",
  16376. height: math.unit(5000, "km"),
  16377. default: true
  16378. },
  16379. {
  16380. name: "True Size",
  16381. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(15, "feet"),
  16390. weight: math.unit(880, "kg"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/nightraver/front.svg",
  16394. extra: 2444 / 2160,
  16395. bottom: 0.027
  16396. }
  16397. },
  16398. back: {
  16399. height: math.unit(15, "feet"),
  16400. weight: math.unit(880, "kg"),
  16401. name: "Back",
  16402. image: {
  16403. source: "./media/characters/nightraver/back.svg",
  16404. extra: 2309 / 2180,
  16405. bottom: 0.005
  16406. }
  16407. },
  16408. sole: {
  16409. height: math.unit(2.878, "feet"),
  16410. name: "Sole",
  16411. image: {
  16412. source: "./media/characters/nightraver/sole.svg"
  16413. }
  16414. },
  16415. foot: {
  16416. height: math.unit(2.285, "feet"),
  16417. name: "Foot",
  16418. image: {
  16419. source: "./media/characters/nightraver/foot.svg"
  16420. }
  16421. },
  16422. maw: {
  16423. height: math.unit(2.67, "feet"),
  16424. name: "Maw",
  16425. image: {
  16426. source: "./media/characters/nightraver/maw.svg"
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Micro",
  16433. height: math.unit(1, "cm")
  16434. },
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(15, "feet"),
  16438. default: true
  16439. },
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(300, "feet")
  16443. },
  16444. {
  16445. name: "Megamacro",
  16446. height: math.unit(300, "miles")
  16447. },
  16448. {
  16449. name: "Gigamacro",
  16450. height: math.unit(10000, "miles")
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16456. {
  16457. side: {
  16458. height: math.unit(2, "inches"),
  16459. weight: math.unit(5, "grams"),
  16460. name: "Side",
  16461. image: {
  16462. source: "./media/characters/arc/side.svg"
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Micro",
  16469. height: math.unit(2, "inches"),
  16470. default: true
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16476. {
  16477. front: {
  16478. height: math.unit(1.1938, "meters"),
  16479. weight: math.unit(54, "kg"),
  16480. name: "Front",
  16481. image: {
  16482. source: "./media/characters/nebula-shahar/front.svg",
  16483. extra: 1642 / 1436,
  16484. bottom: 0.06
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Megamicro",
  16491. height: math.unit(0.3, "mm")
  16492. },
  16493. {
  16494. name: "Micro",
  16495. height: math.unit(3, "cm")
  16496. },
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(138, "cm"),
  16500. default: true
  16501. },
  16502. {
  16503. name: "Macro",
  16504. height: math.unit(30, "m")
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(5.24, "feet"),
  16513. weight: math.unit(150, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/shayla/front.svg",
  16517. extra: 1512 / 1414,
  16518. bottom: 0.01
  16519. }
  16520. },
  16521. back: {
  16522. height: math.unit(5.24, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Back",
  16525. image: {
  16526. source: "./media/characters/shayla/back.svg",
  16527. extra: 1512 / 1414
  16528. }
  16529. },
  16530. hand: {
  16531. height: math.unit(0.7781496062992126, "feet"),
  16532. name: "Hand",
  16533. image: {
  16534. source: "./media/characters/shayla/hand.svg"
  16535. }
  16536. },
  16537. foot: {
  16538. height: math.unit(1.4206036745406823, "feet"),
  16539. name: "Foot",
  16540. image: {
  16541. source: "./media/characters/shayla/foot.svg"
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Micro",
  16548. height: math.unit(0.32, "feet")
  16549. },
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(5.24, "feet"),
  16553. default: true
  16554. },
  16555. {
  16556. name: "Macro",
  16557. height: math.unit(492.12, "feet")
  16558. },
  16559. {
  16560. name: "Megamacro",
  16561. height: math.unit(186.41, "miles")
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16567. {
  16568. front: {
  16569. height: math.unit(2.2, "m"),
  16570. weight: math.unit(120, "kg"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/pia-jr/front.svg",
  16574. extra: 1000 / 970,
  16575. bottom: 0.035
  16576. }
  16577. },
  16578. hand: {
  16579. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16580. name: "Hand",
  16581. image: {
  16582. source: "./media/characters/pia-jr/hand.svg"
  16583. }
  16584. },
  16585. paw: {
  16586. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16587. name: "Paw",
  16588. image: {
  16589. source: "./media/characters/pia-jr/paw.svg"
  16590. }
  16591. },
  16592. },
  16593. [
  16594. {
  16595. name: "Micro",
  16596. height: math.unit(1.2, "cm")
  16597. },
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(2.2, "m"),
  16601. default: true
  16602. },
  16603. {
  16604. name: "Macro",
  16605. height: math.unit(180, "m")
  16606. },
  16607. {
  16608. name: "Megamacro",
  16609. height: math.unit(420, "km")
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16615. {
  16616. front: {
  16617. height: math.unit(2, "m"),
  16618. weight: math.unit(115, "kg"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/pia-sr/front.svg",
  16622. extra: 760 / 730,
  16623. bottom: 0.015
  16624. }
  16625. },
  16626. back: {
  16627. height: math.unit(2, "m"),
  16628. weight: math.unit(115, "kg"),
  16629. name: "Back",
  16630. image: {
  16631. source: "./media/characters/pia-sr/back.svg",
  16632. extra: 760 / 730,
  16633. bottom: 0.01
  16634. }
  16635. },
  16636. hand: {
  16637. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16638. name: "Hand",
  16639. image: {
  16640. source: "./media/characters/pia-sr/hand.svg"
  16641. }
  16642. },
  16643. foot: {
  16644. height: math.unit(1.83, "feet"),
  16645. name: "Foot",
  16646. image: {
  16647. source: "./media/characters/pia-sr/foot.svg"
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Micro",
  16654. height: math.unit(88, "mm")
  16655. },
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(2, "m"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Macro",
  16663. height: math.unit(200, "m")
  16664. },
  16665. {
  16666. name: "Megamacro",
  16667. height: math.unit(420, "km")
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(8 + 2 / 12, "feet"),
  16676. weight: math.unit(300, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/kibibyte/front.svg",
  16680. extra: 2221 / 2098,
  16681. bottom: 0.04
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(8 + 2 / 12, "feet"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Socialable Macro",
  16693. height: math.unit(50, "feet")
  16694. },
  16695. {
  16696. name: "Macro",
  16697. height: math.unit(300, "feet")
  16698. },
  16699. {
  16700. name: "Megamacro",
  16701. height: math.unit(500, "miles")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(6, "feet"),
  16710. weight: math.unit(150, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/felix/front.svg",
  16714. extra: 762 / 722,
  16715. bottom: 0.02
  16716. }
  16717. },
  16718. frontClothed: {
  16719. height: math.unit(6, "feet"),
  16720. weight: math.unit(150, "lb"),
  16721. name: "Front (Clothed)",
  16722. image: {
  16723. source: "./media/characters/felix/front-clothed.svg",
  16724. extra: 762 / 722,
  16725. bottom: 0.02
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(6 + 8 / 12, "feet"),
  16733. default: true
  16734. },
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(2600, "feet")
  16738. },
  16739. {
  16740. name: "Megamacro",
  16741. height: math.unit(450, "miles")
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(6 + 1 / 12, "feet"),
  16750. weight: math.unit(250, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/tobo/front.svg",
  16754. extra: 608 / 586,
  16755. bottom: 0.023
  16756. }
  16757. },
  16758. back: {
  16759. height: math.unit(6 + 1 / 12, "feet"),
  16760. weight: math.unit(250, "lb"),
  16761. name: "Back",
  16762. image: {
  16763. source: "./media/characters/tobo/back.svg",
  16764. extra: 608 / 586
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Nano",
  16771. height: math.unit(2, "nm")
  16772. },
  16773. {
  16774. name: "Megamicro",
  16775. height: math.unit(0.1, "mm")
  16776. },
  16777. {
  16778. name: "Micro",
  16779. height: math.unit(1, "inch"),
  16780. default: true
  16781. },
  16782. {
  16783. name: "Human-sized",
  16784. height: math.unit(6 + 1 / 12, "feet")
  16785. },
  16786. {
  16787. name: "Macro",
  16788. height: math.unit(250, "feet")
  16789. },
  16790. {
  16791. name: "Megamacro",
  16792. height: math.unit(75, "miles")
  16793. },
  16794. {
  16795. name: "Texas-sized",
  16796. height: math.unit(750, "miles")
  16797. },
  16798. {
  16799. name: "Teramacro",
  16800. height: math.unit(50000, "miles")
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(6, "feet"),
  16809. weight: math.unit(269, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/danny-kapowsky/front.svg",
  16813. extra: 766 / 736,
  16814. bottom: 0.044
  16815. }
  16816. },
  16817. back: {
  16818. height: math.unit(6, "feet"),
  16819. weight: math.unit(269, "lb"),
  16820. name: "Back",
  16821. image: {
  16822. source: "./media/characters/danny-kapowsky/back.svg",
  16823. extra: 797 / 760,
  16824. bottom: 0.025
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Macro",
  16831. height: math.unit(150, "feet"),
  16832. default: true
  16833. },
  16834. {
  16835. name: "Macro+",
  16836. height: math.unit(200, "feet")
  16837. },
  16838. {
  16839. name: "Macro++",
  16840. height: math.unit(300, "feet")
  16841. },
  16842. {
  16843. name: "Macro+++",
  16844. height: math.unit(400, "feet")
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16850. {
  16851. side: {
  16852. height: math.unit(6, "feet"),
  16853. weight: math.unit(170, "lb"),
  16854. name: "Side",
  16855. image: {
  16856. source: "./media/characters/finn/side.svg",
  16857. extra: 1953 / 1807,
  16858. bottom: 0.057
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Megamacro",
  16865. height: math.unit(14445, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16872. {
  16873. front: {
  16874. height: math.unit(5 + 6 / 12, "feet"),
  16875. weight: math.unit(125, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/roy/front.svg",
  16879. extra: 1,
  16880. bottom: 0.11
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Micro",
  16887. height: math.unit(3, "inches"),
  16888. default: true
  16889. },
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(5 + 6 / 12, "feet")
  16893. },
  16894. {
  16895. name: "Lesser Macro",
  16896. height: math.unit(60, "feet")
  16897. },
  16898. {
  16899. name: "Greater Macro",
  16900. height: math.unit(120, "feet")
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(6, "feet"),
  16909. weight: math.unit(100, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/aevsivs/front.svg",
  16913. extra: 1,
  16914. bottom: 0.03
  16915. }
  16916. },
  16917. back: {
  16918. height: math.unit(6, "feet"),
  16919. weight: math.unit(100, "lb"),
  16920. name: "Back",
  16921. image: {
  16922. source: "./media/characters/aevsivs/back.svg"
  16923. }
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Micro",
  16929. height: math.unit(2, "inches"),
  16930. default: true
  16931. },
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(5, "feet")
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(5 + 7 / 12, "feet"),
  16943. weight: math.unit(159, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/hildegard/front.svg",
  16947. extra: 289 / 269,
  16948. bottom: 7.63 / 297.8
  16949. }
  16950. },
  16951. back: {
  16952. height: math.unit(5 + 7 / 12, "feet"),
  16953. weight: math.unit(159, "lb"),
  16954. name: "Back",
  16955. image: {
  16956. source: "./media/characters/hildegard/back.svg",
  16957. extra: 280 / 260,
  16958. bottom: 2.3 / 282
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(5 + 7 / 12, "feet"),
  16966. default: true
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16972. {
  16973. bernard: {
  16974. height: math.unit(2 + 7 / 12, "feet"),
  16975. weight: math.unit(66, "lb"),
  16976. name: "Bernard",
  16977. rename: true,
  16978. image: {
  16979. source: "./media/characters/bernard-wilder/bernard.svg",
  16980. extra: 192 / 128,
  16981. bottom: 0.05
  16982. }
  16983. },
  16984. wilder: {
  16985. height: math.unit(5 + 8 / 12, "feet"),
  16986. weight: math.unit(143, "lb"),
  16987. name: "Wilder",
  16988. rename: true,
  16989. image: {
  16990. source: "./media/characters/bernard-wilder/wilder.svg",
  16991. extra: 361 / 312,
  16992. bottom: 0.02
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(2 + 7 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17006. {
  17007. anthro: {
  17008. height: math.unit(6 + 1 / 12, "feet"),
  17009. weight: math.unit(155, "lb"),
  17010. name: "Anthro",
  17011. image: {
  17012. source: "./media/characters/hearth/anthro.svg",
  17013. extra: 1178/1136,
  17014. bottom: 28/1206
  17015. }
  17016. },
  17017. feral: {
  17018. height: math.unit(3.78, "feet"),
  17019. weight: math.unit(35, "kg"),
  17020. name: "Feral",
  17021. image: {
  17022. source: "./media/characters/hearth/feral.svg",
  17023. extra: 153 / 135,
  17024. bottom: 0.03
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(6 + 1 / 12, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17038. {
  17039. front: {
  17040. height: math.unit(6, "feet"),
  17041. weight: math.unit(182, "lb"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/ingrid/front.svg",
  17045. extra: 294 / 268,
  17046. bottom: 0.027
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(6, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17060. {
  17061. eevee: {
  17062. height: math.unit(2 + 10 / 12, "feet"),
  17063. weight: math.unit(86, "lb"),
  17064. name: "Malgam",
  17065. image: {
  17066. source: "./media/characters/malgam/eevee.svg",
  17067. extra: 952/784,
  17068. bottom: 38/990
  17069. }
  17070. },
  17071. sylveon: {
  17072. height: math.unit(4, "feet"),
  17073. weight: math.unit(101, "lb"),
  17074. name: "Future Malgam",
  17075. rename: true,
  17076. image: {
  17077. source: "./media/characters/malgam/sylveon.svg",
  17078. extra: 371 / 325,
  17079. bottom: 0.015
  17080. }
  17081. },
  17082. gigantamax: {
  17083. height: math.unit(50, "feet"),
  17084. name: "Gigantamax Malgam",
  17085. rename: true,
  17086. image: {
  17087. source: "./media/characters/malgam/gigantamax.svg"
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(2 + 10 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(5 + 11 / 12, "feet"),
  17104. weight: math.unit(188, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/fleur/front.svg",
  17108. extra: 309 / 283,
  17109. bottom: 0.007
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(5 + 11 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17123. {
  17124. front: {
  17125. height: math.unit(5 + 4 / 12, "feet"),
  17126. weight: math.unit(122, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/jude/front.svg",
  17130. extra: 288 / 273,
  17131. bottom: 0.03
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(5 + 4 / 12, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(5 + 11 / 12, "feet"),
  17148. weight: math.unit(190, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/seara/front.svg",
  17152. extra: 1,
  17153. bottom: 0.05
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(5 + 11 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(16 + 5 / 12, "feet"),
  17170. weight: math.unit(524, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/caspian-lugia/front.svg",
  17174. extra: 1,
  17175. bottom: 0.04
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(16 + 5 / 12, "feet"),
  17183. default: true
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(5 + 7 / 12, "feet"),
  17192. weight: math.unit(170, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/mika/front.svg",
  17196. extra: 1,
  17197. bottom: 0.016
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(5 + 7 / 12, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(6 + 2 / 12, "feet"),
  17214. weight: math.unit(268, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/sol/front.svg",
  17218. extra: 247 / 231,
  17219. bottom: 0.05
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(6 + 2 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17233. {
  17234. buizel: {
  17235. height: math.unit(2 + 5 / 12, "feet"),
  17236. weight: math.unit(87, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/umiko/buizel.svg",
  17240. extra: 172 / 157,
  17241. bottom: 0.01
  17242. },
  17243. form: "buizel",
  17244. default: true
  17245. },
  17246. floatzel: {
  17247. height: math.unit(5 + 9 / 12, "feet"),
  17248. weight: math.unit(250, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/umiko/floatzel.svg",
  17252. extra: 1076/1006,
  17253. bottom: 15/1091
  17254. },
  17255. form: "floatzel",
  17256. default: true
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(2 + 5 / 12, "feet"),
  17263. form: "buizel",
  17264. default: true
  17265. },
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(5 + 9 / 12, "feet"),
  17269. form: "floatzel",
  17270. default: true
  17271. },
  17272. ],
  17273. {
  17274. "buizel": {
  17275. name: "Buizel"
  17276. },
  17277. "floatzel": {
  17278. name: "Floatzel",
  17279. default: true
  17280. }
  17281. }
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(6 + 2 / 12, "feet"),
  17288. weight: math.unit(146, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/iliac/front.svg",
  17292. extra: 389 / 365,
  17293. bottom: 0.035
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6 + 2 / 12, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17307. {
  17308. front: {
  17309. height: math.unit(6, "feet"),
  17310. weight: math.unit(170, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/topaz/front.svg",
  17314. extra: 317 / 303,
  17315. bottom: 0.055
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(6, "feet"),
  17323. default: true
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(5 + 11 / 12, "feet"),
  17332. weight: math.unit(144, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/gabriel/front.svg",
  17336. extra: 285 / 262,
  17337. bottom: 0.004
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(5 + 11 / 12, "feet"),
  17345. default: true
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17351. {
  17352. side: {
  17353. height: math.unit(6 + 5 / 12, "feet"),
  17354. weight: math.unit(300, "lb"),
  17355. name: "Side",
  17356. image: {
  17357. source: "./media/characters/tempest-suicune/side.svg",
  17358. extra: 195 / 154,
  17359. bottom: 0.04
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(6 + 5 / 12, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(7 + 2 / 12, "feet"),
  17376. weight: math.unit(322, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/vulcan/front.svg",
  17380. extra: 154 / 147,
  17381. bottom: 0.04
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(7 + 2 / 12, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(5 + 10 / 12, "feet"),
  17398. weight: math.unit(264, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/gault/front.svg",
  17402. extra: 161 / 140,
  17403. bottom: 0.028
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(5 + 10 / 12, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(6, "feet"),
  17420. weight: math.unit(150, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/shard/front.svg",
  17424. extra: 273 / 238,
  17425. bottom: 0.02
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(3 + 6 / 12, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(5 + 11 / 12, "feet"),
  17442. weight: math.unit(146, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/ashe/front.svg",
  17446. extra: 400 / 373,
  17447. bottom: 0.01
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(5 + 11 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(5 + 5 / 12, "feet"),
  17464. weight: math.unit(135, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/beatrix/front.svg",
  17468. extra: 392 / 379,
  17469. bottom: 0.01
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(6, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(6 + 2/12, "feet"),
  17486. weight: math.unit(135, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/ignatius/front.svg",
  17490. extra: 1380/1259,
  17491. bottom: 27/1407
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(6 + 2/12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6 + 2 / 12, "feet"),
  17508. weight: math.unit(138, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/mei-li/front.svg",
  17512. extra: 237 / 229,
  17513. bottom: 0.03
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(6 + 2 / 12, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(2 + 4 / 12, "feet"),
  17530. weight: math.unit(62, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/puru/front.svg",
  17534. extra: 206 / 149,
  17535. bottom: 0.06
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(2 + 4 / 12, "feet"),
  17543. default: true
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17549. {
  17550. anthro: {
  17551. height: math.unit(5 + 8/12, "feet"),
  17552. weight: math.unit(200, "lb"),
  17553. energyNeed: math.unit(2000, "kcal"),
  17554. name: "Anthro",
  17555. image: {
  17556. source: "./media/characters/kee/anthro.svg",
  17557. extra: 3251/3184,
  17558. bottom: 250/3501
  17559. }
  17560. },
  17561. taur: {
  17562. height: math.unit(11, "feet"),
  17563. weight: math.unit(500, "lb"),
  17564. energyNeed: math.unit(5000, "kcal"),
  17565. name: "Taur",
  17566. image: {
  17567. source: "./media/characters/kee/taur.svg",
  17568. extra: 1362/1320,
  17569. bottom: 83/1445
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(5 + 8/12, "feet"),
  17577. default: true
  17578. },
  17579. {
  17580. name: "Macro",
  17581. height: math.unit(35, "feet")
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17587. {
  17588. anthro: {
  17589. height: math.unit(7, "feet"),
  17590. weight: math.unit(190, "lb"),
  17591. name: "Anthro",
  17592. image: {
  17593. source: "./media/characters/cobalt-dracha/anthro.svg",
  17594. extra: 231 / 225,
  17595. bottom: 0.04
  17596. }
  17597. },
  17598. feral: {
  17599. height: math.unit(9 + 7 / 12, "feet"),
  17600. weight: math.unit(294, "lb"),
  17601. name: "Feral",
  17602. image: {
  17603. source: "./media/characters/cobalt-dracha/feral.svg",
  17604. extra: 692 / 633,
  17605. bottom: 0.05
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(7, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17619. {
  17620. fallen: {
  17621. height: math.unit(11 + 8 / 12, "feet"),
  17622. weight: math.unit(485, "lb"),
  17623. name: "Java (Fallen)",
  17624. rename: true,
  17625. image: {
  17626. source: "./media/characters/java/fallen.svg",
  17627. extra: 226 / 208,
  17628. bottom: 0.005
  17629. }
  17630. },
  17631. godkin: {
  17632. height: math.unit(10 + 6 / 12, "feet"),
  17633. weight: math.unit(328, "lb"),
  17634. name: "Java (Godkin)",
  17635. rename: true,
  17636. image: {
  17637. source: "./media/characters/java/godkin.svg",
  17638. extra: 1104/1068,
  17639. bottom: 36/1140
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(11 + 8 / 12, "feet"),
  17647. default: true
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17653. {
  17654. front: {
  17655. height: math.unit(5 + 9 / 12, "feet"),
  17656. weight: math.unit(170, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/purna/front.svg",
  17660. extra: 239 / 229,
  17661. bottom: 0.01
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(5 + 9 / 12, "feet"),
  17669. default: true
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17675. {
  17676. front: {
  17677. height: math.unit(5 + 9 / 12, "feet"),
  17678. weight: math.unit(142, "lb"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/kuva/front.svg",
  17682. extra: 281 / 271,
  17683. bottom: 0.006
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(5 + 9 / 12, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17697. {
  17698. anthro: {
  17699. height: math.unit(9 + 2 / 12, "feet"),
  17700. weight: math.unit(270, "lb"),
  17701. name: "Anthro",
  17702. image: {
  17703. source: "./media/characters/embra/anthro.svg",
  17704. extra: 200 / 187,
  17705. bottom: 0.02
  17706. }
  17707. },
  17708. feral: {
  17709. height: math.unit(18 + 8 / 12, "feet"),
  17710. weight: math.unit(576, "lb"),
  17711. name: "Feral",
  17712. image: {
  17713. source: "./media/characters/embra/feral.svg",
  17714. extra: 152 / 137,
  17715. bottom: 0.037
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(9 + 2 / 12, "feet"),
  17723. default: true
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17729. {
  17730. anthro: {
  17731. height: math.unit(10 + 9 / 12, "feet"),
  17732. weight: math.unit(224, "lb"),
  17733. name: "Anthro",
  17734. image: {
  17735. source: "./media/characters/grottos/anthro.svg",
  17736. extra: 350 / 332,
  17737. bottom: 0.045
  17738. }
  17739. },
  17740. feral: {
  17741. height: math.unit(20 + 7 / 12, "feet"),
  17742. weight: math.unit(629, "lb"),
  17743. name: "Feral",
  17744. image: {
  17745. source: "./media/characters/grottos/feral.svg",
  17746. extra: 207 / 190,
  17747. bottom: 0.05
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(10 + 9 / 12, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17761. {
  17762. anthro: {
  17763. height: math.unit(9 + 6 / 12, "feet"),
  17764. weight: math.unit(298, "lb"),
  17765. name: "Anthro",
  17766. image: {
  17767. source: "./media/characters/frifna/anthro.svg",
  17768. extra: 282 / 269,
  17769. bottom: 0.015
  17770. }
  17771. },
  17772. feral: {
  17773. height: math.unit(16 + 2 / 12, "feet"),
  17774. weight: math.unit(624, "lb"),
  17775. name: "Feral",
  17776. image: {
  17777. source: "./media/characters/frifna/feral.svg"
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Normal",
  17784. height: math.unit(9 + 6 / 12, "feet"),
  17785. default: true
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(6 + 2 / 12, "feet"),
  17794. weight: math.unit(168, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/elise/front.svg",
  17798. extra: 276 / 271
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(6 + 2 / 12, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(5 + 10 / 12, "feet"),
  17815. weight: math.unit(210, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/glade/front.svg",
  17819. extra: 258 / 247,
  17820. bottom: 0.008
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(5 + 10 / 12, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(5 + 10 / 12, "feet"),
  17837. weight: math.unit(129, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/rina/front.svg",
  17841. extra: 266 / 255,
  17842. bottom: 0.005
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(5 + 10 / 12, "feet"),
  17850. default: true
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(6 + 1 / 12, "feet"),
  17859. weight: math.unit(192, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/veronica/front.svg",
  17863. extra: 319 / 309,
  17864. bottom: 0.005
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(6 + 1 / 12, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(9 + 3 / 12, "feet"),
  17881. weight: math.unit(1100, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/braxton/front.svg",
  17885. extra: 1057 / 984,
  17886. bottom: 0.05
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(9 + 3 / 12, "feet")
  17894. },
  17895. {
  17896. name: "Giant",
  17897. height: math.unit(300, "feet"),
  17898. default: true
  17899. },
  17900. {
  17901. name: "Macro",
  17902. height: math.unit(700, "feet")
  17903. },
  17904. {
  17905. name: "Megamacro",
  17906. height: math.unit(6000, "feet")
  17907. },
  17908. ]
  17909. ))
  17910. characterMakers.push(() => makeCharacter(
  17911. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17912. {
  17913. front: {
  17914. height: math.unit(6 + 7 / 12, "feet"),
  17915. weight: math.unit(150, "lb"),
  17916. name: "Front",
  17917. image: {
  17918. source: "./media/characters/blue-feyonics/front.svg",
  17919. extra: 1403 / 1306,
  17920. bottom: 0.047
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(6 + 7 / 12, "feet"),
  17928. default: true
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(1.8, "meters"),
  17937. weight: math.unit(60, "kg"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/maxwell/front.svg",
  17941. extra: 2060 / 1873
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Micro",
  17948. height: math.unit(1, "mm")
  17949. },
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(1.8, "meter"),
  17953. default: true
  17954. },
  17955. {
  17956. name: "Macro",
  17957. height: math.unit(30, "meters")
  17958. },
  17959. {
  17960. name: "Megamacro",
  17961. height: math.unit(10, "km")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(6, "feet"),
  17970. weight: math.unit(150, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/jack/front.svg",
  17974. extra: 1754 / 1640,
  17975. bottom: 0.01
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(80000, "feet"),
  17983. default: true
  17984. },
  17985. {
  17986. name: "Max size",
  17987. height: math.unit(10, "lightyears")
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17993. {
  17994. urban: {
  17995. height: math.unit(5, "feet"),
  17996. weight: math.unit(240, "lb"),
  17997. name: "Urban",
  17998. image: {
  17999. source: "./media/characters/cafat/urban.svg",
  18000. extra: 1223/1126,
  18001. bottom: 205/1428
  18002. }
  18003. },
  18004. summer: {
  18005. height: math.unit(5, "feet"),
  18006. weight: math.unit(240, "lb"),
  18007. name: "Summer",
  18008. image: {
  18009. source: "./media/characters/cafat/summer.svg",
  18010. extra: 1223/1126,
  18011. bottom: 205/1428
  18012. }
  18013. },
  18014. winter: {
  18015. height: math.unit(5, "feet"),
  18016. weight: math.unit(240, "lb"),
  18017. name: "Winter",
  18018. image: {
  18019. source: "./media/characters/cafat/winter.svg",
  18020. extra: 1223/1126,
  18021. bottom: 205/1428
  18022. }
  18023. },
  18024. lingerie: {
  18025. height: math.unit(5, "feet"),
  18026. weight: math.unit(240, "lb"),
  18027. name: "Lingerie",
  18028. image: {
  18029. source: "./media/characters/cafat/lingerie.svg",
  18030. extra: 1223/1126,
  18031. bottom: 205/1428
  18032. }
  18033. },
  18034. upright: {
  18035. height: math.unit(6.3, "feet"),
  18036. weight: math.unit(240, "lb"),
  18037. name: "Upright",
  18038. image: {
  18039. source: "./media/characters/cafat/upright.svg",
  18040. bottom: 0.01
  18041. }
  18042. },
  18043. uprightFull: {
  18044. height: math.unit(6.3, "feet"),
  18045. weight: math.unit(240, "lb"),
  18046. name: "Upright (Full)",
  18047. image: {
  18048. source: "./media/characters/cafat/upright-full.svg",
  18049. bottom: 0.01
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Small",
  18056. height: math.unit(5, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Large",
  18061. height: math.unit(13, "feet")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(6, "feet"),
  18070. weight: math.unit(150, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/verin-raharra/front.svg",
  18074. extra: 5019 / 4835,
  18075. bottom: 0.023
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(7 + 5 / 12, "feet"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Upsized",
  18087. height: math.unit(20, "feet")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(7, "feet"),
  18096. weight: math.unit(230, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/nakata/front.svg",
  18100. extra: 1.005,
  18101. bottom: 0.01
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(7, "feet"),
  18109. default: true
  18110. },
  18111. {
  18112. name: "Big",
  18113. height: math.unit(14, "feet")
  18114. },
  18115. {
  18116. name: "Macro",
  18117. height: math.unit(400, "feet")
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(4.91, "feet"),
  18126. weight: math.unit(100, "lb"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/lily/front.svg",
  18130. extra: 1585 / 1415,
  18131. bottom: 0.02
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Normal",
  18138. height: math.unit(4.91, "feet"),
  18139. default: true
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18145. {
  18146. laying: {
  18147. height: math.unit(4 + 4 / 12, "feet"),
  18148. weight: math.unit(600, "lb"),
  18149. name: "Laying",
  18150. image: {
  18151. source: "./media/characters/sheila/laying.svg",
  18152. extra: 1333 / 1265,
  18153. bottom: 0.16
  18154. }
  18155. },
  18156. },
  18157. [
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(4 + 4 / 12, "feet"),
  18161. default: true
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18167. {
  18168. front: {
  18169. height: math.unit(6, "feet"),
  18170. weight: math.unit(190, "lb"),
  18171. name: "Front",
  18172. image: {
  18173. source: "./media/characters/sax/front.svg",
  18174. extra: 1187 / 973,
  18175. bottom: 0.042
  18176. }
  18177. },
  18178. },
  18179. [
  18180. {
  18181. name: "Micro",
  18182. height: math.unit(4, "inches"),
  18183. default: true
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(6, "feet"),
  18192. weight: math.unit(150, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/pandora/front.svg",
  18196. extra: 2720 / 2556,
  18197. bottom: 0.015
  18198. }
  18199. },
  18200. back: {
  18201. height: math.unit(6, "feet"),
  18202. weight: math.unit(150, "lb"),
  18203. name: "Back",
  18204. image: {
  18205. source: "./media/characters/pandora/back.svg",
  18206. extra: 2720 / 2556,
  18207. bottom: 0.01
  18208. }
  18209. },
  18210. beans: {
  18211. height: math.unit(6 / 8, "feet"),
  18212. name: "Beans",
  18213. image: {
  18214. source: "./media/characters/pandora/beans.svg"
  18215. }
  18216. },
  18217. collar: {
  18218. height: math.unit(0.31, "feet"),
  18219. name: "Collar",
  18220. image: {
  18221. source: "./media/characters/pandora/collar.svg"
  18222. }
  18223. },
  18224. skirt: {
  18225. height: math.unit(6, "feet"),
  18226. weight: math.unit(150, "lb"),
  18227. name: "Skirt",
  18228. image: {
  18229. source: "./media/characters/pandora/skirt.svg",
  18230. extra: 1622 / 1525,
  18231. bottom: 0.015
  18232. }
  18233. },
  18234. hoodie: {
  18235. height: math.unit(6, "feet"),
  18236. weight: math.unit(150, "lb"),
  18237. name: "Hoodie",
  18238. image: {
  18239. source: "./media/characters/pandora/hoodie.svg",
  18240. extra: 1622 / 1525,
  18241. bottom: 0.015
  18242. }
  18243. },
  18244. casual: {
  18245. height: math.unit(6, "feet"),
  18246. weight: math.unit(150, "lb"),
  18247. name: "Casual",
  18248. image: {
  18249. source: "./media/characters/pandora/casual.svg",
  18250. extra: 1622 / 1525,
  18251. bottom: 0.015
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Normal",
  18258. height: math.unit(6, "feet")
  18259. },
  18260. {
  18261. name: "Big Steppy",
  18262. height: math.unit(1, "km"),
  18263. default: true
  18264. },
  18265. {
  18266. name: "Galactic Steppy",
  18267. height: math.unit(2, "gigameters")
  18268. },
  18269. ]
  18270. ))
  18271. characterMakers.push(() => makeCharacter(
  18272. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18273. {
  18274. side: {
  18275. height: math.unit(10, "feet"),
  18276. weight: math.unit(800, "kg"),
  18277. name: "Side",
  18278. image: {
  18279. source: "./media/characters/venio-darcony/side.svg",
  18280. extra: 1373 / 1003,
  18281. bottom: 0.037
  18282. }
  18283. },
  18284. front: {
  18285. height: math.unit(19, "feet"),
  18286. weight: math.unit(800, "kg"),
  18287. name: "Front",
  18288. image: {
  18289. source: "./media/characters/venio-darcony/front.svg"
  18290. }
  18291. },
  18292. back: {
  18293. height: math.unit(19, "feet"),
  18294. weight: math.unit(800, "kg"),
  18295. name: "Back",
  18296. image: {
  18297. source: "./media/characters/venio-darcony/back.svg"
  18298. }
  18299. },
  18300. sideNsfw: {
  18301. height: math.unit(10, "feet"),
  18302. weight: math.unit(800, "kg"),
  18303. name: "Side (NSFW)",
  18304. image: {
  18305. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18306. extra: 1373 / 1003,
  18307. bottom: 0.037
  18308. }
  18309. },
  18310. frontNsfw: {
  18311. height: math.unit(19, "feet"),
  18312. weight: math.unit(800, "kg"),
  18313. name: "Front (NSFW)",
  18314. image: {
  18315. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18316. }
  18317. },
  18318. backNsfw: {
  18319. height: math.unit(19, "feet"),
  18320. weight: math.unit(800, "kg"),
  18321. name: "Back (NSFW)",
  18322. image: {
  18323. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18324. }
  18325. },
  18326. sideArmored: {
  18327. height: math.unit(10, "feet"),
  18328. weight: math.unit(800, "kg"),
  18329. name: "Side (Armored)",
  18330. image: {
  18331. source: "./media/characters/venio-darcony/side-armored.svg",
  18332. extra: 1373 / 1003,
  18333. bottom: 0.037
  18334. }
  18335. },
  18336. frontArmored: {
  18337. height: math.unit(19, "feet"),
  18338. weight: math.unit(900, "kg"),
  18339. name: "Front (Armored)",
  18340. image: {
  18341. source: "./media/characters/venio-darcony/front-armored.svg"
  18342. }
  18343. },
  18344. backArmored: {
  18345. height: math.unit(19, "feet"),
  18346. weight: math.unit(900, "kg"),
  18347. name: "Back (Armored)",
  18348. image: {
  18349. source: "./media/characters/venio-darcony/back-armored.svg"
  18350. }
  18351. },
  18352. sword: {
  18353. height: math.unit(10, "feet"),
  18354. weight: math.unit(50, "lb"),
  18355. name: "Sword",
  18356. image: {
  18357. source: "./media/characters/venio-darcony/sword.svg"
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(10, "feet")
  18365. },
  18366. {
  18367. name: "Macro",
  18368. height: math.unit(130, "feet"),
  18369. default: true
  18370. },
  18371. {
  18372. name: "Macro+",
  18373. height: math.unit(240, "feet")
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18379. {
  18380. front: {
  18381. height: math.unit(6, "feet"),
  18382. weight: math.unit(150, "lb"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/veski/front.svg",
  18386. extra: 1299 / 1225,
  18387. bottom: 0.04
  18388. }
  18389. },
  18390. back: {
  18391. height: math.unit(6, "feet"),
  18392. weight: math.unit(150, "lb"),
  18393. name: "Back",
  18394. image: {
  18395. source: "./media/characters/veski/back.svg",
  18396. extra: 1299 / 1225,
  18397. bottom: 0.008
  18398. }
  18399. },
  18400. maw: {
  18401. height: math.unit(1.5 * 1.21, "feet"),
  18402. name: "Maw",
  18403. image: {
  18404. source: "./media/characters/veski/maw.svg"
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(2, "km"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(5 + 7 / 12, "feet"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/isabelle/front.svg",
  18424. extra: 2130 / 1976,
  18425. bottom: 0.05
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Supermicro",
  18432. height: math.unit(10, "micrometers")
  18433. },
  18434. {
  18435. name: "Micro",
  18436. height: math.unit(1, "inch")
  18437. },
  18438. {
  18439. name: "Tiny",
  18440. height: math.unit(5, "inches")
  18441. },
  18442. {
  18443. name: "Standard",
  18444. height: math.unit(5 + 7 / 12, "inches")
  18445. },
  18446. {
  18447. name: "Macro",
  18448. height: math.unit(80, "meters"),
  18449. default: true
  18450. },
  18451. {
  18452. name: "Megamacro",
  18453. height: math.unit(250, "meters")
  18454. },
  18455. {
  18456. name: "Gigamacro",
  18457. height: math.unit(5, "km")
  18458. },
  18459. {
  18460. name: "Cosmic",
  18461. height: math.unit(2.5e6, "miles")
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(6, "feet"),
  18470. weight: math.unit(150, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/hanzo/front.svg",
  18474. extra: 374 / 344,
  18475. bottom: 0.02
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(8, "feet"),
  18483. default: true
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18489. {
  18490. front: {
  18491. height: math.unit(7, "feet"),
  18492. weight: math.unit(130, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/anna/front.svg",
  18496. extra: 169 / 145,
  18497. bottom: 0.06
  18498. }
  18499. },
  18500. full: {
  18501. height: math.unit(4.96, "feet"),
  18502. weight: math.unit(220, "lb"),
  18503. name: "Full",
  18504. image: {
  18505. source: "./media/characters/anna/full.svg",
  18506. extra: 138 / 114,
  18507. bottom: 0.15
  18508. }
  18509. },
  18510. tongue: {
  18511. height: math.unit(2.53, "feet"),
  18512. name: "Tongue",
  18513. image: {
  18514. source: "./media/characters/anna/tongue.svg"
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(7, "feet"),
  18522. default: true
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(7, "feet"),
  18531. weight: math.unit(150, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/ian-corvid/front.svg",
  18535. extra: 150 / 142,
  18536. bottom: 0.02
  18537. }
  18538. },
  18539. back: {
  18540. height: math.unit(7, "feet"),
  18541. weight: math.unit(150, "lb"),
  18542. name: "Back",
  18543. image: {
  18544. source: "./media/characters/ian-corvid/back.svg",
  18545. extra: 150 / 143,
  18546. bottom: 0.01
  18547. }
  18548. },
  18549. stomping: {
  18550. height: math.unit(7, "feet"),
  18551. weight: math.unit(150, "lb"),
  18552. name: "Stomping",
  18553. image: {
  18554. source: "./media/characters/ian-corvid/stomping.svg",
  18555. extra: 76 / 72
  18556. }
  18557. },
  18558. sitting: {
  18559. height: math.unit(7 / 1.8, "feet"),
  18560. weight: math.unit(150, "lb"),
  18561. name: "Sitting",
  18562. image: {
  18563. source: "./media/characters/ian-corvid/sitting.svg",
  18564. extra: 1400 / 1269,
  18565. bottom: 0.15
  18566. }
  18567. },
  18568. },
  18569. [
  18570. {
  18571. name: "Tiny Microw",
  18572. height: math.unit(1, "inch")
  18573. },
  18574. {
  18575. name: "Microw",
  18576. height: math.unit(6, "inches")
  18577. },
  18578. {
  18579. name: "Crow",
  18580. height: math.unit(7 + 1 / 12, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Macrow",
  18585. height: math.unit(176, "feet")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(5 + 7 / 12, "feet"),
  18594. weight: math.unit(147, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/natalie-kellon/front.svg",
  18598. extra: 1214 / 1141,
  18599. bottom: 0.02
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Micro",
  18606. height: math.unit(1 / 16, "inch")
  18607. },
  18608. {
  18609. name: "Tiny",
  18610. height: math.unit(4, "inches")
  18611. },
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(5 + 7 / 12, "feet"),
  18615. default: true
  18616. },
  18617. {
  18618. name: "Amazon",
  18619. height: math.unit(12, "feet")
  18620. },
  18621. {
  18622. name: "Giantess",
  18623. height: math.unit(160, "meters")
  18624. },
  18625. {
  18626. name: "Titaness",
  18627. height: math.unit(800, "meters")
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(6, "feet"),
  18636. weight: math.unit(150, "lb"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/alluria/front.svg",
  18640. extra: 806 / 738,
  18641. bottom: 0.01
  18642. }
  18643. },
  18644. side: {
  18645. height: math.unit(6, "feet"),
  18646. weight: math.unit(150, "lb"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/alluria/side.svg",
  18650. extra: 800 / 750,
  18651. }
  18652. },
  18653. back: {
  18654. height: math.unit(6, "feet"),
  18655. weight: math.unit(150, "lb"),
  18656. name: "Back",
  18657. image: {
  18658. source: "./media/characters/alluria/back.svg",
  18659. extra: 806 / 738,
  18660. }
  18661. },
  18662. frontMaid: {
  18663. height: math.unit(6, "feet"),
  18664. weight: math.unit(150, "lb"),
  18665. name: "Front (Maid)",
  18666. image: {
  18667. source: "./media/characters/alluria/front-maid.svg",
  18668. extra: 806 / 738,
  18669. bottom: 0.01
  18670. }
  18671. },
  18672. sideMaid: {
  18673. height: math.unit(6, "feet"),
  18674. weight: math.unit(150, "lb"),
  18675. name: "Side (Maid)",
  18676. image: {
  18677. source: "./media/characters/alluria/side-maid.svg",
  18678. extra: 800 / 750,
  18679. bottom: 0.005
  18680. }
  18681. },
  18682. backMaid: {
  18683. height: math.unit(6, "feet"),
  18684. weight: math.unit(150, "lb"),
  18685. name: "Back (Maid)",
  18686. image: {
  18687. source: "./media/characters/alluria/back-maid.svg",
  18688. extra: 806 / 738,
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Micro",
  18695. height: math.unit(6, "inches"),
  18696. default: true
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18702. {
  18703. front: {
  18704. height: math.unit(6, "feet"),
  18705. weight: math.unit(150, "lb"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/kyle/front.svg",
  18709. extra: 1069 / 962,
  18710. bottom: 77.228 / 1727.45
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(150, "feet"),
  18718. default: true
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(6, "feet"),
  18727. weight: math.unit(300, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/duncan/front.svg",
  18731. extra: 1650 / 1482,
  18732. bottom: 0.05
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Macro",
  18739. height: math.unit(100, "feet"),
  18740. default: true
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18746. {
  18747. front: {
  18748. height: math.unit(5 + 4 / 12, "feet"),
  18749. weight: math.unit(220, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/memory/front.svg",
  18753. extra: 3641 / 3545,
  18754. bottom: 0.03
  18755. }
  18756. },
  18757. back: {
  18758. height: math.unit(5 + 4 / 12, "feet"),
  18759. weight: math.unit(220, "lb"),
  18760. name: "Back",
  18761. image: {
  18762. source: "./media/characters/memory/back.svg",
  18763. extra: 3641 / 3545,
  18764. bottom: 0.025
  18765. }
  18766. },
  18767. frontSkirt: {
  18768. height: math.unit(5 + 4 / 12, "feet"),
  18769. weight: math.unit(220, "lb"),
  18770. name: "Front (Skirt)",
  18771. image: {
  18772. source: "./media/characters/memory/front-skirt.svg",
  18773. extra: 3641 / 3545,
  18774. bottom: 0.03
  18775. }
  18776. },
  18777. frontDress: {
  18778. height: math.unit(5 + 4 / 12, "feet"),
  18779. weight: math.unit(220, "lb"),
  18780. name: "Front (Dress)",
  18781. image: {
  18782. source: "./media/characters/memory/front-dress.svg",
  18783. extra: 3641 / 3545,
  18784. bottom: 0.03
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Micro",
  18791. height: math.unit(6, "inches"),
  18792. default: true
  18793. },
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(5 + 4 / 12, "feet")
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18802. {
  18803. front: {
  18804. height: math.unit(4 + 11 / 12, "feet"),
  18805. weight: math.unit(100, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/luno/front.svg",
  18809. extra: 1535 / 1487,
  18810. bottom: 0.03
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Micro",
  18817. height: math.unit(3, "inches")
  18818. },
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(4 + 11 / 12, "feet"),
  18822. default: true
  18823. },
  18824. {
  18825. name: "Macro",
  18826. height: math.unit(300, "feet")
  18827. },
  18828. {
  18829. name: "Megamacro",
  18830. height: math.unit(700, "miles")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(6 + 2 / 12, "feet"),
  18839. weight: math.unit(170, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/jamesy/front.svg",
  18843. extra: 440 / 382,
  18844. bottom: 0.005
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Micro",
  18851. height: math.unit(3, "inches")
  18852. },
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(6 + 2 / 12, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Macro",
  18860. height: math.unit(300, "feet")
  18861. },
  18862. {
  18863. name: "Megamacro",
  18864. height: math.unit(700, "miles")
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(6, "feet"),
  18873. weight: math.unit(160, "lb"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/mark/front.svg",
  18877. extra: 3300 / 3100,
  18878. bottom: 136.42 / 3440.47
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Macro",
  18885. height: math.unit(120, "meters")
  18886. },
  18887. {
  18888. name: "Bigger Macro",
  18889. height: math.unit(350, "meters")
  18890. },
  18891. {
  18892. name: "Megamacro",
  18893. height: math.unit(8, "km"),
  18894. default: true
  18895. },
  18896. {
  18897. name: "Continental",
  18898. height: math.unit(4550, "km")
  18899. },
  18900. {
  18901. name: "Planetary",
  18902. height: math.unit(65000, "km")
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(6, "feet"),
  18911. weight: math.unit(400, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/mac/front.svg",
  18915. extra: 1048 / 987.7,
  18916. bottom: 60 / 1107.6,
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Macro",
  18923. height: math.unit(500, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(5 + 2 / 12, "feet"),
  18933. weight: math.unit(190, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/bari/front.svg",
  18937. extra: 3156 / 2880,
  18938. bottom: 0.03
  18939. }
  18940. },
  18941. back: {
  18942. height: math.unit(5 + 2 / 12, "feet"),
  18943. weight: math.unit(190, "lb"),
  18944. name: "Back",
  18945. image: {
  18946. source: "./media/characters/bari/back.svg",
  18947. extra: 3260 / 2834,
  18948. bottom: 0.025
  18949. }
  18950. },
  18951. frontPlush: {
  18952. height: math.unit(5 + 2 / 12, "feet"),
  18953. weight: math.unit(190, "lb"),
  18954. name: "Front (Plush)",
  18955. image: {
  18956. source: "./media/characters/bari/front-plush.svg",
  18957. extra: 1112 / 1061,
  18958. bottom: 0.002
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Micro",
  18965. height: math.unit(3, "inches")
  18966. },
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(5 + 2 / 12, "feet"),
  18970. default: true
  18971. },
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(20, "feet")
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(6 + 1 / 12, "feet"),
  18983. weight: math.unit(275, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/hunter-misha-raven/front.svg"
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Mortal",
  18993. height: math.unit(6 + 1 / 12, "feet")
  18994. },
  18995. {
  18996. name: "Divine",
  18997. height: math.unit(1.12134e34, "parsecs"),
  18998. default: true
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(6 + 3 / 12, "feet"),
  19007. weight: math.unit(220, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/max-calore/front.svg",
  19011. extra: 1700 / 1648,
  19012. bottom: 0.01
  19013. }
  19014. },
  19015. back: {
  19016. height: math.unit(6 + 3 / 12, "feet"),
  19017. weight: math.unit(220, "lb"),
  19018. name: "Back",
  19019. image: {
  19020. source: "./media/characters/max-calore/back.svg",
  19021. extra: 1700 / 1648,
  19022. bottom: 0.01
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(6 + 3 / 12, "feet"),
  19030. default: true
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19036. {
  19037. side: {
  19038. height: math.unit(2 + 8 / 12, "feet"),
  19039. weight: math.unit(99, "lb"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/aspen/side.svg",
  19043. extra: 152 / 138,
  19044. bottom: 0.032
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(2 + 8 / 12, "feet"),
  19052. default: true
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19058. {
  19059. side: {
  19060. height: math.unit(3 + 2 / 12, "feet"),
  19061. weight: math.unit(224, "lb"),
  19062. name: "Side",
  19063. image: {
  19064. source: "./media/characters/sheila-feral-wolf/side.svg",
  19065. extra: 179 / 166,
  19066. bottom: 0.03
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(3 + 2 / 12, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19080. {
  19081. side: {
  19082. height: math.unit(1 + 9 / 12, "feet"),
  19083. weight: math.unit(38, "lb"),
  19084. name: "Side",
  19085. image: {
  19086. source: "./media/characters/michelle/side.svg",
  19087. extra: 147 / 136.7,
  19088. bottom: 0.03
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(1 + 9 / 12, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(1.54, "feet"),
  19105. weight: math.unit(50, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/nino/front.svg"
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(1.54, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(1.49, "feet"),
  19125. weight: math.unit(45, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/viola/front.svg"
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(1.49, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6 + 5 / 12, "feet"),
  19145. weight: math.unit(580, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/atlas/front.svg",
  19149. extra: 298.5 / 290,
  19150. bottom: 0.015
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(6 + 5 / 12, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19164. {
  19165. side: {
  19166. height: math.unit(15.6, "inches"),
  19167. weight: math.unit(10, "lb"),
  19168. name: "Side",
  19169. image: {
  19170. source: "./media/characters/davy/side.svg",
  19171. extra: 200 / 170,
  19172. bottom: 0.01
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(15.6, "inches"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19186. {
  19187. side: {
  19188. height: math.unit(4 + 8 / 12, "feet"),
  19189. weight: math.unit(166, "lb"),
  19190. name: "Side",
  19191. image: {
  19192. source: "./media/characters/fiona/side.svg",
  19193. extra: 232 / 220,
  19194. bottom: 0.03
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(4 + 8 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19208. {
  19209. front: {
  19210. height: math.unit(26, "inches"),
  19211. weight: math.unit(35, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/lyla/front.svg",
  19215. bottom: 0.1
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Normal",
  19222. height: math.unit(3, "feet"),
  19223. default: true
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19229. {
  19230. side: {
  19231. height: math.unit(1.8, "feet"),
  19232. weight: math.unit(44, "lb"),
  19233. name: "Side",
  19234. image: {
  19235. source: "./media/characters/perseus/side.svg",
  19236. bottom: 0.21
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(1.8, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19250. {
  19251. side: {
  19252. height: math.unit(4 + 2 / 12, "feet"),
  19253. weight: math.unit(20, "lb"),
  19254. name: "Side",
  19255. image: {
  19256. source: "./media/characters/remus/side.svg"
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(4 + 2 / 12, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19270. {
  19271. front: {
  19272. height: math.unit(4 + 11 / 12, "feet"),
  19273. weight: math.unit(114, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/raf/front.svg",
  19277. extra: 1504/1339,
  19278. bottom: 26/1530
  19279. }
  19280. },
  19281. side: {
  19282. height: math.unit(4 + 11 / 12, "feet"),
  19283. weight: math.unit(114, "lb"),
  19284. name: "Side",
  19285. image: {
  19286. source: "./media/characters/raf/side.svg",
  19287. extra: 1466/1316,
  19288. bottom: 29/1495
  19289. }
  19290. },
  19291. paw: {
  19292. height: math.unit(1.45, "feet"),
  19293. name: "Paw",
  19294. image: {
  19295. source: "./media/characters/raf/paw.svg"
  19296. },
  19297. extraAttributes: {
  19298. "toeSize": {
  19299. name: "Toe Size",
  19300. power: 2,
  19301. type: "area",
  19302. base: math.unit(0.004, "m^2")
  19303. },
  19304. "padSize": {
  19305. name: "Pad Size",
  19306. power: 2,
  19307. type: "area",
  19308. base: math.unit(0.04, "m^2")
  19309. },
  19310. "footSize": {
  19311. name: "Foot Size",
  19312. power: 2,
  19313. type: "area",
  19314. base: math.unit(0.08, "m^2")
  19315. },
  19316. }
  19317. },
  19318. },
  19319. [
  19320. {
  19321. name: "Micro",
  19322. height: math.unit(2, "inches")
  19323. },
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(4 + 11 / 12, "feet"),
  19327. default: true
  19328. },
  19329. {
  19330. name: "Macro",
  19331. height: math.unit(70, "feet")
  19332. },
  19333. ]
  19334. ))
  19335. characterMakers.push(() => makeCharacter(
  19336. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19337. {
  19338. front: {
  19339. height: math.unit(1.5, "meters"),
  19340. weight: math.unit(68, "kg"),
  19341. name: "Front",
  19342. image: {
  19343. source: "./media/characters/liam-einarr/front.svg",
  19344. extra: 2822 / 2666
  19345. }
  19346. },
  19347. back: {
  19348. height: math.unit(1.5, "meters"),
  19349. weight: math.unit(68, "kg"),
  19350. name: "Back",
  19351. image: {
  19352. source: "./media/characters/liam-einarr/back.svg",
  19353. extra: 2822 / 2666,
  19354. bottom: 0.015
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(1.5, "meters"),
  19362. default: true
  19363. },
  19364. {
  19365. name: "Macro",
  19366. height: math.unit(150, "meters")
  19367. },
  19368. {
  19369. name: "Megamacro",
  19370. height: math.unit(35, "km")
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(6, "feet"),
  19379. weight: math.unit(75, "kg"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/linda/front.svg",
  19383. extra: 930 / 874,
  19384. bottom: 0.004
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(6, "feet"),
  19392. default: true
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19398. {
  19399. front: {
  19400. height: math.unit(6 + 8 / 12, "feet"),
  19401. weight: math.unit(220, "lb"),
  19402. name: "Front",
  19403. image: {
  19404. source: "./media/characters/caylex/front.svg",
  19405. extra: 821 / 772,
  19406. bottom: 0.07
  19407. }
  19408. },
  19409. back: {
  19410. height: math.unit(6 + 8 / 12, "feet"),
  19411. weight: math.unit(220, "lb"),
  19412. name: "Back",
  19413. image: {
  19414. source: "./media/characters/caylex/back.svg",
  19415. extra: 821 / 772,
  19416. bottom: 0.022
  19417. }
  19418. },
  19419. hand: {
  19420. height: math.unit(1.25, "feet"),
  19421. name: "Hand",
  19422. image: {
  19423. source: "./media/characters/caylex/hand.svg"
  19424. }
  19425. },
  19426. foot: {
  19427. height: math.unit(1.6, "feet"),
  19428. name: "Foot",
  19429. image: {
  19430. source: "./media/characters/caylex/foot.svg"
  19431. }
  19432. },
  19433. armored: {
  19434. height: math.unit(6 + 8 / 12, "feet"),
  19435. weight: math.unit(250, "lb"),
  19436. name: "Armored",
  19437. image: {
  19438. source: "./media/characters/caylex/armored.svg",
  19439. extra: 1420 / 1310,
  19440. bottom: 0.045
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(6 + 8 / 12, "feet"),
  19448. default: true
  19449. },
  19450. {
  19451. name: "Normal+",
  19452. height: math.unit(12, "feet")
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(7 + 6 / 12, "feet"),
  19461. weight: math.unit(288, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/alana/front.svg",
  19465. extra: 679 / 653,
  19466. bottom: 22.5 / 701
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(7 + 6 / 12, "feet")
  19474. },
  19475. {
  19476. name: "Large",
  19477. height: math.unit(50, "feet")
  19478. },
  19479. {
  19480. name: "Macro",
  19481. height: math.unit(100, "feet"),
  19482. default: true
  19483. },
  19484. {
  19485. name: "Macro+",
  19486. height: math.unit(200, "feet")
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19492. {
  19493. front: {
  19494. height: math.unit(6 + 1 / 12, "feet"),
  19495. weight: math.unit(210, "lb"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/hasani/front.svg",
  19499. extra: 244 / 232,
  19500. bottom: 0.01
  19501. }
  19502. },
  19503. back: {
  19504. height: math.unit(6 + 1 / 12, "feet"),
  19505. weight: math.unit(210, "lb"),
  19506. name: "Back",
  19507. image: {
  19508. source: "./media/characters/hasani/back.svg",
  19509. extra: 244 / 232,
  19510. bottom: 0.01
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(6 + 1 / 12, "feet")
  19518. },
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(175, "feet"),
  19522. default: true
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(1.82, "meters"),
  19531. weight: math.unit(140, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/nita/front.svg",
  19535. extra: 2473 / 2363,
  19536. bottom: 0.01
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(1.82, "m")
  19544. },
  19545. {
  19546. name: "Macro",
  19547. height: math.unit(300, "m")
  19548. },
  19549. {
  19550. name: "Mistake Canon",
  19551. height: math.unit(0.5, "miles"),
  19552. default: true
  19553. },
  19554. {
  19555. name: "Big Mistake",
  19556. height: math.unit(13, "miles")
  19557. },
  19558. {
  19559. name: "Playing God",
  19560. height: math.unit(2450, "miles")
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(4, "feet"),
  19569. weight: math.unit(120, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/shiriko/front.svg",
  19573. extra: 970/934,
  19574. bottom: 5/975
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(4, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(6, "feet"),
  19591. name: "front",
  19592. image: {
  19593. source: "./media/characters/deja/front.svg",
  19594. extra: 926 / 840,
  19595. bottom: 0.07
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Planck Length",
  19602. height: math.unit(1.6e-35, "meters")
  19603. },
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(30.48, "meters"),
  19607. default: true
  19608. },
  19609. {
  19610. name: "Universal",
  19611. height: math.unit(8.8e26, "meters")
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19617. {
  19618. side: {
  19619. height: math.unit(8, "feet"),
  19620. weight: math.unit(6300, "lb"),
  19621. name: "Side",
  19622. image: {
  19623. source: "./media/characters/anima/side.svg",
  19624. bottom: 0.035
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(8, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(8, "feet"),
  19641. weight: math.unit(350, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/bianca/front.svg",
  19645. extra: 234 / 225,
  19646. bottom: 0.03
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(8, "feet"),
  19654. default: true
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19660. {
  19661. front: {
  19662. height: math.unit(11 + 5/12, "feet"),
  19663. weight: math.unit(1200, "lb"),
  19664. name: "Front",
  19665. image: {
  19666. source: "./media/characters/adinia/front.svg",
  19667. extra: 1767/1641,
  19668. bottom: 44/1811
  19669. },
  19670. extraAttributes: {
  19671. "energyIntake": {
  19672. name: "Energy Intake",
  19673. power: 3,
  19674. type: "energy",
  19675. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19676. },
  19677. }
  19678. },
  19679. back: {
  19680. height: math.unit(11 + 5/12, "feet"),
  19681. weight: math.unit(1200, "lb"),
  19682. name: "Back",
  19683. image: {
  19684. source: "./media/characters/adinia/back.svg",
  19685. extra: 1834/1684,
  19686. bottom: 14/1848
  19687. },
  19688. extraAttributes: {
  19689. "energyIntake": {
  19690. name: "Energy Intake",
  19691. power: 3,
  19692. type: "energy",
  19693. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19694. },
  19695. }
  19696. },
  19697. maw: {
  19698. height: math.unit(3.79, "feet"),
  19699. name: "Maw",
  19700. image: {
  19701. source: "./media/characters/adinia/maw.svg"
  19702. }
  19703. },
  19704. rump: {
  19705. height: math.unit(4.6, "feet"),
  19706. name: "Rump",
  19707. image: {
  19708. source: "./media/characters/adinia/rump.svg"
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(11 + 5 / 12, "feet"),
  19716. default: true
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(3, "meters"),
  19725. weight: math.unit(200, "kg"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/lykasa/front.svg",
  19729. extra: 1076 / 976,
  19730. bottom: 0.06
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Normal",
  19737. height: math.unit(3, "meters")
  19738. },
  19739. {
  19740. name: "Kaiju",
  19741. height: math.unit(120, "meters"),
  19742. default: true
  19743. },
  19744. {
  19745. name: "Mega Kaiju",
  19746. height: math.unit(240, "km")
  19747. },
  19748. {
  19749. name: "Giga Kaiju",
  19750. height: math.unit(400, "megameters")
  19751. },
  19752. {
  19753. name: "Tera Kaiju",
  19754. height: math.unit(800, "gigameters")
  19755. },
  19756. {
  19757. name: "Kaiju Dragon Goddess",
  19758. height: math.unit(26, "zettaparsecs")
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19764. {
  19765. side: {
  19766. height: math.unit(283 / 124 * 6, "feet"),
  19767. weight: math.unit(35000, "lb"),
  19768. name: "Side",
  19769. image: {
  19770. source: "./media/characters/malfaren/side.svg",
  19771. extra: 1310/529,
  19772. bottom: 24/1334
  19773. }
  19774. },
  19775. front: {
  19776. height: math.unit(22.36, "feet"),
  19777. weight: math.unit(35000, "lb"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/malfaren/front.svg",
  19781. extra: 1237/1115,
  19782. bottom: 32/1269
  19783. }
  19784. },
  19785. maw: {
  19786. height: math.unit(6.9, "feet"),
  19787. name: "Maw",
  19788. image: {
  19789. source: "./media/characters/malfaren/maw.svg"
  19790. }
  19791. },
  19792. dick: {
  19793. height: math.unit(6.19, "feet"),
  19794. name: "Dick",
  19795. image: {
  19796. source: "./media/characters/malfaren/dick.svg"
  19797. }
  19798. },
  19799. eye: {
  19800. height: math.unit(0.69, "feet"),
  19801. name: "Eye",
  19802. image: {
  19803. source: "./media/characters/malfaren/eye.svg"
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Big",
  19810. height: math.unit(283 / 162 * 6, "feet"),
  19811. },
  19812. {
  19813. name: "Bigger",
  19814. height: math.unit(283 / 124 * 6, "feet")
  19815. },
  19816. {
  19817. name: "Massive",
  19818. height: math.unit(283 / 92 * 6, "feet"),
  19819. default: true
  19820. },
  19821. {
  19822. name: "👀💦",
  19823. height: math.unit(283 / 73 * 6, "feet"),
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(1.7, "m"),
  19832. weight: math.unit(70, "kg"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/kernel/front.svg",
  19836. extra: 1960/1821,
  19837. bottom: 17/1977
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Nano",
  19844. height: math.unit(17, "micrometers")
  19845. },
  19846. {
  19847. name: "Micro",
  19848. height: math.unit(1.7, "mm")
  19849. },
  19850. {
  19851. name: "Small",
  19852. height: math.unit(1.7, "cm")
  19853. },
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(1.7, "m"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(1.75, "meters"),
  19866. weight: math.unit(65, "kg"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/jayne-folest/front.svg",
  19870. extra: 2115 / 2007,
  19871. bottom: 0.02
  19872. }
  19873. },
  19874. back: {
  19875. height: math.unit(1.75, "meters"),
  19876. weight: math.unit(65, "kg"),
  19877. name: "Back",
  19878. image: {
  19879. source: "./media/characters/jayne-folest/back.svg",
  19880. extra: 2115 / 2007,
  19881. bottom: 0.005
  19882. }
  19883. },
  19884. frontClothed: {
  19885. height: math.unit(1.75, "meters"),
  19886. weight: math.unit(65, "kg"),
  19887. name: "Front (Clothed)",
  19888. image: {
  19889. source: "./media/characters/jayne-folest/front-clothed.svg",
  19890. extra: 2115 / 2007,
  19891. bottom: 0.035
  19892. }
  19893. },
  19894. hand: {
  19895. height: math.unit(1 / 1.260, "feet"),
  19896. name: "Hand",
  19897. image: {
  19898. source: "./media/characters/jayne-folest/hand.svg"
  19899. }
  19900. },
  19901. foot: {
  19902. height: math.unit(1 / 0.918, "feet"),
  19903. name: "Foot",
  19904. image: {
  19905. source: "./media/characters/jayne-folest/foot.svg"
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Micro",
  19912. height: math.unit(4, "cm")
  19913. },
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(1.75, "meters")
  19917. },
  19918. {
  19919. name: "Macro",
  19920. height: math.unit(47.5, "meters"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(180, "cm"),
  19930. weight: math.unit(70, "kg"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/algier/front.svg",
  19934. extra: 596 / 572,
  19935. bottom: 0.04
  19936. }
  19937. },
  19938. back: {
  19939. height: math.unit(180, "cm"),
  19940. weight: math.unit(70, "kg"),
  19941. name: "Back",
  19942. image: {
  19943. source: "./media/characters/algier/back.svg",
  19944. extra: 596 / 572,
  19945. bottom: 0.025
  19946. }
  19947. },
  19948. frontdressed: {
  19949. height: math.unit(180, "cm"),
  19950. weight: math.unit(150, "kg"),
  19951. name: "Front-dressed",
  19952. image: {
  19953. source: "./media/characters/algier/front-dressed.svg",
  19954. extra: 596 / 572,
  19955. bottom: 0.038
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Micro",
  19962. height: math.unit(5, "cm")
  19963. },
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(180, "cm"),
  19967. default: true
  19968. },
  19969. {
  19970. name: "Macro",
  19971. height: math.unit(64, "m")
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19977. {
  19978. upright: {
  19979. height: math.unit(7, "feet"),
  19980. weight: math.unit(300, "lb"),
  19981. name: "Upright",
  19982. image: {
  19983. source: "./media/characters/pretzel/upright.svg",
  19984. extra: 534 / 522,
  19985. bottom: 0.065
  19986. }
  19987. },
  19988. sprawling: {
  19989. height: math.unit(3.75, "feet"),
  19990. weight: math.unit(300, "lb"),
  19991. name: "Sprawling",
  19992. image: {
  19993. source: "./media/characters/pretzel/sprawling.svg",
  19994. extra: 314 / 281,
  19995. bottom: 0.1
  19996. }
  19997. },
  19998. tongue: {
  19999. height: math.unit(2, "feet"),
  20000. name: "Tongue",
  20001. image: {
  20002. source: "./media/characters/pretzel/tongue.svg"
  20003. }
  20004. },
  20005. },
  20006. [
  20007. {
  20008. name: "Normal",
  20009. height: math.unit(7, "feet"),
  20010. default: true
  20011. },
  20012. {
  20013. name: "Oversized",
  20014. height: math.unit(15, "feet")
  20015. },
  20016. {
  20017. name: "Huge",
  20018. height: math.unit(30, "feet")
  20019. },
  20020. {
  20021. name: "Macro",
  20022. height: math.unit(250, "feet")
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20028. {
  20029. sideFront: {
  20030. height: math.unit(5 + 2 / 12, "feet"),
  20031. weight: math.unit(120, "lb"),
  20032. name: "Front Side",
  20033. image: {
  20034. source: "./media/characters/roxi/side-front.svg",
  20035. extra: 2924 / 2717,
  20036. bottom: 0.08
  20037. }
  20038. },
  20039. sideBack: {
  20040. height: math.unit(5 + 2 / 12, "feet"),
  20041. weight: math.unit(120, "lb"),
  20042. name: "Back Side",
  20043. image: {
  20044. source: "./media/characters/roxi/side-back.svg",
  20045. extra: 2904 / 2693,
  20046. bottom: 0.06
  20047. }
  20048. },
  20049. front: {
  20050. height: math.unit(5 + 2 / 12, "feet"),
  20051. weight: math.unit(120, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/roxi/front.svg",
  20055. extra: 2028 / 1907,
  20056. bottom: 0.01
  20057. }
  20058. },
  20059. frontAlt: {
  20060. height: math.unit(5 + 2 / 12, "feet"),
  20061. weight: math.unit(120, "lb"),
  20062. name: "Front (Alt)",
  20063. image: {
  20064. source: "./media/characters/roxi/front-alt.svg",
  20065. extra: 1828 / 1798,
  20066. bottom: 0.01
  20067. }
  20068. },
  20069. sitting: {
  20070. height: math.unit(2.8, "feet"),
  20071. weight: math.unit(120, "lb"),
  20072. name: "Sitting",
  20073. image: {
  20074. source: "./media/characters/roxi/sitting.svg",
  20075. extra: 2660 / 2462,
  20076. bottom: 0.1
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(5 + 2 / 12, "feet"),
  20084. default: true
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20090. {
  20091. side: {
  20092. height: math.unit(55, "feet"),
  20093. weight: math.unit(153, "tons"),
  20094. name: "Side",
  20095. image: {
  20096. source: "./media/characters/shadow/side.svg",
  20097. extra: 701 / 628,
  20098. bottom: 0.02
  20099. }
  20100. },
  20101. flying: {
  20102. height: math.unit(145, "feet"),
  20103. weight: math.unit(153, "tons"),
  20104. name: "Flying",
  20105. image: {
  20106. source: "./media/characters/shadow/flying.svg"
  20107. }
  20108. },
  20109. },
  20110. [
  20111. {
  20112. name: "Normal",
  20113. height: math.unit(55, "feet"),
  20114. default: true
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20120. {
  20121. front: {
  20122. height: math.unit(6, "feet"),
  20123. weight: math.unit(200, "lb"),
  20124. name: "Front",
  20125. image: {
  20126. source: "./media/characters/marcie/front.svg",
  20127. extra: 960 / 876,
  20128. bottom: 58 / 1017.87
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Macro",
  20135. height: math.unit(1, "mile"),
  20136. default: true
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20142. {
  20143. front: {
  20144. height: math.unit(7, "feet"),
  20145. weight: math.unit(200, "lb"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/kachina/front.svg",
  20149. extra: 3206/2764,
  20150. bottom: 140/3346
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(7, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20164. {
  20165. looking: {
  20166. height: math.unit(2, "meters"),
  20167. weight: math.unit(300, "kg"),
  20168. name: "Looking",
  20169. image: {
  20170. source: "./media/characters/kash/looking.svg",
  20171. extra: 474 / 344,
  20172. bottom: 0.03
  20173. }
  20174. },
  20175. side: {
  20176. height: math.unit(2, "meters"),
  20177. weight: math.unit(300, "kg"),
  20178. name: "Side",
  20179. image: {
  20180. source: "./media/characters/kash/side.svg",
  20181. extra: 302 / 251,
  20182. bottom: 0.03
  20183. }
  20184. },
  20185. front: {
  20186. height: math.unit(2, "meters"),
  20187. weight: math.unit(300, "kg"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/kash/front.svg",
  20191. extra: 495 / 360,
  20192. bottom: 0.015
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(2, "meters"),
  20200. default: true
  20201. },
  20202. {
  20203. name: "Big",
  20204. height: math.unit(3, "meters")
  20205. },
  20206. {
  20207. name: "Large",
  20208. height: math.unit(5, "meters")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20214. {
  20215. feeding: {
  20216. height: math.unit(6.7, "feet"),
  20217. weight: math.unit(350, "lb"),
  20218. name: "Feeding",
  20219. image: {
  20220. source: "./media/characters/lalim/feeding.svg",
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(6.7, "feet"),
  20228. default: true
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20234. {
  20235. front: {
  20236. height: math.unit(9.5, "feet"),
  20237. weight: math.unit(600, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/de'vout/front.svg",
  20241. extra: 1443 / 1328,
  20242. bottom: 0.025
  20243. }
  20244. },
  20245. back: {
  20246. height: math.unit(9.5, "feet"),
  20247. weight: math.unit(600, "lb"),
  20248. name: "Back",
  20249. image: {
  20250. source: "./media/characters/de'vout/back.svg",
  20251. extra: 1443 / 1328
  20252. }
  20253. },
  20254. frontDressed: {
  20255. height: math.unit(9.5, "feet"),
  20256. weight: math.unit(600, "lb"),
  20257. name: "Front (Dressed",
  20258. image: {
  20259. source: "./media/characters/de'vout/front-dressed.svg",
  20260. extra: 1443 / 1328,
  20261. bottom: 0.025
  20262. }
  20263. },
  20264. backDressed: {
  20265. height: math.unit(9.5, "feet"),
  20266. weight: math.unit(600, "lb"),
  20267. name: "Back (Dressed",
  20268. image: {
  20269. source: "./media/characters/de'vout/back-dressed.svg",
  20270. extra: 1443 / 1328
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(9.5, "feet"),
  20278. default: true
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(8, "feet"),
  20287. weight: math.unit(225, "lb"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/talana/front.svg",
  20291. extra: 1410 / 1300,
  20292. bottom: 0.015
  20293. }
  20294. },
  20295. frontDressed: {
  20296. height: math.unit(8, "feet"),
  20297. weight: math.unit(225, "lb"),
  20298. name: "Front (Dressed",
  20299. image: {
  20300. source: "./media/characters/talana/front-dressed.svg",
  20301. extra: 1410 / 1300,
  20302. bottom: 0.015
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(8, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20316. {
  20317. side: {
  20318. height: math.unit(7.2, "feet"),
  20319. weight: math.unit(150, "lb"),
  20320. name: "Side",
  20321. image: {
  20322. source: "./media/characters/xeauvok/side.svg",
  20323. extra: 1975 / 1523,
  20324. bottom: 0.07
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(7.2, "feet"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20338. {
  20339. side: {
  20340. height: math.unit(4, "meters"),
  20341. weight: math.unit(2200, "kg"),
  20342. name: "Side",
  20343. image: {
  20344. source: "./media/characters/zara/side.svg",
  20345. extra: 765/744,
  20346. bottom: 156/921
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(4, "meters"),
  20354. default: true
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20360. {
  20361. side: {
  20362. height: math.unit(6, "feet"),
  20363. weight: math.unit(150, "lb"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/richard-dragon/side.svg",
  20367. extra: 845 / 340,
  20368. bottom: 0.017
  20369. }
  20370. },
  20371. maw: {
  20372. height: math.unit(2.97, "feet"),
  20373. name: "Maw",
  20374. image: {
  20375. source: "./media/characters/richard-dragon/maw.svg"
  20376. }
  20377. },
  20378. },
  20379. [
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20384. {
  20385. front: {
  20386. height: math.unit(4, "feet"),
  20387. weight: math.unit(100, "lb"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/richard-smeargle/front.svg",
  20391. extra: 2952 / 2820,
  20392. bottom: 0.028
  20393. }
  20394. },
  20395. },
  20396. [
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(4, "feet"),
  20400. default: true
  20401. },
  20402. {
  20403. name: "Dynamax",
  20404. height: math.unit(20, "meters")
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20410. {
  20411. front: {
  20412. height: math.unit(6, "feet"),
  20413. weight: math.unit(110, "lb"),
  20414. name: "Front",
  20415. image: {
  20416. source: "./media/characters/klay/front.svg",
  20417. extra: 962 / 883,
  20418. bottom: 0.04
  20419. }
  20420. },
  20421. back: {
  20422. height: math.unit(6, "feet"),
  20423. weight: math.unit(110, "lb"),
  20424. name: "Back",
  20425. image: {
  20426. source: "./media/characters/klay/back.svg",
  20427. extra: 962 / 883
  20428. }
  20429. },
  20430. beans: {
  20431. height: math.unit(1.15, "feet"),
  20432. name: "Beans",
  20433. image: {
  20434. source: "./media/characters/klay/beans.svg"
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Micro",
  20441. height: math.unit(6, "inches")
  20442. },
  20443. {
  20444. name: "Mini",
  20445. height: math.unit(3, "feet")
  20446. },
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(6, "feet"),
  20450. default: true
  20451. },
  20452. {
  20453. name: "Big",
  20454. height: math.unit(25, "feet")
  20455. },
  20456. {
  20457. name: "Macro",
  20458. height: math.unit(100, "feet")
  20459. },
  20460. {
  20461. name: "Megamacro",
  20462. height: math.unit(400, "feet")
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20468. {
  20469. front: {
  20470. height: math.unit(6, "feet"),
  20471. weight: math.unit(160, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/marcus/front.svg",
  20475. extra: 734 / 676,
  20476. bottom: 0.03
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Little",
  20483. height: math.unit(6, "feet")
  20484. },
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(110, "feet"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Macro",
  20492. height: math.unit(250, "feet")
  20493. },
  20494. {
  20495. name: "Megamacro",
  20496. height: math.unit(1000, "feet")
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20502. {
  20503. front: {
  20504. height: math.unit(7, "feet"),
  20505. weight: math.unit(275, "lb"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/claude-delroute/front.svg",
  20509. extra: 902/827,
  20510. bottom: 26/928
  20511. }
  20512. },
  20513. side: {
  20514. height: math.unit(7, "feet"),
  20515. weight: math.unit(275, "lb"),
  20516. name: "Side",
  20517. image: {
  20518. source: "./media/characters/claude-delroute/side.svg",
  20519. extra: 908/853,
  20520. bottom: 16/924
  20521. }
  20522. },
  20523. back: {
  20524. height: math.unit(7, "feet"),
  20525. weight: math.unit(275, "lb"),
  20526. name: "Back",
  20527. image: {
  20528. source: "./media/characters/claude-delroute/back.svg",
  20529. extra: 911/829,
  20530. bottom: 18/929
  20531. }
  20532. },
  20533. maw: {
  20534. height: math.unit(0.6407, "meters"),
  20535. name: "Maw",
  20536. image: {
  20537. source: "./media/characters/claude-delroute/maw.svg"
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(7, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Lorge",
  20549. height: math.unit(20, "feet")
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(8 + 4 / 12, "feet"),
  20558. weight: math.unit(600, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/dragonien/front.svg",
  20562. extra: 100 / 94,
  20563. bottom: 3.3 / 103.3445
  20564. }
  20565. },
  20566. back: {
  20567. height: math.unit(8 + 4 / 12, "feet"),
  20568. weight: math.unit(600, "lb"),
  20569. name: "Back",
  20570. image: {
  20571. source: "./media/characters/dragonien/back.svg",
  20572. extra: 776 / 746,
  20573. bottom: 6.4 / 782.0616
  20574. }
  20575. },
  20576. foot: {
  20577. height: math.unit(1.54, "feet"),
  20578. name: "Foot",
  20579. image: {
  20580. source: "./media/characters/dragonien/foot.svg",
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(8 + 4 / 12, "feet"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Macro",
  20592. height: math.unit(200, "feet")
  20593. },
  20594. {
  20595. name: "Megamacro",
  20596. height: math.unit(1, "mile")
  20597. },
  20598. {
  20599. name: "Gigamacro",
  20600. height: math.unit(1000, "miles")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(5 + 2 / 12, "feet"),
  20609. weight: math.unit(110, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/desta/front.svg",
  20613. extra: 767 / 726,
  20614. bottom: 11.7 / 779
  20615. }
  20616. },
  20617. back: {
  20618. height: math.unit(5 + 2 / 12, "feet"),
  20619. weight: math.unit(110, "lb"),
  20620. name: "Back",
  20621. image: {
  20622. source: "./media/characters/desta/back.svg",
  20623. extra: 777 / 728,
  20624. bottom: 6 / 784
  20625. }
  20626. },
  20627. frontAlt: {
  20628. height: math.unit(5 + 2 / 12, "feet"),
  20629. weight: math.unit(110, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/desta/front-alt.svg",
  20633. extra: 1482 / 1417
  20634. }
  20635. },
  20636. side: {
  20637. height: math.unit(5 + 2 / 12, "feet"),
  20638. weight: math.unit(110, "lb"),
  20639. name: "Side",
  20640. image: {
  20641. source: "./media/characters/desta/side.svg",
  20642. extra: 2579 / 2491,
  20643. bottom: 0.053
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Micro",
  20650. height: math.unit(6, "inches")
  20651. },
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(5 + 2 / 12, "feet"),
  20655. default: true
  20656. },
  20657. {
  20658. name: "Macro",
  20659. height: math.unit(62, "feet")
  20660. },
  20661. {
  20662. name: "Megamacro",
  20663. height: math.unit(1800, "feet")
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(10, "feet"),
  20672. weight: math.unit(700, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/storm-alystar/front.svg",
  20676. extra: 2112 / 1898,
  20677. bottom: 0.034
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Micro",
  20684. height: math.unit(3.5, "inches")
  20685. },
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(10, "feet"),
  20689. default: true
  20690. },
  20691. {
  20692. name: "Macro",
  20693. height: math.unit(400, "feet")
  20694. },
  20695. {
  20696. name: "Deific",
  20697. height: math.unit(60, "miles")
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20703. {
  20704. front: {
  20705. height: math.unit(2.35, "meters"),
  20706. weight: math.unit(119, "kg"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/ilia/front.svg",
  20710. extra: 1285 / 1255,
  20711. bottom: 0.06
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(2.35, "meters")
  20719. },
  20720. {
  20721. name: "Macro",
  20722. height: math.unit(140, "meters"),
  20723. default: true
  20724. },
  20725. {
  20726. name: "Megamacro",
  20727. height: math.unit(100, "miles")
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20733. {
  20734. front: {
  20735. height: math.unit(6 + 5 / 12, "feet"),
  20736. weight: math.unit(190, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/kingdead/front.svg",
  20740. extra: 1228 / 1177
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Micro",
  20747. height: math.unit(7, "inches")
  20748. },
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(6 + 5 / 12, "feet")
  20752. },
  20753. {
  20754. name: "Macro",
  20755. height: math.unit(150, "feet"),
  20756. default: true
  20757. },
  20758. {
  20759. name: "Megamacro",
  20760. height: math.unit(200, "miles")
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(8, "feet"),
  20769. weight: math.unit(600, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/kyrehx/front.svg",
  20773. extra: 1195 / 1095,
  20774. bottom: 0.034
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Micro",
  20781. height: math.unit(2, "inches")
  20782. },
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(8, "feet"),
  20786. default: true
  20787. },
  20788. {
  20789. name: "Macro",
  20790. height: math.unit(255, "feet")
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20799. weight: math.unit(184, "lb"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/xang/front.svg",
  20803. extra: 845 / 755
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20811. default: true
  20812. },
  20813. {
  20814. name: "Macro",
  20815. height: math.unit(0.935 * 146, "feet")
  20816. },
  20817. {
  20818. name: "Megamacro",
  20819. height: math.unit(0.935 * 3, "miles")
  20820. },
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20825. {
  20826. frontDressed: {
  20827. height: math.unit(5 + 7 / 12, "feet"),
  20828. weight: math.unit(140, "lb"),
  20829. name: "Front (Dressed)",
  20830. image: {
  20831. source: "./media/characters/doc-weardno/front-dressed.svg",
  20832. extra: 263 / 234
  20833. }
  20834. },
  20835. backDressed: {
  20836. height: math.unit(5 + 7 / 12, "feet"),
  20837. weight: math.unit(140, "lb"),
  20838. name: "Back (Dressed)",
  20839. image: {
  20840. source: "./media/characters/doc-weardno/back-dressed.svg",
  20841. extra: 266 / 238
  20842. }
  20843. },
  20844. front: {
  20845. height: math.unit(5 + 7 / 12, "feet"),
  20846. weight: math.unit(140, "lb"),
  20847. name: "Front",
  20848. image: {
  20849. source: "./media/characters/doc-weardno/front.svg",
  20850. extra: 254 / 233
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Micro",
  20857. height: math.unit(3, "inches")
  20858. },
  20859. {
  20860. name: "Normal",
  20861. height: math.unit(5 + 7 / 12, "feet"),
  20862. default: true
  20863. },
  20864. {
  20865. name: "Macro",
  20866. height: math.unit(25, "feet")
  20867. },
  20868. {
  20869. name: "Megamacro",
  20870. height: math.unit(2, "miles")
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(6 + 2 / 12, "feet"),
  20879. weight: math.unit(153, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/seth-whilst/front.svg",
  20883. bottom: 0.07
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Micro",
  20890. height: math.unit(5, "inches")
  20891. },
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(6 + 2 / 12, "feet"),
  20895. default: true
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20901. {
  20902. front: {
  20903. height: math.unit(3, "inches"),
  20904. weight: math.unit(8, "grams"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/pocket-jabari/front.svg",
  20908. extra: 1024 / 974,
  20909. bottom: 0.039
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Minimicro",
  20916. height: math.unit(8, "mm")
  20917. },
  20918. {
  20919. name: "Micro",
  20920. height: math.unit(3, "inches"),
  20921. default: true
  20922. },
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(3, "feet")
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20931. {
  20932. frontDressed: {
  20933. height: math.unit(15, "feet"),
  20934. weight: math.unit(3280, "lb"),
  20935. name: "Front (Dressed)",
  20936. image: {
  20937. source: "./media/characters/sapphy/front-dressed.svg",
  20938. extra: 1951/1654,
  20939. bottom: 194/2145
  20940. },
  20941. form: "anthro",
  20942. default: true
  20943. },
  20944. backDressed: {
  20945. height: math.unit(15, "feet"),
  20946. weight: math.unit(3280, "lb"),
  20947. name: "Back (Dressed)",
  20948. image: {
  20949. source: "./media/characters/sapphy/back-dressed.svg",
  20950. extra: 2058/1918,
  20951. bottom: 125/2183
  20952. },
  20953. form: "anthro"
  20954. },
  20955. frontNude: {
  20956. height: math.unit(15, "feet"),
  20957. weight: math.unit(3280, "lb"),
  20958. name: "Front (Nude)",
  20959. image: {
  20960. source: "./media/characters/sapphy/front-nude.svg",
  20961. extra: 1951/1654,
  20962. bottom: 194/2145
  20963. },
  20964. form: "anthro"
  20965. },
  20966. backNude: {
  20967. height: math.unit(15, "feet"),
  20968. weight: math.unit(3280, "lb"),
  20969. name: "Back (Nude)",
  20970. image: {
  20971. source: "./media/characters/sapphy/back-nude.svg",
  20972. extra: 2058/1918,
  20973. bottom: 125/2183
  20974. },
  20975. form: "anthro"
  20976. },
  20977. full: {
  20978. height: math.unit(15, "feet"),
  20979. weight: math.unit(3280, "lb"),
  20980. name: "Full",
  20981. image: {
  20982. source: "./media/characters/sapphy/full.svg",
  20983. extra: 1396/1317,
  20984. bottom: 44/1440
  20985. },
  20986. form: "anthro"
  20987. },
  20988. dick: {
  20989. height: math.unit(3.8, "feet"),
  20990. name: "Dick",
  20991. image: {
  20992. source: "./media/characters/sapphy/dick.svg"
  20993. },
  20994. form: "anthro"
  20995. },
  20996. feral: {
  20997. height: math.unit(35, "feet"),
  20998. weight: math.unit(160, "tons"),
  20999. name: "Feral",
  21000. image: {
  21001. source: "./media/characters/sapphy/feral.svg",
  21002. extra: 1050/573,
  21003. bottom: 60/1110
  21004. },
  21005. form: "feral",
  21006. default: true
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(15, "feet"),
  21013. form: "anthro"
  21014. },
  21015. {
  21016. name: "Casual Macro",
  21017. height: math.unit(120, "feet"),
  21018. form: "anthro"
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(2150, "feet"),
  21023. default: true,
  21024. form: "anthro"
  21025. },
  21026. {
  21027. name: "Megamacro",
  21028. height: math.unit(8, "miles"),
  21029. form: "anthro"
  21030. },
  21031. {
  21032. name: "Galaxy Mom",
  21033. height: math.unit(6, "megalightyears"),
  21034. form: "anthro"
  21035. },
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(35, "feet"),
  21039. form: "feral",
  21040. default: true
  21041. },
  21042. {
  21043. name: "Macro",
  21044. height: math.unit(300, "feet"),
  21045. form: "feral"
  21046. },
  21047. {
  21048. name: "Galaxy Mom",
  21049. height: math.unit(10, "megalightyears"),
  21050. form: "feral"
  21051. },
  21052. ],
  21053. {
  21054. "anthro": {
  21055. name: "Anthro",
  21056. default: true
  21057. },
  21058. "feral": {
  21059. name: "Feral"
  21060. }
  21061. }
  21062. ))
  21063. characterMakers.push(() => makeCharacter(
  21064. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21065. {
  21066. hyenaFront: {
  21067. height: math.unit(6, "feet"),
  21068. weight: math.unit(190, "lb"),
  21069. name: "Front",
  21070. image: {
  21071. source: "./media/characters/kiro/hyena-front.svg",
  21072. extra: 927/839,
  21073. bottom: 91/1018
  21074. },
  21075. form: "hyena",
  21076. default: true
  21077. },
  21078. front: {
  21079. height: math.unit(6, "feet"),
  21080. weight: math.unit(170, "lb"),
  21081. name: "Front",
  21082. image: {
  21083. source: "./media/characters/kiro/front.svg",
  21084. extra: 1064 / 1012,
  21085. bottom: 0.052
  21086. },
  21087. form: "folf",
  21088. default: true
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Micro",
  21094. height: math.unit(6, "inches"),
  21095. form: "folf"
  21096. },
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(6, "feet"),
  21100. form: "folf",
  21101. default: true
  21102. },
  21103. {
  21104. name: "Macro",
  21105. height: math.unit(72, "feet"),
  21106. form: "folf"
  21107. },
  21108. {
  21109. name: "Micro",
  21110. height: math.unit(6, "inches"),
  21111. form: "hyena"
  21112. },
  21113. {
  21114. name: "Normal",
  21115. height: math.unit(6, "feet"),
  21116. form: "hyena",
  21117. default: true
  21118. },
  21119. {
  21120. name: "Macro",
  21121. height: math.unit(72, "feet"),
  21122. form: "hyena"
  21123. },
  21124. ],
  21125. {
  21126. "hyena": {
  21127. name: "Hyena",
  21128. default: true
  21129. },
  21130. "folf": {
  21131. name: "Folf",
  21132. },
  21133. }
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21137. {
  21138. front: {
  21139. height: math.unit(5 + 9 / 12, "feet"),
  21140. weight: math.unit(175, "lb"),
  21141. name: "Front",
  21142. image: {
  21143. source: "./media/characters/irishfox/front.svg",
  21144. extra: 1912 / 1680,
  21145. bottom: 0.02
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Nano",
  21152. height: math.unit(1, "mm")
  21153. },
  21154. {
  21155. name: "Micro",
  21156. height: math.unit(2, "inches")
  21157. },
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(5 + 9 / 12, "feet"),
  21161. default: true
  21162. },
  21163. {
  21164. name: "Macro",
  21165. height: math.unit(45, "feet")
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21171. {
  21172. front: {
  21173. height: math.unit(6 + 1 / 12, "feet"),
  21174. weight: math.unit(75, "lb"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/aronai-sieyes/front.svg",
  21178. extra: 1532/1450,
  21179. bottom: 42/1574
  21180. }
  21181. },
  21182. side: {
  21183. height: math.unit(6 + 1 / 12, "feet"),
  21184. weight: math.unit(75, "lb"),
  21185. name: "Side",
  21186. image: {
  21187. source: "./media/characters/aronai-sieyes/side.svg",
  21188. extra: 1422/1365,
  21189. bottom: 148/1570
  21190. }
  21191. },
  21192. back: {
  21193. height: math.unit(6 + 1 / 12, "feet"),
  21194. weight: math.unit(75, "lb"),
  21195. name: "Back",
  21196. image: {
  21197. source: "./media/characters/aronai-sieyes/back.svg",
  21198. extra: 1526/1464,
  21199. bottom: 51/1577
  21200. }
  21201. },
  21202. dressed: {
  21203. height: math.unit(6 + 1 / 12, "feet"),
  21204. weight: math.unit(75, "lb"),
  21205. name: "Dressed",
  21206. image: {
  21207. source: "./media/characters/aronai-sieyes/dressed.svg",
  21208. extra: 1559/1483,
  21209. bottom: 39/1598
  21210. }
  21211. },
  21212. slit: {
  21213. height: math.unit(1.3, "feet"),
  21214. name: "Slit",
  21215. image: {
  21216. source: "./media/characters/aronai-sieyes/slit.svg"
  21217. }
  21218. },
  21219. slitSpread: {
  21220. height: math.unit(0.9, "feet"),
  21221. name: "Slit (Spread)",
  21222. image: {
  21223. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21224. }
  21225. },
  21226. rump: {
  21227. height: math.unit(1.3, "feet"),
  21228. name: "Rump",
  21229. image: {
  21230. source: "./media/characters/aronai-sieyes/rump.svg"
  21231. }
  21232. },
  21233. maw: {
  21234. height: math.unit(1.25, "feet"),
  21235. name: "Maw",
  21236. image: {
  21237. source: "./media/characters/aronai-sieyes/maw.svg"
  21238. }
  21239. },
  21240. feral: {
  21241. height: math.unit(18, "feet"),
  21242. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21243. name: "Feral",
  21244. image: {
  21245. source: "./media/characters/aronai-sieyes/feral.svg",
  21246. extra: 1530 / 1240,
  21247. bottom: 0.035
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Micro",
  21254. height: math.unit(2, "inches")
  21255. },
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(6 + 1 / 12, "feet"),
  21259. default: true
  21260. }
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21265. {
  21266. front: {
  21267. height: math.unit(12, "feet"),
  21268. weight: math.unit(410, "kg"),
  21269. name: "Front",
  21270. image: {
  21271. source: "./media/characters/xuna/front.svg",
  21272. extra: 2184 / 1980
  21273. }
  21274. },
  21275. side: {
  21276. height: math.unit(12, "feet"),
  21277. weight: math.unit(410, "kg"),
  21278. name: "Side",
  21279. image: {
  21280. source: "./media/characters/xuna/side.svg",
  21281. extra: 2184 / 1980
  21282. }
  21283. },
  21284. back: {
  21285. height: math.unit(12, "feet"),
  21286. weight: math.unit(410, "kg"),
  21287. name: "Back",
  21288. image: {
  21289. source: "./media/characters/xuna/back.svg",
  21290. extra: 2184 / 1980
  21291. }
  21292. },
  21293. },
  21294. [
  21295. {
  21296. name: "Nano glow",
  21297. height: math.unit(10, "nm")
  21298. },
  21299. {
  21300. name: "Micro floof",
  21301. height: math.unit(0.3, "m")
  21302. },
  21303. {
  21304. name: "Huggable softy boi",
  21305. height: math.unit(3.6576, "m"),
  21306. default: true
  21307. },
  21308. {
  21309. name: "Admirable floof",
  21310. height: math.unit(80, "meters")
  21311. },
  21312. {
  21313. name: "Gentle macro",
  21314. height: math.unit(300, "meters")
  21315. },
  21316. {
  21317. name: "Very careful floof",
  21318. height: math.unit(3200, "meters")
  21319. },
  21320. {
  21321. name: "The mega floof",
  21322. height: math.unit(36000, "meters")
  21323. },
  21324. {
  21325. name: "Giga-fur-Wicker",
  21326. height: math.unit(4800000, "meters")
  21327. },
  21328. {
  21329. name: "Licky world",
  21330. height: math.unit(20000000, "meters")
  21331. },
  21332. {
  21333. name: "Floofy cyan sun",
  21334. height: math.unit(1500000000, "meters")
  21335. },
  21336. {
  21337. name: "Milky Wicker",
  21338. height: math.unit(1000000000000000000000, "meters")
  21339. },
  21340. {
  21341. name: "The observing Wicker",
  21342. height: math.unit(999999999999999999999999999, "meters")
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(5 + 9 / 12, "feet"),
  21351. weight: math.unit(150, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/arokha-sieyes/front.svg",
  21355. extra: 1425 / 1284,
  21356. bottom: 0.05
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(5 + 9 / 12, "feet")
  21364. },
  21365. {
  21366. name: "Macro",
  21367. height: math.unit(30, "meters"),
  21368. default: true
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21374. {
  21375. front: {
  21376. height: math.unit(6, "feet"),
  21377. weight: math.unit(180, "lb"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/arokh-sieyes/front.svg",
  21381. extra: 1830 / 1769,
  21382. bottom: 0.01
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(6, "feet")
  21390. },
  21391. {
  21392. name: "Macro",
  21393. height: math.unit(30, "meters"),
  21394. default: true
  21395. },
  21396. ]
  21397. ))
  21398. characterMakers.push(() => makeCharacter(
  21399. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21400. {
  21401. side: {
  21402. height: math.unit(13 + 1 / 12, "feet"),
  21403. weight: math.unit(8.5, "tonnes"),
  21404. preyCapacity: math.unit(36, "people"),
  21405. name: "Side",
  21406. image: {
  21407. source: "./media/characters/goldeneye/side.svg",
  21408. extra: 1139/741,
  21409. bottom: 98/1237
  21410. }
  21411. },
  21412. front: {
  21413. height: math.unit(5.1, "feet"),
  21414. weight: math.unit(8.5, "tonnes"),
  21415. preyCapacity: math.unit(36, "people"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/goldeneye/front.svg",
  21419. extra: 635/365,
  21420. bottom: 598/1233
  21421. }
  21422. },
  21423. maw: {
  21424. height: math.unit(6.6, "feet"),
  21425. name: "Maw",
  21426. image: {
  21427. source: "./media/characters/goldeneye/maw.svg"
  21428. }
  21429. },
  21430. headFront: {
  21431. height: math.unit(8, "feet"),
  21432. name: "Head (Front)",
  21433. image: {
  21434. source: "./media/characters/goldeneye/head-front.svg"
  21435. }
  21436. },
  21437. headSide: {
  21438. height: math.unit(6, "feet"),
  21439. name: "Head (Side)",
  21440. image: {
  21441. source: "./media/characters/goldeneye/head-side.svg"
  21442. }
  21443. },
  21444. headBack: {
  21445. height: math.unit(8, "feet"),
  21446. name: "Head (Back)",
  21447. image: {
  21448. source: "./media/characters/goldeneye/head-back.svg"
  21449. }
  21450. },
  21451. paw: {
  21452. height: math.unit(3.4, "feet"),
  21453. name: "Paw",
  21454. image: {
  21455. source: "./media/characters/goldeneye/paw.svg"
  21456. }
  21457. },
  21458. toering: {
  21459. height: math.unit(0.45, "feet"),
  21460. name: "Toering",
  21461. image: {
  21462. source: "./media/characters/goldeneye/toering.svg"
  21463. }
  21464. },
  21465. eyes: {
  21466. height: math.unit(0.5, "feet"),
  21467. name: "Eyes",
  21468. image: {
  21469. source: "./media/characters/goldeneye/eyes.svg"
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(13 + 1 / 12, "feet"),
  21477. default: true
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21483. {
  21484. front: {
  21485. height: math.unit(6 + 1 / 12, "feet"),
  21486. weight: math.unit(210, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/leonardo-lycheborne/front.svg",
  21490. extra: 776/723,
  21491. bottom: 34/810
  21492. }
  21493. },
  21494. side: {
  21495. height: math.unit(6 + 1 / 12, "feet"),
  21496. weight: math.unit(210, "lb"),
  21497. name: "Side",
  21498. image: {
  21499. source: "./media/characters/leonardo-lycheborne/side.svg",
  21500. extra: 780/728,
  21501. bottom: 12/792
  21502. }
  21503. },
  21504. back: {
  21505. height: math.unit(6 + 1 / 12, "feet"),
  21506. weight: math.unit(210, "lb"),
  21507. name: "Back",
  21508. image: {
  21509. source: "./media/characters/leonardo-lycheborne/back.svg",
  21510. extra: 775/721,
  21511. bottom: 17/792
  21512. }
  21513. },
  21514. hand: {
  21515. height: math.unit(1.08, "feet"),
  21516. name: "Hand",
  21517. image: {
  21518. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21519. }
  21520. },
  21521. foot: {
  21522. height: math.unit(1.32, "feet"),
  21523. name: "Foot",
  21524. image: {
  21525. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21526. }
  21527. },
  21528. maw: {
  21529. height: math.unit(1, "feet"),
  21530. name: "Maw",
  21531. image: {
  21532. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21533. }
  21534. },
  21535. were: {
  21536. height: math.unit(20, "feet"),
  21537. weight: math.unit(7800, "lb"),
  21538. name: "Were",
  21539. image: {
  21540. source: "./media/characters/leonardo-lycheborne/were.svg",
  21541. extra: 1224/1165,
  21542. bottom: 72/1296
  21543. }
  21544. },
  21545. feral: {
  21546. height: math.unit(7.5, "feet"),
  21547. weight: math.unit(600, "lb"),
  21548. name: "Feral",
  21549. image: {
  21550. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21551. extra: 797/702,
  21552. bottom: 139/936
  21553. }
  21554. },
  21555. taur: {
  21556. height: math.unit(11, "feet"),
  21557. weight: math.unit(3300, "lb"),
  21558. name: "Taur",
  21559. image: {
  21560. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21561. extra: 1271/1197,
  21562. bottom: 47/1318
  21563. }
  21564. },
  21565. barghest: {
  21566. height: math.unit(11, "feet"),
  21567. weight: math.unit(1300, "lb"),
  21568. name: "Barghest",
  21569. image: {
  21570. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21571. extra: 1291/1204,
  21572. bottom: 37/1328
  21573. }
  21574. },
  21575. dick: {
  21576. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21577. name: "Dick",
  21578. image: {
  21579. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21580. }
  21581. },
  21582. dickWere: {
  21583. height: math.unit((20) / 3.8, "feet"),
  21584. name: "Dick (Were)",
  21585. image: {
  21586. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(6 + 1 / 12, "feet"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21600. {
  21601. front: {
  21602. height: math.unit(10, "feet"),
  21603. weight: math.unit(350, "lb"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/jet/front.svg",
  21607. extra: 2050 / 1980,
  21608. bottom: 0.013
  21609. }
  21610. },
  21611. back: {
  21612. height: math.unit(10, "feet"),
  21613. weight: math.unit(350, "lb"),
  21614. name: "Back",
  21615. image: {
  21616. source: "./media/characters/jet/back.svg",
  21617. extra: 2050 / 1980,
  21618. bottom: 0.013
  21619. }
  21620. },
  21621. },
  21622. [
  21623. {
  21624. name: "Micro",
  21625. height: math.unit(6, "inches")
  21626. },
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(10, "feet"),
  21630. default: true
  21631. },
  21632. {
  21633. name: "Macro",
  21634. height: math.unit(100, "feet")
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(15, "feet"),
  21643. weight: math.unit(2800, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/tanarath/front.svg",
  21647. extra: 2392 / 2220,
  21648. bottom: 0.03
  21649. }
  21650. },
  21651. back: {
  21652. height: math.unit(15, "feet"),
  21653. weight: math.unit(2800, "lb"),
  21654. name: "Back",
  21655. image: {
  21656. source: "./media/characters/tanarath/back.svg",
  21657. extra: 2392 / 2220,
  21658. bottom: 0.03
  21659. }
  21660. },
  21661. },
  21662. [
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(15, "feet"),
  21666. default: true
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(7 + 1 / 12, "feet"),
  21675. weight: math.unit(175, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/patty-cattybatty/front.svg",
  21679. extra: 908 / 874,
  21680. bottom: 0.025
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Micro",
  21687. height: math.unit(1, "inch")
  21688. },
  21689. {
  21690. name: "Normal",
  21691. height: math.unit(7 + 1 / 12, "feet")
  21692. },
  21693. {
  21694. name: "Mini Macro",
  21695. height: math.unit(155, "feet")
  21696. },
  21697. {
  21698. name: "Macro",
  21699. height: math.unit(1077, "feet")
  21700. },
  21701. {
  21702. name: "Mega Macro",
  21703. height: math.unit(47650, "feet"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Giga Macro",
  21708. height: math.unit(440, "miles")
  21709. },
  21710. {
  21711. name: "Tera Macro",
  21712. height: math.unit(8700, "miles")
  21713. },
  21714. {
  21715. name: "Planetary Macro",
  21716. height: math.unit(32700, "miles")
  21717. },
  21718. {
  21719. name: "Solar Macro",
  21720. height: math.unit(550000, "miles")
  21721. },
  21722. {
  21723. name: "Celestial Macro",
  21724. height: math.unit(2.5, "AU")
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21730. {
  21731. front: {
  21732. height: math.unit(4 + 5 / 12, "feet"),
  21733. weight: math.unit(90, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/cappu/front.svg",
  21737. extra: 1247 / 1152,
  21738. bottom: 0.012
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "Normal",
  21745. height: math.unit(4 + 5 / 12, "feet"),
  21746. default: true
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21752. {
  21753. frontDressed: {
  21754. height: math.unit(70, "cm"),
  21755. weight: math.unit(6, "kg"),
  21756. name: "Front (Dressed)",
  21757. image: {
  21758. source: "./media/characters/sebi/front-dressed.svg",
  21759. extra: 713.5 / 686.5,
  21760. bottom: 0.003
  21761. }
  21762. },
  21763. front: {
  21764. height: math.unit(70, "cm"),
  21765. weight: math.unit(5, "kg"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/sebi/front.svg",
  21769. extra: 713.5 / 686.5,
  21770. bottom: 0.003
  21771. }
  21772. }
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(70, "cm"),
  21778. default: true
  21779. },
  21780. {
  21781. name: "Macro",
  21782. height: math.unit(8, "meters")
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(6, "feet"),
  21791. weight: math.unit(150, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/typhek/front.svg",
  21795. extra: 1948 / 1929,
  21796. bottom: 0.025
  21797. }
  21798. },
  21799. side: {
  21800. height: math.unit(6, "feet"),
  21801. weight: math.unit(150, "lb"),
  21802. name: "Side",
  21803. image: {
  21804. source: "./media/characters/typhek/side.svg",
  21805. extra: 2034 / 2010,
  21806. bottom: 0.003
  21807. }
  21808. },
  21809. back: {
  21810. height: math.unit(6, "feet"),
  21811. weight: math.unit(150, "lb"),
  21812. name: "Back",
  21813. image: {
  21814. source: "./media/characters/typhek/back.svg",
  21815. extra: 2005 / 1978,
  21816. bottom: 0.004
  21817. }
  21818. },
  21819. palm: {
  21820. height: math.unit(1.2, "feet"),
  21821. name: "Palm",
  21822. image: {
  21823. source: "./media/characters/typhek/palm.svg"
  21824. }
  21825. },
  21826. fist: {
  21827. height: math.unit(1.1, "feet"),
  21828. name: "Fist",
  21829. image: {
  21830. source: "./media/characters/typhek/fist.svg"
  21831. }
  21832. },
  21833. foot: {
  21834. height: math.unit(1.57, "feet"),
  21835. name: "Foot",
  21836. image: {
  21837. source: "./media/characters/typhek/foot.svg"
  21838. }
  21839. },
  21840. sole: {
  21841. height: math.unit(2.05, "feet"),
  21842. name: "Sole",
  21843. image: {
  21844. source: "./media/characters/typhek/sole.svg"
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Macro",
  21851. height: math.unit(40, "stories"),
  21852. default: true
  21853. },
  21854. {
  21855. name: "Megamacro",
  21856. height: math.unit(1, "mile")
  21857. },
  21858. {
  21859. name: "Gigamacro",
  21860. height: math.unit(4000, "solarradii")
  21861. },
  21862. {
  21863. name: "Universal",
  21864. height: math.unit(1.1, "universes")
  21865. }
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21870. {
  21871. side: {
  21872. height: math.unit(5 + 7 / 12, "feet"),
  21873. weight: math.unit(150, "lb"),
  21874. name: "Side",
  21875. image: {
  21876. source: "./media/characters/kassy/side.svg",
  21877. extra: 1280 / 1225,
  21878. bottom: 0.002
  21879. }
  21880. },
  21881. front: {
  21882. height: math.unit(5 + 7 / 12, "feet"),
  21883. weight: math.unit(150, "lb"),
  21884. name: "Front",
  21885. image: {
  21886. source: "./media/characters/kassy/front.svg",
  21887. extra: 1280 / 1225,
  21888. bottom: 0.025
  21889. }
  21890. },
  21891. back: {
  21892. height: math.unit(5 + 7 / 12, "feet"),
  21893. weight: math.unit(150, "lb"),
  21894. name: "Back",
  21895. image: {
  21896. source: "./media/characters/kassy/back.svg",
  21897. extra: 1280 / 1225,
  21898. bottom: 0.002
  21899. }
  21900. },
  21901. foot: {
  21902. height: math.unit(1.266, "feet"),
  21903. name: "Foot",
  21904. image: {
  21905. source: "./media/characters/kassy/foot.svg"
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(5 + 7 / 12, "feet")
  21913. },
  21914. {
  21915. name: "Macro",
  21916. height: math.unit(137, "feet"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Megamacro",
  21921. height: math.unit(1, "mile")
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(6 + 1 / 12, "feet"),
  21930. weight: math.unit(200, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/neil/front.svg",
  21934. extra: 1326 / 1250,
  21935. bottom: 0.023
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(6 + 1 / 12, "feet"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Macro",
  21947. height: math.unit(200, "feet")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(5 + 9 / 12, "feet"),
  21956. weight: math.unit(190, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/atticus/front.svg",
  21960. extra: 2934 / 2785,
  21961. bottom: 0.025
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(5 + 9 / 12, "feet"),
  21969. default: true
  21970. },
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(180, "feet")
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21979. {
  21980. side: {
  21981. height: math.unit(9, "feet"),
  21982. weight: math.unit(650, "lb"),
  21983. name: "Side",
  21984. image: {
  21985. source: "./media/characters/milo/side.svg",
  21986. extra: 2644 / 2310,
  21987. bottom: 0.032
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(9, "feet"),
  21995. default: true
  21996. },
  21997. {
  21998. name: "Macro",
  21999. height: math.unit(300, "feet")
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22005. {
  22006. side: {
  22007. height: math.unit(8, "meters"),
  22008. weight: math.unit(90000, "kg"),
  22009. name: "Side",
  22010. image: {
  22011. source: "./media/characters/ijzer/side.svg",
  22012. extra: 2756 / 1600,
  22013. bottom: 0.01
  22014. }
  22015. },
  22016. },
  22017. [
  22018. {
  22019. name: "Small",
  22020. height: math.unit(3, "meters")
  22021. },
  22022. {
  22023. name: "Normal",
  22024. height: math.unit(8, "meters"),
  22025. default: true
  22026. },
  22027. {
  22028. name: "Normal+",
  22029. height: math.unit(10, "meters")
  22030. },
  22031. {
  22032. name: "Bigger",
  22033. height: math.unit(24, "meters")
  22034. },
  22035. {
  22036. name: "Huge",
  22037. height: math.unit(80, "meters")
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22043. {
  22044. front: {
  22045. height: math.unit(6 + 2 / 12, "feet"),
  22046. weight: math.unit(153, "lb"),
  22047. name: "Front",
  22048. image: {
  22049. source: "./media/characters/luca-cervicum/front.svg",
  22050. extra: 370 / 327,
  22051. bottom: 0.015
  22052. }
  22053. },
  22054. back: {
  22055. height: math.unit(6 + 2 / 12, "feet"),
  22056. weight: math.unit(153, "lb"),
  22057. name: "Back",
  22058. image: {
  22059. source: "./media/characters/luca-cervicum/back.svg",
  22060. extra: 367 / 333,
  22061. bottom: 0.005
  22062. }
  22063. },
  22064. frontGear: {
  22065. height: math.unit(6 + 2 / 12, "feet"),
  22066. weight: math.unit(173, "lb"),
  22067. name: "Front (Gear)",
  22068. image: {
  22069. source: "./media/characters/luca-cervicum/front-gear.svg",
  22070. extra: 377 / 333,
  22071. bottom: 0.006
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(6 + 2 / 12, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(6 + 1 / 12, "feet"),
  22088. weight: math.unit(304, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/oliver/front.svg",
  22092. extra: 157 / 143,
  22093. bottom: 0.08
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(6 + 1 / 12, "feet"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(5 + 7 / 12, "feet"),
  22110. weight: math.unit(140, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/shane/front.svg",
  22114. extra: 304 / 289,
  22115. bottom: 0.005
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(5 + 7 / 12, "feet"),
  22123. default: true
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22129. {
  22130. front: {
  22131. height: math.unit(5 + 9 / 12, "feet"),
  22132. weight: math.unit(178, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/shin/front.svg",
  22136. extra: 159 / 151,
  22137. bottom: 0.015
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(5 + 9 / 12, "feet"),
  22145. default: true
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(5 + 10 / 12, "feet"),
  22154. weight: math.unit(168, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/xerxes/front.svg",
  22158. extra: 282 / 260,
  22159. bottom: 0.045
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(5 + 10 / 12, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(6 + 7 / 12, "feet"),
  22176. weight: math.unit(208, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/chaska/front.svg",
  22180. extra: 332 / 319,
  22181. bottom: 0.015
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(6 + 7 / 12, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(5 + 8 / 12, "feet"),
  22198. weight: math.unit(208, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/enuk/front.svg",
  22202. extra: 437 / 406,
  22203. bottom: 0.02
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(5 + 8 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(5 + 10 / 12, "feet"),
  22220. weight: math.unit(252, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/bruun/front.svg",
  22224. extra: 197 / 187,
  22225. bottom: 0.012
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(5 + 10 / 12, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22239. {
  22240. front: {
  22241. height: math.unit(6 + 10 / 12, "feet"),
  22242. weight: math.unit(255, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/alexeev/front.svg",
  22246. extra: 213 / 200,
  22247. bottom: 0.05
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(6 + 10 / 12, "feet"),
  22255. default: true
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(2 + 8 / 12, "feet"),
  22264. weight: math.unit(22, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/evelyn/front.svg",
  22268. extra: 208 / 180
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(2 + 8 / 12, "feet"),
  22276. default: true
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(5 + 9 / 12, "feet"),
  22285. weight: math.unit(139, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/inca/front.svg",
  22289. extra: 294 / 291,
  22290. bottom: 0.03
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(5 + 9 / 12, "feet"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(6 + 3 / 12, "feet"),
  22307. weight: math.unit(185, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/mera/front.svg",
  22311. extra: 291 / 277,
  22312. bottom: 0.03
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(6 + 3 / 12, "feet"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(6 + 7 / 12, "feet"),
  22329. weight: math.unit(160, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/ceres/front.svg",
  22333. extra: 1023 / 950,
  22334. bottom: 0.027
  22335. }
  22336. },
  22337. back: {
  22338. height: math.unit(6 + 7 / 12, "feet"),
  22339. weight: math.unit(160, "lb"),
  22340. name: "Back",
  22341. image: {
  22342. source: "./media/characters/ceres/back.svg",
  22343. extra: 1023 / 950
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Normal",
  22350. height: math.unit(6 + 7 / 12, "feet"),
  22351. default: true
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(5 + 10 / 12, "feet"),
  22360. weight: math.unit(150, "lb"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/kris/front.svg",
  22364. extra: 885 / 803,
  22365. bottom: 0.03
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(5 + 10 / 12, "feet"),
  22373. default: true
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22379. {
  22380. dragon_front: {
  22381. height: math.unit(5, "feet"),
  22382. name: "Front",
  22383. image: {
  22384. source: "./media/characters/taluthus/dragon-front.svg",
  22385. extra: 1203/1098,
  22386. bottom: 46/1249
  22387. },
  22388. form: "dragon",
  22389. default: true
  22390. },
  22391. dragon_maw: {
  22392. height: math.unit(2.35, "feet"),
  22393. name: "Maw",
  22394. image: {
  22395. source: "./media/characters/taluthus/dragon-maw.svg"
  22396. },
  22397. form: "dragon",
  22398. },
  22399. kitsune_front: {
  22400. height: math.unit(7, "feet"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/taluthus/kitsune-front.svg",
  22404. extra: 900/841,
  22405. bottom: 65/965
  22406. },
  22407. form: "kitsune",
  22408. default: true
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(5, "feet"),
  22415. form: "dragon",
  22416. default: true,
  22417. },
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(7, "feet"),
  22421. form: "kitsune",
  22422. default: true
  22423. },
  22424. {
  22425. name: "Macro",
  22426. height: math.unit(300, "feet"),
  22427. allForms: true
  22428. },
  22429. ],
  22430. {
  22431. "dragon": {
  22432. name: "Dragon",
  22433. default: true
  22434. },
  22435. "kitsune": {
  22436. name: "Kitsune",
  22437. },
  22438. }
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(5 + 9 / 12, "feet"),
  22445. weight: math.unit(145, "lb"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/dawn/front.svg",
  22449. extra: 2094 / 2016,
  22450. bottom: 0.025
  22451. }
  22452. },
  22453. back: {
  22454. height: math.unit(5 + 9 / 12, "feet"),
  22455. weight: math.unit(160, "lb"),
  22456. name: "Back",
  22457. image: {
  22458. source: "./media/characters/dawn/back.svg",
  22459. extra: 2112 / 2080,
  22460. bottom: 0.005
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(6 + 7 / 12, "feet"),
  22468. default: true
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22474. {
  22475. anthro: {
  22476. height: math.unit(8 + 3 / 12, "feet"),
  22477. weight: math.unit(450, "lb"),
  22478. name: "Anthro",
  22479. image: {
  22480. source: "./media/characters/arador/anthro.svg",
  22481. extra: 1835 / 1718,
  22482. bottom: 0.025
  22483. }
  22484. },
  22485. feral: {
  22486. height: math.unit(4, "feet"),
  22487. weight: math.unit(200, "lb"),
  22488. name: "Feral",
  22489. image: {
  22490. source: "./media/characters/arador/feral.svg",
  22491. extra: 1683 / 1514,
  22492. bottom: 0.07
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(8 + 3 / 12, "feet")
  22500. },
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(82.5, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(5 + 10 / 12, "feet"),
  22513. weight: math.unit(125, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/dharsi/front.svg",
  22517. extra: 716 / 630,
  22518. bottom: 0.035
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Nano",
  22525. height: math.unit(100, "nm")
  22526. },
  22527. {
  22528. name: "Micro",
  22529. height: math.unit(2, "inches")
  22530. },
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(5 + 10 / 12, "feet"),
  22534. default: true
  22535. },
  22536. {
  22537. name: "Macro",
  22538. height: math.unit(1000, "feet")
  22539. },
  22540. {
  22541. name: "Megamacro",
  22542. height: math.unit(10, "miles")
  22543. },
  22544. {
  22545. name: "Gigamacro",
  22546. height: math.unit(3000, "miles")
  22547. },
  22548. {
  22549. name: "Teramacro",
  22550. height: math.unit(500000, "miles")
  22551. },
  22552. {
  22553. name: "Teramacro+",
  22554. height: math.unit(30, "galaxies")
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(6, "feet"),
  22563. weight: math.unit(150, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/deathy/front.svg",
  22567. extra: 1552 / 1463,
  22568. bottom: 0.025
  22569. }
  22570. },
  22571. side: {
  22572. height: math.unit(6, "feet"),
  22573. weight: math.unit(150, "lb"),
  22574. name: "Side",
  22575. image: {
  22576. source: "./media/characters/deathy/side.svg",
  22577. extra: 1604 / 1455,
  22578. bottom: 0.025
  22579. }
  22580. },
  22581. back: {
  22582. height: math.unit(6, "feet"),
  22583. weight: math.unit(150, "lb"),
  22584. name: "Back",
  22585. image: {
  22586. source: "./media/characters/deathy/back.svg",
  22587. extra: 1580 / 1463,
  22588. bottom: 0.005
  22589. }
  22590. },
  22591. },
  22592. [
  22593. {
  22594. name: "Micro",
  22595. height: math.unit(5, "millimeters")
  22596. },
  22597. {
  22598. name: "Normal",
  22599. height: math.unit(6 + 5 / 12, "feet"),
  22600. default: true
  22601. },
  22602. ]
  22603. ))
  22604. characterMakers.push(() => makeCharacter(
  22605. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22606. {
  22607. front: {
  22608. height: math.unit(16, "feet"),
  22609. weight: math.unit(4000, "lb"),
  22610. name: "Front",
  22611. image: {
  22612. source: "./media/characters/juniper/front.svg",
  22613. bottom: 0.04
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Normal",
  22620. height: math.unit(16, "feet"),
  22621. default: true
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22627. {
  22628. front: {
  22629. height: math.unit(6, "feet"),
  22630. weight: math.unit(150, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/hipster/front.svg",
  22634. extra: 1312 / 1209,
  22635. bottom: 0.025
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(6, "feet"),
  22640. weight: math.unit(150, "lb"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/hipster/back.svg",
  22644. extra: 1281 / 1196,
  22645. bottom: 0.01
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Micro",
  22652. height: math.unit(1, "mm")
  22653. },
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(4, "inches"),
  22657. default: true
  22658. },
  22659. {
  22660. name: "Macro",
  22661. height: math.unit(500, "feet")
  22662. },
  22663. {
  22664. name: "Megamacro",
  22665. height: math.unit(1000, "miles")
  22666. },
  22667. ]
  22668. ))
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22671. {
  22672. front: {
  22673. height: math.unit(6, "feet"),
  22674. weight: math.unit(150, "lb"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/tendirmuldr/front.svg",
  22678. extra: 1878 / 1772,
  22679. bottom: 0.015
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Megamacro",
  22686. height: math.unit(1500, "miles"),
  22687. default: true
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22693. {
  22694. front: {
  22695. height: math.unit(14, "feet"),
  22696. weight: math.unit(12000, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/mort/front.svg",
  22700. extra: 365 / 318,
  22701. bottom: 0.01
  22702. }
  22703. },
  22704. side: {
  22705. height: math.unit(14, "feet"),
  22706. weight: math.unit(12000, "lb"),
  22707. name: "Side",
  22708. image: {
  22709. source: "./media/characters/mort/side.svg",
  22710. extra: 365 / 318,
  22711. bottom: 0.052
  22712. },
  22713. default: true
  22714. },
  22715. back: {
  22716. height: math.unit(14, "feet"),
  22717. weight: math.unit(12000, "lb"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/mort/back.svg",
  22721. extra: 371 / 332,
  22722. bottom: 0.18
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(14, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22736. {
  22737. front: {
  22738. height: math.unit(8, "feet"),
  22739. weight: math.unit(1, "ton"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/lycoa/front.svg",
  22743. extra: 1836/1728,
  22744. bottom: 81/1917
  22745. }
  22746. },
  22747. back: {
  22748. height: math.unit(8, "feet"),
  22749. weight: math.unit(1, "ton"),
  22750. name: "Back",
  22751. image: {
  22752. source: "./media/characters/lycoa/back.svg",
  22753. extra: 1785/1720,
  22754. bottom: 91/1876
  22755. }
  22756. },
  22757. head: {
  22758. height: math.unit(1.6243, "feet"),
  22759. name: "Head",
  22760. image: {
  22761. source: "./media/characters/lycoa/head.svg",
  22762. extra: 1011/782,
  22763. bottom: 0/1011
  22764. }
  22765. },
  22766. tailmaw: {
  22767. height: math.unit(1.9, "feet"),
  22768. name: "Tailmaw",
  22769. image: {
  22770. source: "./media/characters/lycoa/tailmaw.svg"
  22771. }
  22772. },
  22773. tentacles: {
  22774. height: math.unit(2.1, "feet"),
  22775. name: "Tentacles",
  22776. image: {
  22777. source: "./media/characters/lycoa/tentacles.svg"
  22778. }
  22779. },
  22780. dick: {
  22781. height: math.unit(1.73, "feet"),
  22782. name: "Dick",
  22783. image: {
  22784. source: "./media/characters/lycoa/dick.svg"
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(8, "feet"),
  22792. default: true
  22793. },
  22794. {
  22795. name: "Macro",
  22796. height: math.unit(30, "feet")
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22802. {
  22803. front: {
  22804. height: math.unit(4 + 2 / 12, "feet"),
  22805. weight: math.unit(70, "lb"),
  22806. name: "Front",
  22807. image: {
  22808. source: "./media/characters/naldara/front.svg",
  22809. extra: 1664/1387,
  22810. bottom: 81/1745
  22811. },
  22812. form: "anthro",
  22813. default: true
  22814. },
  22815. naga: {
  22816. height: math.unit(20, "feet"),
  22817. weight: math.unit(15000, "kg"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/naldara/naga.svg",
  22821. extra: 1590/1396,
  22822. bottom: 285/1875
  22823. },
  22824. form: "naga",
  22825. default: true
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(4 + 2 / 12, "feet"),
  22832. form: "anthro",
  22833. default: true
  22834. },
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(20, "feet"),
  22838. form: "naga",
  22839. default: true
  22840. },
  22841. ],
  22842. {
  22843. "anthro": {
  22844. name: "Anthro",
  22845. default: true
  22846. },
  22847. "naga": {
  22848. name: "Naga"
  22849. }
  22850. }
  22851. ))
  22852. characterMakers.push(() => makeCharacter(
  22853. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22854. {
  22855. front: {
  22856. height: math.unit(13 + 7 / 12, "feet"),
  22857. weight: math.unit(1500, "lb"),
  22858. name: "Front",
  22859. image: {
  22860. source: "./media/characters/briar/front.svg",
  22861. extra: 1223/1157,
  22862. bottom: 123/1346
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Normal",
  22869. height: math.unit(13 + 7 / 12, "feet"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22876. {
  22877. side: {
  22878. height: math.unit(16, "feet"),
  22879. weight: math.unit(500, "lb"),
  22880. name: "Side",
  22881. image: {
  22882. source: "./media/characters/vanguard/side.svg",
  22883. extra: 1022/914,
  22884. bottom: 30/1052
  22885. }
  22886. },
  22887. sideAlt: {
  22888. height: math.unit(10, "feet"),
  22889. weight: math.unit(500, "lb"),
  22890. name: "Side (Alt)",
  22891. image: {
  22892. source: "./media/characters/vanguard/side-alt.svg",
  22893. extra: 502 / 425,
  22894. bottom: 0.087
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(17.71, "feet"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(7.5, "feet"),
  22911. weight: math.unit(2, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/artemis/work-safe-front.svg",
  22915. extra: 1192 / 1075,
  22916. bottom: 0.07
  22917. },
  22918. form: "work-safe",
  22919. default: true
  22920. },
  22921. frontNsfw: {
  22922. height: math.unit(7.5, "feet"),
  22923. weight: math.unit(2, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/artemis/calibrating-front.svg",
  22927. extra: 1192 / 1075,
  22928. bottom: 0.07
  22929. },
  22930. form: "calibrating",
  22931. default: true
  22932. },
  22933. frontNsfwer: {
  22934. height: math.unit(7.5, "feet"),
  22935. weight: math.unit(2, "lb"),
  22936. name: "Front",
  22937. image: {
  22938. source: "./media/characters/artemis/oversize-load-front.svg",
  22939. extra: 1192 / 1075,
  22940. bottom: 0.07
  22941. },
  22942. form: "oversize-load",
  22943. default: true
  22944. },
  22945. side: {
  22946. height: math.unit(7.5, "feet"),
  22947. weight: math.unit(2, "lb"),
  22948. name: "Side",
  22949. image: {
  22950. source: "./media/characters/artemis/work-safe-side.svg",
  22951. extra: 1192 / 1075,
  22952. bottom: 0.07
  22953. },
  22954. form: "work-safe"
  22955. },
  22956. sideNsfw: {
  22957. height: math.unit(7.5, "feet"),
  22958. weight: math.unit(2, "lb"),
  22959. name: "Side",
  22960. image: {
  22961. source: "./media/characters/artemis/calibrating-side.svg",
  22962. extra: 1192 / 1075,
  22963. bottom: 0.07
  22964. },
  22965. form: "calibrating"
  22966. },
  22967. sideNsfwer: {
  22968. height: math.unit(7.5, "feet"),
  22969. weight: math.unit(2, "lb"),
  22970. name: "Side",
  22971. image: {
  22972. source: "./media/characters/artemis/oversize-load-side.svg",
  22973. extra: 1192 / 1075,
  22974. bottom: 0.07
  22975. },
  22976. form: "oversize-load"
  22977. },
  22978. maw: {
  22979. height: math.unit(1.1, "feet"),
  22980. name: "Maw",
  22981. image: {
  22982. source: "./media/characters/artemis/maw.svg"
  22983. },
  22984. form: "work-safe"
  22985. },
  22986. stomach: {
  22987. height: math.unit(0.95, "feet"),
  22988. name: "Stomach",
  22989. image: {
  22990. source: "./media/characters/artemis/stomach.svg"
  22991. },
  22992. form: "work-safe"
  22993. },
  22994. dickCanine: {
  22995. height: math.unit(1, "feet"),
  22996. name: "Dick (Canine)",
  22997. image: {
  22998. source: "./media/characters/artemis/dick-canine.svg"
  22999. },
  23000. form: "calibrating"
  23001. },
  23002. dickEquine: {
  23003. height: math.unit(0.85, "feet"),
  23004. name: "Dick (Equine)",
  23005. image: {
  23006. source: "./media/characters/artemis/dick-equine.svg"
  23007. },
  23008. form: "calibrating"
  23009. },
  23010. dickExotic: {
  23011. height: math.unit(0.85, "feet"),
  23012. name: "Dick (Exotic)",
  23013. image: {
  23014. source: "./media/characters/artemis/dick-exotic.svg"
  23015. },
  23016. form: "calibrating"
  23017. },
  23018. dickCanineBigger: {
  23019. height: math.unit(1 * 1.33, "feet"),
  23020. name: "Dick (Canine)",
  23021. image: {
  23022. source: "./media/characters/artemis/dick-canine.svg"
  23023. },
  23024. form: "oversize-load"
  23025. },
  23026. dickEquineBigger: {
  23027. height: math.unit(0.85 * 1.33, "feet"),
  23028. name: "Dick (Equine)",
  23029. image: {
  23030. source: "./media/characters/artemis/dick-equine.svg"
  23031. },
  23032. form: "oversize-load"
  23033. },
  23034. dickExoticBigger: {
  23035. height: math.unit(0.85 * 1.33, "feet"),
  23036. name: "Dick (Exotic)",
  23037. image: {
  23038. source: "./media/characters/artemis/dick-exotic.svg"
  23039. },
  23040. form: "oversize-load"
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(7.5, "feet"),
  23047. form: "work-safe",
  23048. default: true
  23049. },
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(7.5, "feet"),
  23053. form: "calibrating",
  23054. default: true
  23055. },
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(7.5, "feet"),
  23059. form: "oversize-load",
  23060. default: true
  23061. },
  23062. {
  23063. name: "Enlarged",
  23064. height: math.unit(12, "feet"),
  23065. form: "work-safe",
  23066. },
  23067. {
  23068. name: "Enlarged",
  23069. height: math.unit(12, "feet"),
  23070. form: "calibrating",
  23071. },
  23072. {
  23073. name: "Enlarged",
  23074. height: math.unit(12, "feet"),
  23075. form: "oversize-load",
  23076. },
  23077. ],
  23078. {
  23079. "work-safe": {
  23080. name: "Work-Safe",
  23081. default: true
  23082. },
  23083. "calibrating": {
  23084. name: "Calibrating"
  23085. },
  23086. "oversize-load": {
  23087. name: "Oversize Load"
  23088. }
  23089. }
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(5 + 3 / 12, "feet"),
  23096. weight: math.unit(160, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/kira/front.svg",
  23100. extra: 906 / 786,
  23101. bottom: 0.01
  23102. }
  23103. },
  23104. back: {
  23105. height: math.unit(5 + 3 / 12, "feet"),
  23106. weight: math.unit(160, "lb"),
  23107. name: "Back",
  23108. image: {
  23109. source: "./media/characters/kira/back.svg",
  23110. extra: 882 / 757,
  23111. bottom: 0.005
  23112. }
  23113. },
  23114. frontDressed: {
  23115. height: math.unit(5 + 3 / 12, "feet"),
  23116. weight: math.unit(160, "lb"),
  23117. name: "Front (Dressed)",
  23118. image: {
  23119. source: "./media/characters/kira/front-dressed.svg",
  23120. extra: 906 / 786,
  23121. bottom: 0.01
  23122. }
  23123. },
  23124. beans: {
  23125. height: math.unit(0.92, "feet"),
  23126. name: "Beans",
  23127. image: {
  23128. source: "./media/characters/kira/beans.svg"
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(5 + 3 / 12, "feet"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(5 + 4 / 12, "feet"),
  23145. weight: math.unit(145, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/scramble/front.svg",
  23149. extra: 763 / 727,
  23150. bottom: 0.05
  23151. }
  23152. },
  23153. back: {
  23154. height: math.unit(5 + 4 / 12, "feet"),
  23155. weight: math.unit(145, "lb"),
  23156. name: "Back",
  23157. image: {
  23158. source: "./media/characters/scramble/back.svg",
  23159. extra: 826 / 737,
  23160. bottom: 0.002
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(5 + 4 / 12, "feet"),
  23168. default: true
  23169. },
  23170. ]
  23171. ))
  23172. characterMakers.push(() => makeCharacter(
  23173. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23174. {
  23175. side: {
  23176. height: math.unit(6 + 2 / 12, "feet"),
  23177. weight: math.unit(190, "lb"),
  23178. name: "Side",
  23179. image: {
  23180. source: "./media/characters/biscuit/side.svg",
  23181. extra: 858 / 791,
  23182. bottom: 0.044
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Normal",
  23189. height: math.unit(6 + 2 / 12, "feet"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(5 + 2 / 12, "feet"),
  23199. weight: math.unit(120, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/poffin/front.svg",
  23203. extra: 786 / 680,
  23204. bottom: 0.005
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(5 + 2 / 12, "feet"),
  23212. default: true
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23218. {
  23219. front: {
  23220. height: math.unit(6 + 3 / 12, "feet"),
  23221. weight: math.unit(519, "lb"),
  23222. name: "Front",
  23223. image: {
  23224. source: "./media/characters/dhari/front.svg",
  23225. extra: 1048 / 946,
  23226. bottom: 0.015
  23227. }
  23228. },
  23229. back: {
  23230. height: math.unit(6 + 3 / 12, "feet"),
  23231. weight: math.unit(519, "lb"),
  23232. name: "Back",
  23233. image: {
  23234. source: "./media/characters/dhari/back.svg",
  23235. extra: 1048 / 931,
  23236. bottom: 0.005
  23237. }
  23238. },
  23239. frontDressed: {
  23240. height: math.unit(6 + 3 / 12, "feet"),
  23241. weight: math.unit(519, "lb"),
  23242. name: "Front (Dressed)",
  23243. image: {
  23244. source: "./media/characters/dhari/front-dressed.svg",
  23245. extra: 1713 / 1546,
  23246. bottom: 0.02
  23247. }
  23248. },
  23249. backDressed: {
  23250. height: math.unit(6 + 3 / 12, "feet"),
  23251. weight: math.unit(519, "lb"),
  23252. name: "Back (Dressed)",
  23253. image: {
  23254. source: "./media/characters/dhari/back-dressed.svg",
  23255. extra: 1699 / 1537,
  23256. bottom: 0.01
  23257. }
  23258. },
  23259. maw: {
  23260. height: math.unit(0.95, "feet"),
  23261. name: "Maw",
  23262. image: {
  23263. source: "./media/characters/dhari/maw.svg"
  23264. }
  23265. },
  23266. wereFront: {
  23267. height: math.unit(12 + 8 / 12, "feet"),
  23268. weight: math.unit(4000, "lb"),
  23269. name: "Front (Were)",
  23270. image: {
  23271. source: "./media/characters/dhari/were-front.svg",
  23272. extra: 1065 / 969,
  23273. bottom: 0.015
  23274. }
  23275. },
  23276. wereBack: {
  23277. height: math.unit(12 + 8 / 12, "feet"),
  23278. weight: math.unit(4000, "lb"),
  23279. name: "Back (Were)",
  23280. image: {
  23281. source: "./media/characters/dhari/were-back.svg",
  23282. extra: 1065 / 969,
  23283. bottom: 0.012
  23284. }
  23285. },
  23286. wereMaw: {
  23287. height: math.unit(0.625, "meters"),
  23288. name: "Maw (Were)",
  23289. image: {
  23290. source: "./media/characters/dhari/were-maw.svg"
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(6 + 3 / 12, "feet"),
  23298. default: true
  23299. },
  23300. ]
  23301. ))
  23302. characterMakers.push(() => makeCharacter(
  23303. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23304. {
  23305. anthro: {
  23306. height: math.unit(5 + 7 / 12, "feet"),
  23307. weight: math.unit(175, "lb"),
  23308. name: "Anthro",
  23309. image: {
  23310. source: "./media/characters/rena-dyne/anthro.svg",
  23311. extra: 1849 / 1785,
  23312. bottom: 0.005
  23313. }
  23314. },
  23315. taur: {
  23316. height: math.unit(15 + 6 / 12, "feet"),
  23317. weight: math.unit(8000, "lb"),
  23318. name: "Taur",
  23319. image: {
  23320. source: "./media/characters/rena-dyne/taur.svg",
  23321. extra: 2315 / 2234,
  23322. bottom: 0.033
  23323. }
  23324. },
  23325. },
  23326. [
  23327. {
  23328. name: "Normal",
  23329. height: math.unit(5 + 7 / 12, "feet"),
  23330. default: true
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23336. {
  23337. front: {
  23338. height: math.unit(8, "feet"),
  23339. weight: math.unit(600, "lb"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/weremeep/front.svg",
  23343. extra: 970/849,
  23344. bottom: 7/977
  23345. }
  23346. },
  23347. },
  23348. [
  23349. {
  23350. name: "Normal",
  23351. height: math.unit(8, "feet"),
  23352. default: true
  23353. },
  23354. {
  23355. name: "Lorg",
  23356. height: math.unit(12, "feet")
  23357. },
  23358. {
  23359. name: "Oh Lawd She Comin'",
  23360. height: math.unit(20, "feet")
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23366. {
  23367. front: {
  23368. height: math.unit(4, "feet"),
  23369. weight: math.unit(90, "lb"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/reza/front.svg",
  23373. extra: 1183 / 1111,
  23374. bottom: 0.017
  23375. }
  23376. },
  23377. back: {
  23378. height: math.unit(4, "feet"),
  23379. weight: math.unit(90, "lb"),
  23380. name: "Back",
  23381. image: {
  23382. source: "./media/characters/reza/back.svg",
  23383. extra: 1183 / 1111,
  23384. bottom: 0.01
  23385. }
  23386. },
  23387. drake: {
  23388. height: math.unit(30, "feet"),
  23389. weight: math.unit(246960, "lb"),
  23390. name: "Drake",
  23391. image: {
  23392. source: "./media/characters/reza/drake.svg",
  23393. extra: 2350 / 2024,
  23394. bottom: 60.7 / 2403
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(4, "feet"),
  23402. default: true
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23408. {
  23409. side: {
  23410. height: math.unit(15, "feet"),
  23411. weight: math.unit(14, "tons"),
  23412. name: "Side",
  23413. image: {
  23414. source: "./media/characters/athea/side.svg",
  23415. extra: 960 / 540,
  23416. bottom: 0.003
  23417. }
  23418. },
  23419. sitting: {
  23420. height: math.unit(6 * 2.85, "feet"),
  23421. weight: math.unit(14, "tons"),
  23422. name: "Sitting",
  23423. image: {
  23424. source: "./media/characters/athea/sitting.svg",
  23425. extra: 621 / 581,
  23426. bottom: 0.075
  23427. }
  23428. },
  23429. maw: {
  23430. height: math.unit(7.59498031496063, "feet"),
  23431. name: "Maw",
  23432. image: {
  23433. source: "./media/characters/athea/maw.svg"
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Lap Cat",
  23440. height: math.unit(2.5, "feet")
  23441. },
  23442. {
  23443. name: "Minimacro",
  23444. height: math.unit(15, "feet"),
  23445. default: true
  23446. },
  23447. {
  23448. name: "Macro",
  23449. height: math.unit(120, "feet")
  23450. },
  23451. {
  23452. name: "Macro+",
  23453. height: math.unit(640, "feet")
  23454. },
  23455. {
  23456. name: "Colossus",
  23457. height: math.unit(2.2, "miles")
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23463. {
  23464. front: {
  23465. height: math.unit(8 + 8 / 12, "feet"),
  23466. weight: math.unit(130, "kg"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/seroko/front.svg",
  23470. extra: 1385 / 1280,
  23471. bottom: 0.025
  23472. }
  23473. },
  23474. back: {
  23475. height: math.unit(8 + 8 / 12, "feet"),
  23476. weight: math.unit(130, "kg"),
  23477. name: "Back",
  23478. image: {
  23479. source: "./media/characters/seroko/back.svg",
  23480. extra: 1369 / 1238,
  23481. bottom: 0.018
  23482. }
  23483. },
  23484. frontDressed: {
  23485. height: math.unit(8 + 8 / 12, "feet"),
  23486. weight: math.unit(130, "kg"),
  23487. name: "Front (Dressed)",
  23488. image: {
  23489. source: "./media/characters/seroko/front-dressed.svg",
  23490. extra: 1366 / 1275,
  23491. bottom: 0.03
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(8 + 8 / 12, "feet"),
  23499. default: true
  23500. },
  23501. ]
  23502. ))
  23503. characterMakers.push(() => makeCharacter(
  23504. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23505. {
  23506. front: {
  23507. height: math.unit(5.5, "feet"),
  23508. weight: math.unit(160, "lb"),
  23509. name: "Front",
  23510. image: {
  23511. source: "./media/characters/quatzi/front.svg",
  23512. extra: 2346 / 2242,
  23513. bottom: 0.015
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Normal",
  23520. height: math.unit(5.5, "feet"),
  23521. default: true
  23522. },
  23523. {
  23524. name: "Big",
  23525. height: math.unit(7.7, "feet")
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23531. {
  23532. front: {
  23533. height: math.unit(5 + 11 / 12, "feet"),
  23534. weight: math.unit(180, "lb"),
  23535. name: "Front",
  23536. image: {
  23537. source: "./media/characters/sen/front.svg",
  23538. extra: 1321 / 1254,
  23539. bottom: 0.015
  23540. }
  23541. },
  23542. side: {
  23543. height: math.unit(5 + 11 / 12, "feet"),
  23544. weight: math.unit(180, "lb"),
  23545. name: "Side",
  23546. image: {
  23547. source: "./media/characters/sen/side.svg",
  23548. extra: 1321 / 1254,
  23549. bottom: 0.007
  23550. }
  23551. },
  23552. back: {
  23553. height: math.unit(5 + 11 / 12, "feet"),
  23554. weight: math.unit(180, "lb"),
  23555. name: "Back",
  23556. image: {
  23557. source: "./media/characters/sen/back.svg",
  23558. extra: 1321 / 1254
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(5 + 11 / 12, "feet"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23572. {
  23573. front: {
  23574. height: math.unit(166.6, "cm"),
  23575. weight: math.unit(66.6, "kg"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/fruity/front.svg",
  23579. extra: 1510 / 1386,
  23580. bottom: 0.04
  23581. }
  23582. },
  23583. back: {
  23584. height: math.unit(166.6, "cm"),
  23585. weight: math.unit(66.6, "lb"),
  23586. name: "Back",
  23587. image: {
  23588. source: "./media/characters/fruity/back.svg",
  23589. extra: 1563 / 1435,
  23590. bottom: 0.005
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(166.6, "cm"),
  23598. default: true
  23599. },
  23600. {
  23601. name: "Demonic",
  23602. height: math.unit(166.6, "feet")
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23608. {
  23609. side: {
  23610. height: math.unit(10, "feet"),
  23611. weight: math.unit(500, "lb"),
  23612. name: "Side",
  23613. image: {
  23614. source: "./media/characters/zost/side.svg",
  23615. extra: 2870/2533,
  23616. bottom: 252/3122
  23617. }
  23618. },
  23619. mawFront: {
  23620. height: math.unit(1.08, "meters"),
  23621. name: "Maw (Front)",
  23622. image: {
  23623. source: "./media/characters/zost/maw-front.svg"
  23624. }
  23625. },
  23626. mawSide: {
  23627. height: math.unit(2.66, "feet"),
  23628. name: "Maw (Side)",
  23629. image: {
  23630. source: "./media/characters/zost/maw-side.svg"
  23631. }
  23632. },
  23633. wingspan: {
  23634. height: math.unit(7.4, "feet"),
  23635. name: "Wingspan",
  23636. image: {
  23637. source: "./media/characters/zost/wingspan.svg"
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(10, "feet"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(5 + 4 / 12, "feet"),
  23654. weight: math.unit(120, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/luci/front.svg",
  23658. extra: 1985 / 1884,
  23659. bottom: 0.04
  23660. }
  23661. },
  23662. back: {
  23663. height: math.unit(5 + 4 / 12, "feet"),
  23664. weight: math.unit(120, "lb"),
  23665. name: "Back",
  23666. image: {
  23667. source: "./media/characters/luci/back.svg",
  23668. extra: 1892 / 1791,
  23669. bottom: 0.002
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(5 + 4 / 12, "feet"),
  23677. default: true
  23678. },
  23679. ]
  23680. ))
  23681. characterMakers.push(() => makeCharacter(
  23682. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23683. {
  23684. front: {
  23685. height: math.unit(1500, "feet"),
  23686. weight: math.unit(3.8e6, "tons"),
  23687. name: "Front",
  23688. image: {
  23689. source: "./media/characters/2th/front.svg",
  23690. extra: 3489 / 3350,
  23691. bottom: 0.1
  23692. }
  23693. },
  23694. foot: {
  23695. height: math.unit(461, "feet"),
  23696. name: "Foot",
  23697. image: {
  23698. source: "./media/characters/2th/foot.svg"
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "\"Micro\"",
  23705. height: math.unit(15 + 7 / 12, "feet")
  23706. },
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(1500, "feet"),
  23710. default: true
  23711. },
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(5000, "feet")
  23715. },
  23716. {
  23717. name: "Megamacro",
  23718. height: math.unit(15, "miles")
  23719. },
  23720. {
  23721. name: "Gigamacro",
  23722. height: math.unit(4000, "miles")
  23723. },
  23724. {
  23725. name: "Galactic",
  23726. height: math.unit(50, "AU")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(5 + 6 / 12, "feet"),
  23735. weight: math.unit(220, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/amethyst/front.svg",
  23739. extra: 2078 / 2040,
  23740. bottom: 0.045
  23741. }
  23742. },
  23743. back: {
  23744. height: math.unit(5 + 6 / 12, "feet"),
  23745. weight: math.unit(220, "lb"),
  23746. name: "Back",
  23747. image: {
  23748. source: "./media/characters/amethyst/back.svg",
  23749. extra: 2021 / 1989,
  23750. bottom: 0.02
  23751. }
  23752. },
  23753. },
  23754. [
  23755. {
  23756. name: "Normal",
  23757. height: math.unit(5 + 6 / 12, "feet"),
  23758. default: true
  23759. },
  23760. ]
  23761. ))
  23762. characterMakers.push(() => makeCharacter(
  23763. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23764. {
  23765. front: {
  23766. height: math.unit(4 + 11 / 12, "feet"),
  23767. weight: math.unit(120, "lb"),
  23768. name: "Front",
  23769. image: {
  23770. source: "./media/characters/yumi-akiyama/front.svg",
  23771. extra: 2638/2432,
  23772. bottom: 70/2708
  23773. }
  23774. },
  23775. back: {
  23776. height: math.unit(4 + 11 / 12, "feet"),
  23777. weight: math.unit(120, "lb"),
  23778. name: "Back",
  23779. image: {
  23780. source: "./media/characters/yumi-akiyama/back.svg",
  23781. extra: 2502/2397,
  23782. bottom: 80/2582
  23783. }
  23784. },
  23785. casual: {
  23786. height: math.unit(4 + 11 / 12, "feet"),
  23787. weight: math.unit(120, "lb"),
  23788. name: "Casual",
  23789. image: {
  23790. source: "./media/characters/yumi-akiyama/casual.svg",
  23791. extra: 958/887,
  23792. bottom: 41/999
  23793. }
  23794. },
  23795. jammies: {
  23796. height: math.unit(4 + 11 / 12, "feet"),
  23797. weight: math.unit(120, "lb"),
  23798. name: "Jammies",
  23799. image: {
  23800. source: "./media/characters/yumi-akiyama/jammies.svg",
  23801. extra: 958/894,
  23802. bottom: 37/995
  23803. }
  23804. },
  23805. warmWeather: {
  23806. height: math.unit(4 + 11 / 12, "feet"),
  23807. weight: math.unit(120, "lb"),
  23808. name: "Warm Weather",
  23809. image: {
  23810. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23811. extra: 929/865,
  23812. bottom: 76/1005
  23813. }
  23814. },
  23815. mouth: {
  23816. height: math.unit(0.35, "feet"),
  23817. name: "Mouth",
  23818. image: {
  23819. source: "./media/characters/yumi-akiyama/mouth.svg"
  23820. }
  23821. },
  23822. paws: {
  23823. height: math.unit(1.05, "feet"),
  23824. name: "Paws",
  23825. image: {
  23826. source: "./media/characters/yumi-akiyama/paws.svg"
  23827. }
  23828. },
  23829. cockRing: {
  23830. height: math.unit(0.225, "feet"),
  23831. name: "Cock Ring",
  23832. image: {
  23833. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Galactic",
  23840. height: math.unit(50, "galaxies"),
  23841. default: true
  23842. },
  23843. {
  23844. name: "Universal",
  23845. height: math.unit(100, "universes")
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(8, "feet"),
  23854. weight: math.unit(500, "lb"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/rifter-yrmori/front.svg",
  23858. extra: 1180 / 1125,
  23859. bottom: 0.02
  23860. }
  23861. },
  23862. back: {
  23863. height: math.unit(8, "feet"),
  23864. weight: math.unit(500, "lb"),
  23865. name: "Back",
  23866. image: {
  23867. source: "./media/characters/rifter-yrmori/back.svg",
  23868. extra: 1190 / 1145,
  23869. bottom: 0.001
  23870. }
  23871. },
  23872. wings: {
  23873. height: math.unit(7.75, "feet"),
  23874. weight: math.unit(500, "lb"),
  23875. name: "Wings",
  23876. image: {
  23877. source: "./media/characters/rifter-yrmori/wings.svg",
  23878. extra: 1357 / 1285
  23879. }
  23880. },
  23881. maw: {
  23882. height: math.unit(0.8, "feet"),
  23883. name: "Maw",
  23884. image: {
  23885. source: "./media/characters/rifter-yrmori/maw.svg"
  23886. }
  23887. },
  23888. mawfront: {
  23889. height: math.unit(1.45, "feet"),
  23890. name: "Maw (Front)",
  23891. image: {
  23892. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(8, "feet"),
  23900. default: true
  23901. },
  23902. {
  23903. name: "Macro",
  23904. height: math.unit(42, "meters")
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23910. {
  23911. were: {
  23912. height: math.unit(25 + 6 / 12, "feet"),
  23913. weight: math.unit(10000, "lb"),
  23914. name: "Were",
  23915. image: {
  23916. source: "./media/characters/tahajin/were.svg",
  23917. extra: 801 / 770,
  23918. bottom: 0.042
  23919. }
  23920. },
  23921. aquatic: {
  23922. height: math.unit(6 + 4 / 12, "feet"),
  23923. weight: math.unit(160, "lb"),
  23924. name: "Aquatic",
  23925. image: {
  23926. source: "./media/characters/tahajin/aquatic.svg",
  23927. extra: 572 / 542,
  23928. bottom: 0.04
  23929. }
  23930. },
  23931. chow: {
  23932. height: math.unit(8 + 11 / 12, "feet"),
  23933. weight: math.unit(450, "lb"),
  23934. name: "Chow",
  23935. image: {
  23936. source: "./media/characters/tahajin/chow.svg",
  23937. extra: 660 / 640,
  23938. bottom: 0.015
  23939. }
  23940. },
  23941. demiNaga: {
  23942. height: math.unit(6 + 8 / 12, "feet"),
  23943. weight: math.unit(300, "lb"),
  23944. name: "Demi Naga",
  23945. image: {
  23946. source: "./media/characters/tahajin/demi-naga.svg",
  23947. extra: 643 / 615,
  23948. bottom: 0.1
  23949. }
  23950. },
  23951. data: {
  23952. height: math.unit(5, "inches"),
  23953. weight: math.unit(0.1, "lb"),
  23954. name: "Data",
  23955. image: {
  23956. source: "./media/characters/tahajin/data.svg"
  23957. }
  23958. },
  23959. fluu: {
  23960. height: math.unit(5 + 7 / 12, "feet"),
  23961. weight: math.unit(140, "lb"),
  23962. name: "Fluu",
  23963. image: {
  23964. source: "./media/characters/tahajin/fluu.svg",
  23965. extra: 628 / 592,
  23966. bottom: 0.02
  23967. }
  23968. },
  23969. starWarrior: {
  23970. height: math.unit(4 + 5 / 12, "feet"),
  23971. weight: math.unit(50, "lb"),
  23972. name: "Star Warrior",
  23973. image: {
  23974. source: "./media/characters/tahajin/star-warrior.svg"
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(25 + 6 / 12, "feet"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(8, "feet"),
  23991. weight: math.unit(350, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/gabira/front.svg",
  23995. extra: 1261/1154,
  23996. bottom: 51/1312
  23997. }
  23998. },
  23999. back: {
  24000. height: math.unit(8, "feet"),
  24001. weight: math.unit(350, "lb"),
  24002. name: "Back",
  24003. image: {
  24004. source: "./media/characters/gabira/back.svg",
  24005. extra: 1265/1163,
  24006. bottom: 46/1311
  24007. }
  24008. },
  24009. head: {
  24010. height: math.unit(2.85, "feet"),
  24011. name: "Head",
  24012. image: {
  24013. source: "./media/characters/gabira/head.svg"
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Normal",
  24020. height: math.unit(8, "feet"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(5 + 3 / 12, "feet"),
  24030. weight: math.unit(137, "lb"),
  24031. name: "Front",
  24032. image: {
  24033. source: "./media/characters/sasha-katraine/front.svg",
  24034. extra: 1745/1694,
  24035. bottom: 37/1782
  24036. }
  24037. },
  24038. back: {
  24039. height: math.unit(5 + 3 / 12, "feet"),
  24040. weight: math.unit(137, "lb"),
  24041. name: "Back",
  24042. image: {
  24043. source: "./media/characters/sasha-katraine/back.svg",
  24044. extra: 1776/1699,
  24045. bottom: 26/1802
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Micro",
  24052. height: math.unit(5, "inches")
  24053. },
  24054. {
  24055. name: "Normal",
  24056. height: math.unit(5 + 3 / 12, "feet"),
  24057. default: true
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24063. {
  24064. side: {
  24065. height: math.unit(4, "inches"),
  24066. weight: math.unit(200, "grams"),
  24067. name: "Side",
  24068. image: {
  24069. source: "./media/characters/der/side.svg",
  24070. extra: 719 / 400,
  24071. bottom: 30.6 / 749.9187
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Micro",
  24078. height: math.unit(4, "inches"),
  24079. default: true
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24085. {
  24086. side: {
  24087. height: math.unit(30, "meters"),
  24088. weight: math.unit(700, "tonnes"),
  24089. name: "Side",
  24090. image: {
  24091. source: "./media/characters/fixerdragon/side.svg",
  24092. extra: (1293.0514 - 116.03) / 1106.86,
  24093. bottom: 116.03 / 1293.0514
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Planck",
  24100. height: math.unit(1.6e-35, "meters")
  24101. },
  24102. {
  24103. name: "Micro",
  24104. height: math.unit(0.4, "meters")
  24105. },
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(30, "meters"),
  24109. default: true
  24110. },
  24111. {
  24112. name: "Megamacro",
  24113. height: math.unit(1.2, "megameters")
  24114. },
  24115. {
  24116. name: "Teramacro",
  24117. height: math.unit(130, "terameters")
  24118. },
  24119. {
  24120. name: "Yottamacro",
  24121. height: math.unit(6200, "yottameters")
  24122. },
  24123. ]
  24124. ));
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(8, "feet"),
  24130. weight: math.unit(250, "lb"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/kite/front.svg",
  24134. extra: 2796 / 2659,
  24135. bottom: 0.002
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(8, "feet"),
  24143. default: true
  24144. },
  24145. {
  24146. name: "Macro",
  24147. height: math.unit(360, "feet")
  24148. },
  24149. {
  24150. name: "Megamacro",
  24151. height: math.unit(1500, "feet")
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24157. {
  24158. anthro_front: {
  24159. height: math.unit(5 + 11/12, "feet"),
  24160. weight: math.unit(170, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24164. extra: 1735/1585,
  24165. bottom: 96/1831
  24166. },
  24167. form: "anthro",
  24168. default: true
  24169. },
  24170. anthro_back: {
  24171. height: math.unit(5 + 11/12, "feet"),
  24172. weight: math.unit(170, "lb"),
  24173. name: "Back",
  24174. image: {
  24175. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24176. extra: 1749/1607,
  24177. bottom: 28/1777
  24178. },
  24179. form: "anthro"
  24180. },
  24181. anthro_male: {
  24182. height: math.unit(5 + 11/12, "feet"),
  24183. weight: math.unit(170, "lb"),
  24184. name: "Male",
  24185. image: {
  24186. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24187. extra: 1855/1713,
  24188. bottom: 63/1918
  24189. },
  24190. form: "anthro"
  24191. },
  24192. taur_front: {
  24193. height: math.unit(5 + 7/12, "feet"),
  24194. weight: math.unit(170, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24198. extra: 1151/1059,
  24199. bottom: 356/1507
  24200. },
  24201. form: "taur",
  24202. default: true
  24203. },
  24204. anthro_frontDressed: {
  24205. height: math.unit(5 + 11/12, "feet"),
  24206. weight: math.unit(170, "lb"),
  24207. name: "Front (Dressed)",
  24208. image: {
  24209. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24210. extra: 1735/1585,
  24211. bottom: 96/1831
  24212. },
  24213. form: "anthro"
  24214. },
  24215. anthro_backDressed: {
  24216. height: math.unit(5 + 11/12, "feet"),
  24217. weight: math.unit(170, "lb"),
  24218. name: "Back (Dressed)",
  24219. image: {
  24220. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24221. extra: 1749/1607,
  24222. bottom: 28/1777
  24223. },
  24224. form: "anthro"
  24225. },
  24226. anthro_maleDressed: {
  24227. height: math.unit(5 + 11/12, "feet"),
  24228. weight: math.unit(170, "lb"),
  24229. name: "Male (Dressed)",
  24230. image: {
  24231. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24232. extra: 1855/1713,
  24233. bottom: 63/1918
  24234. },
  24235. form: "anthro"
  24236. },
  24237. taur_frontDressed: {
  24238. height: math.unit(5 + 7/12, "feet"),
  24239. weight: math.unit(170, "lb"),
  24240. name: "Front (Dressed)",
  24241. image: {
  24242. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24243. extra: 1151/1059,
  24244. bottom: 356/1507
  24245. },
  24246. form: "taur"
  24247. },
  24248. maw: {
  24249. height: math.unit(1.46, "feet"),
  24250. name: "Maw",
  24251. image: {
  24252. source: "./media/characters/poojawa-vynar/maw.svg"
  24253. },
  24254. allForms: true
  24255. },
  24256. head: {
  24257. height: math.unit(2.34, "feet"),
  24258. name: "Head",
  24259. image: {
  24260. source: "./media/characters/poojawa-vynar/head.svg"
  24261. },
  24262. allForms: true
  24263. },
  24264. leftPaw: {
  24265. height: math.unit(1.72, "feet"),
  24266. name: "Left Paw",
  24267. image: {
  24268. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24269. },
  24270. allForms: true
  24271. },
  24272. rightPaw: {
  24273. height: math.unit(1.61, "feet"),
  24274. name: "Right Paw",
  24275. image: {
  24276. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24277. },
  24278. allForms: true
  24279. },
  24280. toering: {
  24281. height: math.unit(2.9, "inches"),
  24282. name: "Toering",
  24283. image: {
  24284. source: "./media/characters/poojawa-vynar/toering.svg"
  24285. },
  24286. allForms: true
  24287. },
  24288. shaft: {
  24289. height: math.unit(0.625, "feet"),
  24290. name: "Shaft",
  24291. image: {
  24292. source: "./media/characters/poojawa-vynar/shaft.svg"
  24293. },
  24294. allForms: true
  24295. },
  24296. spade: {
  24297. height: math.unit(0.42, "feet"),
  24298. name: "Spade",
  24299. image: {
  24300. source: "./media/characters/poojawa-vynar/spade.svg"
  24301. },
  24302. allForms: true
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Shortstack",
  24308. height: math.unit(4, "feet"),
  24309. form: "anthro"
  24310. },
  24311. {
  24312. name: "Normal",
  24313. height: math.unit(5 + 11 / 12, "feet"),
  24314. form: "anthro",
  24315. default: true
  24316. },
  24317. {
  24318. name: "Tauric",
  24319. height: math.unit(4, "meters"),
  24320. form: "taur",
  24321. default: true
  24322. },
  24323. ],
  24324. {
  24325. "anthro": {
  24326. name: "Anthro",
  24327. default: true
  24328. },
  24329. "taur": {
  24330. name: "Taur",
  24331. },
  24332. }
  24333. ))
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24336. {
  24337. front: {
  24338. height: math.unit(293, "meters"),
  24339. weight: math.unit(70400, "tons"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/violette/front.svg",
  24343. extra: 1227 / 1180,
  24344. bottom: 0.005
  24345. }
  24346. },
  24347. back: {
  24348. height: math.unit(293, "meters"),
  24349. weight: math.unit(70400, "tons"),
  24350. name: "Back",
  24351. image: {
  24352. source: "./media/characters/violette/back.svg",
  24353. extra: 1227 / 1180,
  24354. bottom: 0.005
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Macro",
  24361. height: math.unit(293, "meters"),
  24362. default: true
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(1050, "feet"),
  24371. weight: math.unit(200000, "tons"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/alessandra/front.svg",
  24375. extra: 960 / 912,
  24376. bottom: 0.06
  24377. }
  24378. },
  24379. },
  24380. [
  24381. {
  24382. name: "Macro",
  24383. height: math.unit(1050, "feet")
  24384. },
  24385. {
  24386. name: "Macro+",
  24387. height: math.unit(900, "meters"),
  24388. default: true
  24389. },
  24390. ]
  24391. ))
  24392. characterMakers.push(() => makeCharacter(
  24393. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24394. {
  24395. front: {
  24396. height: math.unit(5, "feet"),
  24397. weight: math.unit(187, "lb"),
  24398. name: "Front",
  24399. image: {
  24400. source: "./media/characters/person/front.svg",
  24401. extra: 3087 / 2945,
  24402. bottom: 91 / 3181
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Micro",
  24409. height: math.unit(3, "inches")
  24410. },
  24411. {
  24412. name: "Normal",
  24413. height: math.unit(5, "feet"),
  24414. default: true
  24415. },
  24416. {
  24417. name: "Macro",
  24418. height: math.unit(90, "feet")
  24419. },
  24420. {
  24421. name: "Max Size",
  24422. height: math.unit(280, "feet")
  24423. },
  24424. ]
  24425. ))
  24426. characterMakers.push(() => makeCharacter(
  24427. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24428. {
  24429. front: {
  24430. height: math.unit(4.5, "meters"),
  24431. weight: math.unit(3200, "lb"),
  24432. name: "Front",
  24433. image: {
  24434. source: "./media/characters/ty/front.svg",
  24435. extra: 1038 / 960,
  24436. bottom: 31.156 / 1068
  24437. }
  24438. },
  24439. back: {
  24440. height: math.unit(4.5, "meters"),
  24441. weight: math.unit(3200, "lb"),
  24442. name: "Back",
  24443. image: {
  24444. source: "./media/characters/ty/back.svg",
  24445. extra: 1044 / 966,
  24446. bottom: 7.48 / 1049
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Normal",
  24453. height: math.unit(4.5, "meters"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(5 + 4 / 12, "feet"),
  24463. weight: math.unit(115, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/rocky/front.svg",
  24467. extra: 1012 / 975,
  24468. bottom: 54 / 1066
  24469. }
  24470. },
  24471. },
  24472. [
  24473. {
  24474. name: "Normal",
  24475. height: math.unit(5 + 4 / 12, "feet"),
  24476. default: true
  24477. },
  24478. ]
  24479. ))
  24480. characterMakers.push(() => makeCharacter(
  24481. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24482. {
  24483. upright: {
  24484. height: math.unit(6, "meters"),
  24485. weight: math.unit(4000, "kg"),
  24486. name: "Upright",
  24487. image: {
  24488. source: "./media/characters/ruin/upright.svg",
  24489. extra: 668 / 661,
  24490. bottom: 42 / 799.8396
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Normal",
  24497. height: math.unit(6, "meters"),
  24498. default: true
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(5, "feet"),
  24507. weight: math.unit(106, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/robin/front.svg",
  24511. extra: 862 / 799,
  24512. bottom: 42.4 / 914.8856
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Normal",
  24519. height: math.unit(5, "feet"),
  24520. default: true
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24526. {
  24527. side: {
  24528. height: math.unit(3, "feet"),
  24529. weight: math.unit(225, "lb"),
  24530. name: "Side",
  24531. image: {
  24532. source: "./media/characters/saian/side.svg",
  24533. extra: 566 / 356,
  24534. bottom: 79.7 / 643
  24535. }
  24536. },
  24537. maw: {
  24538. height: math.unit(2.85, "feet"),
  24539. name: "Maw",
  24540. image: {
  24541. source: "./media/characters/saian/maw.svg"
  24542. }
  24543. },
  24544. },
  24545. [
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(3, "feet"),
  24549. default: true
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24555. {
  24556. side: {
  24557. height: math.unit(8, "feet"),
  24558. weight: math.unit(300, "lb"),
  24559. name: "Side",
  24560. image: {
  24561. source: "./media/characters/equus-silvermane/side.svg",
  24562. extra: 2176 / 2050,
  24563. bottom: 65.7 / 2245
  24564. }
  24565. },
  24566. front: {
  24567. height: math.unit(8, "feet"),
  24568. weight: math.unit(300, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/equus-silvermane/front.svg",
  24572. extra: 4633 / 4400,
  24573. bottom: 71.3 / 4706.915
  24574. }
  24575. },
  24576. sideStepping: {
  24577. height: math.unit(8, "feet"),
  24578. weight: math.unit(300, "lb"),
  24579. name: "Side (Stepping)",
  24580. image: {
  24581. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24582. extra: 1968 / 1860,
  24583. bottom: 16.4 / 1989
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(8, "feet")
  24591. },
  24592. {
  24593. name: "Minimacro",
  24594. height: math.unit(75, "feet"),
  24595. default: true
  24596. },
  24597. {
  24598. name: "Macro",
  24599. height: math.unit(150, "feet")
  24600. },
  24601. {
  24602. name: "Macro+",
  24603. height: math.unit(1000, "feet")
  24604. },
  24605. {
  24606. name: "Megamacro",
  24607. height: math.unit(1, "mile")
  24608. },
  24609. ]
  24610. ))
  24611. characterMakers.push(() => makeCharacter(
  24612. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24613. {
  24614. side: {
  24615. height: math.unit(20, "feet"),
  24616. weight: math.unit(30000, "kg"),
  24617. name: "Side",
  24618. image: {
  24619. source: "./media/characters/windar/side.svg",
  24620. extra: 1491 / 1248,
  24621. bottom: 82.56 / 1568
  24622. }
  24623. },
  24624. },
  24625. [
  24626. {
  24627. name: "Normal",
  24628. height: math.unit(20, "feet"),
  24629. default: true
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24635. {
  24636. side: {
  24637. height: math.unit(15.66, "feet"),
  24638. weight: math.unit(150, "lb"),
  24639. name: "Side",
  24640. image: {
  24641. source: "./media/characters/melody/side.svg",
  24642. extra: 1097 / 944,
  24643. bottom: 11.8 / 1109
  24644. }
  24645. },
  24646. sideOutfit: {
  24647. height: math.unit(15.66, "feet"),
  24648. weight: math.unit(150, "lb"),
  24649. name: "Side (Outfit)",
  24650. image: {
  24651. source: "./media/characters/melody/side-outfit.svg",
  24652. extra: 1097 / 944,
  24653. bottom: 11.8 / 1109
  24654. }
  24655. },
  24656. },
  24657. [
  24658. {
  24659. name: "Normal",
  24660. height: math.unit(15.66, "feet"),
  24661. default: true
  24662. },
  24663. ]
  24664. ))
  24665. characterMakers.push(() => makeCharacter(
  24666. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24667. {
  24668. armoredFront: {
  24669. height: math.unit(8, "feet"),
  24670. weight: math.unit(325, "lb"),
  24671. name: "Front",
  24672. image: {
  24673. source: "./media/characters/windera/armored-front.svg",
  24674. extra: 1830/1598,
  24675. bottom: 151/1981
  24676. },
  24677. form: "armored",
  24678. default: true
  24679. },
  24680. macroFront: {
  24681. height: math.unit(70, "feet"),
  24682. weight: math.unit(315453, "lb"),
  24683. name: "Front",
  24684. image: {
  24685. source: "./media/characters/windera/macro-front.svg",
  24686. extra: 963/883,
  24687. bottom: 23/986
  24688. },
  24689. form: "macro",
  24690. default: true
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Normal",
  24696. height: math.unit(8, "feet"),
  24697. default: true,
  24698. form: "armored"
  24699. },
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(70, "feet"),
  24703. default: true,
  24704. form: "macro"
  24705. },
  24706. ],
  24707. {
  24708. "armored": {
  24709. name: "Armored",
  24710. default: true
  24711. },
  24712. "macro": {
  24713. name: "Macro",
  24714. },
  24715. }
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24719. {
  24720. front: {
  24721. height: math.unit(28.75, "feet"),
  24722. weight: math.unit(2000, "kg"),
  24723. name: "Front",
  24724. image: {
  24725. source: "./media/characters/sonear/front.svg",
  24726. extra: 1041.1 / 964.9,
  24727. bottom: 53.7 / 1096.6
  24728. }
  24729. },
  24730. },
  24731. [
  24732. {
  24733. name: "Normal",
  24734. height: math.unit(28.75, "feet"),
  24735. default: true
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24741. {
  24742. side: {
  24743. height: math.unit(25.5, "feet"),
  24744. weight: math.unit(23000, "kg"),
  24745. name: "Side",
  24746. image: {
  24747. source: "./media/characters/kanara/side.svg"
  24748. }
  24749. },
  24750. },
  24751. [
  24752. {
  24753. name: "Normal",
  24754. height: math.unit(25.5, "feet"),
  24755. default: true
  24756. },
  24757. ]
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24761. {
  24762. side: {
  24763. height: math.unit(10, "feet"),
  24764. weight: math.unit(1000, "kg"),
  24765. name: "Side",
  24766. image: {
  24767. source: "./media/characters/ereus/side.svg",
  24768. extra: 1157 / 959,
  24769. bottom: 153 / 1312.5
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Normal",
  24776. height: math.unit(10, "feet"),
  24777. default: true
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24783. {
  24784. side: {
  24785. height: math.unit(4.5, "feet"),
  24786. weight: math.unit(500, "lb"),
  24787. name: "Side",
  24788. image: {
  24789. source: "./media/characters/e-ter/side.svg",
  24790. extra: 1550 / 1248,
  24791. bottom: 146 / 1694
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(4.5, "feet"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24805. {
  24806. side: {
  24807. height: math.unit(9.7, "feet"),
  24808. weight: math.unit(4000, "kg"),
  24809. name: "Side",
  24810. image: {
  24811. source: "./media/characters/yamie/side.svg"
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(9.7, "feet"),
  24819. default: true
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(50, "feet"),
  24828. weight: math.unit(50000, "kg"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/anders/front.svg",
  24832. extra: 570 / 539,
  24833. bottom: 14.7 / 586.7
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Large",
  24840. height: math.unit(50, "feet")
  24841. },
  24842. {
  24843. name: "Macro",
  24844. height: math.unit(2000, "feet"),
  24845. default: true
  24846. },
  24847. {
  24848. name: "Megamacro",
  24849. height: math.unit(12, "miles")
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(7 + 2 / 12, "feet"),
  24858. weight: math.unit(300, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/reban/front.svg",
  24862. extra: 1287/1212,
  24863. bottom: 148/1435
  24864. }
  24865. },
  24866. head: {
  24867. height: math.unit(1.95, "feet"),
  24868. name: "Head",
  24869. image: {
  24870. source: "./media/characters/reban/head.svg"
  24871. }
  24872. },
  24873. maw: {
  24874. height: math.unit(0.95, "feet"),
  24875. name: "Maw",
  24876. image: {
  24877. source: "./media/characters/reban/maw.svg"
  24878. }
  24879. },
  24880. foot: {
  24881. height: math.unit(1.65, "feet"),
  24882. name: "Foot",
  24883. image: {
  24884. source: "./media/characters/reban/foot.svg"
  24885. }
  24886. },
  24887. dick: {
  24888. height: math.unit(7 / 5, "feet"),
  24889. name: "Dick",
  24890. image: {
  24891. source: "./media/characters/reban/dick.svg"
  24892. }
  24893. },
  24894. },
  24895. [
  24896. {
  24897. name: "Natural Height",
  24898. height: math.unit(7 + 2 / 12, "feet")
  24899. },
  24900. {
  24901. name: "Macro",
  24902. height: math.unit(500, "feet"),
  24903. default: true
  24904. },
  24905. {
  24906. name: "Canon Height",
  24907. height: math.unit(50, "AU")
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(6, "feet"),
  24916. weight: math.unit(150, "lb"),
  24917. name: "Front",
  24918. image: {
  24919. source: "./media/characters/terrance-keayes/front.svg",
  24920. extra: 1.005,
  24921. bottom: 151 / 1615
  24922. }
  24923. },
  24924. side: {
  24925. height: math.unit(6, "feet"),
  24926. weight: math.unit(150, "lb"),
  24927. name: "Side",
  24928. image: {
  24929. source: "./media/characters/terrance-keayes/side.svg",
  24930. extra: 1.005,
  24931. bottom: 129.4 / 1544
  24932. }
  24933. },
  24934. back: {
  24935. height: math.unit(6, "feet"),
  24936. weight: math.unit(150, "lb"),
  24937. name: "Back",
  24938. image: {
  24939. source: "./media/characters/terrance-keayes/back.svg",
  24940. extra: 1.005,
  24941. bottom: 58.4 / 1557.3
  24942. }
  24943. },
  24944. dick: {
  24945. height: math.unit(6 * 0.208, "feet"),
  24946. name: "Dick",
  24947. image: {
  24948. source: "./media/characters/terrance-keayes/dick.svg"
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Canon Height",
  24955. height: math.unit(35, "miles"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24962. {
  24963. front: {
  24964. height: math.unit(6, "feet"),
  24965. weight: math.unit(150, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/ofelia/front.svg",
  24969. extra: 1130/1117,
  24970. bottom: 91/1221
  24971. }
  24972. },
  24973. back: {
  24974. height: math.unit(6, "feet"),
  24975. weight: math.unit(150, "lb"),
  24976. name: "Back",
  24977. image: {
  24978. source: "./media/characters/ofelia/back.svg",
  24979. extra: 1172/1159,
  24980. bottom: 28/1200
  24981. }
  24982. },
  24983. maw: {
  24984. height: math.unit(1, "feet"),
  24985. name: "Maw",
  24986. image: {
  24987. source: "./media/characters/ofelia/maw.svg"
  24988. }
  24989. },
  24990. foot: {
  24991. height: math.unit(1.949, "feet"),
  24992. name: "Foot",
  24993. image: {
  24994. source: "./media/characters/ofelia/foot.svg"
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Canon Height",
  25001. height: math.unit(2000, "miles"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25008. {
  25009. front: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(150, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/samuel/front.svg",
  25015. extra: 265 / 258,
  25016. bottom: 2 / 266.1566
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Macro",
  25023. height: math.unit(100, "feet"),
  25024. default: true
  25025. },
  25026. {
  25027. name: "Full Size",
  25028. height: math.unit(1000, "miles")
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(6, "feet"),
  25037. weight: math.unit(300, "lb"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/beishir-kiel/front.svg",
  25041. extra: 569 / 547,
  25042. bottom: 41.9 / 609
  25043. }
  25044. },
  25045. maw: {
  25046. height: math.unit(6 * 0.202, "feet"),
  25047. name: "Maw",
  25048. image: {
  25049. source: "./media/characters/beishir-kiel/maw.svg"
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(300, "feet"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(5 + 7/12, "feet"),
  25066. weight: math.unit(120, "lb"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/logan-grey/front.svg",
  25070. extra: 1836/1738,
  25071. bottom: 108/1944
  25072. }
  25073. },
  25074. back: {
  25075. height: math.unit(5 + 7/12, "feet"),
  25076. weight: math.unit(120, "lb"),
  25077. name: "Back",
  25078. image: {
  25079. source: "./media/characters/logan-grey/back.svg",
  25080. extra: 1880/1794,
  25081. bottom: 24/1904
  25082. }
  25083. },
  25084. frontSfw: {
  25085. height: math.unit(5 + 7/12, "feet"),
  25086. weight: math.unit(120, "lb"),
  25087. name: "Front (SFW)",
  25088. image: {
  25089. source: "./media/characters/logan-grey/front-sfw.svg",
  25090. extra: 1836/1738,
  25091. bottom: 108/1944
  25092. }
  25093. },
  25094. backSfw: {
  25095. height: math.unit(5 + 7/12, "feet"),
  25096. weight: math.unit(120, "lb"),
  25097. name: "Back (SFW)",
  25098. image: {
  25099. source: "./media/characters/logan-grey/back-sfw.svg",
  25100. extra: 1880/1794,
  25101. bottom: 24/1904
  25102. }
  25103. },
  25104. hands: {
  25105. height: math.unit(0.84, "feet"),
  25106. name: "Hands",
  25107. image: {
  25108. source: "./media/characters/logan-grey/hands.svg"
  25109. }
  25110. },
  25111. paws: {
  25112. height: math.unit(0.72, "feet"),
  25113. name: "Paws",
  25114. image: {
  25115. source: "./media/characters/logan-grey/paws.svg"
  25116. }
  25117. },
  25118. cock: {
  25119. height: math.unit(1.45, "feet"),
  25120. name: "Cock",
  25121. image: {
  25122. source: "./media/characters/logan-grey/cock.svg"
  25123. }
  25124. },
  25125. cockAlt: {
  25126. height: math.unit(1.437, "feet"),
  25127. name: "Cock (alt)",
  25128. image: {
  25129. source: "./media/characters/logan-grey/cock-alt.svg"
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(5 + 8 / 12, "feet")
  25137. },
  25138. {
  25139. name: "The 500 Foot Femboy",
  25140. height: math.unit(500, "feet"),
  25141. default: true
  25142. },
  25143. {
  25144. name: "Megmacro",
  25145. height: math.unit(20, "miles")
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25151. {
  25152. front: {
  25153. height: math.unit(8 + 2 / 12, "feet"),
  25154. weight: math.unit(275, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/draganta/front.svg",
  25158. extra: 1177 / 1135,
  25159. bottom: 33.46 / 1212.1
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Normal",
  25166. height: math.unit(8 + 6 / 12, "feet"),
  25167. default: true
  25168. },
  25169. {
  25170. name: "Macro",
  25171. height: math.unit(150, "feet")
  25172. },
  25173. {
  25174. name: "Megamacro",
  25175. height: math.unit(1000, "miles")
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25181. {
  25182. front: {
  25183. height: math.unit(1.72, "m"),
  25184. weight: math.unit(80, "lb"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/voski/front.svg",
  25188. extra: 2076.22 / 2022.4,
  25189. bottom: 102.7 / 2177.3866
  25190. }
  25191. },
  25192. frontFlaccid: {
  25193. height: math.unit(1.72, "m"),
  25194. weight: math.unit(80, "lb"),
  25195. name: "Front (Flaccid)",
  25196. image: {
  25197. source: "./media/characters/voski/front-flaccid.svg",
  25198. extra: 2076.22 / 2022.4,
  25199. bottom: 102.7 / 2177.3866
  25200. }
  25201. },
  25202. frontErect: {
  25203. height: math.unit(1.72, "m"),
  25204. weight: math.unit(80, "lb"),
  25205. name: "Front (Erect)",
  25206. image: {
  25207. source: "./media/characters/voski/front-erect.svg",
  25208. extra: 2076.22 / 2022.4,
  25209. bottom: 102.7 / 2177.3866
  25210. }
  25211. },
  25212. back: {
  25213. height: math.unit(1.72, "m"),
  25214. weight: math.unit(80, "lb"),
  25215. name: "Back",
  25216. image: {
  25217. source: "./media/characters/voski/back.svg",
  25218. extra: 2104 / 2051,
  25219. bottom: 10.45 / 2113.63
  25220. }
  25221. },
  25222. },
  25223. [
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(1.72, "m")
  25227. },
  25228. {
  25229. name: "Macro",
  25230. height: math.unit(55, "m"),
  25231. default: true
  25232. },
  25233. {
  25234. name: "Macro+",
  25235. height: math.unit(300, "m")
  25236. },
  25237. {
  25238. name: "Macro++",
  25239. height: math.unit(700, "m")
  25240. },
  25241. {
  25242. name: "Macro+++",
  25243. height: math.unit(4500, "m")
  25244. },
  25245. {
  25246. name: "Macro++++",
  25247. height: math.unit(45, "km")
  25248. },
  25249. {
  25250. name: "Macro+++++",
  25251. height: math.unit(1220, "km")
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25257. {
  25258. front: {
  25259. height: math.unit(2.3, "m"),
  25260. weight: math.unit(304, "kg"),
  25261. name: "Front",
  25262. image: {
  25263. source: "./media/characters/icowom-lee/front.svg",
  25264. extra: 985 / 955,
  25265. bottom: 25.4 / 1012
  25266. }
  25267. },
  25268. fronttentacles: {
  25269. height: math.unit(2.3, "m"),
  25270. weight: math.unit(304, "kg"),
  25271. name: "Front-tentacles",
  25272. image: {
  25273. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25274. extra: 985 / 955,
  25275. bottom: 25.4 / 1012
  25276. }
  25277. },
  25278. back: {
  25279. height: math.unit(2.3, "m"),
  25280. weight: math.unit(304, "kg"),
  25281. name: "Back",
  25282. image: {
  25283. source: "./media/characters/icowom-lee/back.svg",
  25284. extra: 975 / 954,
  25285. bottom: 9.5 / 985
  25286. }
  25287. },
  25288. backtentacles: {
  25289. height: math.unit(2.3, "m"),
  25290. weight: math.unit(304, "kg"),
  25291. name: "Back-tentacles",
  25292. image: {
  25293. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25294. extra: 975 / 954,
  25295. bottom: 9.5 / 985
  25296. }
  25297. },
  25298. frontDressed: {
  25299. height: math.unit(2.3, "m"),
  25300. weight: math.unit(304, "kg"),
  25301. name: "Front (Dressed)",
  25302. image: {
  25303. source: "./media/characters/icowom-lee/front-dressed.svg",
  25304. extra: 3076 / 2933,
  25305. bottom: 51.4 / 3125.1889
  25306. }
  25307. },
  25308. rump: {
  25309. height: math.unit(0.776, "meters"),
  25310. name: "Rump",
  25311. image: {
  25312. source: "./media/characters/icowom-lee/rump.svg"
  25313. }
  25314. },
  25315. genitals: {
  25316. height: math.unit(0.78, "meters"),
  25317. name: "Genitals",
  25318. image: {
  25319. source: "./media/characters/icowom-lee/genitals.svg"
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(2.3, "meters"),
  25327. default: true
  25328. },
  25329. {
  25330. name: "Macro",
  25331. height: math.unit(94, "meters"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(22, "meters"),
  25341. weight: math.unit(21000, "kg"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/shock-diamond/front.svg",
  25345. extra: 2204 / 2053,
  25346. bottom: 65 / 2239.47
  25347. }
  25348. },
  25349. frontNude: {
  25350. height: math.unit(22, "meters"),
  25351. weight: math.unit(21000, "kg"),
  25352. name: "Front (Nude)",
  25353. image: {
  25354. source: "./media/characters/shock-diamond/front-nude.svg",
  25355. extra: 2514 / 2285,
  25356. bottom: 13 / 2527.56
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(3, "meters")
  25364. },
  25365. {
  25366. name: "Macro",
  25367. height: math.unit(22, "meters"),
  25368. default: true
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(5 + 4/12, "feet"),
  25377. weight: math.unit(125, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/rory/front.svg",
  25381. extra: 1790/1681,
  25382. bottom: 66/1856
  25383. },
  25384. form: "normal",
  25385. default: true
  25386. },
  25387. back: {
  25388. height: math.unit(5 + 4/12, "feet"),
  25389. weight: math.unit(125, "lb"),
  25390. name: "Back",
  25391. image: {
  25392. source: "./media/characters/rory/back.svg",
  25393. extra: 1805/1690,
  25394. bottom: 56/1861
  25395. },
  25396. form: "normal"
  25397. },
  25398. frontDressed: {
  25399. height: math.unit(5 + 4/12, "feet"),
  25400. weight: math.unit(125, "lb"),
  25401. name: "Front (Dressed)",
  25402. image: {
  25403. source: "./media/characters/rory/front-dressed.svg",
  25404. extra: 1790/1681,
  25405. bottom: 66/1856
  25406. },
  25407. form: "normal"
  25408. },
  25409. backDressed: {
  25410. height: math.unit(5 + 4/12, "feet"),
  25411. weight: math.unit(125, "lb"),
  25412. name: "Back (Dressed)",
  25413. image: {
  25414. source: "./media/characters/rory/back-dressed.svg",
  25415. extra: 1805/1690,
  25416. bottom: 56/1861
  25417. },
  25418. form: "normal"
  25419. },
  25420. frontNsfw: {
  25421. height: math.unit(5 + 4/12, "feet"),
  25422. weight: math.unit(125, "lb"),
  25423. name: "Front (NSFW)",
  25424. image: {
  25425. source: "./media/characters/rory/front-nsfw.svg",
  25426. extra: 1790/1681,
  25427. bottom: 66/1856
  25428. },
  25429. form: "normal"
  25430. },
  25431. backNsfw: {
  25432. height: math.unit(5 + 4/12, "feet"),
  25433. weight: math.unit(125, "lb"),
  25434. name: "Back (NSFW)",
  25435. image: {
  25436. source: "./media/characters/rory/back-nsfw.svg",
  25437. extra: 1805/1690,
  25438. bottom: 56/1861
  25439. },
  25440. form: "normal"
  25441. },
  25442. dick: {
  25443. height: math.unit(0.8, "feet"),
  25444. name: "Dick",
  25445. image: {
  25446. source: "./media/characters/rory/dick.svg"
  25447. },
  25448. form: "normal"
  25449. },
  25450. thicc_front: {
  25451. height: math.unit(5 + 4/12, "feet"),
  25452. weight: math.unit(195, "lb"),
  25453. name: "Front",
  25454. image: {
  25455. source: "./media/characters/rory/thicc-front.svg",
  25456. extra: 1220/1100,
  25457. bottom: 103/1323
  25458. },
  25459. form: "thicc",
  25460. default: true
  25461. },
  25462. thicc_back: {
  25463. height: math.unit(5 + 4/12, "feet"),
  25464. weight: math.unit(195, "lb"),
  25465. name: "Back",
  25466. image: {
  25467. source: "./media/characters/rory/thicc-back.svg",
  25468. extra: 1166/1086,
  25469. bottom: 35/1201
  25470. },
  25471. form: "thicc"
  25472. },
  25473. },
  25474. [
  25475. {
  25476. name: "Micro",
  25477. height: math.unit(3, "inches"),
  25478. allForms: true
  25479. },
  25480. {
  25481. name: "Normal",
  25482. height: math.unit(5 + 4/12, "feet"),
  25483. allForms: true,
  25484. default: true
  25485. },
  25486. {
  25487. name: "Macro",
  25488. height: math.unit(90, "feet"),
  25489. allForms: true
  25490. },
  25491. {
  25492. name: "Supercharged",
  25493. height: math.unit(270, "feet"),
  25494. allForms: true
  25495. },
  25496. ],
  25497. {
  25498. "normal": {
  25499. name: "Normal",
  25500. default: true
  25501. },
  25502. "thicc": {
  25503. name: "Thicc",
  25504. },
  25505. }
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25509. {
  25510. front: {
  25511. height: math.unit(5 + 9 / 12, "feet"),
  25512. weight: math.unit(190, "lb"),
  25513. name: "Front",
  25514. image: {
  25515. source: "./media/characters/sprisk/front.svg",
  25516. extra: 1225 / 1180,
  25517. bottom: 42.7 / 1266.4
  25518. }
  25519. },
  25520. frontNsfw: {
  25521. height: math.unit(5 + 9 / 12, "feet"),
  25522. weight: math.unit(190, "lb"),
  25523. name: "Front (NSFW)",
  25524. image: {
  25525. source: "./media/characters/sprisk/front-nsfw.svg",
  25526. extra: 1225 / 1180,
  25527. bottom: 42.7 / 1266.4
  25528. }
  25529. },
  25530. back: {
  25531. height: math.unit(5 + 9 / 12, "feet"),
  25532. weight: math.unit(190, "lb"),
  25533. name: "Back",
  25534. image: {
  25535. source: "./media/characters/sprisk/back.svg",
  25536. extra: 1247 / 1200,
  25537. bottom: 5.6 / 1253.04
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Tiny",
  25544. height: math.unit(2, "inches")
  25545. },
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(5 + 9 / 12, "feet"),
  25549. default: true
  25550. },
  25551. {
  25552. name: "Mini Macro",
  25553. height: math.unit(18, "feet")
  25554. },
  25555. {
  25556. name: "Macro",
  25557. height: math.unit(100, "feet")
  25558. },
  25559. {
  25560. name: "MACRO",
  25561. height: math.unit(50, "miles")
  25562. },
  25563. {
  25564. name: "M A C R O",
  25565. height: math.unit(300, "miles")
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25571. {
  25572. side: {
  25573. height: math.unit(15.6, "meters"),
  25574. weight: math.unit(700000, "kg"),
  25575. name: "Side",
  25576. image: {
  25577. source: "./media/characters/bunsen/side.svg",
  25578. extra: 1644 / 358
  25579. }
  25580. },
  25581. foot: {
  25582. height: math.unit(1.611 * 1644 / 358, "meter"),
  25583. name: "Foot",
  25584. image: {
  25585. source: "./media/characters/bunsen/foot.svg"
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Small",
  25592. height: math.unit(10, "feet")
  25593. },
  25594. {
  25595. name: "Normal",
  25596. height: math.unit(15.6, "meters"),
  25597. default: true
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25603. {
  25604. front: {
  25605. height: math.unit(4 + 11 / 12, "feet"),
  25606. weight: math.unit(140, "lb"),
  25607. name: "Front",
  25608. image: {
  25609. source: "./media/characters/sesh/front.svg",
  25610. extra: 3420 / 3231,
  25611. bottom: 72 / 3949.5
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(4 + 11 / 12, "feet")
  25619. },
  25620. {
  25621. name: "Grown",
  25622. height: math.unit(15, "feet"),
  25623. default: true
  25624. },
  25625. {
  25626. name: "Macro",
  25627. height: math.unit(1500, "feet")
  25628. },
  25629. {
  25630. name: "Megamacro",
  25631. height: math.unit(30, "miles")
  25632. },
  25633. {
  25634. name: "Continental",
  25635. height: math.unit(3000, "miles")
  25636. },
  25637. {
  25638. name: "Gravity Mass",
  25639. height: math.unit(300000, "miles")
  25640. },
  25641. {
  25642. name: "Planet Buster",
  25643. height: math.unit(30000000, "miles")
  25644. },
  25645. {
  25646. name: "Big",
  25647. height: math.unit(3000000000, "miles")
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25653. {
  25654. front: {
  25655. height: math.unit(9, "feet"),
  25656. weight: math.unit(350, "lb"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/pepper/front.svg",
  25660. extra: 1448 / 1312,
  25661. bottom: 9.4 / 1457.88
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(9, "feet"),
  25666. weight: math.unit(350, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/pepper/back.svg",
  25670. extra: 1423 / 1300,
  25671. bottom: 4.6 / 1429
  25672. }
  25673. },
  25674. maw: {
  25675. height: math.unit(0.932, "feet"),
  25676. name: "Maw",
  25677. image: {
  25678. source: "./media/characters/pepper/maw.svg"
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(9, "feet"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(6, "feet"),
  25695. weight: math.unit(150, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/maelstrom/front.svg",
  25699. extra: 2100 / 1883,
  25700. bottom: 94 / 2196.7
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Less Kaiju",
  25707. height: math.unit(200, "feet")
  25708. },
  25709. {
  25710. name: "Kaiju",
  25711. height: math.unit(400, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Kaiju-er",
  25716. height: math.unit(600, "feet")
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(6 + 5 / 12, "feet"),
  25725. weight: math.unit(180, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/lexir/front.svg",
  25729. extra: 180 / 172,
  25730. bottom: 12 / 192
  25731. }
  25732. },
  25733. back: {
  25734. height: math.unit(6 + 5 / 12, "feet"),
  25735. weight: math.unit(180, "lb"),
  25736. name: "Back",
  25737. image: {
  25738. source: "./media/characters/lexir/back.svg",
  25739. extra: 1273/1201,
  25740. bottom: 39/1312
  25741. }
  25742. },
  25743. },
  25744. [
  25745. {
  25746. name: "Very Smal",
  25747. height: math.unit(1, "nm")
  25748. },
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(6 + 5 / 12, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Macro",
  25756. height: math.unit(1, "mile")
  25757. },
  25758. {
  25759. name: "Megamacro",
  25760. height: math.unit(50, "miles")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(1.5, "meters"),
  25769. weight: math.unit(100, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/maksio/front.svg",
  25773. extra: 1549 / 1531,
  25774. bottom: 123.7 / 1674.5429
  25775. }
  25776. },
  25777. back: {
  25778. height: math.unit(1.5, "meters"),
  25779. weight: math.unit(100, "lb"),
  25780. name: "Back",
  25781. image: {
  25782. source: "./media/characters/maksio/back.svg",
  25783. extra: 1541 / 1509,
  25784. bottom: 97 / 1639
  25785. }
  25786. },
  25787. hand: {
  25788. height: math.unit(0.621, "feet"),
  25789. name: "Hand",
  25790. image: {
  25791. source: "./media/characters/maksio/hand.svg"
  25792. }
  25793. },
  25794. foot: {
  25795. height: math.unit(1.611, "feet"),
  25796. name: "Foot",
  25797. image: {
  25798. source: "./media/characters/maksio/foot.svg"
  25799. }
  25800. },
  25801. },
  25802. [
  25803. {
  25804. name: "Shrunken",
  25805. height: math.unit(10, "cm")
  25806. },
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(150, "cm"),
  25810. default: true
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(100, "feet"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/erza-bear/front.svg",
  25822. extra: 2449 / 2390,
  25823. bottom: 46 / 2494
  25824. }
  25825. },
  25826. back: {
  25827. height: math.unit(100, "feet"),
  25828. name: "Back",
  25829. image: {
  25830. source: "./media/characters/erza-bear/back.svg",
  25831. extra: 2489 / 2430,
  25832. bottom: 85.4 / 2480
  25833. }
  25834. },
  25835. tail: {
  25836. height: math.unit(42, "feet"),
  25837. name: "Tail",
  25838. image: {
  25839. source: "./media/characters/erza-bear/tail.svg"
  25840. }
  25841. },
  25842. tongue: {
  25843. height: math.unit(8, "feet"),
  25844. name: "Tongue",
  25845. image: {
  25846. source: "./media/characters/erza-bear/tongue.svg"
  25847. }
  25848. },
  25849. dick: {
  25850. height: math.unit(10.5, "feet"),
  25851. name: "Dick",
  25852. image: {
  25853. source: "./media/characters/erza-bear/dick.svg"
  25854. }
  25855. },
  25856. dickVertical: {
  25857. height: math.unit(16.9, "feet"),
  25858. name: "Dick (Vertical)",
  25859. image: {
  25860. source: "./media/characters/erza-bear/dick-vertical.svg"
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Macro",
  25867. height: math.unit(100, "feet"),
  25868. default: true
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25874. {
  25875. front: {
  25876. height: math.unit(172, "cm"),
  25877. weight: math.unit(73, "kg"),
  25878. name: "Front",
  25879. image: {
  25880. source: "./media/characters/violet-flor/front.svg",
  25881. extra: 1474/1379,
  25882. bottom: 113/1587
  25883. }
  25884. },
  25885. back: {
  25886. height: math.unit(180, "cm"),
  25887. weight: math.unit(73, "kg"),
  25888. name: "Back",
  25889. image: {
  25890. source: "./media/characters/violet-flor/back.svg",
  25891. extra: 1660/1567,
  25892. bottom: 49/1709
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(172, "cm"),
  25900. default: true
  25901. },
  25902. ]
  25903. ))
  25904. characterMakers.push(() => makeCharacter(
  25905. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25906. {
  25907. front: {
  25908. height: math.unit(6, "feet"),
  25909. weight: math.unit(220, "lb"),
  25910. name: "Front",
  25911. image: {
  25912. source: "./media/characters/lynn-rhea/front.svg",
  25913. extra: 310 / 273
  25914. }
  25915. },
  25916. back: {
  25917. height: math.unit(6, "feet"),
  25918. weight: math.unit(220, "lb"),
  25919. name: "Back",
  25920. image: {
  25921. source: "./media/characters/lynn-rhea/back.svg",
  25922. extra: 310 / 273
  25923. }
  25924. },
  25925. dicks: {
  25926. height: math.unit(0.9, "feet"),
  25927. name: "Dicks",
  25928. image: {
  25929. source: "./media/characters/lynn-rhea/dicks.svg"
  25930. }
  25931. },
  25932. slit: {
  25933. height: math.unit(0.4, "feet"),
  25934. name: "Slit",
  25935. image: {
  25936. source: "./media/characters/lynn-rhea/slit.svg"
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Micro",
  25943. height: math.unit(1, "inch")
  25944. },
  25945. {
  25946. name: "Macro",
  25947. height: math.unit(60, "feet"),
  25948. default: true
  25949. },
  25950. {
  25951. name: "Megamacro",
  25952. height: math.unit(2, "miles")
  25953. },
  25954. {
  25955. name: "Gigamacro",
  25956. height: math.unit(3, "earths")
  25957. },
  25958. {
  25959. name: "Galactic",
  25960. height: math.unit(0.8, "galaxies")
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25966. {
  25967. front: {
  25968. height: math.unit(1600, "feet"),
  25969. weight: math.unit(85758785169, "kg"),
  25970. name: "Front",
  25971. image: {
  25972. source: "./media/characters/valathos/front.svg",
  25973. extra: 1451 / 1339
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Macro",
  25980. height: math.unit(1600, "feet"),
  25981. default: true
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25987. {
  25988. front: {
  25989. height: math.unit(7 + 5 / 12, "feet"),
  25990. weight: math.unit(300, "lb"),
  25991. name: "Front",
  25992. image: {
  25993. source: "./media/characters/azula/front.svg",
  25994. extra: 3208 / 2880,
  25995. bottom: 80.2 / 3277
  25996. }
  25997. },
  25998. back: {
  25999. height: math.unit(7 + 5 / 12, "feet"),
  26000. weight: math.unit(300, "lb"),
  26001. name: "Back",
  26002. image: {
  26003. source: "./media/characters/azula/back.svg",
  26004. extra: 3169 / 2822,
  26005. bottom: 150.6 / 3321
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(7 + 5 / 12, "feet"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Big",
  26017. height: math.unit(20, "feet")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(5 + 1 / 12, "feet"),
  26026. weight: math.unit(110, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/rupert/front.svg",
  26030. extra: 1549 / 1495,
  26031. bottom: 54.2 / 1604.4
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(5 + 1 / 12, "feet"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26045. {
  26046. front: {
  26047. height: math.unit(8 + 4 / 12, "feet"),
  26048. weight: math.unit(350, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/sheera-castellar/front.svg",
  26052. extra: 1957 / 1894,
  26053. bottom: 26.97 / 1975.017
  26054. }
  26055. },
  26056. side: {
  26057. height: math.unit(8 + 4 / 12, "feet"),
  26058. weight: math.unit(350, "lb"),
  26059. name: "Side",
  26060. image: {
  26061. source: "./media/characters/sheera-castellar/side.svg",
  26062. extra: 1957 / 1894
  26063. }
  26064. },
  26065. back: {
  26066. height: math.unit(8 + 4 / 12, "feet"),
  26067. weight: math.unit(350, "lb"),
  26068. name: "Back",
  26069. image: {
  26070. source: "./media/characters/sheera-castellar/back.svg",
  26071. extra: 1957 / 1894
  26072. }
  26073. },
  26074. angled: {
  26075. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26076. weight: math.unit(350, "lb"),
  26077. name: "Angled",
  26078. image: {
  26079. source: "./media/characters/sheera-castellar/angled.svg",
  26080. extra: 1807 / 1707,
  26081. bottom: 68 / 1875
  26082. }
  26083. },
  26084. genitals: {
  26085. height: math.unit(2.2, "feet"),
  26086. name: "Genitals",
  26087. image: {
  26088. source: "./media/characters/sheera-castellar/genitals.svg"
  26089. }
  26090. },
  26091. taur: {
  26092. height: math.unit(10 + 6/12, "feet"),
  26093. name: "Taur",
  26094. image: {
  26095. source: "./media/characters/sheera-castellar/taur.svg",
  26096. extra: 2017/1909,
  26097. bottom: 185/2202
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(8 + 4 / 12, "feet")
  26105. },
  26106. {
  26107. name: "Macro",
  26108. height: math.unit(150, "feet"),
  26109. default: true
  26110. },
  26111. {
  26112. name: "Macro+",
  26113. height: math.unit(800, "feet")
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(6, "feet"),
  26122. weight: math.unit(150, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/jaipur/front.svg",
  26126. extra: 3860 / 3731,
  26127. bottom: 287 / 4140
  26128. }
  26129. },
  26130. back: {
  26131. height: math.unit(6, "feet"),
  26132. weight: math.unit(150, "lb"),
  26133. name: "Back",
  26134. image: {
  26135. source: "./media/characters/jaipur/back.svg",
  26136. extra: 1637/1561,
  26137. bottom: 154/1791
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(1.85, "meters"),
  26145. default: true
  26146. },
  26147. {
  26148. name: "Macro",
  26149. height: math.unit(150, "meters")
  26150. },
  26151. {
  26152. name: "Macro+",
  26153. height: math.unit(0.5, "miles")
  26154. },
  26155. {
  26156. name: "Macro++",
  26157. height: math.unit(2.5, "miles")
  26158. },
  26159. {
  26160. name: "Macro+++",
  26161. height: math.unit(12, "miles")
  26162. },
  26163. {
  26164. name: "Macro++++",
  26165. height: math.unit(120, "miles")
  26166. },
  26167. {
  26168. name: "Macro+++++",
  26169. height: math.unit(1200, "miles")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(6, "feet"),
  26178. weight: math.unit(150, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/sheila-wolf/front.svg",
  26182. extra: 1931 / 1808,
  26183. bottom: 29.5 / 1960
  26184. }
  26185. },
  26186. dick: {
  26187. height: math.unit(1.464, "feet"),
  26188. name: "Dick",
  26189. image: {
  26190. source: "./media/characters/sheila-wolf/dick.svg"
  26191. }
  26192. },
  26193. muzzle: {
  26194. height: math.unit(0.513, "feet"),
  26195. name: "Muzzle",
  26196. image: {
  26197. source: "./media/characters/sheila-wolf/muzzle.svg"
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Macro",
  26204. height: math.unit(70, "feet"),
  26205. default: true
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26211. {
  26212. front: {
  26213. height: math.unit(32, "meters"),
  26214. weight: math.unit(300000, "kg"),
  26215. name: "Front",
  26216. image: {
  26217. source: "./media/characters/almor/front.svg",
  26218. extra: 1408 / 1322,
  26219. bottom: 94.6 / 1506.5
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Macro",
  26226. height: math.unit(32, "meters"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(7, "feet"),
  26236. weight: math.unit(200, "lb"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/silver/front.svg",
  26240. extra: 472.1 / 450.5,
  26241. bottom: 26.5 / 499.424
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(7, "feet"),
  26249. default: true
  26250. },
  26251. {
  26252. name: "Macro",
  26253. height: math.unit(800, "feet")
  26254. },
  26255. {
  26256. name: "Megamacro",
  26257. height: math.unit(250, "miles")
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(6, "feet"),
  26266. weight: math.unit(150, "lb"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/pliskin/front.svg",
  26270. extra: 1469 / 1359,
  26271. bottom: 70 / 1540
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Micro",
  26278. height: math.unit(3, "inches")
  26279. },
  26280. {
  26281. name: "Normal",
  26282. height: math.unit(5 + 11 / 12, "feet"),
  26283. default: true
  26284. },
  26285. {
  26286. name: "Macro",
  26287. height: math.unit(120, "feet")
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(6, "feet"),
  26296. weight: math.unit(150, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/sammy/front.svg",
  26300. extra: 1193 / 1089,
  26301. bottom: 30.5 / 1226
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Macro",
  26308. height: math.unit(1700, "feet"),
  26309. default: true
  26310. },
  26311. {
  26312. name: "Examacro",
  26313. height: math.unit(2.5e9, "lightyears")
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26319. {
  26320. front: {
  26321. height: math.unit(21, "meters"),
  26322. weight: math.unit(12, "tonnes"),
  26323. name: "Front",
  26324. image: {
  26325. source: "./media/characters/kuru/front.svg",
  26326. extra: 4301 / 3785,
  26327. bottom: 371.3 / 4691
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Macro",
  26334. height: math.unit(21, "meters"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(23, "meters"),
  26344. weight: math.unit(12.2, "tonnes"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/rakka/front.svg",
  26348. extra: 4670 / 4169,
  26349. bottom: 301 / 4968.7
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Macro",
  26356. height: math.unit(23, "meters"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(6, "feet"),
  26366. weight: math.unit(150, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/rhys-feline/front.svg",
  26370. extra: 2488 / 2308,
  26371. bottom: 35.67 / 2519.19
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Really Small",
  26378. height: math.unit(1, "nm")
  26379. },
  26380. {
  26381. name: "Micro",
  26382. height: math.unit(4, "inches")
  26383. },
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(4 + 10 / 12, "feet"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(100, "feet")
  26392. },
  26393. {
  26394. name: "Megamacto",
  26395. height: math.unit(50, "miles")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26401. {
  26402. side: {
  26403. height: math.unit(30, "feet"),
  26404. weight: math.unit(35000, "kg"),
  26405. name: "Side",
  26406. image: {
  26407. source: "./media/characters/alydar/side.svg",
  26408. extra: 234 / 222,
  26409. bottom: 6.5 / 241
  26410. }
  26411. },
  26412. front: {
  26413. height: math.unit(30, "feet"),
  26414. weight: math.unit(35000, "kg"),
  26415. name: "Front",
  26416. image: {
  26417. source: "./media/characters/alydar/front.svg",
  26418. extra: 223.37 / 210.2,
  26419. bottom: 22.3 / 246.76
  26420. }
  26421. },
  26422. top: {
  26423. height: math.unit(64.54, "feet"),
  26424. weight: math.unit(35000, "kg"),
  26425. name: "Top",
  26426. image: {
  26427. source: "./media/characters/alydar/top.svg"
  26428. }
  26429. },
  26430. anthro: {
  26431. height: math.unit(30, "feet"),
  26432. weight: math.unit(9000, "kg"),
  26433. name: "Anthro",
  26434. image: {
  26435. source: "./media/characters/alydar/anthro.svg",
  26436. extra: 432 / 421,
  26437. bottom: 7.18 / 440
  26438. }
  26439. },
  26440. maw: {
  26441. height: math.unit(11.693, "feet"),
  26442. name: "Maw",
  26443. image: {
  26444. source: "./media/characters/alydar/maw.svg"
  26445. }
  26446. },
  26447. head: {
  26448. height: math.unit(11.693, "feet"),
  26449. name: "Head",
  26450. image: {
  26451. source: "./media/characters/alydar/head.svg"
  26452. }
  26453. },
  26454. headAlt: {
  26455. height: math.unit(12.861, "feet"),
  26456. name: "Head (Alt)",
  26457. image: {
  26458. source: "./media/characters/alydar/head-alt.svg"
  26459. }
  26460. },
  26461. wing: {
  26462. height: math.unit(20.712, "feet"),
  26463. name: "Wing",
  26464. image: {
  26465. source: "./media/characters/alydar/wing.svg"
  26466. }
  26467. },
  26468. wingFeather: {
  26469. height: math.unit(9.662, "feet"),
  26470. name: "Wing Feather",
  26471. image: {
  26472. source: "./media/characters/alydar/wing-feather.svg"
  26473. }
  26474. },
  26475. countourFeather: {
  26476. height: math.unit(4.154, "feet"),
  26477. name: "Contour Feather",
  26478. image: {
  26479. source: "./media/characters/alydar/contour-feather.svg"
  26480. }
  26481. },
  26482. },
  26483. [
  26484. {
  26485. name: "Diplomatic",
  26486. height: math.unit(13, "feet"),
  26487. default: true
  26488. },
  26489. {
  26490. name: "Small",
  26491. height: math.unit(30, "feet")
  26492. },
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(95, "feet"),
  26496. default: true
  26497. },
  26498. {
  26499. name: "Large",
  26500. height: math.unit(285, "feet")
  26501. },
  26502. {
  26503. name: "Incomprehensible",
  26504. height: math.unit(450, "megameters")
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26510. {
  26511. side: {
  26512. height: math.unit(11, "feet"),
  26513. weight: math.unit(1750, "kg"),
  26514. name: "Side",
  26515. image: {
  26516. source: "./media/characters/selicia/side.svg",
  26517. extra: 440 / 396,
  26518. bottom: 24.8 / 465.979
  26519. }
  26520. },
  26521. maw: {
  26522. height: math.unit(4.665, "feet"),
  26523. name: "Maw",
  26524. image: {
  26525. source: "./media/characters/selicia/maw.svg"
  26526. }
  26527. },
  26528. },
  26529. [
  26530. {
  26531. name: "Normal",
  26532. height: math.unit(11, "feet"),
  26533. default: true
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26539. {
  26540. side: {
  26541. height: math.unit(2 + 6 / 12, "feet"),
  26542. weight: math.unit(30, "lb"),
  26543. name: "Side",
  26544. image: {
  26545. source: "./media/characters/layla/side.svg",
  26546. extra: 244 / 188,
  26547. bottom: 18.2 / 262.1
  26548. }
  26549. },
  26550. back: {
  26551. height: math.unit(2 + 6 / 12, "feet"),
  26552. weight: math.unit(30, "lb"),
  26553. name: "Back",
  26554. image: {
  26555. source: "./media/characters/layla/back.svg",
  26556. extra: 308 / 241.5,
  26557. bottom: 8.9 / 316.8
  26558. }
  26559. },
  26560. cumming: {
  26561. height: math.unit(2 + 6 / 12, "feet"),
  26562. weight: math.unit(30, "lb"),
  26563. name: "Cumming",
  26564. image: {
  26565. source: "./media/characters/layla/cumming.svg",
  26566. extra: 342 / 279,
  26567. bottom: 595 / 938
  26568. }
  26569. },
  26570. dickFlaccid: {
  26571. height: math.unit(2.595, "feet"),
  26572. name: "Flaccid Genitals",
  26573. image: {
  26574. source: "./media/characters/layla/dick-flaccid.svg"
  26575. }
  26576. },
  26577. dickErect: {
  26578. height: math.unit(2.359, "feet"),
  26579. name: "Erect Genitals",
  26580. image: {
  26581. source: "./media/characters/layla/dick-erect.svg"
  26582. }
  26583. },
  26584. dragon: {
  26585. height: math.unit(40, "feet"),
  26586. name: "Dragon",
  26587. image: {
  26588. source: "./media/characters/layla/dragon.svg",
  26589. extra: 610/535,
  26590. bottom: 367/977
  26591. }
  26592. },
  26593. taur: {
  26594. height: math.unit(30, "feet"),
  26595. name: "Taur",
  26596. image: {
  26597. source: "./media/characters/layla/taur.svg",
  26598. extra: 1268/1199,
  26599. bottom: 112/1380
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Micro",
  26606. height: math.unit(1, "inch")
  26607. },
  26608. {
  26609. name: "Small",
  26610. height: math.unit(1, "foot")
  26611. },
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(2 + 6 / 12, "feet"),
  26615. default: true
  26616. },
  26617. {
  26618. name: "Macro",
  26619. height: math.unit(200, "feet")
  26620. },
  26621. {
  26622. name: "Megamacro",
  26623. height: math.unit(1000, "miles")
  26624. },
  26625. {
  26626. name: "Planetary",
  26627. height: math.unit(8000, "miles")
  26628. },
  26629. {
  26630. name: "True Layla",
  26631. height: math.unit(200000 * 7, "multiverses")
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26637. {
  26638. back: {
  26639. height: math.unit(10.5, "feet"),
  26640. weight: math.unit(800, "lb"),
  26641. name: "Back",
  26642. image: {
  26643. source: "./media/characters/knox/back.svg",
  26644. extra: 1486 / 1089,
  26645. bottom: 107 / 1601.4
  26646. }
  26647. },
  26648. side: {
  26649. height: math.unit(10.5, "feet"),
  26650. weight: math.unit(800, "lb"),
  26651. name: "Side",
  26652. image: {
  26653. source: "./media/characters/knox/side.svg",
  26654. extra: 244 / 218,
  26655. bottom: 14 / 260
  26656. }
  26657. },
  26658. },
  26659. [
  26660. {
  26661. name: "Compact",
  26662. height: math.unit(10.5, "feet"),
  26663. default: true
  26664. },
  26665. {
  26666. name: "Dynamax",
  26667. height: math.unit(210, "feet")
  26668. },
  26669. {
  26670. name: "Full Macro",
  26671. height: math.unit(850, "feet")
  26672. },
  26673. ]
  26674. ))
  26675. characterMakers.push(() => makeCharacter(
  26676. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26677. {
  26678. front: {
  26679. height: math.unit(28, "feet"),
  26680. weight: math.unit(10500, "lb"),
  26681. name: "Front",
  26682. image: {
  26683. source: "./media/characters/kayda/front.svg",
  26684. extra: 1536 / 1428,
  26685. bottom: 68.7 / 1603
  26686. }
  26687. },
  26688. back: {
  26689. height: math.unit(28, "feet"),
  26690. weight: math.unit(10500, "lb"),
  26691. name: "Back",
  26692. image: {
  26693. source: "./media/characters/kayda/back.svg",
  26694. extra: 1557 / 1464,
  26695. bottom: 39.5 / 1597.49
  26696. }
  26697. },
  26698. dick: {
  26699. height: math.unit(3.858, "feet"),
  26700. name: "Dick",
  26701. image: {
  26702. source: "./media/characters/kayda/dick.svg"
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Macro",
  26709. height: math.unit(28, "feet"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(10 + 11 / 12, "feet"),
  26719. weight: math.unit(1400, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/brian/front.svg",
  26723. extra: 737 / 692,
  26724. bottom: 55.4 / 785
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Normal",
  26731. height: math.unit(10 + 11 / 12, "feet"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26738. {
  26739. front: {
  26740. height: math.unit(5 + 8 / 12, "feet"),
  26741. weight: math.unit(140, "lb"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/khemri/front.svg",
  26745. extra: 4780 / 4059,
  26746. bottom: 80.1 / 4859.25
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Micro",
  26753. height: math.unit(6, "inches")
  26754. },
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(5 + 8 / 12, "feet"),
  26758. default: true
  26759. },
  26760. ]
  26761. ))
  26762. characterMakers.push(() => makeCharacter(
  26763. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26764. {
  26765. front: {
  26766. height: math.unit(13, "feet"),
  26767. weight: math.unit(1700, "lb"),
  26768. name: "Front",
  26769. image: {
  26770. source: "./media/characters/felix-braveheart/front.svg",
  26771. extra: 1222 / 1157,
  26772. bottom: 53.2 / 1280
  26773. }
  26774. },
  26775. back: {
  26776. height: math.unit(13, "feet"),
  26777. weight: math.unit(1700, "lb"),
  26778. name: "Back",
  26779. image: {
  26780. source: "./media/characters/felix-braveheart/back.svg",
  26781. extra: 1277 / 1203,
  26782. bottom: 50.2 / 1327
  26783. }
  26784. },
  26785. feral: {
  26786. height: math.unit(6, "feet"),
  26787. weight: math.unit(400, "lb"),
  26788. name: "Feral",
  26789. image: {
  26790. source: "./media/characters/felix-braveheart/feral.svg",
  26791. extra: 682 / 625,
  26792. bottom: 6.9 / 688
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Normal",
  26799. height: math.unit(13, "feet"),
  26800. default: true
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26806. {
  26807. side: {
  26808. height: math.unit(5 + 11 / 12, "feet"),
  26809. weight: math.unit(1400, "lb"),
  26810. name: "Side",
  26811. image: {
  26812. source: "./media/characters/shadow-blade/side.svg",
  26813. extra: 1726 / 1267,
  26814. bottom: 58.4 / 1785
  26815. }
  26816. },
  26817. },
  26818. [
  26819. {
  26820. name: "Normal",
  26821. height: math.unit(5 + 11 / 12, "feet"),
  26822. default: true
  26823. },
  26824. ]
  26825. ))
  26826. characterMakers.push(() => makeCharacter(
  26827. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26828. {
  26829. front: {
  26830. height: math.unit(1 + 6 / 12, "feet"),
  26831. weight: math.unit(25, "lb"),
  26832. name: "Front",
  26833. image: {
  26834. source: "./media/characters/karla-halldor/front.svg",
  26835. extra: 1459 / 1383,
  26836. bottom: 12 / 1472
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(1 + 6 / 12, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(6 + 2 / 12, "feet"),
  26853. weight: math.unit(160, "lb"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/ariam/front.svg",
  26857. extra: 1073/976,
  26858. bottom: 52/1125
  26859. }
  26860. },
  26861. back: {
  26862. height: math.unit(6 + 2/12, "feet"),
  26863. weight: math.unit(160, "lb"),
  26864. name: "Back",
  26865. image: {
  26866. source: "./media/characters/ariam/back.svg",
  26867. extra: 1103/1023,
  26868. bottom: 9/1112
  26869. }
  26870. },
  26871. dressed: {
  26872. height: math.unit(6 + 2/12, "feet"),
  26873. weight: math.unit(160, "lb"),
  26874. name: "Dressed",
  26875. image: {
  26876. source: "./media/characters/ariam/dressed.svg",
  26877. extra: 1099/1009,
  26878. bottom: 25/1124
  26879. }
  26880. },
  26881. squatting: {
  26882. height: math.unit(4.1, "feet"),
  26883. weight: math.unit(160, "lb"),
  26884. name: "Squatting",
  26885. image: {
  26886. source: "./media/characters/ariam/squatting.svg",
  26887. extra: 2617 / 2112,
  26888. bottom: 61.2 / 2681,
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(6 + 2 / 12, "feet"),
  26896. default: true
  26897. },
  26898. {
  26899. name: "Normal+",
  26900. height: math.unit(4, "meters")
  26901. },
  26902. {
  26903. name: "Macro",
  26904. height: math.unit(50, "meters")
  26905. },
  26906. {
  26907. name: "Macro+",
  26908. height: math.unit(100, "meters")
  26909. },
  26910. {
  26911. name: "Megamacro",
  26912. height: math.unit(20, "km")
  26913. },
  26914. {
  26915. name: "Caretaker",
  26916. height: math.unit(444, "megameters")
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(1.67, "meters"),
  26925. weight: math.unit(140, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26929. extra: 438 / 410,
  26930. bottom: 0.75 / 439
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Shrunken",
  26937. height: math.unit(7.6, "cm")
  26938. },
  26939. {
  26940. name: "Human Scale",
  26941. height: math.unit(1.67, "meters")
  26942. },
  26943. {
  26944. name: "Wolxi Scale",
  26945. height: math.unit(36.7, "meters"),
  26946. default: true
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26952. {
  26953. front: {
  26954. height: math.unit(1.73, "meters"),
  26955. weight: math.unit(240, "lb"),
  26956. name: "Front",
  26957. image: {
  26958. source: "./media/characters/izue-two-mothers/front.svg",
  26959. extra: 469 / 437,
  26960. bottom: 1.24 / 470.6
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Shrunken",
  26967. height: math.unit(7.86, "cm")
  26968. },
  26969. {
  26970. name: "Human Scale",
  26971. height: math.unit(1.73, "meters")
  26972. },
  26973. {
  26974. name: "Wolxi Scale",
  26975. height: math.unit(38, "meters"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(1.55, "meters"),
  26985. weight: math.unit(120, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/teeku-love-shack/front.svg",
  26989. extra: 387 / 362,
  26990. bottom: 1.51 / 388
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Shrunken",
  26997. height: math.unit(7, "cm")
  26998. },
  26999. {
  27000. name: "Human Scale",
  27001. height: math.unit(1.55, "meters")
  27002. },
  27003. {
  27004. name: "Wolxi Scale",
  27005. height: math.unit(34.1, "meters"),
  27006. default: true
  27007. },
  27008. ]
  27009. ))
  27010. characterMakers.push(() => makeCharacter(
  27011. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27012. {
  27013. front: {
  27014. height: math.unit(1.83, "meters"),
  27015. weight: math.unit(135, "lb"),
  27016. name: "Front",
  27017. image: {
  27018. source: "./media/characters/dejma-the-red/front.svg",
  27019. extra: 480 / 458,
  27020. bottom: 1.8 / 482
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Shrunken",
  27027. height: math.unit(8.3, "cm")
  27028. },
  27029. {
  27030. name: "Human Scale",
  27031. height: math.unit(1.83, "meters")
  27032. },
  27033. {
  27034. name: "Wolxi Scale",
  27035. height: math.unit(40, "meters"),
  27036. default: true
  27037. },
  27038. ]
  27039. ))
  27040. characterMakers.push(() => makeCharacter(
  27041. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27042. {
  27043. front: {
  27044. height: math.unit(1.78, "meters"),
  27045. weight: math.unit(65, "kg"),
  27046. name: "Front",
  27047. image: {
  27048. source: "./media/characters/aki/front.svg",
  27049. extra: 452 / 415
  27050. }
  27051. },
  27052. frontNsfw: {
  27053. height: math.unit(1.78, "meters"),
  27054. weight: math.unit(65, "kg"),
  27055. name: "Front (NSFW)",
  27056. image: {
  27057. source: "./media/characters/aki/front-nsfw.svg",
  27058. extra: 452 / 415
  27059. }
  27060. },
  27061. back: {
  27062. height: math.unit(1.78, "meters"),
  27063. weight: math.unit(65, "kg"),
  27064. name: "Back",
  27065. image: {
  27066. source: "./media/characters/aki/back.svg",
  27067. extra: 452 / 415
  27068. }
  27069. },
  27070. rump: {
  27071. height: math.unit(2.05, "feet"),
  27072. name: "Rump",
  27073. image: {
  27074. source: "./media/characters/aki/rump.svg"
  27075. }
  27076. },
  27077. dick: {
  27078. height: math.unit(0.95, "feet"),
  27079. name: "Dick",
  27080. image: {
  27081. source: "./media/characters/aki/dick.svg"
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Micro",
  27088. height: math.unit(15, "cm")
  27089. },
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(178, "cm"),
  27093. default: true
  27094. },
  27095. {
  27096. name: "Macro",
  27097. height: math.unit(214, "m")
  27098. },
  27099. {
  27100. name: "Macro+",
  27101. height: math.unit(534, "m")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27107. {
  27108. front: {
  27109. height: math.unit(5 + 5 / 12, "feet"),
  27110. weight: math.unit(120, "lb"),
  27111. name: "Front",
  27112. image: {
  27113. source: "./media/characters/ari/front.svg",
  27114. extra: 1550/1471,
  27115. bottom: 39/1589
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Normal",
  27122. height: math.unit(5 + 5 / 12, "feet")
  27123. },
  27124. {
  27125. name: "Macro",
  27126. height: math.unit(100, "feet"),
  27127. default: true
  27128. },
  27129. {
  27130. name: "Megamacro",
  27131. height: math.unit(100, "miles")
  27132. },
  27133. {
  27134. name: "Gigamacro",
  27135. height: math.unit(80000, "miles")
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27141. {
  27142. side: {
  27143. height: math.unit(9, "feet"),
  27144. weight: math.unit(400, "kg"),
  27145. name: "Side",
  27146. image: {
  27147. source: "./media/characters/bolt/side.svg",
  27148. extra: 1126 / 896,
  27149. bottom: 60 / 1187.3,
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Micro",
  27156. height: math.unit(5, "inches")
  27157. },
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(9, "feet"),
  27161. default: true
  27162. },
  27163. {
  27164. name: "Macro",
  27165. height: math.unit(700, "feet")
  27166. },
  27167. {
  27168. name: "Max Size",
  27169. height: math.unit(1.52e22, "yottameters")
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27175. {
  27176. front: {
  27177. height: math.unit(4.3, "meters"),
  27178. weight: math.unit(3, "tons"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/draekon-sylviar/front.svg",
  27182. extra: 2072/1512,
  27183. bottom: 74/2146
  27184. }
  27185. },
  27186. back: {
  27187. height: math.unit(4.3, "meters"),
  27188. weight: math.unit(3, "tons"),
  27189. name: "Back",
  27190. image: {
  27191. source: "./media/characters/draekon-sylviar/back.svg",
  27192. extra: 1639/1483,
  27193. bottom: 41/1680
  27194. }
  27195. },
  27196. feral: {
  27197. height: math.unit(1.15, "meters"),
  27198. weight: math.unit(3, "tons"),
  27199. name: "Feral",
  27200. image: {
  27201. source: "./media/characters/draekon-sylviar/feral.svg",
  27202. extra: 1033/395,
  27203. bottom: 130/1163
  27204. }
  27205. },
  27206. maw: {
  27207. height: math.unit(1.3, "meters"),
  27208. name: "Maw",
  27209. image: {
  27210. source: "./media/characters/draekon-sylviar/maw.svg"
  27211. }
  27212. },
  27213. mawSeparated: {
  27214. height: math.unit(1.53, "meters"),
  27215. name: "Separated Maw",
  27216. image: {
  27217. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27218. }
  27219. },
  27220. tail: {
  27221. height: math.unit(1.15, "meters"),
  27222. name: "Tail",
  27223. image: {
  27224. source: "./media/characters/draekon-sylviar/tail.svg"
  27225. }
  27226. },
  27227. tailDick: {
  27228. height: math.unit(1.15, "meters"),
  27229. name: "Tail (Dick)",
  27230. image: {
  27231. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27232. }
  27233. },
  27234. tailDickSeparated: {
  27235. height: math.unit(1.19, "meters"),
  27236. name: "Tail (Separated Dick)",
  27237. image: {
  27238. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27239. }
  27240. },
  27241. slit: {
  27242. height: math.unit(1, "meters"),
  27243. name: "Slit",
  27244. image: {
  27245. source: "./media/characters/draekon-sylviar/slit.svg"
  27246. }
  27247. },
  27248. dick: {
  27249. height: math.unit(1.15, "meters"),
  27250. name: "Dick",
  27251. image: {
  27252. source: "./media/characters/draekon-sylviar/dick.svg"
  27253. }
  27254. },
  27255. dickSeparated: {
  27256. height: math.unit(1.1, "meters"),
  27257. name: "Separated Dick",
  27258. image: {
  27259. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27260. }
  27261. },
  27262. sheath: {
  27263. height: math.unit(1.15, "meters"),
  27264. name: "Sheath",
  27265. image: {
  27266. source: "./media/characters/draekon-sylviar/sheath.svg"
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Small",
  27273. height: math.unit(4.53 / 2, "meters"),
  27274. default: true
  27275. },
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(4.53, "meters"),
  27279. default: true
  27280. },
  27281. {
  27282. name: "Large",
  27283. height: math.unit(4.53 * 2, "meters"),
  27284. },
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27289. {
  27290. front: {
  27291. height: math.unit(6 + 2 / 12, "feet"),
  27292. weight: math.unit(180, "lb"),
  27293. name: "Front",
  27294. image: {
  27295. source: "./media/characters/brawler/front.svg",
  27296. extra: 3301 / 3027,
  27297. bottom: 138 / 3439
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Normal",
  27304. height: math.unit(6 + 2 / 12, "feet"),
  27305. default: true
  27306. },
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27311. {
  27312. front: {
  27313. height: math.unit(11, "feet"),
  27314. weight: math.unit(1000, "lb"),
  27315. name: "Front",
  27316. image: {
  27317. source: "./media/characters/alex/front.svg",
  27318. bottom: 44.5 / 620
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Micro",
  27325. height: math.unit(5, "inches")
  27326. },
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(11, "feet"),
  27330. default: true
  27331. },
  27332. {
  27333. name: "Macro",
  27334. height: math.unit(9.5e9, "feet")
  27335. },
  27336. {
  27337. name: "Max Size",
  27338. height: math.unit(1.4e283, "yottameters")
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27344. {
  27345. female: {
  27346. height: math.unit(29.9, "m"),
  27347. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27348. name: "Female",
  27349. image: {
  27350. source: "./media/characters/zenari/female.svg",
  27351. extra: 3281.6 / 3217,
  27352. bottom: 72.2 / 3353
  27353. }
  27354. },
  27355. male: {
  27356. height: math.unit(27.7, "m"),
  27357. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27358. name: "Male",
  27359. image: {
  27360. source: "./media/characters/zenari/male.svg",
  27361. extra: 3008 / 2991,
  27362. bottom: 54.6 / 3069
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Macro",
  27369. height: math.unit(29.7, "meters"),
  27370. default: true
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27376. {
  27377. female: {
  27378. height: math.unit(23.8, "m"),
  27379. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27380. name: "Female",
  27381. image: {
  27382. source: "./media/characters/mactarian/female.svg",
  27383. extra: 2662 / 2569,
  27384. bottom: 73 / 2736
  27385. }
  27386. },
  27387. male: {
  27388. height: math.unit(23.8, "m"),
  27389. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27390. name: "Male",
  27391. image: {
  27392. source: "./media/characters/mactarian/male.svg",
  27393. extra: 2673 / 2600,
  27394. bottom: 76 / 2750
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Macro",
  27401. height: math.unit(23.8, "meters"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27408. {
  27409. female: {
  27410. height: math.unit(19.3, "m"),
  27411. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27412. name: "Female",
  27413. image: {
  27414. source: "./media/characters/umok/female.svg",
  27415. extra: 2186 / 2078,
  27416. bottom: 87 / 2277
  27417. }
  27418. },
  27419. male: {
  27420. height: math.unit(19.5, "m"),
  27421. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27422. name: "Male",
  27423. image: {
  27424. source: "./media/characters/umok/male.svg",
  27425. extra: 2233 / 2140,
  27426. bottom: 24.4 / 2258
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Macro",
  27433. height: math.unit(19.3, "meters"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27440. {
  27441. female: {
  27442. height: math.unit(26.15, "m"),
  27443. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27444. name: "Female",
  27445. image: {
  27446. source: "./media/characters/joraxian/female.svg",
  27447. extra: 2912 / 2824,
  27448. bottom: 36 / 2956
  27449. }
  27450. },
  27451. male: {
  27452. height: math.unit(25.4, "m"),
  27453. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27454. name: "Male",
  27455. image: {
  27456. source: "./media/characters/joraxian/male.svg",
  27457. extra: 2877 / 2721,
  27458. bottom: 82 / 2967
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Macro",
  27465. height: math.unit(26.15, "meters"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27472. {
  27473. female: {
  27474. height: math.unit(21.6, "m"),
  27475. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27476. name: "Female",
  27477. image: {
  27478. source: "./media/characters/sthara/female.svg",
  27479. extra: 2516 / 2347,
  27480. bottom: 21.5 / 2537
  27481. }
  27482. },
  27483. male: {
  27484. height: math.unit(24, "m"),
  27485. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27486. name: "Male",
  27487. image: {
  27488. source: "./media/characters/sthara/male.svg",
  27489. extra: 2732 / 2607,
  27490. bottom: 23 / 2732
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Macro",
  27497. height: math.unit(21.6, "meters"),
  27498. default: true
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27504. {
  27505. front: {
  27506. height: math.unit(6 + 4 / 12, "feet"),
  27507. weight: math.unit(175, "lb"),
  27508. name: "Front",
  27509. image: {
  27510. source: "./media/characters/luka-bryzant/front.svg",
  27511. extra: 311 / 289,
  27512. bottom: 4 / 315
  27513. }
  27514. },
  27515. back: {
  27516. height: math.unit(6 + 4 / 12, "feet"),
  27517. weight: math.unit(175, "lb"),
  27518. name: "Back",
  27519. image: {
  27520. source: "./media/characters/luka-bryzant/back.svg",
  27521. extra: 311 / 289,
  27522. bottom: 3.8 / 313.7
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Micro",
  27529. height: math.unit(10, "inches")
  27530. },
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(6 + 4 / 12, "feet"),
  27534. default: true
  27535. },
  27536. {
  27537. name: "Large",
  27538. height: math.unit(12, "feet")
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27544. {
  27545. front: {
  27546. height: math.unit(5 + 7 / 12, "feet"),
  27547. weight: math.unit(185, "lb"),
  27548. name: "Front",
  27549. image: {
  27550. source: "./media/characters/aman-aquila/front.svg",
  27551. extra: 1013 / 976,
  27552. bottom: 45.6 / 1057
  27553. }
  27554. },
  27555. side: {
  27556. height: math.unit(5 + 7 / 12, "feet"),
  27557. weight: math.unit(185, "lb"),
  27558. name: "Side",
  27559. image: {
  27560. source: "./media/characters/aman-aquila/side.svg",
  27561. extra: 1054 / 1011,
  27562. bottom: 15 / 1070
  27563. }
  27564. },
  27565. back: {
  27566. height: math.unit(5 + 7 / 12, "feet"),
  27567. weight: math.unit(185, "lb"),
  27568. name: "Back",
  27569. image: {
  27570. source: "./media/characters/aman-aquila/back.svg",
  27571. extra: 1026 / 970,
  27572. bottom: 12 / 1039
  27573. }
  27574. },
  27575. head: {
  27576. height: math.unit(1.211, "feet"),
  27577. name: "Head",
  27578. image: {
  27579. source: "./media/characters/aman-aquila/head.svg",
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Minimicro",
  27586. height: math.unit(0.057, "inches")
  27587. },
  27588. {
  27589. name: "Micro",
  27590. height: math.unit(7, "inches")
  27591. },
  27592. {
  27593. name: "Mini",
  27594. height: math.unit(3 + 7 / 12, "feet")
  27595. },
  27596. {
  27597. name: "Normal",
  27598. height: math.unit(5 + 7 / 12, "feet"),
  27599. default: true
  27600. },
  27601. {
  27602. name: "Macro",
  27603. height: math.unit(157 + 7 / 12, "feet")
  27604. },
  27605. {
  27606. name: "Megamacro",
  27607. height: math.unit(1557 + 7 / 12, "feet")
  27608. },
  27609. {
  27610. name: "Gigamacro",
  27611. height: math.unit(15557 + 7 / 12, "feet")
  27612. },
  27613. ]
  27614. ))
  27615. characterMakers.push(() => makeCharacter(
  27616. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27617. {
  27618. front: {
  27619. height: math.unit(3 + 2 / 12, "inches"),
  27620. weight: math.unit(0.3, "ounces"),
  27621. name: "Front",
  27622. image: {
  27623. source: "./media/characters/hiphae/front.svg",
  27624. extra: 1931 / 1683,
  27625. bottom: 24 / 1955
  27626. }
  27627. },
  27628. },
  27629. [
  27630. {
  27631. name: "Normal",
  27632. height: math.unit(3 + 1 / 2, "inches"),
  27633. default: true
  27634. },
  27635. ]
  27636. ))
  27637. characterMakers.push(() => makeCharacter(
  27638. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27639. {
  27640. front: {
  27641. height: math.unit(5 + 10 / 12, "feet"),
  27642. weight: math.unit(165, "lb"),
  27643. name: "Front",
  27644. image: {
  27645. source: "./media/characters/nicky/front.svg",
  27646. extra: 3144 / 2886,
  27647. bottom: 45.6 / 3192
  27648. }
  27649. },
  27650. back: {
  27651. height: math.unit(5 + 10 / 12, "feet"),
  27652. weight: math.unit(165, "lb"),
  27653. name: "Back",
  27654. image: {
  27655. source: "./media/characters/nicky/back.svg",
  27656. extra: 3055 / 2804,
  27657. bottom: 28.4 / 3087
  27658. }
  27659. },
  27660. frontclothed: {
  27661. height: math.unit(5 + 10 / 12, "feet"),
  27662. weight: math.unit(165, "lb"),
  27663. name: "Front-clothed",
  27664. image: {
  27665. source: "./media/characters/nicky/front-clothed.svg",
  27666. extra: 3184.9 / 2926.9,
  27667. bottom: 86.5 / 3239.9
  27668. }
  27669. },
  27670. foot: {
  27671. height: math.unit(1.16, "feet"),
  27672. name: "Foot",
  27673. image: {
  27674. source: "./media/characters/nicky/foot.svg"
  27675. }
  27676. },
  27677. feet: {
  27678. height: math.unit(1.34, "feet"),
  27679. name: "Feet",
  27680. image: {
  27681. source: "./media/characters/nicky/feet.svg"
  27682. }
  27683. },
  27684. maw: {
  27685. height: math.unit(0.9, "feet"),
  27686. name: "Maw",
  27687. image: {
  27688. source: "./media/characters/nicky/maw.svg"
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(5 + 10 / 12, "feet"),
  27696. default: true
  27697. },
  27698. {
  27699. name: "Macro",
  27700. height: math.unit(60, "feet")
  27701. },
  27702. {
  27703. name: "Megamacro",
  27704. height: math.unit(1, "mile")
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27710. {
  27711. side: {
  27712. height: math.unit(10, "feet"),
  27713. weight: math.unit(600, "lb"),
  27714. name: "Side",
  27715. image: {
  27716. source: "./media/characters/blair/side.svg",
  27717. bottom: 16.6 / 475,
  27718. extra: 458 / 431
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Micro",
  27725. height: math.unit(8, "inches")
  27726. },
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(10, "feet"),
  27730. default: true
  27731. },
  27732. {
  27733. name: "Macro",
  27734. height: math.unit(180, "feet")
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(5 + 4 / 12, "feet"),
  27743. weight: math.unit(125, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/fisher/front.svg",
  27747. extra: 444 / 390,
  27748. bottom: 2 / 444.8
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Micro",
  27755. height: math.unit(4, "inches")
  27756. },
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(5 + 4 / 12, "feet"),
  27760. default: true
  27761. },
  27762. {
  27763. name: "Macro",
  27764. height: math.unit(100, "feet")
  27765. },
  27766. ]
  27767. ))
  27768. characterMakers.push(() => makeCharacter(
  27769. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27770. {
  27771. front: {
  27772. height: math.unit(6.71, "feet"),
  27773. weight: math.unit(200, "lb"),
  27774. preyCapacity: math.unit(1000000, "people"),
  27775. name: "Front",
  27776. image: {
  27777. source: "./media/characters/gliss/front.svg",
  27778. extra: 2347 / 2231,
  27779. bottom: 113 / 2462
  27780. }
  27781. },
  27782. hammerspaceSize: {
  27783. height: math.unit(6.71 * 717, "feet"),
  27784. weight: math.unit(200, "lb"),
  27785. preyCapacity: math.unit(1000000, "people"),
  27786. name: "Hammerspace Size",
  27787. image: {
  27788. source: "./media/characters/gliss/front.svg",
  27789. extra: 2347 / 2231,
  27790. bottom: 113 / 2462
  27791. }
  27792. },
  27793. },
  27794. [
  27795. {
  27796. name: "Normal",
  27797. height: math.unit(6.71, "feet"),
  27798. default: true
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27804. {
  27805. side: {
  27806. height: math.unit(1.44, "m"),
  27807. weight: math.unit(80, "kg"),
  27808. name: "Side",
  27809. image: {
  27810. source: "./media/characters/dune-anderson/side.svg",
  27811. bottom: 49 / 1426
  27812. }
  27813. },
  27814. },
  27815. [
  27816. {
  27817. name: "Wolf-sized",
  27818. height: math.unit(1.44, "meters")
  27819. },
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(5.05, "meters"),
  27823. default: true
  27824. },
  27825. {
  27826. name: "Big",
  27827. height: math.unit(14.4, "meters")
  27828. },
  27829. {
  27830. name: "Huge",
  27831. height: math.unit(144, "meters")
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(6, "feet"),
  27840. weight: math.unit(220, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/hind/front.svg",
  27844. extra: 1912/1787,
  27845. bottom: 52/1964
  27846. }
  27847. },
  27848. back: {
  27849. height: math.unit(6, "feet"),
  27850. weight: math.unit(220, "lb"),
  27851. name: "Back",
  27852. image: {
  27853. source: "./media/characters/hind/back.svg",
  27854. extra: 1901/1794,
  27855. bottom: 26/1927
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(6, "feet"),
  27863. default: true
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27869. {
  27870. front: {
  27871. height: math.unit(2.1, "meters"),
  27872. weight: math.unit(150, "lb"),
  27873. name: "Front",
  27874. image: {
  27875. source: "./media/characters/tharquench-sizestealer/front.svg",
  27876. extra: 1605/1470,
  27877. bottom: 36/1641
  27878. }
  27879. },
  27880. frontAlt: {
  27881. height: math.unit(2.1, "meters"),
  27882. weight: math.unit(150, "lb"),
  27883. name: "Front (Alt)",
  27884. image: {
  27885. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27886. extra: 2318 / 2063,
  27887. bottom: 93.4 / 2410
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Nano",
  27894. height: math.unit(1, "mm")
  27895. },
  27896. {
  27897. name: "Micro",
  27898. height: math.unit(1, "cm")
  27899. },
  27900. {
  27901. name: "Normal",
  27902. height: math.unit(2.1, "meters"),
  27903. default: true
  27904. },
  27905. ]
  27906. ))
  27907. characterMakers.push(() => makeCharacter(
  27908. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27909. {
  27910. front: {
  27911. height: math.unit(7 + 5 / 12, "feet"),
  27912. weight: math.unit(357, "lb"),
  27913. name: "Front",
  27914. image: {
  27915. source: "./media/characters/solex-draconov/front.svg",
  27916. extra: 1993 / 1865,
  27917. bottom: 117 / 2111
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Natural Height",
  27924. height: math.unit(7 + 5 / 12, "feet"),
  27925. default: true
  27926. },
  27927. {
  27928. name: "Macro",
  27929. height: math.unit(350, "feet")
  27930. },
  27931. {
  27932. name: "Macro+",
  27933. height: math.unit(1000, "feet")
  27934. },
  27935. {
  27936. name: "Megamacro",
  27937. height: math.unit(20, "km")
  27938. },
  27939. {
  27940. name: "Megamacro+",
  27941. height: math.unit(1000, "km")
  27942. },
  27943. {
  27944. name: "Gigamacro",
  27945. height: math.unit(2.5, "Gm")
  27946. },
  27947. {
  27948. name: "Teramacro",
  27949. height: math.unit(15, "Tm")
  27950. },
  27951. {
  27952. name: "Galactic",
  27953. height: math.unit(30, "Zm")
  27954. },
  27955. {
  27956. name: "Universal",
  27957. height: math.unit(21000, "Ym")
  27958. },
  27959. {
  27960. name: "Omniversal",
  27961. height: math.unit(9.861e50, "Ym")
  27962. },
  27963. {
  27964. name: "Existential",
  27965. height: math.unit(1e300, "meters")
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27971. {
  27972. side: {
  27973. height: math.unit(25, "feet"),
  27974. weight: math.unit(90000, "lb"),
  27975. name: "Side",
  27976. image: {
  27977. source: "./media/characters/mandarax/side.svg",
  27978. extra: 614 / 332,
  27979. bottom: 55 / 630
  27980. }
  27981. },
  27982. lounging: {
  27983. height: math.unit(15.4, "feet"),
  27984. weight: math.unit(90000, "lb"),
  27985. name: "Lounging",
  27986. image: {
  27987. source: "./media/characters/mandarax/lounging.svg",
  27988. extra: 817/609,
  27989. bottom: 685/1502
  27990. }
  27991. },
  27992. head: {
  27993. height: math.unit(11.4, "feet"),
  27994. name: "Head",
  27995. image: {
  27996. source: "./media/characters/mandarax/head.svg"
  27997. }
  27998. },
  27999. belly: {
  28000. height: math.unit(33, "feet"),
  28001. name: "Belly",
  28002. preyCapacity: math.unit(500, "people"),
  28003. image: {
  28004. source: "./media/characters/mandarax/belly.svg"
  28005. }
  28006. },
  28007. dick: {
  28008. height: math.unit(8.46, "feet"),
  28009. name: "Dick",
  28010. image: {
  28011. source: "./media/characters/mandarax/dick.svg"
  28012. }
  28013. },
  28014. top: {
  28015. height: math.unit(28, "meters"),
  28016. name: "Top",
  28017. image: {
  28018. source: "./media/characters/mandarax/top.svg"
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Normal",
  28025. height: math.unit(25, "feet"),
  28026. default: true
  28027. },
  28028. ]
  28029. ))
  28030. characterMakers.push(() => makeCharacter(
  28031. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28032. {
  28033. front: {
  28034. height: math.unit(5, "feet"),
  28035. weight: math.unit(90, "lb"),
  28036. name: "Front",
  28037. image: {
  28038. source: "./media/characters/pixil/front.svg",
  28039. extra: 2000 / 1618,
  28040. bottom: 12.3 / 2011
  28041. }
  28042. },
  28043. },
  28044. [
  28045. {
  28046. name: "Normal",
  28047. height: math.unit(5, "feet"),
  28048. default: true
  28049. },
  28050. {
  28051. name: "Megamacro",
  28052. height: math.unit(10, "miles"),
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28058. {
  28059. front: {
  28060. height: math.unit(7 + 2 / 12, "feet"),
  28061. weight: math.unit(200, "lb"),
  28062. name: "Front",
  28063. image: {
  28064. source: "./media/characters/angel/front.svg",
  28065. extra: 1946/1840,
  28066. bottom: 30/1976
  28067. }
  28068. },
  28069. },
  28070. [
  28071. {
  28072. name: "Normal",
  28073. height: math.unit(7 + 2 / 12, "feet"),
  28074. default: true
  28075. },
  28076. {
  28077. name: "Macro",
  28078. height: math.unit(1000, "feet")
  28079. },
  28080. {
  28081. name: "Megamacro",
  28082. height: math.unit(2, "miles")
  28083. },
  28084. {
  28085. name: "Gigamacro",
  28086. height: math.unit(20, "earths")
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(5, "feet"),
  28095. weight: math.unit(180, "lb"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/mekana/front.svg",
  28099. extra: 1671 / 1605,
  28100. bottom: 3.5 / 1691
  28101. }
  28102. },
  28103. side: {
  28104. height: math.unit(5, "feet"),
  28105. weight: math.unit(180, "lb"),
  28106. name: "Side",
  28107. image: {
  28108. source: "./media/characters/mekana/side.svg",
  28109. extra: 1671 / 1605,
  28110. bottom: 3.5 / 1691
  28111. }
  28112. },
  28113. back: {
  28114. height: math.unit(5, "feet"),
  28115. weight: math.unit(180, "lb"),
  28116. name: "Back",
  28117. image: {
  28118. source: "./media/characters/mekana/back.svg",
  28119. extra: 1671 / 1605,
  28120. bottom: 3.5 / 1691
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(5, "feet"),
  28128. default: true
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(4 + 6 / 12, "feet"),
  28137. weight: math.unit(80, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/pixie/front.svg",
  28141. extra: 1924 / 1825,
  28142. bottom: 22.4 / 1946
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Normal",
  28149. height: math.unit(4 + 6 / 12, "feet"),
  28150. default: true
  28151. },
  28152. {
  28153. name: "Macro",
  28154. height: math.unit(40, "feet")
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(2.1, "meters"),
  28163. weight: math.unit(200, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/the-lascivious/front.svg",
  28167. extra: 1 / 0.893,
  28168. bottom: 3.5 / 573.7
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Human Scale",
  28175. height: math.unit(2.1, "meters")
  28176. },
  28177. {
  28178. name: "Wolxi Scale",
  28179. height: math.unit(46.2, "m"),
  28180. default: true
  28181. },
  28182. {
  28183. name: "Boinker of Buildings",
  28184. height: math.unit(10, "km")
  28185. },
  28186. {
  28187. name: "Shagger of Skyscrapers",
  28188. height: math.unit(40, "km")
  28189. },
  28190. {
  28191. name: "Banger of Boroughs",
  28192. height: math.unit(4000, "km")
  28193. },
  28194. {
  28195. name: "Screwer of States",
  28196. height: math.unit(100000, "km")
  28197. },
  28198. {
  28199. name: "Pounder of Planets",
  28200. height: math.unit(2000000, "km")
  28201. },
  28202. ]
  28203. ))
  28204. characterMakers.push(() => makeCharacter(
  28205. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28206. {
  28207. front: {
  28208. height: math.unit(6, "feet"),
  28209. weight: math.unit(150, "lb"),
  28210. name: "Front",
  28211. image: {
  28212. source: "./media/characters/aj/front.svg",
  28213. extra: 2039 / 1562,
  28214. bottom: 40 / 2079
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(11 + 6 / 12, "feet"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Megamacro",
  28226. height: math.unit(60, "megameters")
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28232. {
  28233. side: {
  28234. height: math.unit(31 + 8 / 12, "feet"),
  28235. weight: math.unit(75000, "kg"),
  28236. name: "Side",
  28237. image: {
  28238. source: "./media/characters/koros/side.svg",
  28239. extra: 1442 / 1297,
  28240. bottom: 122.7 / 1562
  28241. }
  28242. },
  28243. dicksKingsCrown: {
  28244. height: math.unit(6, "feet"),
  28245. name: "Dicks (King's Crown)",
  28246. image: {
  28247. source: "./media/characters/koros/dicks-kings-crown.svg"
  28248. }
  28249. },
  28250. dicksTailSet: {
  28251. height: math.unit(3, "feet"),
  28252. name: "Dicks (Tail Set)",
  28253. image: {
  28254. source: "./media/characters/koros/dicks-tail-set.svg"
  28255. }
  28256. },
  28257. dickCumming: {
  28258. height: math.unit(7.98, "feet"),
  28259. name: "Dick (Cumming)",
  28260. image: {
  28261. source: "./media/characters/koros/dick-cumming.svg"
  28262. }
  28263. },
  28264. dicksBack: {
  28265. height: math.unit(5.9, "feet"),
  28266. name: "Dicks (Back)",
  28267. image: {
  28268. source: "./media/characters/koros/dicks-back.svg"
  28269. }
  28270. },
  28271. dicksFront: {
  28272. height: math.unit(3.72, "feet"),
  28273. name: "Dicks (Front)",
  28274. image: {
  28275. source: "./media/characters/koros/dicks-front.svg"
  28276. }
  28277. },
  28278. dicksPeeking: {
  28279. height: math.unit(3.0, "feet"),
  28280. name: "Dicks (Peeking)",
  28281. image: {
  28282. source: "./media/characters/koros/dicks-peeking.svg"
  28283. }
  28284. },
  28285. eye: {
  28286. height: math.unit(1.7, "feet"),
  28287. name: "Eye",
  28288. image: {
  28289. source: "./media/characters/koros/eye.svg"
  28290. }
  28291. },
  28292. headFront: {
  28293. height: math.unit(11.69, "feet"),
  28294. name: "Head (Front)",
  28295. image: {
  28296. source: "./media/characters/koros/head-front.svg"
  28297. }
  28298. },
  28299. headSide: {
  28300. height: math.unit(14, "feet"),
  28301. name: "Head (Side)",
  28302. image: {
  28303. source: "./media/characters/koros/head-side.svg"
  28304. }
  28305. },
  28306. leg: {
  28307. height: math.unit(17, "feet"),
  28308. name: "Leg",
  28309. image: {
  28310. source: "./media/characters/koros/leg.svg"
  28311. }
  28312. },
  28313. mawSide: {
  28314. height: math.unit(12.8, "feet"),
  28315. name: "Maw (Side)",
  28316. image: {
  28317. source: "./media/characters/koros/maw-side.svg"
  28318. }
  28319. },
  28320. mawSpitting: {
  28321. height: math.unit(17, "feet"),
  28322. name: "Maw (Spitting)",
  28323. image: {
  28324. source: "./media/characters/koros/maw-spitting.svg"
  28325. }
  28326. },
  28327. slit: {
  28328. height: math.unit(2.8, "feet"),
  28329. name: "Slit",
  28330. image: {
  28331. source: "./media/characters/koros/slit.svg"
  28332. }
  28333. },
  28334. stomach: {
  28335. height: math.unit(6.8, "feet"),
  28336. preyCapacity: math.unit(20, "people"),
  28337. name: "Stomach",
  28338. image: {
  28339. source: "./media/characters/koros/stomach.svg"
  28340. }
  28341. },
  28342. wingspanBottom: {
  28343. height: math.unit(114, "feet"),
  28344. name: "Wingspan (Bottom)",
  28345. image: {
  28346. source: "./media/characters/koros/wingspan-bottom.svg"
  28347. }
  28348. },
  28349. wingspanTop: {
  28350. height: math.unit(104, "feet"),
  28351. name: "Wingspan (Top)",
  28352. image: {
  28353. source: "./media/characters/koros/wingspan-top.svg"
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(31 + 8 / 12, "feet"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28367. {
  28368. front: {
  28369. height: math.unit(18 + 5 / 12, "feet"),
  28370. weight: math.unit(3750, "kg"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/vexx/front.svg",
  28374. extra: 426 / 396,
  28375. bottom: 31.5 / 458
  28376. }
  28377. },
  28378. maw: {
  28379. height: math.unit(6, "feet"),
  28380. name: "Maw",
  28381. image: {
  28382. source: "./media/characters/vexx/maw.svg"
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(18 + 5 / 12, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(17 + 6 / 12, "feet"),
  28399. weight: math.unit(150, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/baadra/front.svg",
  28403. extra: 1694/1553,
  28404. bottom: 179/1873
  28405. }
  28406. },
  28407. frontAlt: {
  28408. height: math.unit(17 + 6 / 12, "feet"),
  28409. weight: math.unit(150, "lb"),
  28410. name: "Front (Alt)",
  28411. image: {
  28412. source: "./media/characters/baadra/front-alt.svg",
  28413. extra: 3137 / 2890,
  28414. bottom: 168.4 / 3305
  28415. }
  28416. },
  28417. back: {
  28418. height: math.unit(17 + 6 / 12, "feet"),
  28419. weight: math.unit(150, "lb"),
  28420. name: "Back",
  28421. image: {
  28422. source: "./media/characters/baadra/back.svg",
  28423. extra: 3142 / 2890,
  28424. bottom: 220 / 3371
  28425. }
  28426. },
  28427. head: {
  28428. height: math.unit(5.45, "feet"),
  28429. name: "Head",
  28430. image: {
  28431. source: "./media/characters/baadra/head.svg"
  28432. }
  28433. },
  28434. headAngry: {
  28435. height: math.unit(4.95, "feet"),
  28436. name: "Head (Angry)",
  28437. image: {
  28438. source: "./media/characters/baadra/head-angry.svg"
  28439. }
  28440. },
  28441. headOpen: {
  28442. height: math.unit(6, "feet"),
  28443. name: "Head (Open)",
  28444. image: {
  28445. source: "./media/characters/baadra/head-open.svg"
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Normal",
  28452. height: math.unit(17 + 6 / 12, "feet"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(7 + 3 / 12, "feet"),
  28462. weight: math.unit(180, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/juri/front.svg",
  28466. extra: 1401 / 1237,
  28467. bottom: 18.5 / 1418
  28468. }
  28469. },
  28470. side: {
  28471. height: math.unit(7 + 3 / 12, "feet"),
  28472. weight: math.unit(180, "lb"),
  28473. name: "Side",
  28474. image: {
  28475. source: "./media/characters/juri/side.svg",
  28476. extra: 1424 / 1242,
  28477. bottom: 18.5 / 1447
  28478. }
  28479. },
  28480. sitting: {
  28481. height: math.unit(6, "feet"),
  28482. weight: math.unit(180, "lb"),
  28483. name: "Sitting",
  28484. image: {
  28485. source: "./media/characters/juri/sitting.svg",
  28486. extra: 1270 / 1143,
  28487. bottom: 100 / 1343
  28488. }
  28489. },
  28490. back: {
  28491. height: math.unit(7 + 3 / 12, "feet"),
  28492. weight: math.unit(180, "lb"),
  28493. name: "Back",
  28494. image: {
  28495. source: "./media/characters/juri/back.svg",
  28496. extra: 1377 / 1240,
  28497. bottom: 23.7 / 1405
  28498. }
  28499. },
  28500. maw: {
  28501. height: math.unit(2.8, "feet"),
  28502. name: "Maw",
  28503. image: {
  28504. source: "./media/characters/juri/maw.svg"
  28505. }
  28506. },
  28507. stomach: {
  28508. height: math.unit(0.89, "feet"),
  28509. preyCapacity: math.unit(4, "liters"),
  28510. name: "Stomach",
  28511. image: {
  28512. source: "./media/characters/juri/stomach.svg"
  28513. }
  28514. },
  28515. },
  28516. [
  28517. {
  28518. name: "Normal",
  28519. height: math.unit(7 + 3 / 12, "feet"),
  28520. default: true
  28521. },
  28522. ]
  28523. ))
  28524. characterMakers.push(() => makeCharacter(
  28525. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28526. {
  28527. fox: {
  28528. height: math.unit(5 + 6 / 12, "feet"),
  28529. weight: math.unit(140, "lb"),
  28530. name: "Fox",
  28531. image: {
  28532. source: "./media/characters/maxene-sita/fox.svg",
  28533. extra: 146 / 138,
  28534. bottom: 2.1 / 148.19
  28535. }
  28536. },
  28537. foxLaying: {
  28538. height: math.unit(1.70, "feet"),
  28539. weight: math.unit(140, "lb"),
  28540. name: "Fox (Laying)",
  28541. image: {
  28542. source: "./media/characters/maxene-sita/fox-laying.svg",
  28543. extra: 910 / 572,
  28544. bottom: 71 / 981
  28545. }
  28546. },
  28547. kitsune: {
  28548. height: math.unit(10, "feet"),
  28549. weight: math.unit(800, "lb"),
  28550. name: "Kitsune",
  28551. image: {
  28552. source: "./media/characters/maxene-sita/kitsune.svg",
  28553. extra: 185 / 176,
  28554. bottom: 4.7 / 189.9
  28555. }
  28556. },
  28557. hellhound: {
  28558. height: math.unit(10, "feet"),
  28559. weight: math.unit(700, "lb"),
  28560. name: "Hellhound",
  28561. image: {
  28562. source: "./media/characters/maxene-sita/hellhound.svg",
  28563. extra: 1600 / 1545,
  28564. bottom: 81 / 1681
  28565. }
  28566. },
  28567. },
  28568. [
  28569. {
  28570. name: "Normal",
  28571. height: math.unit(5 + 6 / 12, "feet"),
  28572. default: true
  28573. },
  28574. ]
  28575. ))
  28576. characterMakers.push(() => makeCharacter(
  28577. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28578. {
  28579. front: {
  28580. height: math.unit(3 + 4 / 12, "feet"),
  28581. weight: math.unit(70, "lb"),
  28582. name: "Front",
  28583. image: {
  28584. source: "./media/characters/maia/front.svg",
  28585. extra: 227 / 219.5,
  28586. bottom: 40 / 267
  28587. }
  28588. },
  28589. back: {
  28590. height: math.unit(3 + 4 / 12, "feet"),
  28591. weight: math.unit(70, "lb"),
  28592. name: "Back",
  28593. image: {
  28594. source: "./media/characters/maia/back.svg",
  28595. extra: 237 / 225
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(3 + 4 / 12, "feet"),
  28603. default: true
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28609. {
  28610. front: {
  28611. height: math.unit(5 + 10 / 12, "feet"),
  28612. weight: math.unit(197, "lb"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/jabaro/front.svg",
  28616. extra: 225 / 216,
  28617. bottom: 5.06 / 230
  28618. }
  28619. },
  28620. back: {
  28621. height: math.unit(5 + 10 / 12, "feet"),
  28622. weight: math.unit(197, "lb"),
  28623. name: "Back",
  28624. image: {
  28625. source: "./media/characters/jabaro/back.svg",
  28626. extra: 225 / 219,
  28627. bottom: 1.9 / 227
  28628. }
  28629. },
  28630. },
  28631. [
  28632. {
  28633. name: "Normal",
  28634. height: math.unit(5 + 10 / 12, "feet"),
  28635. default: true
  28636. },
  28637. ]
  28638. ))
  28639. characterMakers.push(() => makeCharacter(
  28640. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28641. {
  28642. front: {
  28643. height: math.unit(5 + 8 / 12, "feet"),
  28644. weight: math.unit(139, "lb"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/risa/front.svg",
  28648. extra: 270 / 260,
  28649. bottom: 11.2 / 282
  28650. }
  28651. },
  28652. back: {
  28653. height: math.unit(5 + 8 / 12, "feet"),
  28654. weight: math.unit(139, "lb"),
  28655. name: "Back",
  28656. image: {
  28657. source: "./media/characters/risa/back.svg",
  28658. extra: 264 / 255,
  28659. bottom: 4 / 268
  28660. }
  28661. },
  28662. },
  28663. [
  28664. {
  28665. name: "Normal",
  28666. height: math.unit(5 + 8 / 12, "feet"),
  28667. default: true
  28668. },
  28669. ]
  28670. ))
  28671. characterMakers.push(() => makeCharacter(
  28672. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28673. {
  28674. front: {
  28675. height: math.unit(2 + 11 / 12, "feet"),
  28676. weight: math.unit(30, "lb"),
  28677. name: "Front",
  28678. image: {
  28679. source: "./media/characters/weatley/front.svg",
  28680. bottom: 10.7 / 414,
  28681. extra: 403.5 / 362
  28682. }
  28683. },
  28684. back: {
  28685. height: math.unit(2 + 11 / 12, "feet"),
  28686. weight: math.unit(30, "lb"),
  28687. name: "Back",
  28688. image: {
  28689. source: "./media/characters/weatley/back.svg",
  28690. bottom: 10.7 / 414,
  28691. extra: 403.5 / 362
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Normal",
  28698. height: math.unit(2 + 11 / 12, "feet"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(5 + 2 / 12, "feet"),
  28708. weight: math.unit(50, "kg"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/mercury-crescent/front.svg",
  28712. extra: 1088 / 1033,
  28713. bottom: 18.9 / 1109
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Normal",
  28720. height: math.unit(5 + 2 / 12, "feet"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(2, "feet"),
  28730. weight: math.unit(15, "kg"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/diamond-jones/front.svg",
  28734. extra: 727/723,
  28735. bottom: 46/773
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Normal",
  28742. height: math.unit(2, "feet"),
  28743. default: true
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28749. {
  28750. front: {
  28751. height: math.unit(3, "feet"),
  28752. weight: math.unit(30, "kg"),
  28753. name: "Front",
  28754. image: {
  28755. source: "./media/characters/sweet-bit/front.svg",
  28756. extra: 675 / 567,
  28757. bottom: 27.7 / 703
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Normal",
  28764. height: math.unit(3, "feet"),
  28765. default: true
  28766. },
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28771. {
  28772. side: {
  28773. height: math.unit(9.178, "feet"),
  28774. weight: math.unit(500, "lb"),
  28775. name: "Side",
  28776. image: {
  28777. source: "./media/characters/umbrazen/side.svg",
  28778. extra: 1730 / 1473,
  28779. bottom: 34.6 / 1765
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(9.178, "feet"),
  28787. default: true
  28788. },
  28789. ]
  28790. ))
  28791. characterMakers.push(() => makeCharacter(
  28792. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28793. {
  28794. front: {
  28795. height: math.unit(10, "feet"),
  28796. weight: math.unit(750, "lb"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/arlist/front.svg",
  28800. extra: 961 / 778,
  28801. bottom: 6.2 / 986
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Normal",
  28808. height: math.unit(10, "feet"),
  28809. default: true
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(5 + 1 / 12, "feet"),
  28818. weight: math.unit(110, "lb"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/aradel/front.svg",
  28822. extra: 324 / 303,
  28823. bottom: 3.6 / 329.4
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Normal",
  28830. height: math.unit(5 + 1 / 12, "feet"),
  28831. default: true
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28837. {
  28838. dressed: {
  28839. height: math.unit(3 + 8 / 12, "feet"),
  28840. weight: math.unit(50, "lb"),
  28841. name: "Dressed",
  28842. image: {
  28843. source: "./media/characters/serryn/dressed.svg",
  28844. extra: 1792 / 1656,
  28845. bottom: 43.5 / 1840
  28846. }
  28847. },
  28848. nude: {
  28849. height: math.unit(3 + 8 / 12, "feet"),
  28850. weight: math.unit(50, "lb"),
  28851. name: "Nude",
  28852. image: {
  28853. source: "./media/characters/serryn/nude.svg",
  28854. extra: 1792 / 1656,
  28855. bottom: 43.5 / 1840
  28856. }
  28857. },
  28858. },
  28859. [
  28860. {
  28861. name: "Normal",
  28862. height: math.unit(3 + 8 / 12, "feet"),
  28863. default: true
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(7 + 10 / 12, "feet"),
  28872. weight: math.unit(255, "lb"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/xavier-thyme/front.svg",
  28876. extra: 3733 / 3642,
  28877. bottom: 131 / 3869
  28878. }
  28879. },
  28880. frontRaven: {
  28881. height: math.unit(7 + 10 / 12, "feet"),
  28882. weight: math.unit(255, "lb"),
  28883. name: "Front (Raven)",
  28884. image: {
  28885. source: "./media/characters/xavier-thyme/front-raven.svg",
  28886. extra: 4385 / 3642,
  28887. bottom: 131 / 4517
  28888. }
  28889. },
  28890. },
  28891. [
  28892. {
  28893. name: "Normal",
  28894. height: math.unit(7 + 10 / 12, "feet"),
  28895. default: true
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(1.6, "m"),
  28904. weight: math.unit(50, "kg"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/kiki/front.svg",
  28908. extra: 4682 / 3610,
  28909. bottom: 115 / 4777
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(1.6, "meters"),
  28917. default: true
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(50, "m"),
  28926. weight: math.unit(500, "tonnes"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/ryoko/front.svg",
  28930. extra: 4632 / 3926,
  28931. bottom: 193 / 4823
  28932. }
  28933. },
  28934. },
  28935. [
  28936. {
  28937. name: "Normal",
  28938. height: math.unit(50, "meters"),
  28939. default: true
  28940. },
  28941. ]
  28942. ))
  28943. characterMakers.push(() => makeCharacter(
  28944. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28945. {
  28946. front: {
  28947. height: math.unit(30, "m"),
  28948. weight: math.unit(22, "tonnes"),
  28949. name: "Front",
  28950. image: {
  28951. source: "./media/characters/elio/front.svg",
  28952. extra: 4582 / 3720,
  28953. bottom: 236 / 4828
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(30, "meters"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(6 + 3 / 12, "feet"),
  28970. weight: math.unit(120, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/azura/front.svg",
  28974. extra: 1149 / 1135,
  28975. bottom: 45 / 1194
  28976. }
  28977. },
  28978. frontClothed: {
  28979. height: math.unit(6 + 3 / 12, "feet"),
  28980. weight: math.unit(120, "lb"),
  28981. name: "Front (Clothed)",
  28982. image: {
  28983. source: "./media/characters/azura/front-clothed.svg",
  28984. extra: 1149 / 1135,
  28985. bottom: 45 / 1194
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(6 + 3 / 12, "feet"),
  28993. default: true
  28994. },
  28995. {
  28996. name: "Macro",
  28997. height: math.unit(20 + 6 / 12, "feet")
  28998. },
  28999. {
  29000. name: "Megamacro",
  29001. height: math.unit(12, "miles")
  29002. },
  29003. {
  29004. name: "Gigamacro",
  29005. height: math.unit(10000, "miles")
  29006. },
  29007. {
  29008. name: "Teramacro",
  29009. height: math.unit(900000, "miles")
  29010. },
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29015. {
  29016. front: {
  29017. height: math.unit(12, "feet"),
  29018. weight: math.unit(1, "ton"),
  29019. capacity: math.unit(660000, "gallons"),
  29020. name: "Front",
  29021. image: {
  29022. source: "./media/characters/zeus/front.svg",
  29023. extra: 5005 / 4717,
  29024. bottom: 363 / 5388
  29025. }
  29026. },
  29027. },
  29028. [
  29029. {
  29030. name: "Normal",
  29031. height: math.unit(12, "feet")
  29032. },
  29033. {
  29034. name: "Preferred Size",
  29035. height: math.unit(0.5, "miles"),
  29036. default: true
  29037. },
  29038. {
  29039. name: "Giga Horse",
  29040. height: math.unit(300, "miles")
  29041. },
  29042. {
  29043. name: "Riding Planets",
  29044. height: math.unit(30, "megameters")
  29045. },
  29046. {
  29047. name: "Cosmic Giant",
  29048. height: math.unit(3, "zettameters")
  29049. },
  29050. {
  29051. name: "Breeding God",
  29052. height: math.unit(9.92e22, "yottameters")
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29058. {
  29059. side: {
  29060. height: math.unit(9, "feet"),
  29061. weight: math.unit(1500, "kg"),
  29062. name: "Side",
  29063. image: {
  29064. source: "./media/characters/fang/side.svg",
  29065. extra: 924 / 866,
  29066. bottom: 47.5 / 972.3
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(9, "feet"),
  29074. default: true
  29075. },
  29076. {
  29077. name: "Macro",
  29078. height: math.unit(75 + 6 / 12, "feet")
  29079. },
  29080. {
  29081. name: "Teramacro",
  29082. height: math.unit(50000, "miles")
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(10, "feet"),
  29091. weight: math.unit(2, "tons"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/rekhit/front.svg",
  29095. extra: 2796 / 2590,
  29096. bottom: 225 / 3022
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Normal",
  29103. height: math.unit(10, "feet"),
  29104. default: true
  29105. },
  29106. {
  29107. name: "Macro",
  29108. height: math.unit(500, "feet")
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(7 + 6.451 / 12, "feet"),
  29117. weight: math.unit(310, "lb"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/dahlia-verrick/front.svg",
  29121. extra: 1488 / 1365,
  29122. bottom: 6.2 / 1495
  29123. }
  29124. },
  29125. back: {
  29126. height: math.unit(7 + 6.451 / 12, "feet"),
  29127. weight: math.unit(310, "lb"),
  29128. name: "Back",
  29129. image: {
  29130. source: "./media/characters/dahlia-verrick/back.svg",
  29131. extra: 1472 / 1351,
  29132. bottom: 5.28 / 1477
  29133. }
  29134. },
  29135. frontBusiness: {
  29136. height: math.unit(7 + 6.451 / 12, "feet"),
  29137. weight: math.unit(200, "lb"),
  29138. name: "Front (Business)",
  29139. image: {
  29140. source: "./media/characters/dahlia-verrick/front-business.svg",
  29141. extra: 1478 / 1381,
  29142. bottom: 5.5 / 1484
  29143. }
  29144. },
  29145. frontCasual: {
  29146. height: math.unit(7 + 6.451 / 12, "feet"),
  29147. weight: math.unit(200, "lb"),
  29148. name: "Front (Casual)",
  29149. image: {
  29150. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29151. extra: 1478 / 1381,
  29152. bottom: 5.5 / 1484
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Travel-Sized",
  29159. height: math.unit(7.45, "inches")
  29160. },
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(7 + 6.451 / 12, "feet"),
  29164. default: true
  29165. },
  29166. {
  29167. name: "Hitting the Town",
  29168. height: math.unit(37 + 8 / 12, "feet")
  29169. },
  29170. {
  29171. name: "Stomp in the Suburbs",
  29172. height: math.unit(964 + 9.728 / 12, "feet")
  29173. },
  29174. {
  29175. name: "Sit on the City",
  29176. height: math.unit(61747 + 10.592 / 12, "feet")
  29177. },
  29178. {
  29179. name: "Glomp the Globe",
  29180. height: math.unit(252919327 + 4.832 / 12, "feet")
  29181. },
  29182. ]
  29183. ))
  29184. characterMakers.push(() => makeCharacter(
  29185. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29186. {
  29187. front: {
  29188. height: math.unit(6 + 4 / 12, "feet"),
  29189. weight: math.unit(320, "lb"),
  29190. name: "Front",
  29191. image: {
  29192. source: "./media/characters/balina-mahigan/front.svg",
  29193. extra: 447 / 428,
  29194. bottom: 18 / 466
  29195. }
  29196. },
  29197. back: {
  29198. height: math.unit(6 + 4 / 12, "feet"),
  29199. weight: math.unit(320, "lb"),
  29200. name: "Back",
  29201. image: {
  29202. source: "./media/characters/balina-mahigan/back.svg",
  29203. extra: 445 / 428,
  29204. bottom: 4.07 / 448
  29205. }
  29206. },
  29207. arm: {
  29208. height: math.unit(1.88, "feet"),
  29209. name: "Arm",
  29210. image: {
  29211. source: "./media/characters/balina-mahigan/arm.svg"
  29212. }
  29213. },
  29214. backPort: {
  29215. height: math.unit(0.685, "feet"),
  29216. name: "Back Port",
  29217. image: {
  29218. source: "./media/characters/balina-mahigan/back-port.svg"
  29219. }
  29220. },
  29221. hoofpaw: {
  29222. height: math.unit(1.41, "feet"),
  29223. name: "Hoofpaw",
  29224. image: {
  29225. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29226. }
  29227. },
  29228. leftHandBack: {
  29229. height: math.unit(0.938, "feet"),
  29230. name: "Left Hand (Back)",
  29231. image: {
  29232. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29233. }
  29234. },
  29235. leftHandFront: {
  29236. height: math.unit(0.938, "feet"),
  29237. name: "Left Hand (Front)",
  29238. image: {
  29239. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29240. }
  29241. },
  29242. rightHandBack: {
  29243. height: math.unit(0.95, "feet"),
  29244. name: "Right Hand (Back)",
  29245. image: {
  29246. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29247. }
  29248. },
  29249. rightHandFront: {
  29250. height: math.unit(0.95, "feet"),
  29251. name: "Right Hand (Front)",
  29252. image: {
  29253. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(6 + 4 / 12, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(6, "feet"),
  29270. weight: math.unit(320, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/balina-mejeri/front.svg",
  29274. extra: 517 / 488,
  29275. bottom: 44.2 / 561
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(6 + 4 / 12, "feet")
  29283. },
  29284. {
  29285. name: "Business",
  29286. height: math.unit(155, "feet"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29293. {
  29294. kneeling: {
  29295. height: math.unit(6 + 4 / 12, "feet"),
  29296. weight: math.unit(300 * 20, "lb"),
  29297. name: "Kneeling",
  29298. image: {
  29299. source: "./media/characters/balbarian/kneeling.svg",
  29300. extra: 922 / 862,
  29301. bottom: 42.4 / 965
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(6 + 4 / 12, "feet")
  29309. },
  29310. {
  29311. name: "Treasured",
  29312. height: math.unit(18 + 9 / 12, "feet"),
  29313. default: true
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(900, "feet")
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(6 + 4 / 12, "feet"),
  29326. weight: math.unit(325, "lb"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/balina-amarini/front.svg",
  29330. extra: 415 / 403,
  29331. bottom: 19 / 433.4
  29332. }
  29333. },
  29334. back: {
  29335. height: math.unit(6 + 4 / 12, "feet"),
  29336. weight: math.unit(325, "lb"),
  29337. name: "Back",
  29338. image: {
  29339. source: "./media/characters/balina-amarini/back.svg",
  29340. extra: 415 / 403,
  29341. bottom: 13.5 / 432
  29342. }
  29343. },
  29344. overdrive: {
  29345. height: math.unit(6 + 4 / 12, "feet"),
  29346. weight: math.unit(400, "lb"),
  29347. name: "Overdrive",
  29348. image: {
  29349. source: "./media/characters/balina-amarini/overdrive.svg",
  29350. extra: 269 / 259,
  29351. bottom: 12 / 282
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Boom",
  29358. height: math.unit(9 + 10 / 12, "feet"),
  29359. default: true
  29360. },
  29361. {
  29362. name: "Macro",
  29363. height: math.unit(280, "feet")
  29364. },
  29365. ]
  29366. ))
  29367. characterMakers.push(() => makeCharacter(
  29368. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29369. {
  29370. goddess: {
  29371. height: math.unit(600, "feet"),
  29372. weight: math.unit(2000000, "tons"),
  29373. name: "Goddess",
  29374. image: {
  29375. source: "./media/characters/lady-kubwa/goddess.svg",
  29376. extra: 1240.5 / 1223,
  29377. bottom: 22 / 1263
  29378. }
  29379. },
  29380. goddesser: {
  29381. height: math.unit(900, "feet"),
  29382. weight: math.unit(20000000, "lb"),
  29383. name: "Goddess-er",
  29384. image: {
  29385. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29386. extra: 899 / 888,
  29387. bottom: 12.6 / 912
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Macro",
  29394. height: math.unit(600, "feet"),
  29395. default: true
  29396. },
  29397. {
  29398. name: "Megamacro",
  29399. height: math.unit(250, "miles")
  29400. },
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29405. {
  29406. front: {
  29407. height: math.unit(7 + 7 / 12, "feet"),
  29408. weight: math.unit(250, "lb"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/tala-grovehorn/front.svg",
  29412. extra: 2636 / 2525,
  29413. bottom: 147 / 2781
  29414. }
  29415. },
  29416. back: {
  29417. height: math.unit(7 + 7 / 12, "feet"),
  29418. weight: math.unit(250, "lb"),
  29419. name: "Back",
  29420. image: {
  29421. source: "./media/characters/tala-grovehorn/back.svg",
  29422. extra: 2635 / 2539,
  29423. bottom: 100 / 2732.8
  29424. }
  29425. },
  29426. mouth: {
  29427. height: math.unit(1.15, "feet"),
  29428. name: "Mouth",
  29429. image: {
  29430. source: "./media/characters/tala-grovehorn/mouth.svg"
  29431. }
  29432. },
  29433. dick: {
  29434. height: math.unit(2.36, "feet"),
  29435. name: "Dick",
  29436. image: {
  29437. source: "./media/characters/tala-grovehorn/dick.svg"
  29438. }
  29439. },
  29440. slit: {
  29441. height: math.unit(0.61, "feet"),
  29442. name: "Slit",
  29443. image: {
  29444. source: "./media/characters/tala-grovehorn/slit.svg"
  29445. }
  29446. },
  29447. },
  29448. [
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29453. {
  29454. front: {
  29455. height: math.unit(7 + 7 / 12, "feet"),
  29456. weight: math.unit(225, "lb"),
  29457. name: "Front",
  29458. image: {
  29459. source: "./media/characters/epona/front.svg",
  29460. extra: 2445 / 2290,
  29461. bottom: 251 / 2696
  29462. }
  29463. },
  29464. back: {
  29465. height: math.unit(7 + 7 / 12, "feet"),
  29466. weight: math.unit(225, "lb"),
  29467. name: "Back",
  29468. image: {
  29469. source: "./media/characters/epona/back.svg",
  29470. extra: 2546 / 2408,
  29471. bottom: 44 / 2589
  29472. }
  29473. },
  29474. genitals: {
  29475. height: math.unit(1.5, "feet"),
  29476. name: "Genitals",
  29477. image: {
  29478. source: "./media/characters/epona/genitals.svg"
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Normal",
  29485. height: math.unit(7 + 7 / 12, "feet"),
  29486. default: true
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(7, "feet"),
  29495. weight: math.unit(518, "lb"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/avia-bloodbourn/front.svg",
  29499. extra: 1466 / 1350,
  29500. bottom: 65 / 1527
  29501. }
  29502. },
  29503. },
  29504. [
  29505. ]
  29506. ))
  29507. characterMakers.push(() => makeCharacter(
  29508. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29509. {
  29510. front: {
  29511. height: math.unit(9.35, "feet"),
  29512. weight: math.unit(600, "lb"),
  29513. name: "Front",
  29514. image: {
  29515. source: "./media/characters/amera/front.svg",
  29516. extra: 891 / 818,
  29517. bottom: 30 / 922.7
  29518. }
  29519. },
  29520. back: {
  29521. height: math.unit(9.35, "feet"),
  29522. weight: math.unit(600, "lb"),
  29523. name: "Back",
  29524. image: {
  29525. source: "./media/characters/amera/back.svg",
  29526. extra: 876 / 824,
  29527. bottom: 6.8 / 884
  29528. }
  29529. },
  29530. dick: {
  29531. height: math.unit(2.14, "feet"),
  29532. name: "Dick",
  29533. image: {
  29534. source: "./media/characters/amera/dick.svg"
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "Normal",
  29541. height: math.unit(9.35, "feet"),
  29542. default: true
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29548. {
  29549. kneeling: {
  29550. height: math.unit(3 + 4 / 12, "feet"),
  29551. weight: math.unit(90, "lb"),
  29552. name: "Kneeling",
  29553. image: {
  29554. source: "./media/characters/rosewen/kneeling.svg",
  29555. extra: 1835 / 1571,
  29556. bottom: 27.7 / 1862
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(3 + 4 / 12, "feet"),
  29564. default: true
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29570. {
  29571. front: {
  29572. height: math.unit(5 + 10 / 12, "feet"),
  29573. weight: math.unit(200, "lb"),
  29574. name: "Front",
  29575. image: {
  29576. source: "./media/characters/sabah/front.svg",
  29577. extra: 849 / 763,
  29578. bottom: 33.9 / 881
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Normal",
  29585. height: math.unit(5 + 10 / 12, "feet"),
  29586. default: true
  29587. },
  29588. ]
  29589. ))
  29590. characterMakers.push(() => makeCharacter(
  29591. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29592. {
  29593. front: {
  29594. height: math.unit(3 + 5 / 12, "feet"),
  29595. weight: math.unit(40, "kg"),
  29596. name: "Front",
  29597. image: {
  29598. source: "./media/characters/purple-flame/front.svg",
  29599. extra: 1577 / 1412,
  29600. bottom: 97 / 1694
  29601. }
  29602. },
  29603. frontDressed: {
  29604. height: math.unit(3 + 5 / 12, "feet"),
  29605. weight: math.unit(40, "kg"),
  29606. name: "Front (Dressed)",
  29607. image: {
  29608. source: "./media/characters/purple-flame/front-dressed.svg",
  29609. extra: 1577 / 1412,
  29610. bottom: 97 / 1694
  29611. }
  29612. },
  29613. headphones: {
  29614. height: math.unit(0.85, "feet"),
  29615. name: "Headphones",
  29616. image: {
  29617. source: "./media/characters/purple-flame/headphones.svg"
  29618. }
  29619. },
  29620. },
  29621. [
  29622. {
  29623. name: "Really Small",
  29624. height: math.unit(5, "cm")
  29625. },
  29626. {
  29627. name: "Micro",
  29628. height: math.unit(1 + 5 / 12, "feet")
  29629. },
  29630. {
  29631. name: "Normal",
  29632. height: math.unit(3 + 5 / 12, "feet"),
  29633. default: true
  29634. },
  29635. {
  29636. name: "Minimacro",
  29637. height: math.unit(125, "feet")
  29638. },
  29639. {
  29640. name: "Macro",
  29641. height: math.unit(0.5, "miles")
  29642. },
  29643. {
  29644. name: "Megamacro",
  29645. height: math.unit(50, "miles")
  29646. },
  29647. {
  29648. name: "Gigantic",
  29649. height: math.unit(750, "miles")
  29650. },
  29651. {
  29652. name: "Planetary",
  29653. height: math.unit(15000, "miles")
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(14, "feet"),
  29662. weight: math.unit(959, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/arsenal/front.svg",
  29666. extra: 2357 / 2157,
  29667. bottom: 93 / 2458
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(14, "feet"),
  29675. default: true
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29681. {
  29682. front: {
  29683. height: math.unit(6, "feet"),
  29684. weight: math.unit(150, "lb"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/adira/front.svg",
  29688. extra: 2121/2013,
  29689. bottom: 206/2327
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Micro",
  29696. height: math.unit(4, "inches"),
  29697. default: true
  29698. },
  29699. {
  29700. name: "Macro",
  29701. height: math.unit(50, "feet")
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29707. {
  29708. front: {
  29709. height: math.unit(16, "feet"),
  29710. weight: math.unit(1000, "lb"),
  29711. name: "Front",
  29712. image: {
  29713. source: "./media/characters/grim/front.svg",
  29714. extra: 622 / 614,
  29715. bottom: 18.1 / 642
  29716. }
  29717. },
  29718. back: {
  29719. height: math.unit(16, "feet"),
  29720. weight: math.unit(1000, "lb"),
  29721. name: "Back",
  29722. image: {
  29723. source: "./media/characters/grim/back.svg",
  29724. extra: 610.6 / 602,
  29725. bottom: 40.8 / 652
  29726. }
  29727. },
  29728. hunched: {
  29729. height: math.unit(9.75, "feet"),
  29730. weight: math.unit(1000, "lb"),
  29731. name: "Hunched",
  29732. image: {
  29733. source: "./media/characters/grim/hunched.svg",
  29734. extra: 304 / 297,
  29735. bottom: 35.4 / 394
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Normal",
  29742. height: math.unit(16, "feet"),
  29743. default: true
  29744. },
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29749. {
  29750. front: {
  29751. height: math.unit(2.3, "meters"),
  29752. weight: math.unit(300, "lb"),
  29753. name: "Front",
  29754. image: {
  29755. source: "./media/characters/sinja/front-sfw.svg",
  29756. extra: 1393 / 1294,
  29757. bottom: 70 / 1463
  29758. }
  29759. },
  29760. frontNsfw: {
  29761. height: math.unit(2.3, "meters"),
  29762. weight: math.unit(300, "lb"),
  29763. name: "Front (NSFW)",
  29764. image: {
  29765. source: "./media/characters/sinja/front-nsfw.svg",
  29766. extra: 1393 / 1294,
  29767. bottom: 70 / 1463
  29768. }
  29769. },
  29770. back: {
  29771. height: math.unit(2.3, "meters"),
  29772. weight: math.unit(300, "lb"),
  29773. name: "Back",
  29774. image: {
  29775. source: "./media/characters/sinja/back.svg",
  29776. extra: 1393 / 1294,
  29777. bottom: 70 / 1463
  29778. }
  29779. },
  29780. head: {
  29781. height: math.unit(1.771, "feet"),
  29782. name: "Head",
  29783. image: {
  29784. source: "./media/characters/sinja/head.svg"
  29785. }
  29786. },
  29787. slit: {
  29788. height: math.unit(0.8, "feet"),
  29789. name: "Slit",
  29790. image: {
  29791. source: "./media/characters/sinja/slit.svg"
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Normal",
  29798. height: math.unit(2.3, "meters")
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(91, "meters"),
  29803. default: true
  29804. },
  29805. {
  29806. name: "Megamacro",
  29807. height: math.unit(91440, "meters")
  29808. },
  29809. {
  29810. name: "Gigamacro",
  29811. height: math.unit(60960000, "meters")
  29812. },
  29813. {
  29814. name: "Teramacro",
  29815. height: math.unit(9144000000, "meters")
  29816. },
  29817. ]
  29818. ))
  29819. characterMakers.push(() => makeCharacter(
  29820. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29821. {
  29822. front: {
  29823. height: math.unit(1.7, "meters"),
  29824. weight: math.unit(130, "lb"),
  29825. name: "Front",
  29826. image: {
  29827. source: "./media/characters/kyu/front.svg",
  29828. extra: 415 / 395,
  29829. bottom: 5 / 420
  29830. }
  29831. },
  29832. head: {
  29833. height: math.unit(1.75, "feet"),
  29834. name: "Head",
  29835. image: {
  29836. source: "./media/characters/kyu/head.svg"
  29837. }
  29838. },
  29839. foot: {
  29840. height: math.unit(0.81, "feet"),
  29841. name: "Foot",
  29842. image: {
  29843. source: "./media/characters/kyu/foot.svg"
  29844. }
  29845. },
  29846. },
  29847. [
  29848. {
  29849. name: "Normal",
  29850. height: math.unit(1.7, "meters")
  29851. },
  29852. {
  29853. name: "Macro",
  29854. height: math.unit(131, "feet"),
  29855. default: true
  29856. },
  29857. {
  29858. name: "Megamacro",
  29859. height: math.unit(91440, "meters")
  29860. },
  29861. {
  29862. name: "Gigamacro",
  29863. height: math.unit(60960000, "meters")
  29864. },
  29865. {
  29866. name: "Teramacro",
  29867. height: math.unit(9144000000, "meters")
  29868. },
  29869. ]
  29870. ))
  29871. characterMakers.push(() => makeCharacter(
  29872. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29873. {
  29874. front: {
  29875. height: math.unit(7 + 1 / 12, "feet"),
  29876. weight: math.unit(250, "lb"),
  29877. name: "Front",
  29878. image: {
  29879. source: "./media/characters/joey/front.svg",
  29880. extra: 1791 / 1537,
  29881. bottom: 28 / 1816
  29882. }
  29883. },
  29884. },
  29885. [
  29886. {
  29887. name: "Micro",
  29888. height: math.unit(3, "inches")
  29889. },
  29890. {
  29891. name: "Normal",
  29892. height: math.unit(7 + 1 / 12, "feet"),
  29893. default: true
  29894. },
  29895. ]
  29896. ))
  29897. characterMakers.push(() => makeCharacter(
  29898. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29899. {
  29900. front: {
  29901. height: math.unit(165, "cm"),
  29902. weight: math.unit(140, "lb"),
  29903. name: "Front",
  29904. image: {
  29905. source: "./media/characters/sam-evans/front.svg",
  29906. extra: 3417 / 3230,
  29907. bottom: 41.3 / 3417
  29908. }
  29909. },
  29910. frontSixTails: {
  29911. height: math.unit(165, "cm"),
  29912. weight: math.unit(140, "lb"),
  29913. name: "Front-six-tails",
  29914. image: {
  29915. source: "./media/characters/sam-evans/front-six-tails.svg",
  29916. extra: 3417 / 3230,
  29917. bottom: 41.3 / 3417
  29918. }
  29919. },
  29920. back: {
  29921. height: math.unit(165, "cm"),
  29922. weight: math.unit(140, "lb"),
  29923. name: "Back",
  29924. image: {
  29925. source: "./media/characters/sam-evans/back.svg",
  29926. extra: 3227 / 3032,
  29927. bottom: 6.8 / 3234
  29928. }
  29929. },
  29930. face: {
  29931. height: math.unit(0.68, "feet"),
  29932. name: "Face",
  29933. image: {
  29934. source: "./media/characters/sam-evans/face.svg"
  29935. }
  29936. },
  29937. },
  29938. [
  29939. {
  29940. name: "Normal",
  29941. height: math.unit(165, "cm"),
  29942. default: true
  29943. },
  29944. {
  29945. name: "Macro",
  29946. height: math.unit(100, "meters")
  29947. },
  29948. {
  29949. name: "Macro+",
  29950. height: math.unit(800, "meters")
  29951. },
  29952. {
  29953. name: "Macro++",
  29954. height: math.unit(3, "km")
  29955. },
  29956. {
  29957. name: "Macro+++",
  29958. height: math.unit(30, "km")
  29959. },
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29964. {
  29965. front: {
  29966. height: math.unit(10, "feet"),
  29967. weight: math.unit(750, "lb"),
  29968. name: "Front",
  29969. image: {
  29970. source: "./media/characters/juliet-a/front.svg",
  29971. extra: 1766 / 1720,
  29972. bottom: 43 / 1809
  29973. }
  29974. },
  29975. back: {
  29976. height: math.unit(10, "feet"),
  29977. weight: math.unit(750, "lb"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/juliet-a/back.svg",
  29981. extra: 1781 / 1734,
  29982. bottom: 35 / 1810,
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Normal",
  29989. height: math.unit(10, "feet"),
  29990. default: true
  29991. },
  29992. {
  29993. name: "Dragon Form",
  29994. height: math.unit(250, "feet")
  29995. },
  29996. {
  29997. name: "Macro",
  29998. height: math.unit(1000, "feet")
  29999. },
  30000. {
  30001. name: "Megamacro",
  30002. height: math.unit(10000, "feet")
  30003. }
  30004. ]
  30005. ))
  30006. characterMakers.push(() => makeCharacter(
  30007. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30008. {
  30009. regular: {
  30010. height: math.unit(7 + 3 / 12, "feet"),
  30011. weight: math.unit(260, "lb"),
  30012. name: "Regular",
  30013. image: {
  30014. source: "./media/characters/wild/regular.svg",
  30015. extra: 97.45 / 92,
  30016. bottom: 6.8 / 104.3
  30017. }
  30018. },
  30019. biggums: {
  30020. height: math.unit(8 + 6 / 12, "feet"),
  30021. weight: math.unit(425, "lb"),
  30022. name: "Biggums",
  30023. image: {
  30024. source: "./media/characters/wild/biggums.svg",
  30025. extra: 97.45 / 92,
  30026. bottom: 7.5 / 132.34
  30027. }
  30028. },
  30029. mawRegular: {
  30030. height: math.unit(1.24, "feet"),
  30031. name: "Maw (Regular)",
  30032. image: {
  30033. source: "./media/characters/wild/maw.svg"
  30034. }
  30035. },
  30036. mawBiggums: {
  30037. height: math.unit(1.47, "feet"),
  30038. name: "Maw (Biggums)",
  30039. image: {
  30040. source: "./media/characters/wild/maw.svg"
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(7 + 3 / 12, "feet"),
  30048. default: true
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30054. {
  30055. front: {
  30056. height: math.unit(2.5, "meters"),
  30057. weight: math.unit(200, "kg"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/vidar/front.svg",
  30061. extra: 2994 / 2795,
  30062. bottom: 56 / 3061
  30063. }
  30064. },
  30065. back: {
  30066. height: math.unit(2.5, "meters"),
  30067. weight: math.unit(200, "kg"),
  30068. name: "Back",
  30069. image: {
  30070. source: "./media/characters/vidar/back.svg",
  30071. extra: 3131 / 2928,
  30072. bottom: 13.5 / 3141.5
  30073. }
  30074. },
  30075. feral: {
  30076. height: math.unit(2.5, "meters"),
  30077. weight: math.unit(2000, "kg"),
  30078. name: "Feral",
  30079. image: {
  30080. source: "./media/characters/vidar/feral.svg",
  30081. extra: 2790 / 1765,
  30082. bottom: 6 / 2796
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(2.5, "meters"),
  30090. default: true
  30091. },
  30092. {
  30093. name: "Macro",
  30094. height: math.unit(100, "meters")
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(5 + 9 / 12, "feet"),
  30103. weight: math.unit(120, "lb"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/ash/front.svg",
  30107. extra: 2189 / 1961,
  30108. bottom: 5.2 / 2194
  30109. }
  30110. },
  30111. },
  30112. [
  30113. {
  30114. name: "Normal",
  30115. height: math.unit(5 + 9 / 12, "feet"),
  30116. default: true
  30117. },
  30118. ]
  30119. ))
  30120. characterMakers.push(() => makeCharacter(
  30121. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30122. {
  30123. front: {
  30124. height: math.unit(9, "feet"),
  30125. weight: math.unit(10000, "lb"),
  30126. name: "Front",
  30127. image: {
  30128. source: "./media/characters/gygabite/front.svg",
  30129. bottom: 31.7 / 537.8,
  30130. extra: 505 / 370
  30131. }
  30132. },
  30133. },
  30134. [
  30135. {
  30136. name: "Normal",
  30137. height: math.unit(9, "feet"),
  30138. default: true
  30139. },
  30140. ]
  30141. ))
  30142. characterMakers.push(() => makeCharacter(
  30143. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30144. {
  30145. front: {
  30146. height: math.unit(12, "feet"),
  30147. weight: math.unit(4000, "lb"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/p0tat0/front.svg",
  30151. extra: 1065 / 921,
  30152. bottom: 55.7 / 1121.25
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Normal",
  30159. height: math.unit(12, "feet"),
  30160. default: true
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30166. {
  30167. side: {
  30168. height: math.unit(6.5, "feet"),
  30169. weight: math.unit(800, "lb"),
  30170. name: "Side",
  30171. image: {
  30172. source: "./media/characters/dusk/side.svg",
  30173. extra: 615 / 373,
  30174. bottom: 53 / 664
  30175. }
  30176. },
  30177. sitting: {
  30178. height: math.unit(7, "feet"),
  30179. weight: math.unit(800, "lb"),
  30180. name: "Sitting",
  30181. image: {
  30182. source: "./media/characters/dusk/sitting.svg",
  30183. extra: 753 / 425,
  30184. bottom: 33 / 774
  30185. }
  30186. },
  30187. head: {
  30188. height: math.unit(6.1, "feet"),
  30189. name: "Head",
  30190. image: {
  30191. source: "./media/characters/dusk/head.svg"
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Normal",
  30198. height: math.unit(7, "feet"),
  30199. default: true
  30200. },
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30205. {
  30206. front: {
  30207. height: math.unit(15, "feet"),
  30208. weight: math.unit(7000, "lb"),
  30209. name: "Front",
  30210. image: {
  30211. source: "./media/characters/jay-direwolf/front.svg",
  30212. extra: 1810 / 1732,
  30213. bottom: 66 / 1892
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Normal",
  30220. height: math.unit(15, "feet"),
  30221. default: true
  30222. },
  30223. ]
  30224. ))
  30225. characterMakers.push(() => makeCharacter(
  30226. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30227. {
  30228. front: {
  30229. height: math.unit(4 + 9 / 12, "feet"),
  30230. weight: math.unit(130, "lb"),
  30231. name: "Front",
  30232. image: {
  30233. source: "./media/characters/anchovie/front.svg",
  30234. extra: 382 / 350,
  30235. bottom: 25 / 409
  30236. }
  30237. },
  30238. back: {
  30239. height: math.unit(4 + 9 / 12, "feet"),
  30240. weight: math.unit(130, "lb"),
  30241. name: "Back",
  30242. image: {
  30243. source: "./media/characters/anchovie/back.svg",
  30244. extra: 385 / 352,
  30245. bottom: 16.6 / 402
  30246. }
  30247. },
  30248. frontDressed: {
  30249. height: math.unit(4 + 9 / 12, "feet"),
  30250. weight: math.unit(130, "lb"),
  30251. name: "Front (Dressed)",
  30252. image: {
  30253. source: "./media/characters/anchovie/front-dressed.svg",
  30254. extra: 382 / 350,
  30255. bottom: 25 / 409
  30256. }
  30257. },
  30258. backDressed: {
  30259. height: math.unit(4 + 9 / 12, "feet"),
  30260. weight: math.unit(130, "lb"),
  30261. name: "Back (Dressed)",
  30262. image: {
  30263. source: "./media/characters/anchovie/back-dressed.svg",
  30264. extra: 385 / 352,
  30265. bottom: 16.6 / 402
  30266. }
  30267. },
  30268. },
  30269. [
  30270. {
  30271. name: "Micro",
  30272. height: math.unit(6.4, "inches")
  30273. },
  30274. {
  30275. name: "Normal",
  30276. height: math.unit(4 + 9 / 12, "feet"),
  30277. default: true
  30278. },
  30279. ]
  30280. ))
  30281. characterMakers.push(() => makeCharacter(
  30282. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30283. {
  30284. front: {
  30285. height: math.unit(2, "meters"),
  30286. weight: math.unit(180, "lb"),
  30287. name: "Front",
  30288. image: {
  30289. source: "./media/characters/acidrenamon/front.svg",
  30290. extra: 987 / 890,
  30291. bottom: 22.8 / 1009
  30292. }
  30293. },
  30294. back: {
  30295. height: math.unit(2, "meters"),
  30296. weight: math.unit(180, "lb"),
  30297. name: "Back",
  30298. image: {
  30299. source: "./media/characters/acidrenamon/back.svg",
  30300. extra: 983 / 891,
  30301. bottom: 8.4 / 992
  30302. }
  30303. },
  30304. head: {
  30305. height: math.unit(1.92, "feet"),
  30306. name: "Head",
  30307. image: {
  30308. source: "./media/characters/acidrenamon/head.svg"
  30309. }
  30310. },
  30311. rump: {
  30312. height: math.unit(1.72, "feet"),
  30313. name: "Rump",
  30314. image: {
  30315. source: "./media/characters/acidrenamon/rump.svg"
  30316. }
  30317. },
  30318. tail: {
  30319. height: math.unit(4.2, "feet"),
  30320. name: "Tail",
  30321. image: {
  30322. source: "./media/characters/acidrenamon/tail.svg"
  30323. }
  30324. },
  30325. },
  30326. [
  30327. {
  30328. name: "Normal",
  30329. height: math.unit(2, "meters"),
  30330. default: true
  30331. },
  30332. {
  30333. name: "Minimacro",
  30334. height: math.unit(7, "meters")
  30335. },
  30336. {
  30337. name: "Macro",
  30338. height: math.unit(200, "meters")
  30339. },
  30340. {
  30341. name: "Gigamacro",
  30342. height: math.unit(0.2, "earths")
  30343. },
  30344. ]
  30345. ))
  30346. characterMakers.push(() => makeCharacter(
  30347. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30348. {
  30349. front: {
  30350. height: math.unit(152, "feet"),
  30351. name: "Front",
  30352. image: {
  30353. source: "./media/characters/kenzie-lee/front.svg",
  30354. extra: 1869/1774,
  30355. bottom: 128/1997
  30356. }
  30357. },
  30358. side: {
  30359. height: math.unit(86, "feet"),
  30360. name: "Side",
  30361. image: {
  30362. source: "./media/characters/kenzie-lee/side.svg",
  30363. extra: 930/815,
  30364. bottom: 177/1107
  30365. }
  30366. },
  30367. paw: {
  30368. height: math.unit(15, "feet"),
  30369. name: "Paw",
  30370. image: {
  30371. source: "./media/characters/kenzie-lee/paw.svg"
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Kenzie Flea",
  30378. height: math.unit(2, "mm"),
  30379. default: true
  30380. },
  30381. {
  30382. name: "Micro",
  30383. height: math.unit(2, "inches")
  30384. },
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(152, "feet")
  30388. },
  30389. {
  30390. name: "Megamacro",
  30391. height: math.unit(7, "miles")
  30392. },
  30393. {
  30394. name: "Gigamacro",
  30395. height: math.unit(8000, "miles")
  30396. },
  30397. ]
  30398. ))
  30399. characterMakers.push(() => makeCharacter(
  30400. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30401. {
  30402. front: {
  30403. height: math.unit(6, "feet"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/withers/front.svg",
  30407. extra: 1935/1760,
  30408. bottom: 72/2007
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(6, "feet"),
  30413. name: "Back",
  30414. image: {
  30415. source: "./media/characters/withers/back.svg",
  30416. extra: 1944/1792,
  30417. bottom: 12/1956
  30418. }
  30419. },
  30420. dressed: {
  30421. height: math.unit(6, "feet"),
  30422. name: "Dressed",
  30423. image: {
  30424. source: "./media/characters/withers/dressed.svg",
  30425. extra: 1937/1765,
  30426. bottom: 73/2010
  30427. }
  30428. },
  30429. phase1: {
  30430. height: math.unit(1.1, "feet"),
  30431. name: "Phase 1",
  30432. image: {
  30433. source: "./media/characters/withers/phase-1.svg",
  30434. extra: 1885/1232,
  30435. bottom: 0/1885
  30436. }
  30437. },
  30438. phase2: {
  30439. height: math.unit(1.05, "feet"),
  30440. name: "Phase 2",
  30441. image: {
  30442. source: "./media/characters/withers/phase-2.svg",
  30443. extra: 1792/1090,
  30444. bottom: 0/1792
  30445. }
  30446. },
  30447. partyWipe: {
  30448. height: math.unit(1.1, "feet"),
  30449. name: "Party Wipe",
  30450. image: {
  30451. source: "./media/characters/withers/party-wipe.svg",
  30452. extra: 1864/1207,
  30453. bottom: 0/1864
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Macro",
  30460. height: math.unit(167, "feet"),
  30461. default: true
  30462. },
  30463. {
  30464. name: "Megamacro",
  30465. height: math.unit(15, "miles")
  30466. }
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(6 + 7 / 12, "feet"),
  30474. weight: math.unit(250, "lb"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/nemoskii/front.svg",
  30478. extra: 2270 / 1734,
  30479. bottom: 86 / 2354
  30480. }
  30481. },
  30482. back: {
  30483. height: math.unit(6 + 7 / 12, "feet"),
  30484. weight: math.unit(250, "lb"),
  30485. name: "Back",
  30486. image: {
  30487. source: "./media/characters/nemoskii/back.svg",
  30488. extra: 1845 / 1788,
  30489. bottom: 10.5 / 1852
  30490. }
  30491. },
  30492. head: {
  30493. height: math.unit(1.31, "feet"),
  30494. name: "Head",
  30495. image: {
  30496. source: "./media/characters/nemoskii/head.svg"
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Micro",
  30503. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30504. },
  30505. {
  30506. name: "Normal",
  30507. height: math.unit(6 + 7 / 12, "feet"),
  30508. default: true
  30509. },
  30510. {
  30511. name: "Macro",
  30512. height: math.unit((6 + 7 / 12) * 150, "feet")
  30513. },
  30514. {
  30515. name: "Macro+",
  30516. height: math.unit((6 + 7 / 12) * 500, "feet")
  30517. },
  30518. {
  30519. name: "Megamacro",
  30520. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30526. {
  30527. front: {
  30528. height: math.unit(1, "mile"),
  30529. weight: math.unit(265261.9, "lb"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/shui/front.svg",
  30533. extra: 1633 / 1564,
  30534. bottom: 91.5 / 1726
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Macro",
  30541. height: math.unit(1, "mile"),
  30542. default: true
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(12 + 6 / 12, "feet"),
  30551. weight: math.unit(1342, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/arokh-takakura/front.svg",
  30555. extra: 1089 / 1043,
  30556. bottom: 77.4 / 1176.7
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(12 + 6 / 12, "feet"),
  30561. weight: math.unit(1342, "lb"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/arokh-takakura/back.svg",
  30565. extra: 1046 / 1019,
  30566. bottom: 102 / 1150
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Big",
  30573. height: math.unit(12 + 6 / 12, "feet"),
  30574. default: true
  30575. },
  30576. ]
  30577. ))
  30578. characterMakers.push(() => makeCharacter(
  30579. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30580. {
  30581. front: {
  30582. height: math.unit(5 + 6 / 12, "feet"),
  30583. weight: math.unit(150, "lb"),
  30584. name: "Front",
  30585. image: {
  30586. source: "./media/characters/theo/front.svg",
  30587. extra: 1184 / 1131,
  30588. bottom: 7.4 / 1191
  30589. }
  30590. },
  30591. },
  30592. [
  30593. {
  30594. name: "Micro",
  30595. height: math.unit(5, "inches")
  30596. },
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(5 + 6 / 12, "feet"),
  30600. default: true
  30601. },
  30602. ]
  30603. ))
  30604. characterMakers.push(() => makeCharacter(
  30605. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30606. {
  30607. front: {
  30608. height: math.unit(5 + 9 / 12, "feet"),
  30609. weight: math.unit(130, "lb"),
  30610. name: "Front",
  30611. image: {
  30612. source: "./media/characters/cecelia-swift/front.svg",
  30613. extra: 502 / 484,
  30614. bottom: 23 / 523
  30615. }
  30616. },
  30617. back: {
  30618. height: math.unit(5 + 9 / 12, "feet"),
  30619. weight: math.unit(130, "lb"),
  30620. name: "Back",
  30621. image: {
  30622. source: "./media/characters/cecelia-swift/back.svg",
  30623. extra: 499 / 485,
  30624. bottom: 12 / 511
  30625. }
  30626. },
  30627. head: {
  30628. height: math.unit(0.90, "feet"),
  30629. name: "Head",
  30630. image: {
  30631. source: "./media/characters/cecelia-swift/head.svg"
  30632. }
  30633. },
  30634. rump: {
  30635. height: math.unit(1.75, "feet"),
  30636. name: "Rump",
  30637. image: {
  30638. source: "./media/characters/cecelia-swift/rump.svg"
  30639. }
  30640. },
  30641. },
  30642. [
  30643. {
  30644. name: "Normal",
  30645. height: math.unit(5 + 9 / 12, "feet"),
  30646. default: true
  30647. },
  30648. {
  30649. name: "Big",
  30650. height: math.unit(50, "feet")
  30651. },
  30652. {
  30653. name: "Macro",
  30654. height: math.unit(100, "feet")
  30655. },
  30656. {
  30657. name: "Macro+",
  30658. height: math.unit(500, "feet")
  30659. },
  30660. {
  30661. name: "Macro++",
  30662. height: math.unit(1000, "feet")
  30663. },
  30664. ]
  30665. ))
  30666. characterMakers.push(() => makeCharacter(
  30667. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30668. {
  30669. front: {
  30670. height: math.unit(6, "feet"),
  30671. weight: math.unit(150, "lb"),
  30672. name: "Front",
  30673. image: {
  30674. source: "./media/characters/kaunan/front.svg",
  30675. extra: 2890 / 2523,
  30676. bottom: 49 / 2939
  30677. }
  30678. },
  30679. },
  30680. [
  30681. {
  30682. name: "Macro",
  30683. height: math.unit(150, "feet"),
  30684. default: true
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30690. {
  30691. dressed: {
  30692. height: math.unit(175, "cm"),
  30693. weight: math.unit(60, "kg"),
  30694. name: "Dressed",
  30695. image: {
  30696. source: "./media/characters/fei/dressed.svg",
  30697. extra: 1402/1278,
  30698. bottom: 27/1429
  30699. }
  30700. },
  30701. nude: {
  30702. height: math.unit(175, "cm"),
  30703. weight: math.unit(60, "kg"),
  30704. name: "Nude",
  30705. image: {
  30706. source: "./media/characters/fei/nude.svg",
  30707. extra: 1402/1278,
  30708. bottom: 27/1429
  30709. }
  30710. },
  30711. heels: {
  30712. height: math.unit(0.466, "feet"),
  30713. name: "Heels",
  30714. image: {
  30715. source: "./media/characters/fei/heels.svg",
  30716. extra: 156/152,
  30717. bottom: 28/184
  30718. }
  30719. },
  30720. },
  30721. [
  30722. {
  30723. name: "Mortal",
  30724. height: math.unit(175, "cm")
  30725. },
  30726. {
  30727. name: "Normal",
  30728. height: math.unit(3500, "m")
  30729. },
  30730. {
  30731. name: "Stroll",
  30732. height: math.unit(18.4, "km"),
  30733. default: true
  30734. },
  30735. {
  30736. name: "Showoff",
  30737. height: math.unit(175, "km")
  30738. },
  30739. ]
  30740. ))
  30741. characterMakers.push(() => makeCharacter(
  30742. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30743. {
  30744. front: {
  30745. height: math.unit(7, "feet"),
  30746. weight: math.unit(1000, "kg"),
  30747. name: "Front",
  30748. image: {
  30749. source: "./media/characters/edrax/front.svg",
  30750. extra: 2838 / 2550,
  30751. bottom: 130 / 2968
  30752. }
  30753. },
  30754. },
  30755. [
  30756. {
  30757. name: "Small",
  30758. height: math.unit(7, "feet")
  30759. },
  30760. {
  30761. name: "Normal",
  30762. height: math.unit(1500, "meters")
  30763. },
  30764. {
  30765. name: "Mega",
  30766. height: math.unit(12000000, "km"),
  30767. default: true
  30768. },
  30769. {
  30770. name: "Megamacro",
  30771. height: math.unit(10600000, "lightyears")
  30772. },
  30773. {
  30774. name: "Hypermacro",
  30775. height: math.unit(256, "yottameters")
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30781. {
  30782. front: {
  30783. height: math.unit(10, "feet"),
  30784. weight: math.unit(750, "lb"),
  30785. name: "Front",
  30786. image: {
  30787. source: "./media/characters/clove/front.svg",
  30788. extra: 1918/1751,
  30789. bottom: 52/1970
  30790. }
  30791. },
  30792. back: {
  30793. height: math.unit(10, "feet"),
  30794. weight: math.unit(750, "lb"),
  30795. name: "Back",
  30796. image: {
  30797. source: "./media/characters/clove/back.svg",
  30798. extra: 1912/1747,
  30799. bottom: 50/1962
  30800. }
  30801. },
  30802. },
  30803. [
  30804. {
  30805. name: "Normal",
  30806. height: math.unit(10, "feet"),
  30807. default: true
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(4, "feet"),
  30816. weight: math.unit(50, "lb"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/alex-rabbit/front.svg",
  30820. extra: 507 / 458,
  30821. bottom: 18.5 / 527
  30822. }
  30823. },
  30824. back: {
  30825. height: math.unit(4, "feet"),
  30826. weight: math.unit(50, "lb"),
  30827. name: "Back",
  30828. image: {
  30829. source: "./media/characters/alex-rabbit/back.svg",
  30830. extra: 502 / 460,
  30831. bottom: 18.9 / 521
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(4, "feet"),
  30839. default: true
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30845. {
  30846. front: {
  30847. height: math.unit(1 + 3 / 12, "feet"),
  30848. weight: math.unit(80, "lb"),
  30849. name: "Front",
  30850. image: {
  30851. source: "./media/characters/zander-rose/front.svg",
  30852. extra: 916 / 797,
  30853. bottom: 17 / 933
  30854. }
  30855. },
  30856. back: {
  30857. height: math.unit(1 + 3 / 12, "feet"),
  30858. weight: math.unit(80, "lb"),
  30859. name: "Back",
  30860. image: {
  30861. source: "./media/characters/zander-rose/back.svg",
  30862. extra: 903 / 779,
  30863. bottom: 31 / 934
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(1 + 3 / 12, "feet"),
  30871. default: true
  30872. },
  30873. ]
  30874. ))
  30875. characterMakers.push(() => makeCharacter(
  30876. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30877. {
  30878. anthro: {
  30879. height: math.unit(6, "feet"),
  30880. weight: math.unit(150, "lb"),
  30881. name: "Anthro",
  30882. image: {
  30883. source: "./media/characters/razz/anthro.svg",
  30884. extra: 1437 / 1343,
  30885. bottom: 48 / 1485
  30886. }
  30887. },
  30888. feral: {
  30889. height: math.unit(6, "feet"),
  30890. weight: math.unit(150, "lb"),
  30891. name: "Feral",
  30892. image: {
  30893. source: "./media/characters/razz/feral.svg",
  30894. extra: 2569 / 1385,
  30895. bottom: 95 / 2664
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Normal",
  30902. height: math.unit(6, "feet"),
  30903. default: true
  30904. },
  30905. ]
  30906. ))
  30907. characterMakers.push(() => makeCharacter(
  30908. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30909. {
  30910. front: {
  30911. height: math.unit(9 + 4 / 12, "feet"),
  30912. weight: math.unit(500, "lb"),
  30913. name: "Front",
  30914. image: {
  30915. source: "./media/characters/morrigan/front.svg",
  30916. extra: 2707 / 2579,
  30917. bottom: 156 / 2863
  30918. }
  30919. },
  30920. },
  30921. [
  30922. {
  30923. name: "Normal",
  30924. height: math.unit(9 + 4 / 12, "feet"),
  30925. default: true
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(5, "stories"),
  30934. weight: math.unit(4000, "lb"),
  30935. name: "Front",
  30936. image: {
  30937. source: "./media/characters/jenene/front.svg",
  30938. extra: 1780 / 1710,
  30939. bottom: 57 / 1837
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(5, "stories"),
  30947. default: true
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30953. {
  30954. taurSfw: {
  30955. height: math.unit(10, "meters"),
  30956. weight: math.unit(17500, "kg"),
  30957. name: "Taur",
  30958. image: {
  30959. source: "./media/characters/faey/taur-sfw.svg",
  30960. extra: 1200 / 968,
  30961. bottom: 41 / 1241
  30962. }
  30963. },
  30964. chestmaw: {
  30965. height: math.unit(2.01, "meters"),
  30966. name: "Chestmaw",
  30967. image: {
  30968. source: "./media/characters/faey/chestmaw.svg"
  30969. }
  30970. },
  30971. foot: {
  30972. height: math.unit(2.43, "meters"),
  30973. name: "Foot",
  30974. image: {
  30975. source: "./media/characters/faey/foot.svg"
  30976. }
  30977. },
  30978. jaws: {
  30979. height: math.unit(1.66, "meters"),
  30980. name: "Jaws",
  30981. image: {
  30982. source: "./media/characters/faey/jaws.svg"
  30983. }
  30984. },
  30985. tongues: {
  30986. height: math.unit(2.01, "meters"),
  30987. name: "Tongues",
  30988. image: {
  30989. source: "./media/characters/faey/tongues.svg"
  30990. }
  30991. },
  30992. },
  30993. [
  30994. {
  30995. name: "Small",
  30996. height: math.unit(10, "meters"),
  30997. default: true
  30998. },
  30999. {
  31000. name: "Big",
  31001. height: math.unit(500000, "km")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(7, "feet"),
  31010. weight: math.unit(275, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/roku/front.svg",
  31014. extra: 903 / 878,
  31015. bottom: 37 / 940
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Normal",
  31022. height: math.unit(7, "feet"),
  31023. default: true
  31024. },
  31025. {
  31026. name: "Macro",
  31027. height: math.unit(500, "feet")
  31028. },
  31029. {
  31030. name: "Megamacro",
  31031. height: math.unit(200, "miles")
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(6 + 2 / 12, "feet"),
  31040. weight: math.unit(150, "lb"),
  31041. name: "Front",
  31042. image: {
  31043. source: "./media/characters/lira/front.svg",
  31044. extra: 1727 / 1605,
  31045. bottom: 26 / 1753
  31046. }
  31047. },
  31048. back: {
  31049. height: math.unit(6 + 2 / 12, "feet"),
  31050. weight: math.unit(150, "lb"),
  31051. name: "Back",
  31052. image: {
  31053. source: "./media/characters/lira/back.svg",
  31054. extra: 1713/1621,
  31055. bottom: 20/1733
  31056. }
  31057. },
  31058. hand: {
  31059. height: math.unit(0.75, "feet"),
  31060. name: "Hand",
  31061. image: {
  31062. source: "./media/characters/lira/hand.svg"
  31063. }
  31064. },
  31065. maw: {
  31066. height: math.unit(0.65, "feet"),
  31067. name: "Maw",
  31068. image: {
  31069. source: "./media/characters/lira/maw.svg"
  31070. }
  31071. },
  31072. pawDigi: {
  31073. height: math.unit(1.6, "feet"),
  31074. name: "Paw Digi",
  31075. image: {
  31076. source: "./media/characters/lira/paw-digi.svg"
  31077. }
  31078. },
  31079. pawPlanti: {
  31080. height: math.unit(1.4, "feet"),
  31081. name: "Paw Planti",
  31082. image: {
  31083. source: "./media/characters/lira/paw-planti.svg"
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(6 + 2 / 12, "feet"),
  31091. default: true
  31092. },
  31093. {
  31094. name: "Macro",
  31095. height: math.unit(100, "feet")
  31096. },
  31097. {
  31098. name: "Macro²",
  31099. height: math.unit(1600, "feet")
  31100. },
  31101. {
  31102. name: "Planetary",
  31103. height: math.unit(20, "earths")
  31104. },
  31105. ]
  31106. ))
  31107. characterMakers.push(() => makeCharacter(
  31108. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31109. {
  31110. front: {
  31111. height: math.unit(6, "feet"),
  31112. weight: math.unit(150, "lb"),
  31113. name: "Front",
  31114. image: {
  31115. source: "./media/characters/hadjet/front.svg",
  31116. extra: 1480 / 1346,
  31117. bottom: 26 / 1506
  31118. }
  31119. },
  31120. frontNsfw: {
  31121. height: math.unit(6, "feet"),
  31122. weight: math.unit(150, "lb"),
  31123. name: "Front (NSFW)",
  31124. image: {
  31125. source: "./media/characters/hadjet/front-nsfw.svg",
  31126. extra: 1440 / 1358,
  31127. bottom: 52 / 1492
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Macro",
  31134. height: math.unit(10, "stories"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "Megamacro",
  31139. height: math.unit(1.5, "miles")
  31140. },
  31141. {
  31142. name: "Megamacro+",
  31143. height: math.unit(5, "miles")
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31149. {
  31150. side: {
  31151. height: math.unit(106, "feet"),
  31152. weight: math.unit(500, "tonnes"),
  31153. name: "Side",
  31154. image: {
  31155. source: "./media/characters/kodran/side.svg",
  31156. extra: 553 / 480,
  31157. bottom: 33 / 586
  31158. }
  31159. },
  31160. front: {
  31161. height: math.unit(132, "feet"),
  31162. weight: math.unit(500, "tonnes"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/kodran/front.svg",
  31166. extra: 667 / 643,
  31167. bottom: 42 / 709
  31168. }
  31169. },
  31170. flying: {
  31171. height: math.unit(350, "feet"),
  31172. weight: math.unit(500, "tonnes"),
  31173. name: "Flying",
  31174. image: {
  31175. source: "./media/characters/kodran/flying.svg"
  31176. }
  31177. },
  31178. foot: {
  31179. height: math.unit(33, "feet"),
  31180. name: "Foot",
  31181. image: {
  31182. source: "./media/characters/kodran/foot.svg"
  31183. }
  31184. },
  31185. footFront: {
  31186. height: math.unit(19, "feet"),
  31187. name: "Foot (Front)",
  31188. image: {
  31189. source: "./media/characters/kodran/foot-front.svg",
  31190. extra: 261 / 261,
  31191. bottom: 91 / 352
  31192. }
  31193. },
  31194. headFront: {
  31195. height: math.unit(53, "feet"),
  31196. name: "Head (Front)",
  31197. image: {
  31198. source: "./media/characters/kodran/head-front.svg"
  31199. }
  31200. },
  31201. headSide: {
  31202. height: math.unit(65, "feet"),
  31203. name: "Head (Side)",
  31204. image: {
  31205. source: "./media/characters/kodran/head-side.svg"
  31206. }
  31207. },
  31208. throat: {
  31209. height: math.unit(79, "feet"),
  31210. name: "Throat",
  31211. image: {
  31212. source: "./media/characters/kodran/throat.svg"
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Large",
  31219. height: math.unit(106, "feet"),
  31220. default: true
  31221. },
  31222. ]
  31223. ))
  31224. characterMakers.push(() => makeCharacter(
  31225. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31226. {
  31227. side: {
  31228. height: math.unit(11, "feet"),
  31229. weight: math.unit(150, "lb"),
  31230. name: "Side",
  31231. image: {
  31232. source: "./media/characters/pyxaron/side.svg",
  31233. extra: 305 / 195,
  31234. bottom: 17 / 322
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(11, "feet"),
  31242. default: true
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31248. {
  31249. front: {
  31250. height: math.unit(6, "feet"),
  31251. weight: math.unit(150, "lb"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/meep/front.svg",
  31255. extra: 88 / 80,
  31256. bottom: 6 / 94
  31257. }
  31258. },
  31259. },
  31260. [
  31261. {
  31262. name: "Fun Sized",
  31263. height: math.unit(2, "inches"),
  31264. default: true
  31265. },
  31266. {
  31267. name: "Friend Sized",
  31268. height: math.unit(8, "inches")
  31269. },
  31270. ]
  31271. ))
  31272. characterMakers.push(() => makeCharacter(
  31273. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31274. {
  31275. front: {
  31276. height: math.unit(15, "feet"),
  31277. weight: math.unit(2500, "lb"),
  31278. name: "Front",
  31279. image: {
  31280. source: "./media/characters/holly-rabbit/front.svg",
  31281. extra: 1433 / 1233,
  31282. bottom: 125 / 1558
  31283. }
  31284. },
  31285. dick: {
  31286. height: math.unit(4.6, "feet"),
  31287. name: "Dick",
  31288. image: {
  31289. source: "./media/characters/holly-rabbit/dick.svg"
  31290. }
  31291. },
  31292. },
  31293. [
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(15, "feet"),
  31297. default: true
  31298. },
  31299. {
  31300. name: "Macro",
  31301. height: math.unit(250, "feet")
  31302. },
  31303. {
  31304. name: "Macro+",
  31305. height: math.unit(2500, "feet")
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(3.02, "meters"),
  31314. weight: math.unit(500, "kg"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/drena/front.svg",
  31318. extra: 282 / 243,
  31319. bottom: 8 / 290
  31320. }
  31321. },
  31322. side: {
  31323. height: math.unit(3.02, "meters"),
  31324. weight: math.unit(500, "kg"),
  31325. name: "Side",
  31326. image: {
  31327. source: "./media/characters/drena/side.svg",
  31328. extra: 280 / 245,
  31329. bottom: 10 / 290
  31330. }
  31331. },
  31332. back: {
  31333. height: math.unit(3.02, "meters"),
  31334. weight: math.unit(500, "kg"),
  31335. name: "Back",
  31336. image: {
  31337. source: "./media/characters/drena/back.svg",
  31338. extra: 278 / 243,
  31339. bottom: 2 / 280
  31340. }
  31341. },
  31342. foot: {
  31343. height: math.unit(0.75, "meters"),
  31344. name: "Foot",
  31345. image: {
  31346. source: "./media/characters/drena/foot.svg"
  31347. }
  31348. },
  31349. maw: {
  31350. height: math.unit(0.82, "meters"),
  31351. name: "Maw",
  31352. image: {
  31353. source: "./media/characters/drena/maw.svg"
  31354. }
  31355. },
  31356. eating: {
  31357. height: math.unit(0.75, "meters"),
  31358. name: "Eating",
  31359. image: {
  31360. source: "./media/characters/drena/eating.svg"
  31361. }
  31362. },
  31363. rump: {
  31364. height: math.unit(0.93, "meters"),
  31365. name: "Rump",
  31366. image: {
  31367. source: "./media/characters/drena/rump.svg"
  31368. }
  31369. },
  31370. },
  31371. [
  31372. {
  31373. name: "Normal",
  31374. height: math.unit(3.02, "meters"),
  31375. default: true
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31381. {
  31382. front: {
  31383. height: math.unit(6 + 4 / 12, "feet"),
  31384. weight: math.unit(250, "lb"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/remmyzilla/front.svg",
  31388. extra: 4033 / 3588,
  31389. bottom: 123 / 4156
  31390. }
  31391. },
  31392. back: {
  31393. height: math.unit(6 + 4 / 12, "feet"),
  31394. weight: math.unit(250, "lb"),
  31395. name: "Back",
  31396. image: {
  31397. source: "./media/characters/remmyzilla/back.svg",
  31398. extra: 1696/1602,
  31399. bottom: 63/1759
  31400. }
  31401. },
  31402. paw: {
  31403. height: math.unit(1.73, "feet"),
  31404. name: "Paw",
  31405. image: {
  31406. source: "./media/characters/remmyzilla/paw.svg"
  31407. },
  31408. extraAttributes: {
  31409. "toeSize": {
  31410. name: "Toe Size",
  31411. power: 2,
  31412. type: "area",
  31413. base: math.unit(0.0035, "m^2")
  31414. },
  31415. "padSize": {
  31416. name: "Pad Size",
  31417. power: 2,
  31418. type: "area",
  31419. base: math.unit(0.015, "m^2")
  31420. },
  31421. "pawsize": {
  31422. name: "Paw Size",
  31423. power: 2,
  31424. type: "area",
  31425. base: math.unit(0.072, "m^2")
  31426. },
  31427. }
  31428. },
  31429. maw: {
  31430. height: math.unit(1.73, "feet"),
  31431. name: "Maw",
  31432. image: {
  31433. source: "./media/characters/remmyzilla/maw.svg"
  31434. }
  31435. },
  31436. },
  31437. [
  31438. {
  31439. name: "Normal",
  31440. height: math.unit(6 + 4 / 12, "feet")
  31441. },
  31442. {
  31443. name: "Minimacro",
  31444. height: math.unit(12 + 8 / 12, "feet")
  31445. },
  31446. {
  31447. name: "Normal",
  31448. height: math.unit(640, "feet"),
  31449. default: true
  31450. },
  31451. {
  31452. name: "Megamacro",
  31453. height: math.unit(6400, "feet")
  31454. },
  31455. {
  31456. name: "Gigamacro",
  31457. height: math.unit(64000, "miles")
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(2.5, "meters"),
  31466. weight: math.unit(300, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/lawrence/front.svg",
  31470. extra: 357 / 335,
  31471. bottom: 30 / 387
  31472. }
  31473. },
  31474. back: {
  31475. height: math.unit(2.5, "meters"),
  31476. weight: math.unit(300, "lb"),
  31477. name: "Back",
  31478. image: {
  31479. source: "./media/characters/lawrence/back.svg",
  31480. extra: 357 / 338,
  31481. bottom: 16 / 373
  31482. }
  31483. },
  31484. head: {
  31485. height: math.unit(0.9, "meter"),
  31486. name: "Head",
  31487. image: {
  31488. source: "./media/characters/lawrence/head.svg"
  31489. }
  31490. },
  31491. maw: {
  31492. height: math.unit(0.7, "meter"),
  31493. name: "Maw",
  31494. image: {
  31495. source: "./media/characters/lawrence/maw.svg"
  31496. }
  31497. },
  31498. footBottom: {
  31499. height: math.unit(0.5, "meter"),
  31500. name: "Foot (Bottom)",
  31501. image: {
  31502. source: "./media/characters/lawrence/foot-bottom.svg"
  31503. }
  31504. },
  31505. footTop: {
  31506. height: math.unit(0.5, "meter"),
  31507. name: "Foot (Top)",
  31508. image: {
  31509. source: "./media/characters/lawrence/foot-top.svg"
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(2.5, "meters"),
  31517. default: true
  31518. },
  31519. {
  31520. name: "Macro",
  31521. height: math.unit(95, "meters")
  31522. },
  31523. {
  31524. name: "Megamacro",
  31525. height: math.unit(150, "km")
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31531. {
  31532. front: {
  31533. height: math.unit(4.2, "meters"),
  31534. preyCapacity: math.unit(50, "m^3"),
  31535. weight: math.unit(30, "tonnes"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/sydney/front.svg",
  31539. extra: 1177/1129,
  31540. bottom: 197/1374
  31541. },
  31542. extraAttributes: {
  31543. "length": {
  31544. name: "Length",
  31545. power: 1,
  31546. type: "length",
  31547. base: math.unit(21, "meters")
  31548. },
  31549. }
  31550. },
  31551. },
  31552. [
  31553. {
  31554. name: "Normal",
  31555. height: math.unit(4.2, "meters"),
  31556. default: true
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31562. {
  31563. back: {
  31564. height: math.unit(201, "feet"),
  31565. name: "Back",
  31566. image: {
  31567. source: "./media/characters/jessica/back.svg",
  31568. extra: 273 / 259,
  31569. bottom: 7 / 280
  31570. }
  31571. },
  31572. },
  31573. [
  31574. {
  31575. name: "Normal",
  31576. height: math.unit(201, "feet"),
  31577. default: true
  31578. },
  31579. {
  31580. name: "Megamacro",
  31581. height: math.unit(8, "miles")
  31582. },
  31583. ]
  31584. ))
  31585. characterMakers.push(() => makeCharacter(
  31586. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31587. {
  31588. side: {
  31589. height: math.unit(5.6, "m"),
  31590. weight: math.unit(8000, "kg"),
  31591. name: "Side",
  31592. image: {
  31593. source: "./media/characters/victoria/side.svg",
  31594. extra: 1542/1229,
  31595. bottom: 124/1666
  31596. }
  31597. },
  31598. maw: {
  31599. height: math.unit(7.14, "feet"),
  31600. name: "Maw",
  31601. image: {
  31602. source: "./media/characters/victoria/maw.svg"
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(5.6, "m"),
  31610. default: true
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31616. {
  31617. front: {
  31618. height: math.unit(5 + 6 / 12, "feet"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/cat/cat-front.svg",
  31622. extra: 1422/1262,
  31623. bottom: 61/1483
  31624. },
  31625. form: "cat",
  31626. default: true
  31627. },
  31628. back: {
  31629. height: math.unit(5 + 6 / 12, "feet"),
  31630. name: "Back",
  31631. image: {
  31632. source: "./media/characters/cat/cat-back.svg",
  31633. extra: 1466/1301,
  31634. bottom: 19/1485
  31635. },
  31636. form: "cat"
  31637. },
  31638. taur: {
  31639. height: math.unit(7, "feet"),
  31640. name: "Side",
  31641. image: {
  31642. source: "./media/characters/cat/taur-side.svg",
  31643. extra: 1389/1233,
  31644. bottom: 83/1472
  31645. },
  31646. form: "taur",
  31647. default: true
  31648. },
  31649. lucarioFront: {
  31650. height: math.unit(4, "feet"),
  31651. name: "Front",
  31652. image: {
  31653. source: "./media/characters/cat/lucario-front.svg",
  31654. extra: 1149/1019,
  31655. bottom: 84/1233
  31656. },
  31657. form: "lucario",
  31658. default: true
  31659. },
  31660. lucarioBack: {
  31661. height: math.unit(4, "feet"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/cat/lucario-back.svg",
  31665. extra: 1190/1059,
  31666. bottom: 33/1223
  31667. },
  31668. form: "lucario"
  31669. },
  31670. riolu_front: {
  31671. height: math.unit(2 + 4/12, "feet"),
  31672. name: "Front",
  31673. image: {
  31674. source: "./media/characters/cat/riolu-front.svg",
  31675. extra: 1104/956,
  31676. bottom: 70/1174
  31677. },
  31678. form: "riolu",
  31679. default: true
  31680. },
  31681. nickit: {
  31682. height: math.unit(2, "feet"),
  31683. name: "Side",
  31684. image: {
  31685. source: "./media/characters/cat/nickit-side.svg",
  31686. extra: 1087/852,
  31687. bottom: 67/1154
  31688. },
  31689. form: "nickit",
  31690. default: true
  31691. },
  31692. lopunnyFront: {
  31693. height: math.unit(5, "feet"),
  31694. name: "Front",
  31695. image: {
  31696. source: "./media/characters/cat/lopunny-front.svg",
  31697. extra: 1217/1078,
  31698. bottom: 23/1240
  31699. },
  31700. form: "lopunny",
  31701. default: true
  31702. },
  31703. lopunnyBack: {
  31704. height: math.unit(5, "feet"),
  31705. name: "Back",
  31706. image: {
  31707. source: "./media/characters/cat/lopunny-back.svg",
  31708. extra: 1205/1057,
  31709. bottom: 33/1238
  31710. },
  31711. form: "lopunny"
  31712. },
  31713. dog_front: {
  31714. height: math.unit(5 + 9/12, "feet"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/cat/dog-front.svg",
  31718. extra: 1403/1309,
  31719. bottom: 31/1434
  31720. },
  31721. form: "dog",
  31722. default: true
  31723. },
  31724. dog_back: {
  31725. height: math.unit(5 + 9/12, "feet"),
  31726. name: "Back",
  31727. image: {
  31728. source: "./media/characters/cat/dog-back.svg",
  31729. extra: 1393/1297,
  31730. bottom: 38/1431
  31731. },
  31732. form: "dog",
  31733. },
  31734. pikachu_front: {
  31735. height: math.unit(2.64, "feet"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/cat/pikachu-front.svg",
  31739. extra: 1224/958,
  31740. bottom: 34/1258
  31741. },
  31742. form: "pikachu",
  31743. default: true
  31744. },
  31745. pikachu_back: {
  31746. height: math.unit(2.64, "feet"),
  31747. name: "Back",
  31748. image: {
  31749. source: "./media/characters/cat/pikachu-back.svg",
  31750. extra: 1228/958,
  31751. bottom: 16/1244
  31752. },
  31753. form: "pikachu",
  31754. },
  31755. gigachuFront: {
  31756. height: math.unit(75, "feet"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/cat/gigachu-front.svg",
  31760. extra: 1239/1027,
  31761. bottom: 32/1271
  31762. },
  31763. form: "gigachu",
  31764. default: true
  31765. },
  31766. gigachuBack: {
  31767. height: math.unit(75, "feet"),
  31768. name: "Back",
  31769. image: {
  31770. source: "./media/characters/cat/gigachu-back.svg",
  31771. extra: 1229/1030,
  31772. bottom: 9/1238
  31773. },
  31774. form: "gigachu"
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Really small",
  31780. height: math.unit(1, "nm"),
  31781. allForms: true
  31782. },
  31783. {
  31784. name: "Micro",
  31785. height: math.unit(5, "inches"),
  31786. allForms: true
  31787. },
  31788. {
  31789. name: "Normal",
  31790. height: math.unit(5 + 6 / 12, "feet"),
  31791. default: true,
  31792. form: "cat"
  31793. },
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(7, "feet"),
  31797. default: true,
  31798. form: "taur"
  31799. },
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(4, "feet"),
  31803. default: true,
  31804. form: "lucario"
  31805. },
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(2, "feet"),
  31809. default: true,
  31810. form: "nickit"
  31811. },
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(5, "feet"),
  31815. default: true,
  31816. form: "lopunny"
  31817. },
  31818. {
  31819. name: "Normal",
  31820. height: math.unit(2 + 4/12, "feet"),
  31821. default: true,
  31822. form: "riolu"
  31823. },
  31824. {
  31825. name: "Normal",
  31826. height: math.unit(5 + 6 / 12, "feet"),
  31827. default: true,
  31828. form: "dog"
  31829. },
  31830. {
  31831. name: "Macro",
  31832. height: math.unit(50, "feet"),
  31833. allForms: true
  31834. },
  31835. {
  31836. name: "Normal",
  31837. height: math.unit(2.64, "feet"),
  31838. default: true,
  31839. form: "pikachu"
  31840. },
  31841. {
  31842. name: "Dynamax",
  31843. height: math.unit(75, "feet"),
  31844. form: "gigachu",
  31845. default: true
  31846. },
  31847. {
  31848. name: "Macro+",
  31849. height: math.unit(150, "feet"),
  31850. allForms: true
  31851. },
  31852. {
  31853. name: "Megamacro",
  31854. height: math.unit(100, "miles"),
  31855. allForms: true
  31856. },
  31857. ],
  31858. {
  31859. "cat": {
  31860. name: "Cat",
  31861. default: true
  31862. },
  31863. "taur": {
  31864. name: "Taur",
  31865. },
  31866. "lucario": {
  31867. name: "Lucario",
  31868. },
  31869. "riolu": {
  31870. name: "Riolu",
  31871. },
  31872. "nickit": {
  31873. name: "Nickit",
  31874. },
  31875. "lopunny": {
  31876. name: "Lopunny",
  31877. },
  31878. "dog": {
  31879. name: "Dog",
  31880. },
  31881. "pikachu": {
  31882. name: "Pikachu",
  31883. },
  31884. "gigachu": {
  31885. name: "Gigachu",
  31886. ignoreAllFormSizes: true
  31887. }
  31888. }
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(63.4, "meters"),
  31895. weight: math.unit(3.28349e+6, "kilograms"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/kirina-violet/front.svg",
  31899. extra: 2812 / 2725,
  31900. bottom: 0 / 2812
  31901. }
  31902. },
  31903. back: {
  31904. height: math.unit(63.4, "meters"),
  31905. weight: math.unit(3.28349e+6, "kilograms"),
  31906. name: "Back",
  31907. image: {
  31908. source: "./media/characters/kirina-violet/back.svg",
  31909. extra: 2812 / 2725,
  31910. bottom: 0 / 2812
  31911. }
  31912. },
  31913. mouth: {
  31914. height: math.unit(4.35, "meters"),
  31915. name: "Mouth",
  31916. image: {
  31917. source: "./media/characters/kirina-violet/mouth.svg"
  31918. }
  31919. },
  31920. paw: {
  31921. height: math.unit(5.6, "meters"),
  31922. name: "Paw",
  31923. image: {
  31924. source: "./media/characters/kirina-violet/paw.svg"
  31925. }
  31926. },
  31927. tail: {
  31928. height: math.unit(18, "meters"),
  31929. name: "Tail",
  31930. image: {
  31931. source: "./media/characters/kirina-violet/tail.svg"
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Macro",
  31938. height: math.unit(63.4, "meters"),
  31939. default: true
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31945. {
  31946. front: {
  31947. height: math.unit(6, "feet"),
  31948. weight: math.unit(150, "lb"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/sfaiyan/front.svg",
  31952. extra: 999 / 978,
  31953. bottom: 5 / 1004
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Normal",
  31960. height: math.unit(1.82, "meters")
  31961. },
  31962. {
  31963. name: "Giant",
  31964. height: math.unit(2.27, "km"),
  31965. default: true
  31966. },
  31967. ]
  31968. ))
  31969. characterMakers.push(() => makeCharacter(
  31970. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31971. {
  31972. front: {
  31973. height: math.unit(179, "cm"),
  31974. weight: math.unit(100, "kg"),
  31975. name: "Front",
  31976. image: {
  31977. source: "./media/characters/raunehkeli/front.svg",
  31978. extra: 1934 / 1926,
  31979. bottom: 0 / 1934
  31980. }
  31981. },
  31982. },
  31983. [
  31984. {
  31985. name: "Normal",
  31986. height: math.unit(179, "cm")
  31987. },
  31988. {
  31989. name: "Maximum",
  31990. height: math.unit(575, "meters"),
  31991. default: true
  31992. },
  31993. ]
  31994. ))
  31995. characterMakers.push(() => makeCharacter(
  31996. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31997. {
  31998. front: {
  31999. height: math.unit(6, "feet"),
  32000. weight: math.unit(150, "lb"),
  32001. name: "Front",
  32002. image: {
  32003. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32004. extra: 2625 / 2518,
  32005. bottom: 60 / 2685
  32006. }
  32007. },
  32008. },
  32009. [
  32010. {
  32011. name: "Normal",
  32012. height: math.unit(6 + 2 / 12, "feet")
  32013. },
  32014. {
  32015. name: "Macro",
  32016. height: math.unit(1180, "feet"),
  32017. default: true
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32023. {
  32024. front: {
  32025. height: math.unit(5 + 6 / 12, "feet"),
  32026. weight: math.unit(108, "lb"),
  32027. name: "Front",
  32028. image: {
  32029. source: "./media/characters/lilith-zott/front.svg",
  32030. extra: 2510 / 2238,
  32031. bottom: 100 / 2610
  32032. }
  32033. },
  32034. frontDressed: {
  32035. height: math.unit(5 + 6 / 12, "feet"),
  32036. weight: math.unit(108, "lb"),
  32037. name: "Front (Dressed)",
  32038. image: {
  32039. source: "./media/characters/lilith-zott/front-dressed.svg",
  32040. extra: 2510 / 2238,
  32041. bottom: 100 / 2610
  32042. }
  32043. },
  32044. },
  32045. [
  32046. {
  32047. name: "Normal",
  32048. height: math.unit(5 + 6 / 12, "feet")
  32049. },
  32050. {
  32051. name: "Macro",
  32052. height: math.unit(1030, "feet"),
  32053. default: true
  32054. },
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32059. {
  32060. front: {
  32061. height: math.unit(6, "feet"),
  32062. weight: math.unit(150, "lb"),
  32063. name: "Front",
  32064. image: {
  32065. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32066. extra: 2567 / 2435,
  32067. bottom: 39 / 2606
  32068. }
  32069. },
  32070. frontSuper: {
  32071. height: math.unit(6, "feet"),
  32072. name: "Front (Super)",
  32073. image: {
  32074. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32075. extra: 2567 / 2435,
  32076. bottom: 39 / 2606
  32077. }
  32078. },
  32079. },
  32080. [
  32081. {
  32082. name: "Normal",
  32083. height: math.unit(5 + 10 / 12, "feet")
  32084. },
  32085. {
  32086. name: "Macro",
  32087. height: math.unit(1100, "feet"),
  32088. default: true
  32089. },
  32090. ]
  32091. ))
  32092. characterMakers.push(() => makeCharacter(
  32093. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32094. {
  32095. front: {
  32096. height: math.unit(100, "miles"),
  32097. name: "Front",
  32098. image: {
  32099. source: "./media/characters/sona/front.svg",
  32100. extra: 2433 / 2201,
  32101. bottom: 53 / 2486
  32102. }
  32103. },
  32104. foot: {
  32105. height: math.unit(16.1, "miles"),
  32106. name: "Foot",
  32107. image: {
  32108. source: "./media/characters/sona/foot.svg"
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Macro",
  32115. height: math.unit(100, "miles"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(6, "feet"),
  32125. weight: math.unit(150, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/bailey/front.svg",
  32129. extra: 1778 / 1724,
  32130. bottom: 30 / 1808
  32131. }
  32132. },
  32133. },
  32134. [
  32135. {
  32136. name: "Micro",
  32137. height: math.unit(4, "inches")
  32138. },
  32139. {
  32140. name: "Normal",
  32141. height: math.unit(5 + 5 / 12, "feet"),
  32142. default: true
  32143. },
  32144. {
  32145. name: "Macro",
  32146. height: math.unit(250, "feet")
  32147. },
  32148. {
  32149. name: "Megamacro",
  32150. height: math.unit(100, "miles")
  32151. },
  32152. ]
  32153. ))
  32154. characterMakers.push(() => makeCharacter(
  32155. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32156. {
  32157. front: {
  32158. height: math.unit(5 + 2 / 12, "feet"),
  32159. weight: math.unit(120, "lb"),
  32160. name: "Front",
  32161. image: {
  32162. source: "./media/characters/snaps/front.svg",
  32163. extra: 2370 / 2177,
  32164. bottom: 48 / 2418
  32165. }
  32166. },
  32167. back: {
  32168. height: math.unit(5 + 2 / 12, "feet"),
  32169. weight: math.unit(120, "lb"),
  32170. name: "Back",
  32171. image: {
  32172. source: "./media/characters/snaps/back.svg",
  32173. extra: 2408 / 2258,
  32174. bottom: 15 / 2423
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Micro",
  32181. height: math.unit(9, "inches")
  32182. },
  32183. {
  32184. name: "Normal",
  32185. height: math.unit(5 + 2 / 12, "feet"),
  32186. default: true
  32187. },
  32188. {
  32189. name: "Mini Macro",
  32190. height: math.unit(10, "feet")
  32191. },
  32192. ]
  32193. ))
  32194. characterMakers.push(() => makeCharacter(
  32195. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32196. {
  32197. front: {
  32198. height: math.unit(1.8, "meters"),
  32199. weight: math.unit(85, "kg"),
  32200. name: "Front",
  32201. image: {
  32202. source: "./media/characters/azteck/front.svg",
  32203. extra: 2815 / 2625,
  32204. bottom: 89 / 2904
  32205. }
  32206. },
  32207. back: {
  32208. height: math.unit(1.8, "meters"),
  32209. weight: math.unit(85, "kg"),
  32210. name: "Back",
  32211. image: {
  32212. source: "./media/characters/azteck/back.svg",
  32213. extra: 2856 / 2648,
  32214. bottom: 85 / 2941
  32215. }
  32216. },
  32217. frontDressed: {
  32218. height: math.unit(1.8, "meters"),
  32219. weight: math.unit(85, "kg"),
  32220. name: "Front (Dressed)",
  32221. image: {
  32222. source: "./media/characters/azteck/front-dressed.svg",
  32223. extra: 2147 / 2003,
  32224. bottom: 68 / 2215
  32225. }
  32226. },
  32227. head: {
  32228. height: math.unit(0.47, "meters"),
  32229. weight: math.unit(85, "kg"),
  32230. name: "Head",
  32231. image: {
  32232. source: "./media/characters/azteck/head.svg"
  32233. }
  32234. },
  32235. },
  32236. [
  32237. {
  32238. name: "Bite sized",
  32239. height: math.unit(16, "cm")
  32240. },
  32241. {
  32242. name: "Normal",
  32243. height: math.unit(1.8, "meters"),
  32244. default: true
  32245. },
  32246. ]
  32247. ))
  32248. characterMakers.push(() => makeCharacter(
  32249. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32250. {
  32251. front: {
  32252. height: math.unit(6, "feet"),
  32253. weight: math.unit(150, "lb"),
  32254. name: "Front",
  32255. image: {
  32256. source: "./media/characters/pidge/front.svg",
  32257. extra: 1936/1820,
  32258. bottom: 0/1936
  32259. }
  32260. },
  32261. back: {
  32262. height: math.unit(6, "feet"),
  32263. weight: math.unit(150, "lb"),
  32264. name: "Back",
  32265. image: {
  32266. source: "./media/characters/pidge/back.svg",
  32267. extra: 1938/1843,
  32268. bottom: 0/1938
  32269. }
  32270. },
  32271. casual: {
  32272. height: math.unit(6, "feet"),
  32273. weight: math.unit(150, "lb"),
  32274. name: "Casual",
  32275. image: {
  32276. source: "./media/characters/pidge/casual.svg",
  32277. extra: 1936/1820,
  32278. bottom: 0/1936
  32279. }
  32280. },
  32281. tech: {
  32282. height: math.unit(6, "feet"),
  32283. weight: math.unit(150, "lb"),
  32284. name: "Tech",
  32285. image: {
  32286. source: "./media/characters/pidge/tech.svg",
  32287. extra: 1802/1682,
  32288. bottom: 0/1802
  32289. }
  32290. },
  32291. head: {
  32292. height: math.unit(1.61, "feet"),
  32293. name: "Head",
  32294. image: {
  32295. source: "./media/characters/pidge/head.svg"
  32296. }
  32297. },
  32298. collar: {
  32299. height: math.unit(0.82, "feet"),
  32300. name: "Collar",
  32301. image: {
  32302. source: "./media/characters/pidge/collar.svg"
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Macro",
  32309. height: math.unit(2, "mile"),
  32310. default: true
  32311. },
  32312. {
  32313. name: "PUPPY",
  32314. height: math.unit(20, "miles")
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32320. {
  32321. front: {
  32322. height: math.unit(6, "feet"),
  32323. weight: math.unit(150, "lb"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/en/front.svg",
  32327. extra: 1697 / 1563,
  32328. bottom: 103 / 1800
  32329. }
  32330. },
  32331. back: {
  32332. height: math.unit(6, "feet"),
  32333. weight: math.unit(150, "lb"),
  32334. name: "Back",
  32335. image: {
  32336. source: "./media/characters/en/back.svg",
  32337. extra: 1700 / 1570,
  32338. bottom: 51 / 1751
  32339. }
  32340. },
  32341. frontDressed: {
  32342. height: math.unit(6, "feet"),
  32343. weight: math.unit(150, "lb"),
  32344. name: "Front (Dressed)",
  32345. image: {
  32346. source: "./media/characters/en/front-dressed.svg",
  32347. extra: 1697 / 1563,
  32348. bottom: 103 / 1800
  32349. }
  32350. },
  32351. backDressed: {
  32352. height: math.unit(6, "feet"),
  32353. weight: math.unit(150, "lb"),
  32354. name: "Back (Dressed)",
  32355. image: {
  32356. source: "./media/characters/en/back-dressed.svg",
  32357. extra: 1700 / 1570,
  32358. bottom: 51 / 1751
  32359. }
  32360. },
  32361. },
  32362. [
  32363. {
  32364. name: "Macro",
  32365. height: math.unit(210, "feet"),
  32366. default: true
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(6, "feet"),
  32375. weight: math.unit(150, "lb"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/haze-orris/front.svg",
  32379. extra: 3975 / 3525,
  32380. bottom: 137 / 4112
  32381. }
  32382. },
  32383. },
  32384. [
  32385. {
  32386. name: "Micro",
  32387. height: math.unit(150, "mm"),
  32388. default: true
  32389. },
  32390. ]
  32391. ))
  32392. characterMakers.push(() => makeCharacter(
  32393. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32394. {
  32395. front: {
  32396. height: math.unit(6, "feet"),
  32397. weight: math.unit(150, "lb"),
  32398. name: "Front",
  32399. image: {
  32400. source: "./media/characters/casselene-yaro/front.svg",
  32401. extra: 4721 / 4541,
  32402. bottom: 82 / 4803
  32403. }
  32404. },
  32405. back: {
  32406. height: math.unit(6, "feet"),
  32407. weight: math.unit(150, "lb"),
  32408. name: "Back",
  32409. image: {
  32410. source: "./media/characters/casselene-yaro/back.svg",
  32411. extra: 4569 / 4377,
  32412. bottom: 69 / 4638
  32413. }
  32414. },
  32415. dressed: {
  32416. height: math.unit(6, "feet"),
  32417. weight: math.unit(150, "lb"),
  32418. name: "Dressed",
  32419. image: {
  32420. source: "./media/characters/casselene-yaro/dressed.svg",
  32421. extra: 4721 / 4541,
  32422. bottom: 82 / 4803
  32423. }
  32424. },
  32425. maw: {
  32426. height: math.unit(1, "feet"),
  32427. name: "Maw",
  32428. image: {
  32429. source: "./media/characters/casselene-yaro/maw.svg"
  32430. }
  32431. },
  32432. },
  32433. [
  32434. {
  32435. name: "Macro",
  32436. height: math.unit(190, "feet"),
  32437. default: true
  32438. },
  32439. ]
  32440. ))
  32441. characterMakers.push(() => makeCharacter(
  32442. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32443. {
  32444. front: {
  32445. height: math.unit(10, "feet"),
  32446. weight: math.unit(15015, "lb"),
  32447. name: "Front",
  32448. image: {
  32449. source: "./media/characters/platine/front.svg",
  32450. extra: 1741/1650,
  32451. bottom: 84/1825
  32452. }
  32453. },
  32454. side: {
  32455. height: math.unit(10, "feet"),
  32456. weight: math.unit(15015, "lb"),
  32457. name: "Side",
  32458. image: {
  32459. source: "./media/characters/platine/side.svg",
  32460. extra: 1790/1705,
  32461. bottom: 29/1819
  32462. }
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(10, "feet"),
  32469. default: true
  32470. },
  32471. {
  32472. name: "Macro",
  32473. height: math.unit(100, "feet")
  32474. },
  32475. {
  32476. name: "Megamacro",
  32477. height: math.unit(1000, "feet")
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32483. {
  32484. front: {
  32485. height: math.unit(15 + 5 / 12, "feet"),
  32486. weight: math.unit(4600, "lb"),
  32487. name: "Front",
  32488. image: {
  32489. source: "./media/characters/neapolitan-ananassa/front.svg",
  32490. extra: 2903 / 2736,
  32491. bottom: 0 / 2903
  32492. }
  32493. },
  32494. side: {
  32495. height: math.unit(15 + 5 / 12, "feet"),
  32496. weight: math.unit(4600, "lb"),
  32497. name: "Side",
  32498. image: {
  32499. source: "./media/characters/neapolitan-ananassa/side.svg",
  32500. extra: 2925 / 2719,
  32501. bottom: 0 / 2925
  32502. }
  32503. },
  32504. back: {
  32505. height: math.unit(15 + 5 / 12, "feet"),
  32506. weight: math.unit(4600, "lb"),
  32507. name: "Back",
  32508. image: {
  32509. source: "./media/characters/neapolitan-ananassa/back.svg",
  32510. extra: 2903 / 2736,
  32511. bottom: 0 / 2903
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(15 + 5 / 12, "feet"),
  32519. default: true
  32520. },
  32521. {
  32522. name: "Post-Millenium",
  32523. height: math.unit(35 + 5 / 12, "feet")
  32524. },
  32525. {
  32526. name: "Post-Era",
  32527. height: math.unit(450 + 5 / 12, "feet")
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(300, "meters"),
  32536. weight: math.unit(125000, "tonnes"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/pazuzu/front.svg",
  32540. extra: 877 / 794,
  32541. bottom: 47 / 924
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Macro",
  32548. height: math.unit(300, "meters"),
  32549. default: true
  32550. },
  32551. ]
  32552. ))
  32553. characterMakers.push(() => makeCharacter(
  32554. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32555. {
  32556. side: {
  32557. height: math.unit(10 + 7 / 12, "feet"),
  32558. weight: math.unit(2.5, "tons"),
  32559. name: "Side",
  32560. image: {
  32561. source: "./media/characters/aasha/side.svg",
  32562. extra: 1345 / 1245,
  32563. bottom: 111 / 1456
  32564. }
  32565. },
  32566. back: {
  32567. height: math.unit(10 + 7 / 12, "feet"),
  32568. weight: math.unit(2.5, "tons"),
  32569. name: "Back",
  32570. image: {
  32571. source: "./media/characters/aasha/back.svg",
  32572. extra: 1133 / 1057,
  32573. bottom: 257 / 1390
  32574. }
  32575. },
  32576. },
  32577. [
  32578. {
  32579. name: "Normal",
  32580. height: math.unit(10 + 7 / 12, "feet"),
  32581. default: true
  32582. },
  32583. ]
  32584. ))
  32585. characterMakers.push(() => makeCharacter(
  32586. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32587. {
  32588. front: {
  32589. height: math.unit(6 + 3 / 12, "feet"),
  32590. name: "Front",
  32591. image: {
  32592. source: "./media/characters/nevan/front.svg",
  32593. extra: 704 / 704,
  32594. bottom: 28 / 732
  32595. }
  32596. },
  32597. back: {
  32598. height: math.unit(6 + 3 / 12, "feet"),
  32599. name: "Back",
  32600. image: {
  32601. source: "./media/characters/nevan/back.svg",
  32602. extra: 714 / 714,
  32603. bottom: 21 / 735
  32604. }
  32605. },
  32606. frontFlaccid: {
  32607. height: math.unit(6 + 3 / 12, "feet"),
  32608. name: "Front (Flaccid)",
  32609. image: {
  32610. source: "./media/characters/nevan/front-flaccid.svg",
  32611. extra: 704 / 704,
  32612. bottom: 28 / 732
  32613. }
  32614. },
  32615. frontErect: {
  32616. height: math.unit(6 + 3 / 12, "feet"),
  32617. name: "Front (Erect)",
  32618. image: {
  32619. source: "./media/characters/nevan/front-erect.svg",
  32620. extra: 704 / 704,
  32621. bottom: 28 / 732
  32622. }
  32623. },
  32624. backFlaccid: {
  32625. height: math.unit(6 + 3 / 12, "feet"),
  32626. name: "Back (Flaccid)",
  32627. image: {
  32628. source: "./media/characters/nevan/back-flaccid.svg",
  32629. extra: 714 / 714,
  32630. bottom: 21 / 735
  32631. }
  32632. },
  32633. },
  32634. [
  32635. {
  32636. name: "Normal",
  32637. height: math.unit(6 + 3 / 12, "feet"),
  32638. default: true
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32644. {
  32645. front: {
  32646. height: math.unit(4, "feet"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/arhan/front.svg",
  32650. extra: 3368 / 3133,
  32651. bottom: 0 / 3368
  32652. }
  32653. },
  32654. side: {
  32655. height: math.unit(4, "feet"),
  32656. name: "Side",
  32657. image: {
  32658. source: "./media/characters/arhan/side.svg",
  32659. extra: 3347 / 3105,
  32660. bottom: 0 / 3347
  32661. }
  32662. },
  32663. tongue: {
  32664. height: math.unit(1.42, "feet"),
  32665. name: "Tongue",
  32666. image: {
  32667. source: "./media/characters/arhan/tongue.svg"
  32668. }
  32669. },
  32670. head: {
  32671. height: math.unit(0.85, "feet"),
  32672. name: "Head",
  32673. image: {
  32674. source: "./media/characters/arhan/head.svg"
  32675. }
  32676. },
  32677. },
  32678. [
  32679. {
  32680. name: "Normal",
  32681. height: math.unit(4, "feet"),
  32682. default: true
  32683. },
  32684. ]
  32685. ))
  32686. characterMakers.push(() => makeCharacter(
  32687. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32688. {
  32689. front: {
  32690. height: math.unit(5 + 7.5 / 12, "feet"),
  32691. weight: math.unit(120, "lb"),
  32692. name: "Front",
  32693. image: {
  32694. source: "./media/characters/digi-duncan/front.svg",
  32695. extra: 330 / 326,
  32696. bottom: 16 / 346
  32697. }
  32698. },
  32699. side: {
  32700. height: math.unit(5 + 7.5 / 12, "feet"),
  32701. weight: math.unit(120, "lb"),
  32702. name: "Side",
  32703. image: {
  32704. source: "./media/characters/digi-duncan/side.svg",
  32705. extra: 341 / 337,
  32706. bottom: 1 / 342
  32707. }
  32708. },
  32709. back: {
  32710. height: math.unit(5 + 7.5 / 12, "feet"),
  32711. weight: math.unit(120, "lb"),
  32712. name: "Back",
  32713. image: {
  32714. source: "./media/characters/digi-duncan/back.svg",
  32715. extra: 330 / 326,
  32716. bottom: 12 / 342
  32717. }
  32718. },
  32719. },
  32720. [
  32721. {
  32722. name: "Speck",
  32723. height: math.unit(0.25, "mm")
  32724. },
  32725. {
  32726. name: "Micro",
  32727. height: math.unit(5, "mm")
  32728. },
  32729. {
  32730. name: "Tiny",
  32731. height: math.unit(0.5, "inches"),
  32732. default: true
  32733. },
  32734. {
  32735. name: "Human",
  32736. height: math.unit(5 + 7.5 / 12, "feet")
  32737. },
  32738. {
  32739. name: "Minigiant",
  32740. height: math.unit(8 + 5.25, "feet")
  32741. },
  32742. {
  32743. name: "Giant",
  32744. height: math.unit(2000, "feet")
  32745. },
  32746. {
  32747. name: "Mega",
  32748. height: math.unit(371.1, "miles")
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32754. {
  32755. front: {
  32756. height: math.unit(2, "meters"),
  32757. weight: math.unit(350, "kg"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32761. extra: 898 / 838,
  32762. bottom: 9 / 907
  32763. }
  32764. },
  32765. },
  32766. [
  32767. {
  32768. name: "Micro",
  32769. height: math.unit(8, "meters")
  32770. },
  32771. {
  32772. name: "Normal",
  32773. height: math.unit(50, "meters"),
  32774. default: true
  32775. },
  32776. {
  32777. name: "Macro",
  32778. height: math.unit(500, "meters")
  32779. },
  32780. ]
  32781. ))
  32782. characterMakers.push(() => makeCharacter(
  32783. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32784. {
  32785. front: {
  32786. height: math.unit(6 + 6 / 12, "feet"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/khardesh/front.svg",
  32790. extra: 1788/1596,
  32791. bottom: 66/1854
  32792. }
  32793. },
  32794. back: {
  32795. height: math.unit(6 + 6 / 12, "feet"),
  32796. name: "Back",
  32797. image: {
  32798. source: "./media/characters/khardesh/back.svg",
  32799. extra: 1781/1584,
  32800. bottom: 68/1849
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Normal",
  32807. height: math.unit(6 + 6 / 12, "feet"),
  32808. default: true
  32809. },
  32810. {
  32811. name: "Normal+",
  32812. height: math.unit(4, "meters")
  32813. },
  32814. {
  32815. name: "Macro",
  32816. height: math.unit(50, "meters")
  32817. },
  32818. {
  32819. name: "Macro+",
  32820. height: math.unit(100, "meters")
  32821. },
  32822. {
  32823. name: "Megamacro",
  32824. height: math.unit(20, "km")
  32825. },
  32826. ]
  32827. ))
  32828. characterMakers.push(() => makeCharacter(
  32829. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32830. {
  32831. front: {
  32832. height: math.unit(6, "feet"),
  32833. weight: math.unit(150, "lb"),
  32834. name: "Front",
  32835. image: {
  32836. source: "./media/characters/kosho/front.svg",
  32837. extra: 1847 / 1847,
  32838. bottom: 86 / 1933
  32839. }
  32840. },
  32841. },
  32842. [
  32843. {
  32844. name: "Second-stage micro",
  32845. height: math.unit(0.5, "inches")
  32846. },
  32847. {
  32848. name: "First-stage micro",
  32849. height: math.unit(6, "inches")
  32850. },
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(6, "feet"),
  32854. default: true
  32855. },
  32856. {
  32857. name: "First-stage macro",
  32858. height: math.unit(72, "feet")
  32859. },
  32860. {
  32861. name: "Second-stage macro",
  32862. height: math.unit(864, "feet")
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32868. {
  32869. normal: {
  32870. height: math.unit(4 + 6 / 12, "feet"),
  32871. name: "Normal",
  32872. image: {
  32873. source: "./media/characters/hydra/normal.svg",
  32874. extra: 2833 / 2634,
  32875. bottom: 68 / 2901
  32876. }
  32877. },
  32878. smol: {
  32879. height: math.unit(0.705, "inches"),
  32880. name: "Smol",
  32881. image: {
  32882. source: "./media/characters/hydra/smol.svg",
  32883. extra: 2715 / 2540,
  32884. bottom: 0 / 2715
  32885. }
  32886. },
  32887. },
  32888. [
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(4 + 6 / 12, "feet"),
  32892. default: true
  32893. }
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32898. {
  32899. front: {
  32900. height: math.unit(0.6, "cm"),
  32901. name: "Front",
  32902. image: {
  32903. source: "./media/characters/daz/front.svg",
  32904. extra: 1682 / 1164,
  32905. bottom: 42 / 1724
  32906. }
  32907. },
  32908. },
  32909. [
  32910. {
  32911. name: "Normal",
  32912. height: math.unit(0.6, "cm"),
  32913. default: true
  32914. },
  32915. ]
  32916. ))
  32917. characterMakers.push(() => makeCharacter(
  32918. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32919. {
  32920. front: {
  32921. height: math.unit(6, "feet"),
  32922. weight: math.unit(235, "lb"),
  32923. name: "Front",
  32924. image: {
  32925. source: "./media/characters/theo-pangolin/front.svg",
  32926. extra: 1996 / 1969,
  32927. bottom: 115 / 2111
  32928. }
  32929. },
  32930. back: {
  32931. height: math.unit(6, "feet"),
  32932. weight: math.unit(235, "lb"),
  32933. name: "Back",
  32934. image: {
  32935. source: "./media/characters/theo-pangolin/back.svg",
  32936. extra: 1979 / 1979,
  32937. bottom: 40 / 2019
  32938. }
  32939. },
  32940. feral: {
  32941. height: math.unit(2, "feet"),
  32942. weight: math.unit(30, "lb"),
  32943. name: "Feral",
  32944. image: {
  32945. source: "./media/characters/theo-pangolin/feral.svg",
  32946. extra: 803 / 791,
  32947. bottom: 181 / 984
  32948. }
  32949. },
  32950. footFive: {
  32951. height: math.unit(1.43, "feet"),
  32952. name: "Foot (Five Toes)",
  32953. image: {
  32954. source: "./media/characters/theo-pangolin/foot-five.svg"
  32955. }
  32956. },
  32957. footFour: {
  32958. height: math.unit(1.43, "feet"),
  32959. name: "Foot (Four Toes)",
  32960. image: {
  32961. source: "./media/characters/theo-pangolin/foot-four.svg"
  32962. }
  32963. },
  32964. handFour: {
  32965. height: math.unit(0.81, "feet"),
  32966. name: "Hand (Four Fingers)",
  32967. image: {
  32968. source: "./media/characters/theo-pangolin/hand-four.svg"
  32969. }
  32970. },
  32971. handThree: {
  32972. height: math.unit(0.81, "feet"),
  32973. name: "Hand (Three Fingers)",
  32974. image: {
  32975. source: "./media/characters/theo-pangolin/hand-three.svg"
  32976. }
  32977. },
  32978. headFront: {
  32979. height: math.unit(1.37, "feet"),
  32980. name: "Head (Front)",
  32981. image: {
  32982. source: "./media/characters/theo-pangolin/head-front.svg"
  32983. }
  32984. },
  32985. headSide: {
  32986. height: math.unit(1.43, "feet"),
  32987. name: "Head (Side)",
  32988. image: {
  32989. source: "./media/characters/theo-pangolin/head-side.svg"
  32990. }
  32991. },
  32992. tongue: {
  32993. height: math.unit(2.29, "feet"),
  32994. name: "Tongue",
  32995. image: {
  32996. source: "./media/characters/theo-pangolin/tongue.svg"
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(6, "feet")
  33004. },
  33005. {
  33006. name: "Macro",
  33007. height: math.unit(400, "feet"),
  33008. default: true
  33009. },
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33014. {
  33015. front: {
  33016. height: math.unit(6, "inches"),
  33017. weight: math.unit(0.036, "kg"),
  33018. name: "Front",
  33019. image: {
  33020. source: "./media/characters/renée/front.svg",
  33021. extra: 900 / 886,
  33022. bottom: 8 / 908
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Nano",
  33029. height: math.unit(1, "nm")
  33030. },
  33031. {
  33032. name: "Micro",
  33033. height: math.unit(1, "mm")
  33034. },
  33035. {
  33036. name: "Normal",
  33037. height: math.unit(6, "inches")
  33038. },
  33039. {
  33040. name: "Macro",
  33041. height: math.unit(2000, "feet"),
  33042. default: true
  33043. },
  33044. {
  33045. name: "Megamacro",
  33046. height: math.unit(2, "km")
  33047. },
  33048. {
  33049. name: "Gigamacro",
  33050. height: math.unit(2000, "km")
  33051. },
  33052. {
  33053. name: "Teramacro",
  33054. height: math.unit(250000, "km")
  33055. },
  33056. ]
  33057. ))
  33058. characterMakers.push(() => makeCharacter(
  33059. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33060. {
  33061. front: {
  33062. height: math.unit(4, "meters"),
  33063. weight: math.unit(150, "kg"),
  33064. name: "Front",
  33065. image: {
  33066. source: "./media/characters/caledvwlch/front.svg",
  33067. extra: 1757/1537,
  33068. bottom: 31/1788
  33069. }
  33070. },
  33071. side: {
  33072. height: math.unit(4, "meters"),
  33073. weight: math.unit(150, "kg"),
  33074. name: "Side",
  33075. image: {
  33076. source: "./media/characters/caledvwlch/side.svg",
  33077. extra: 1605 / 1536,
  33078. bottom: 31 / 1636
  33079. }
  33080. },
  33081. back: {
  33082. height: math.unit(4, "meters"),
  33083. weight: math.unit(150, "kg"),
  33084. name: "Back",
  33085. image: {
  33086. source: "./media/characters/caledvwlch/back.svg",
  33087. extra: 1635 / 1565,
  33088. bottom: 27 / 1662
  33089. }
  33090. },
  33091. },
  33092. [
  33093. {
  33094. name: "\"Incognito\"",
  33095. height: math.unit(4, "meters")
  33096. },
  33097. {
  33098. name: "Small rampage",
  33099. height: math.unit(600, "meters")
  33100. },
  33101. {
  33102. name: "Mega",
  33103. height: math.unit(30, "km")
  33104. },
  33105. {
  33106. name: "Home-size",
  33107. height: math.unit(50, "km"),
  33108. default: true
  33109. },
  33110. {
  33111. name: "Giga",
  33112. height: math.unit(300, "km")
  33113. },
  33114. {
  33115. name: "Lounging",
  33116. height: math.unit(11000, "km")
  33117. },
  33118. {
  33119. name: "Planet snacking",
  33120. height: math.unit(2000000, "km")
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33126. {
  33127. front: {
  33128. height: math.unit(6, "feet"),
  33129. weight: math.unit(215, "lb"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/sapphire-svell/front.svg",
  33133. extra: 495 / 455,
  33134. bottom: 20 / 515
  33135. }
  33136. },
  33137. back: {
  33138. height: math.unit(6, "feet"),
  33139. weight: math.unit(216, "lb"),
  33140. name: "Back",
  33141. image: {
  33142. source: "./media/characters/sapphire-svell/back.svg",
  33143. extra: 497 / 477,
  33144. bottom: 7 / 504
  33145. }
  33146. },
  33147. maw: {
  33148. height: math.unit(1.57, "feet"),
  33149. name: "Maw",
  33150. image: {
  33151. source: "./media/characters/sapphire-svell/maw.svg"
  33152. }
  33153. },
  33154. foot: {
  33155. height: math.unit(1.07, "feet"),
  33156. name: "Foot",
  33157. image: {
  33158. source: "./media/characters/sapphire-svell/foot.svg"
  33159. }
  33160. },
  33161. toering: {
  33162. height: math.unit(1.7, "inch"),
  33163. name: "Toering",
  33164. image: {
  33165. source: "./media/characters/sapphire-svell/toering.svg"
  33166. }
  33167. },
  33168. },
  33169. [
  33170. {
  33171. name: "Normal",
  33172. height: math.unit(300, "feet"),
  33173. default: true
  33174. },
  33175. {
  33176. name: "Augmented",
  33177. height: math.unit(1250, "feet")
  33178. },
  33179. {
  33180. name: "Unleashed",
  33181. height: math.unit(3000, "feet")
  33182. },
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33187. {
  33188. side: {
  33189. height: math.unit(2 + 3 / 12, "feet"),
  33190. weight: math.unit(110, "lb"),
  33191. name: "Side",
  33192. image: {
  33193. source: "./media/characters/glitch-flux/side.svg",
  33194. extra: 997 / 805,
  33195. bottom: 20 / 1017
  33196. }
  33197. },
  33198. },
  33199. [
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(2 + 3 / 12, "feet"),
  33203. default: true
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33209. {
  33210. front: {
  33211. height: math.unit(4, "meters"),
  33212. name: "Front",
  33213. image: {
  33214. source: "./media/characters/mid/front.svg",
  33215. extra: 507 / 476,
  33216. bottom: 17 / 524
  33217. }
  33218. },
  33219. back: {
  33220. height: math.unit(4, "meters"),
  33221. name: "Back",
  33222. image: {
  33223. source: "./media/characters/mid/back.svg",
  33224. extra: 519 / 487,
  33225. bottom: 7 / 526
  33226. }
  33227. },
  33228. stuck: {
  33229. height: math.unit(2.2, "meters"),
  33230. name: "Stuck",
  33231. image: {
  33232. source: "./media/characters/mid/stuck.svg",
  33233. extra: 1951 / 1869,
  33234. bottom: 88 / 2039
  33235. }
  33236. }
  33237. },
  33238. [
  33239. {
  33240. name: "Normal",
  33241. height: math.unit(4, "meters"),
  33242. default: true
  33243. },
  33244. {
  33245. name: "Big",
  33246. height: math.unit(10, "meters")
  33247. },
  33248. {
  33249. name: "Macro",
  33250. height: math.unit(800, "meters")
  33251. },
  33252. {
  33253. name: "Megamacro",
  33254. height: math.unit(100, "km")
  33255. },
  33256. {
  33257. name: "Overgrown",
  33258. height: math.unit(1, "parsec")
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33264. {
  33265. front: {
  33266. height: math.unit(2.5, "meters"),
  33267. weight: math.unit(225, "kg"),
  33268. name: "Front",
  33269. image: {
  33270. source: "./media/characters/iris/front.svg",
  33271. extra: 3348 / 3251,
  33272. bottom: 205 / 3553
  33273. }
  33274. },
  33275. maw: {
  33276. height: math.unit(0.56, "meter"),
  33277. name: "Maw",
  33278. image: {
  33279. source: "./media/characters/iris/maw.svg"
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Mewter cat",
  33286. height: math.unit(1.2, "meters")
  33287. },
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(2.5, "meters"),
  33291. default: true
  33292. },
  33293. {
  33294. name: "Minimacro",
  33295. height: math.unit(18, "feet")
  33296. },
  33297. {
  33298. name: "Macro",
  33299. height: math.unit(140, "feet")
  33300. },
  33301. {
  33302. name: "Macro+",
  33303. height: math.unit(180, "meters")
  33304. },
  33305. {
  33306. name: "Megamacro",
  33307. height: math.unit(2746, "meters")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(6, "feet"),
  33316. weight: math.unit(135, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/axel/front.svg",
  33320. extra: 908 / 908,
  33321. bottom: 58 / 966
  33322. }
  33323. },
  33324. side: {
  33325. height: math.unit(6, "feet"),
  33326. weight: math.unit(135, "lb"),
  33327. name: "Side",
  33328. image: {
  33329. source: "./media/characters/axel/side.svg",
  33330. extra: 958 / 958,
  33331. bottom: 11 / 969
  33332. }
  33333. },
  33334. back: {
  33335. height: math.unit(6, "feet"),
  33336. weight: math.unit(135, "lb"),
  33337. name: "Back",
  33338. image: {
  33339. source: "./media/characters/axel/back.svg",
  33340. extra: 887 / 887,
  33341. bottom: 34 / 921
  33342. }
  33343. },
  33344. head: {
  33345. height: math.unit(1.07, "feet"),
  33346. name: "Head",
  33347. image: {
  33348. source: "./media/characters/axel/head.svg"
  33349. }
  33350. },
  33351. beak: {
  33352. height: math.unit(1.4, "feet"),
  33353. name: "Beak",
  33354. image: {
  33355. source: "./media/characters/axel/beak.svg"
  33356. }
  33357. },
  33358. beakSide: {
  33359. height: math.unit(1.4, "feet"),
  33360. name: "Beak Side",
  33361. image: {
  33362. source: "./media/characters/axel/beak-side.svg"
  33363. }
  33364. },
  33365. sheath: {
  33366. height: math.unit(0.5, "feet"),
  33367. name: "Sheath",
  33368. image: {
  33369. source: "./media/characters/axel/sheath.svg"
  33370. }
  33371. },
  33372. dick: {
  33373. height: math.unit(0.98, "feet"),
  33374. name: "Dick",
  33375. image: {
  33376. source: "./media/characters/axel/dick.svg"
  33377. }
  33378. },
  33379. },
  33380. [
  33381. {
  33382. name: "Macro",
  33383. height: math.unit(68, "meters"),
  33384. default: true
  33385. },
  33386. ]
  33387. ))
  33388. characterMakers.push(() => makeCharacter(
  33389. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33390. {
  33391. front: {
  33392. height: math.unit(3.5, "meters"),
  33393. weight: math.unit(1200, "kg"),
  33394. name: "Front",
  33395. image: {
  33396. source: "./media/characters/joanna/front.svg",
  33397. extra: 1596 / 1488,
  33398. bottom: 29 / 1625
  33399. }
  33400. },
  33401. back: {
  33402. height: math.unit(3.5, "meters"),
  33403. weight: math.unit(1200, "kg"),
  33404. name: "Back",
  33405. image: {
  33406. source: "./media/characters/joanna/back.svg",
  33407. extra: 1594 / 1495,
  33408. bottom: 26 / 1620
  33409. }
  33410. },
  33411. frontShorts: {
  33412. height: math.unit(3.5, "meters"),
  33413. weight: math.unit(1200, "kg"),
  33414. name: "Front (Shorts)",
  33415. image: {
  33416. source: "./media/characters/joanna/front-shorts.svg",
  33417. extra: 1596 / 1488,
  33418. bottom: 29 / 1625
  33419. }
  33420. },
  33421. frontBiker: {
  33422. height: math.unit(3.5, "meters"),
  33423. weight: math.unit(1200, "kg"),
  33424. name: "Front (Biker)",
  33425. image: {
  33426. source: "./media/characters/joanna/front-biker.svg",
  33427. extra: 1596 / 1488,
  33428. bottom: 29 / 1625
  33429. }
  33430. },
  33431. backBiker: {
  33432. height: math.unit(3.5, "meters"),
  33433. weight: math.unit(1200, "kg"),
  33434. name: "Back (Biker)",
  33435. image: {
  33436. source: "./media/characters/joanna/back-biker.svg",
  33437. extra: 1594 / 1495,
  33438. bottom: 88 / 1682
  33439. }
  33440. },
  33441. bikeLeft: {
  33442. height: math.unit(2.4, "meters"),
  33443. weight: math.unit(1600, "kg"),
  33444. name: "Bike (Left)",
  33445. image: {
  33446. source: "./media/characters/joanna/bike-left.svg",
  33447. extra: 720 / 720,
  33448. bottom: 8 / 728
  33449. }
  33450. },
  33451. bikeRight: {
  33452. height: math.unit(2.4, "meters"),
  33453. weight: math.unit(1600, "kg"),
  33454. name: "Bike (Right)",
  33455. image: {
  33456. source: "./media/characters/joanna/bike-right.svg",
  33457. extra: 720 / 720,
  33458. bottom: 8 / 728
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Incognito",
  33465. height: math.unit(3.5, "meters")
  33466. },
  33467. {
  33468. name: "Casual Big",
  33469. height: math.unit(200, "meters")
  33470. },
  33471. {
  33472. name: "Macro",
  33473. height: math.unit(600, "meters")
  33474. },
  33475. {
  33476. name: "Original",
  33477. height: math.unit(20, "km"),
  33478. default: true
  33479. },
  33480. {
  33481. name: "Giga",
  33482. height: math.unit(400, "km")
  33483. },
  33484. {
  33485. name: "Lounging",
  33486. height: math.unit(1500, "km")
  33487. },
  33488. {
  33489. name: "Planetary",
  33490. height: math.unit(200000, "km")
  33491. },
  33492. ]
  33493. ))
  33494. characterMakers.push(() => makeCharacter(
  33495. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33496. {
  33497. front: {
  33498. height: math.unit(6, "feet"),
  33499. weight: math.unit(150, "lb"),
  33500. name: "Front",
  33501. image: {
  33502. source: "./media/characters/hugo-sigil/front.svg",
  33503. extra: 522 / 500,
  33504. bottom: 2 / 524
  33505. }
  33506. },
  33507. back: {
  33508. height: math.unit(6, "feet"),
  33509. weight: math.unit(150, "lb"),
  33510. name: "Back",
  33511. image: {
  33512. source: "./media/characters/hugo-sigil/back.svg",
  33513. extra: 519 / 495,
  33514. bottom: 5 / 524
  33515. }
  33516. },
  33517. maw: {
  33518. height: math.unit(1.4, "feet"),
  33519. weight: math.unit(150, "lb"),
  33520. name: "Maw",
  33521. image: {
  33522. source: "./media/characters/hugo-sigil/maw.svg"
  33523. }
  33524. },
  33525. feet: {
  33526. height: math.unit(1.56, "feet"),
  33527. weight: math.unit(150, "lb"),
  33528. name: "Feet",
  33529. image: {
  33530. source: "./media/characters/hugo-sigil/feet.svg",
  33531. extra: 177 / 177,
  33532. bottom: 12 / 189
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(6, "feet")
  33540. },
  33541. {
  33542. name: "Macro",
  33543. height: math.unit(200, "feet"),
  33544. default: true
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(6, "feet"),
  33553. weight: math.unit(150, "lb"),
  33554. name: "Front",
  33555. image: {
  33556. source: "./media/characters/peri/front.svg",
  33557. extra: 2354 / 2233,
  33558. bottom: 49 / 2403
  33559. }
  33560. },
  33561. },
  33562. [
  33563. {
  33564. name: "Really Small",
  33565. height: math.unit(1, "nm")
  33566. },
  33567. {
  33568. name: "Micro",
  33569. height: math.unit(4, "inches")
  33570. },
  33571. {
  33572. name: "Normal",
  33573. height: math.unit(7, "inches"),
  33574. default: true
  33575. },
  33576. {
  33577. name: "Macro",
  33578. height: math.unit(400, "feet")
  33579. },
  33580. {
  33581. name: "Megamacro",
  33582. height: math.unit(100, "miles")
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33588. {
  33589. frontSlim: {
  33590. height: math.unit(7, "feet"),
  33591. name: "Front (Slim)",
  33592. image: {
  33593. source: "./media/characters/issilora/front-slim.svg",
  33594. extra: 529 / 449,
  33595. bottom: 53 / 582
  33596. }
  33597. },
  33598. sideSlim: {
  33599. height: math.unit(7, "feet"),
  33600. name: "Side (Slim)",
  33601. image: {
  33602. source: "./media/characters/issilora/side-slim.svg",
  33603. extra: 570 / 480,
  33604. bottom: 30 / 600
  33605. }
  33606. },
  33607. backSlim: {
  33608. height: math.unit(7, "feet"),
  33609. name: "Back (Slim)",
  33610. image: {
  33611. source: "./media/characters/issilora/back-slim.svg",
  33612. extra: 537 / 455,
  33613. bottom: 46 / 583
  33614. }
  33615. },
  33616. frontBuff: {
  33617. height: math.unit(7, "feet"),
  33618. name: "Front (Buff)",
  33619. image: {
  33620. source: "./media/characters/issilora/front-buff.svg",
  33621. extra: 2310 / 2035,
  33622. bottom: 335 / 2645
  33623. }
  33624. },
  33625. head: {
  33626. height: math.unit(1.94, "feet"),
  33627. name: "Head",
  33628. image: {
  33629. source: "./media/characters/issilora/head.svg"
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Minimum",
  33636. height: math.unit(7, "feet")
  33637. },
  33638. {
  33639. name: "Comfortable",
  33640. height: math.unit(17, "feet")
  33641. },
  33642. {
  33643. name: "Fun Size",
  33644. height: math.unit(47, "feet")
  33645. },
  33646. {
  33647. name: "Natural Macro",
  33648. height: math.unit(137, "feet"),
  33649. default: true
  33650. },
  33651. {
  33652. name: "Maximum Kaiju",
  33653. height: math.unit(397, "feet")
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33659. {
  33660. front: {
  33661. height: math.unit(50 + 9/12, "feet"),
  33662. weight: math.unit(32.8, "tons"),
  33663. name: "Front",
  33664. image: {
  33665. source: "./media/characters/irb'iiritaahn/front.svg",
  33666. extra: 1878/1826,
  33667. bottom: 326/2204
  33668. }
  33669. },
  33670. back: {
  33671. height: math.unit(50 + 9/12, "feet"),
  33672. weight: math.unit(32.8, "tons"),
  33673. name: "Back",
  33674. image: {
  33675. source: "./media/characters/irb'iiritaahn/back.svg",
  33676. extra: 2052/2018,
  33677. bottom: 152/2204
  33678. }
  33679. },
  33680. head: {
  33681. height: math.unit(12.86, "feet"),
  33682. name: "Head",
  33683. image: {
  33684. source: "./media/characters/irb'iiritaahn/head.svg"
  33685. }
  33686. },
  33687. maw: {
  33688. height: math.unit(9.66, "feet"),
  33689. name: "Maw",
  33690. image: {
  33691. source: "./media/characters/irb'iiritaahn/maw.svg"
  33692. }
  33693. },
  33694. frontDick: {
  33695. height: math.unit(8.78461, "feet"),
  33696. name: "Front Dick",
  33697. image: {
  33698. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33699. }
  33700. },
  33701. rearDick: {
  33702. height: math.unit(8.78461, "feet"),
  33703. name: "Rear Dick",
  33704. image: {
  33705. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33706. }
  33707. },
  33708. rearDickUnfolded: {
  33709. height: math.unit(8.78, "feet"),
  33710. name: "Rear Dick (Unfolded)",
  33711. image: {
  33712. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33713. }
  33714. },
  33715. wings: {
  33716. height: math.unit(43, "feet"),
  33717. name: "Wings",
  33718. image: {
  33719. source: "./media/characters/irb'iiritaahn/wings.svg"
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Macro",
  33726. height: math.unit(50 + 9/12, "feet"),
  33727. default: true
  33728. },
  33729. ]
  33730. ))
  33731. characterMakers.push(() => makeCharacter(
  33732. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33733. {
  33734. front: {
  33735. height: math.unit(205, "cm"),
  33736. weight: math.unit(102, "kg"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/irbisgreif/front.svg",
  33740. extra: 785/706,
  33741. bottom: 13/798
  33742. }
  33743. },
  33744. back: {
  33745. height: math.unit(205, "cm"),
  33746. weight: math.unit(102, "kg"),
  33747. name: "Back",
  33748. image: {
  33749. source: "./media/characters/irbisgreif/back.svg",
  33750. extra: 713/701,
  33751. bottom: 26/739
  33752. }
  33753. },
  33754. frontDressed: {
  33755. height: math.unit(216, "cm"),
  33756. weight: math.unit(102, "kg"),
  33757. name: "Front-dressed",
  33758. image: {
  33759. source: "./media/characters/irbisgreif/front-dressed.svg",
  33760. extra: 902/776,
  33761. bottom: 14/916
  33762. }
  33763. },
  33764. sideDressed: {
  33765. height: math.unit(195, "cm"),
  33766. weight: math.unit(102, "kg"),
  33767. name: "Side-dressed",
  33768. image: {
  33769. source: "./media/characters/irbisgreif/side-dressed.svg",
  33770. extra: 788/688,
  33771. bottom: 21/809
  33772. }
  33773. },
  33774. backDressed: {
  33775. height: math.unit(216, "cm"),
  33776. weight: math.unit(102, "kg"),
  33777. name: "Back-dressed",
  33778. image: {
  33779. source: "./media/characters/irbisgreif/back-dressed.svg",
  33780. extra: 901/783,
  33781. bottom: 10/911
  33782. }
  33783. },
  33784. dick: {
  33785. height: math.unit(0.49, "feet"),
  33786. name: "Dick",
  33787. image: {
  33788. source: "./media/characters/irbisgreif/dick.svg"
  33789. }
  33790. },
  33791. wingTop: {
  33792. height: math.unit(1.93 , "feet"),
  33793. name: "Wing-top",
  33794. image: {
  33795. source: "./media/characters/irbisgreif/wing-top.svg"
  33796. }
  33797. },
  33798. wingBottom: {
  33799. height: math.unit(1.93 , "feet"),
  33800. name: "Wing-bottom",
  33801. image: {
  33802. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Normal",
  33809. height: math.unit(216, "cm"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33816. {
  33817. front: {
  33818. height: math.unit(6, "feet"),
  33819. weight: math.unit(150, "lb"),
  33820. name: "Front",
  33821. image: {
  33822. source: "./media/characters/pride/front.svg",
  33823. extra: 1299/1230,
  33824. bottom: 18/1317
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(7, "feet")
  33832. },
  33833. {
  33834. name: "Mini-macro",
  33835. height: math.unit(11, "feet")
  33836. },
  33837. {
  33838. name: "Macro",
  33839. height: math.unit(15, "meters"),
  33840. default: true
  33841. },
  33842. {
  33843. name: "Macro+",
  33844. height: math.unit(40, "meters")
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33850. {
  33851. front: {
  33852. height: math.unit(4 + 2 / 12, "feet"),
  33853. weight: math.unit(95, "lb"),
  33854. name: "Front",
  33855. image: {
  33856. source: "./media/characters/vaelophis-nyx/front.svg",
  33857. extra: 2532/2330,
  33858. bottom: 0/2532
  33859. }
  33860. },
  33861. back: {
  33862. height: math.unit(4 + 2 / 12, "feet"),
  33863. weight: math.unit(95, "lb"),
  33864. name: "Back",
  33865. image: {
  33866. source: "./media/characters/vaelophis-nyx/back.svg",
  33867. extra: 2484/2361,
  33868. bottom: 0/2484
  33869. }
  33870. },
  33871. feralSide: {
  33872. height: math.unit(2 + 1/12, "feet"),
  33873. weight: math.unit(20, "lb"),
  33874. name: "Feral (Side)",
  33875. image: {
  33876. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33877. extra: 1721/1581,
  33878. bottom: 70/1791
  33879. }
  33880. },
  33881. feralLazing: {
  33882. height: math.unit(1.08, "feet"),
  33883. weight: math.unit(20, "lb"),
  33884. name: "Feral (Lazing)",
  33885. image: {
  33886. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33887. extra: 822/822,
  33888. bottom: 248/1070
  33889. }
  33890. },
  33891. ear: {
  33892. height: math.unit(0.416, "feet"),
  33893. name: "Ear",
  33894. image: {
  33895. source: "./media/characters/vaelophis-nyx/ear.svg"
  33896. }
  33897. },
  33898. eye: {
  33899. height: math.unit(0.0748, "feet"),
  33900. name: "Eye",
  33901. image: {
  33902. source: "./media/characters/vaelophis-nyx/eye.svg"
  33903. }
  33904. },
  33905. mouth: {
  33906. height: math.unit(0.378, "feet"),
  33907. name: "Mouth",
  33908. image: {
  33909. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33910. }
  33911. },
  33912. spade: {
  33913. height: math.unit(0.55, "feet"),
  33914. name: "Spade",
  33915. image: {
  33916. source: "./media/characters/vaelophis-nyx/spade.svg"
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(4 + 2/12, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33930. {
  33931. front: {
  33932. height: math.unit(7, "feet"),
  33933. weight: math.unit(231, "lb"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/flux/front.svg",
  33937. extra: 919/871,
  33938. bottom: 0/919
  33939. }
  33940. },
  33941. back: {
  33942. height: math.unit(7, "feet"),
  33943. weight: math.unit(231, "lb"),
  33944. name: "Back",
  33945. image: {
  33946. source: "./media/characters/flux/back.svg",
  33947. extra: 1040/992,
  33948. bottom: 0/1040
  33949. }
  33950. },
  33951. frontDressed: {
  33952. height: math.unit(7, "feet"),
  33953. weight: math.unit(231, "lb"),
  33954. name: "Front (Dressed)",
  33955. image: {
  33956. source: "./media/characters/flux/front-dressed.svg",
  33957. extra: 919/871,
  33958. bottom: 0/919
  33959. }
  33960. },
  33961. feralSide: {
  33962. height: math.unit(5, "feet"),
  33963. weight: math.unit(150, "lb"),
  33964. name: "Feral (Side)",
  33965. image: {
  33966. source: "./media/characters/flux/feral-side.svg",
  33967. extra: 598/528,
  33968. bottom: 28/626
  33969. }
  33970. },
  33971. head: {
  33972. height: math.unit(1.585, "feet"),
  33973. name: "Head",
  33974. image: {
  33975. source: "./media/characters/flux/head.svg"
  33976. }
  33977. },
  33978. headSide: {
  33979. height: math.unit(1.74, "feet"),
  33980. name: "Head (Side)",
  33981. image: {
  33982. source: "./media/characters/flux/head-side.svg"
  33983. }
  33984. },
  33985. headSideFire: {
  33986. height: math.unit(1.76, "feet"),
  33987. name: "Head (Side, Fire)",
  33988. image: {
  33989. source: "./media/characters/flux/head-side-fire.svg"
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Normal",
  33996. height: math.unit(7, "feet"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(9, "feet"),
  34006. weight: math.unit(1012, "lb"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/ulfra-lupae/front.svg",
  34010. extra: 1083/1011,
  34011. bottom: 67/1150
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Micro",
  34018. height: math.unit(6, "inches")
  34019. },
  34020. {
  34021. name: "Socializing",
  34022. height: math.unit(6 + 5/12, "feet")
  34023. },
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(9, "feet"),
  34027. default: true
  34028. },
  34029. {
  34030. name: "Macro",
  34031. height: math.unit(150, "feet")
  34032. },
  34033. ]
  34034. ))
  34035. characterMakers.push(() => makeCharacter(
  34036. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34037. {
  34038. front: {
  34039. height: math.unit(5 + 2/12, "feet"),
  34040. weight: math.unit(120, "lb"),
  34041. name: "Front",
  34042. image: {
  34043. source: "./media/characters/timber/front.svg",
  34044. extra: 2814/2705,
  34045. bottom: 181/2995
  34046. }
  34047. },
  34048. },
  34049. [
  34050. {
  34051. name: "Normal",
  34052. height: math.unit(5 + 2/12, "feet"),
  34053. default: true
  34054. },
  34055. ]
  34056. ))
  34057. characterMakers.push(() => makeCharacter(
  34058. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34059. {
  34060. front: {
  34061. height: math.unit(9, "feet"),
  34062. name: "Front",
  34063. image: {
  34064. source: "./media/characters/nicki/front.svg",
  34065. extra: 1240/990,
  34066. bottom: 45/1285
  34067. },
  34068. form: "anthro",
  34069. default: true
  34070. },
  34071. side: {
  34072. height: math.unit(9, "feet"),
  34073. name: "Side",
  34074. image: {
  34075. source: "./media/characters/nicki/side.svg",
  34076. extra: 1047/973,
  34077. bottom: 61/1108
  34078. },
  34079. form: "anthro"
  34080. },
  34081. back: {
  34082. height: math.unit(9, "feet"),
  34083. name: "Back",
  34084. image: {
  34085. source: "./media/characters/nicki/back.svg",
  34086. extra: 1006/965,
  34087. bottom: 39/1045
  34088. },
  34089. form: "anthro"
  34090. },
  34091. taur: {
  34092. height: math.unit(15, "feet"),
  34093. name: "Taur",
  34094. image: {
  34095. source: "./media/characters/nicki/taur.svg",
  34096. extra: 1592/1347,
  34097. bottom: 0/1592
  34098. },
  34099. form: "taur",
  34100. default: true
  34101. },
  34102. },
  34103. [
  34104. {
  34105. name: "Normal",
  34106. height: math.unit(9, "feet"),
  34107. form: "anthro",
  34108. default: true
  34109. },
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(15, "feet"),
  34113. form: "taur",
  34114. default: true
  34115. }
  34116. ],
  34117. {
  34118. "anthro": {
  34119. name: "Anthro",
  34120. default: true
  34121. },
  34122. "taur": {
  34123. name: "Taur"
  34124. }
  34125. }
  34126. ))
  34127. characterMakers.push(() => makeCharacter(
  34128. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34129. {
  34130. front: {
  34131. height: math.unit(7 + 10/12, "feet"),
  34132. weight: math.unit(3.5, "tons"),
  34133. name: "Front",
  34134. image: {
  34135. source: "./media/characters/lee/front.svg",
  34136. extra: 1773/1615,
  34137. bottom: 86/1859
  34138. }
  34139. },
  34140. hand: {
  34141. height: math.unit(1.78, "feet"),
  34142. name: "Hand",
  34143. image: {
  34144. source: "./media/characters/lee/hand.svg"
  34145. }
  34146. },
  34147. maw: {
  34148. height: math.unit(1.18, "feet"),
  34149. name: "Maw",
  34150. image: {
  34151. source: "./media/characters/lee/maw.svg"
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Normal",
  34158. height: math.unit(7 + 10/12, "feet"),
  34159. default: true
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34165. {
  34166. front: {
  34167. height: math.unit(9, "feet"),
  34168. name: "Front",
  34169. image: {
  34170. source: "./media/characters/guti/front.svg",
  34171. extra: 4551/4355,
  34172. bottom: 123/4674
  34173. }
  34174. },
  34175. tongue: {
  34176. height: math.unit(1, "feet"),
  34177. name: "Tongue",
  34178. image: {
  34179. source: "./media/characters/guti/tongue.svg"
  34180. }
  34181. },
  34182. paw: {
  34183. height: math.unit(1.18, "feet"),
  34184. name: "Paw",
  34185. image: {
  34186. source: "./media/characters/guti/paw.svg"
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(9, "feet"),
  34194. default: true
  34195. },
  34196. ]
  34197. ))
  34198. characterMakers.push(() => makeCharacter(
  34199. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34200. {
  34201. side: {
  34202. height: math.unit(5, "meters"),
  34203. name: "Side",
  34204. image: {
  34205. source: "./media/characters/vesper/side.svg",
  34206. extra: 1605/1518,
  34207. bottom: 0/1605
  34208. }
  34209. },
  34210. },
  34211. [
  34212. {
  34213. name: "Small",
  34214. height: math.unit(5, "meters")
  34215. },
  34216. {
  34217. name: "Sage",
  34218. height: math.unit(100, "meters"),
  34219. default: true
  34220. },
  34221. {
  34222. name: "Fun Size",
  34223. height: math.unit(600, "meters")
  34224. },
  34225. {
  34226. name: "Goddess",
  34227. height: math.unit(20000, "km")
  34228. },
  34229. {
  34230. name: "Maximum",
  34231. height: math.unit(5, "galaxies")
  34232. },
  34233. ]
  34234. ))
  34235. characterMakers.push(() => makeCharacter(
  34236. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34237. {
  34238. front: {
  34239. height: math.unit(6 + 3/12, "feet"),
  34240. weight: math.unit(190, "lb"),
  34241. name: "Front",
  34242. image: {
  34243. source: "./media/characters/gawain/front.svg",
  34244. extra: 2222/2139,
  34245. bottom: 90/2312
  34246. }
  34247. },
  34248. back: {
  34249. height: math.unit(6 + 3/12, "feet"),
  34250. weight: math.unit(190, "lb"),
  34251. name: "Back",
  34252. image: {
  34253. source: "./media/characters/gawain/back.svg",
  34254. extra: 2199/2111,
  34255. bottom: 73/2272
  34256. }
  34257. },
  34258. },
  34259. [
  34260. {
  34261. name: "Normal",
  34262. height: math.unit(6 + 3/12, "feet"),
  34263. default: true
  34264. },
  34265. ]
  34266. ))
  34267. characterMakers.push(() => makeCharacter(
  34268. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34269. {
  34270. side: {
  34271. height: math.unit(3.5, "meters"),
  34272. weight: math.unit(16000, "lb"),
  34273. name: "Side",
  34274. image: {
  34275. source: "./media/characters/dascalti/side.svg",
  34276. extra: 392/273,
  34277. bottom: 47/439
  34278. }
  34279. },
  34280. breath: {
  34281. height: math.unit(7.4, "feet"),
  34282. name: "Breath",
  34283. image: {
  34284. source: "./media/characters/dascalti/breath.svg"
  34285. }
  34286. },
  34287. fed: {
  34288. height: math.unit(3.6, "meters"),
  34289. weight: math.unit(16000, "lb"),
  34290. name: "Fed",
  34291. image: {
  34292. source: "./media/characters/dascalti/fed.svg",
  34293. extra: 1419/820,
  34294. bottom: 95/1514
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(3.5, "meters"),
  34302. default: true
  34303. },
  34304. ]
  34305. ))
  34306. characterMakers.push(() => makeCharacter(
  34307. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34308. {
  34309. front: {
  34310. height: math.unit(3 + 5/12, "feet"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/mauve/front.svg",
  34314. extra: 1126/1033,
  34315. bottom: 65/1191
  34316. }
  34317. },
  34318. side: {
  34319. height: math.unit(3 + 5/12, "feet"),
  34320. name: "Side",
  34321. image: {
  34322. source: "./media/characters/mauve/side.svg",
  34323. extra: 1089/1001,
  34324. bottom: 29/1118
  34325. }
  34326. },
  34327. back: {
  34328. height: math.unit(3 + 5/12, "feet"),
  34329. name: "Back",
  34330. image: {
  34331. source: "./media/characters/mauve/back.svg",
  34332. extra: 1173/1053,
  34333. bottom: 109/1282
  34334. }
  34335. },
  34336. },
  34337. [
  34338. {
  34339. name: "Normal",
  34340. height: math.unit(3 + 5/12, "feet"),
  34341. default: true
  34342. },
  34343. ]
  34344. ))
  34345. characterMakers.push(() => makeCharacter(
  34346. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34347. {
  34348. front: {
  34349. height: math.unit(6 + 3/12, "feet"),
  34350. weight: math.unit(430, "lb"),
  34351. name: "Front",
  34352. image: {
  34353. source: "./media/characters/carlos/front.svg",
  34354. extra: 1964/1913,
  34355. bottom: 70/2034
  34356. }
  34357. },
  34358. },
  34359. [
  34360. {
  34361. name: "Normal",
  34362. height: math.unit(6 + 3/12, "feet"),
  34363. default: true
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34369. {
  34370. back: {
  34371. height: math.unit(5 + 10/12, "feet"),
  34372. weight: math.unit(200, "lb"),
  34373. name: "Back",
  34374. image: {
  34375. source: "./media/characters/jax/back.svg",
  34376. extra: 764/739,
  34377. bottom: 25/789
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Normal",
  34384. height: math.unit(5 + 10/12, "feet"),
  34385. default: true
  34386. },
  34387. ]
  34388. ))
  34389. characterMakers.push(() => makeCharacter(
  34390. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34391. {
  34392. front: {
  34393. height: math.unit(8, "feet"),
  34394. weight: math.unit(250, "lb"),
  34395. name: "Front",
  34396. image: {
  34397. source: "./media/characters/eikthynir/front.svg",
  34398. extra: 1332/1166,
  34399. bottom: 82/1414
  34400. }
  34401. },
  34402. back: {
  34403. height: math.unit(8, "feet"),
  34404. weight: math.unit(250, "lb"),
  34405. name: "Back",
  34406. image: {
  34407. source: "./media/characters/eikthynir/back.svg",
  34408. extra: 1342/1190,
  34409. bottom: 19/1361
  34410. }
  34411. },
  34412. dick: {
  34413. height: math.unit(2.35, "feet"),
  34414. name: "Dick",
  34415. image: {
  34416. source: "./media/characters/eikthynir/dick.svg"
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Normal",
  34423. height: math.unit(8, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(99, "meters"),
  34433. weight: math.unit(13000, "tons"),
  34434. name: "Front",
  34435. image: {
  34436. source: "./media/characters/zlmos/front.svg",
  34437. extra: 2202/1992,
  34438. bottom: 315/2517
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Macro",
  34445. height: math.unit(99, "meters"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(6 + 5/12, "feet"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/purri/front.svg",
  34458. extra: 1698/1610,
  34459. bottom: 32/1730
  34460. }
  34461. },
  34462. frontAlt: {
  34463. height: math.unit(6 + 5/12, "feet"),
  34464. name: "Front (Alt)",
  34465. image: {
  34466. source: "./media/characters/purri/front-alt.svg",
  34467. extra: 450/420,
  34468. bottom: 26/476
  34469. }
  34470. },
  34471. boots: {
  34472. height: math.unit(5.5, "feet"),
  34473. name: "Boots",
  34474. image: {
  34475. source: "./media/characters/purri/boots.svg",
  34476. extra: 905/853,
  34477. bottom: 18/923
  34478. },
  34479. extraAttributes: {
  34480. "shoeSize": {
  34481. name: "Shoe Size",
  34482. power: 1,
  34483. type: "length",
  34484. base: math.unit(12, "ShoeSizeMensUS")
  34485. },
  34486. "platformHeight": {
  34487. name: "Platform Height",
  34488. power: 1,
  34489. type: "length",
  34490. base: math.unit(2, "inches")
  34491. },
  34492. }
  34493. },
  34494. lying: {
  34495. height: math.unit(2, "feet"),
  34496. name: "Lying",
  34497. image: {
  34498. source: "./media/characters/purri/lying.svg",
  34499. extra: 940/843,
  34500. bottom: 146/1086
  34501. }
  34502. },
  34503. devious: {
  34504. height: math.unit(1.77, "feet"),
  34505. name: "Devious",
  34506. image: {
  34507. source: "./media/characters/purri/devious.svg",
  34508. extra: 1440/1155,
  34509. bottom: 147/1587
  34510. }
  34511. },
  34512. bean: {
  34513. height: math.unit(1.94, "feet"),
  34514. name: "Bean",
  34515. image: {
  34516. source: "./media/characters/purri/bean.svg"
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Micro",
  34523. height: math.unit(1, "mm")
  34524. },
  34525. {
  34526. name: "Normal",
  34527. height: math.unit(6 + 5/12, "feet"),
  34528. default: true
  34529. },
  34530. {
  34531. name: "Macro :3c",
  34532. height: math.unit(2, "miles")
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(6 + 2/12, "feet"),
  34541. weight: math.unit(250, "lb"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/moonlight/front.svg",
  34545. extra: 1044/908,
  34546. bottom: 56/1100
  34547. }
  34548. },
  34549. feral: {
  34550. height: math.unit(3 + 1/12, "feet"),
  34551. weight: math.unit(50, "kg"),
  34552. name: "Feral",
  34553. image: {
  34554. source: "./media/characters/moonlight/feral.svg",
  34555. extra: 3705/2791,
  34556. bottom: 145/3850
  34557. }
  34558. },
  34559. paw: {
  34560. height: math.unit(1, "feet"),
  34561. name: "Paw",
  34562. image: {
  34563. source: "./media/characters/moonlight/paw.svg"
  34564. }
  34565. },
  34566. paws: {
  34567. height: math.unit(0.98, "feet"),
  34568. name: "Paws",
  34569. image: {
  34570. source: "./media/characters/moonlight/paws.svg",
  34571. extra: 939/939,
  34572. bottom: 50/989
  34573. }
  34574. },
  34575. mouth: {
  34576. height: math.unit(0.48, "feet"),
  34577. name: "Mouth",
  34578. image: {
  34579. source: "./media/characters/moonlight/mouth.svg"
  34580. }
  34581. },
  34582. dick: {
  34583. height: math.unit(1.46, "feet"),
  34584. name: "Dick",
  34585. image: {
  34586. source: "./media/characters/moonlight/dick.svg"
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(6 + 2/12, "feet"),
  34594. default: true
  34595. },
  34596. {
  34597. name: "Macro",
  34598. height: math.unit(300, "feet")
  34599. },
  34600. {
  34601. name: "Macro+",
  34602. height: math.unit(1, "mile")
  34603. },
  34604. {
  34605. name: "Mt. Moon",
  34606. height: math.unit(5, "miles")
  34607. },
  34608. {
  34609. name: "Megamacro",
  34610. height: math.unit(15, "miles")
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34616. {
  34617. back: {
  34618. height: math.unit(6, "feet"),
  34619. weight: math.unit(150, "lb"),
  34620. name: "Back",
  34621. image: {
  34622. source: "./media/characters/sylen/back.svg",
  34623. extra: 1335/1273,
  34624. bottom: 107/1442
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Normal",
  34631. height: math.unit(5 + 5/12, "feet")
  34632. },
  34633. {
  34634. name: "Megamacro",
  34635. height: math.unit(3, "miles"),
  34636. default: true
  34637. },
  34638. ]
  34639. ))
  34640. characterMakers.push(() => makeCharacter(
  34641. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34642. {
  34643. front: {
  34644. height: math.unit(6, "feet"),
  34645. weight: math.unit(190, "lb"),
  34646. name: "Front",
  34647. image: {
  34648. source: "./media/characters/huttser/front.svg",
  34649. extra: 1152/1058,
  34650. bottom: 23/1175
  34651. }
  34652. },
  34653. side: {
  34654. height: math.unit(6, "feet"),
  34655. weight: math.unit(190, "lb"),
  34656. name: "Side",
  34657. image: {
  34658. source: "./media/characters/huttser/side.svg",
  34659. extra: 1174/1065,
  34660. bottom: 18/1192
  34661. }
  34662. },
  34663. back: {
  34664. height: math.unit(6, "feet"),
  34665. weight: math.unit(190, "lb"),
  34666. name: "Back",
  34667. image: {
  34668. source: "./media/characters/huttser/back.svg",
  34669. extra: 1158/1056,
  34670. bottom: 12/1170
  34671. }
  34672. },
  34673. },
  34674. [
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34679. {
  34680. side: {
  34681. height: math.unit(12 + 9/12, "feet"),
  34682. weight: math.unit(15000, "lb"),
  34683. name: "Side",
  34684. image: {
  34685. source: "./media/characters/faan/side.svg",
  34686. extra: 2747/2697,
  34687. bottom: 0/2747
  34688. }
  34689. },
  34690. front: {
  34691. height: math.unit(12 + 9/12, "feet"),
  34692. weight: math.unit(15000, "lb"),
  34693. name: "Front",
  34694. image: {
  34695. source: "./media/characters/faan/front.svg",
  34696. extra: 607/571,
  34697. bottom: 24/631
  34698. }
  34699. },
  34700. head: {
  34701. height: math.unit(2.85, "feet"),
  34702. name: "Head",
  34703. image: {
  34704. source: "./media/characters/faan/head.svg"
  34705. }
  34706. },
  34707. headAlt: {
  34708. height: math.unit(3.13, "feet"),
  34709. name: "Head-alt",
  34710. image: {
  34711. source: "./media/characters/faan/head-alt.svg"
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Normal",
  34718. height: math.unit(12 + 9/12, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34725. {
  34726. front: {
  34727. height: math.unit(6, "feet"),
  34728. weight: math.unit(300, "lb"),
  34729. name: "Front",
  34730. image: {
  34731. source: "./media/characters/tanio/front.svg",
  34732. extra: 711/673,
  34733. bottom: 25/736
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Normal",
  34740. height: math.unit(6, "feet"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34747. {
  34748. front: {
  34749. height: math.unit(3, "inches"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/noboru/front.svg",
  34753. extra: 1039/932,
  34754. bottom: 18/1057
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Micro",
  34761. height: math.unit(3, "inches"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(1.85, "meters"),
  34771. weight: math.unit(80, "kg"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/daniel-barrett/front.svg",
  34775. extra: 355/337,
  34776. bottom: 9/364
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Pico",
  34783. height: math.unit(0.0433, "mm")
  34784. },
  34785. {
  34786. name: "Nano",
  34787. height: math.unit(1.5, "mm")
  34788. },
  34789. {
  34790. name: "Micro",
  34791. height: math.unit(5.3, "cm"),
  34792. default: true
  34793. },
  34794. {
  34795. name: "Normal",
  34796. height: math.unit(1.85, "meters")
  34797. },
  34798. {
  34799. name: "Macro",
  34800. height: math.unit(64.7, "meters")
  34801. },
  34802. {
  34803. name: "Megamacro",
  34804. height: math.unit(2.26, "km")
  34805. },
  34806. {
  34807. name: "Gigamacro",
  34808. height: math.unit(79, "km")
  34809. },
  34810. {
  34811. name: "Teramacro",
  34812. height: math.unit(2765, "km")
  34813. },
  34814. {
  34815. name: "Petamacro",
  34816. height: math.unit(96678, "km")
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34822. {
  34823. front: {
  34824. height: math.unit(30, "meters"),
  34825. weight: math.unit(400, "tons"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/zeel/front.svg",
  34829. extra: 2599/2599,
  34830. bottom: 226/2825
  34831. }
  34832. },
  34833. },
  34834. [
  34835. {
  34836. name: "Macro",
  34837. height: math.unit(30, "meters"),
  34838. default: true
  34839. },
  34840. ]
  34841. ))
  34842. characterMakers.push(() => makeCharacter(
  34843. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34844. {
  34845. front: {
  34846. height: math.unit(6 + 7/12, "feet"),
  34847. weight: math.unit(210, "lb"),
  34848. name: "Front",
  34849. image: {
  34850. source: "./media/characters/tarn/front.svg",
  34851. extra: 3517/3220,
  34852. bottom: 91/3608
  34853. }
  34854. },
  34855. back: {
  34856. height: math.unit(6 + 7/12, "feet"),
  34857. weight: math.unit(210, "lb"),
  34858. name: "Back",
  34859. image: {
  34860. source: "./media/characters/tarn/back.svg",
  34861. extra: 3566/3241,
  34862. bottom: 34/3600
  34863. }
  34864. },
  34865. dick: {
  34866. height: math.unit(1.65, "feet"),
  34867. name: "Dick",
  34868. image: {
  34869. source: "./media/characters/tarn/dick.svg"
  34870. }
  34871. },
  34872. paw: {
  34873. height: math.unit(1.80, "feet"),
  34874. name: "Paw",
  34875. image: {
  34876. source: "./media/characters/tarn/paw.svg"
  34877. }
  34878. },
  34879. tongue: {
  34880. height: math.unit(0.97, "feet"),
  34881. name: "Tongue",
  34882. image: {
  34883. source: "./media/characters/tarn/tongue.svg"
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "Micro",
  34890. height: math.unit(4, "inches")
  34891. },
  34892. {
  34893. name: "Normal",
  34894. height: math.unit(6 + 7/12, "feet"),
  34895. default: true
  34896. },
  34897. {
  34898. name: "Macro",
  34899. height: math.unit(300, "feet")
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34905. {
  34906. front: {
  34907. height: math.unit(5 + 7/12, "feet"),
  34908. weight: math.unit(80, "kg"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34912. extra: 3023/2865,
  34913. bottom: 33/3056
  34914. }
  34915. },
  34916. back: {
  34917. height: math.unit(5 + 7/12, "feet"),
  34918. weight: math.unit(80, "kg"),
  34919. name: "Back",
  34920. image: {
  34921. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34922. extra: 3020/2886,
  34923. bottom: 30/3050
  34924. }
  34925. },
  34926. dick: {
  34927. height: math.unit(0.98, "feet"),
  34928. name: "Dick",
  34929. image: {
  34930. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34931. }
  34932. },
  34933. anatomy: {
  34934. height: math.unit(2.86, "feet"),
  34935. name: "Anatomy",
  34936. image: {
  34937. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34938. }
  34939. },
  34940. },
  34941. [
  34942. {
  34943. name: "Really Small",
  34944. height: math.unit(2, "inches")
  34945. },
  34946. {
  34947. name: "Micro",
  34948. height: math.unit(5.583, "inches")
  34949. },
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(5 + 7/12, "feet"),
  34953. default: true
  34954. },
  34955. {
  34956. name: "Macro",
  34957. height: math.unit(67, "feet")
  34958. },
  34959. {
  34960. name: "Megamacro",
  34961. height: math.unit(134, "feet")
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(9, "feet"),
  34970. weight: math.unit(120, "lb"),
  34971. name: "Front",
  34972. image: {
  34973. source: "./media/characters/sally/front.svg",
  34974. extra: 1506/1349,
  34975. bottom: 66/1572
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Normal",
  34982. height: math.unit(9, "feet"),
  34983. default: true
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(8, "feet"),
  34992. weight: math.unit(900, "lb"),
  34993. name: "Front",
  34994. image: {
  34995. source: "./media/characters/owen/front.svg",
  34996. extra: 1761/1657,
  34997. bottom: 74/1835
  34998. }
  34999. },
  35000. side: {
  35001. height: math.unit(8, "feet"),
  35002. weight: math.unit(900, "lb"),
  35003. name: "Side",
  35004. image: {
  35005. source: "./media/characters/owen/side.svg",
  35006. extra: 1797/1734,
  35007. bottom: 30/1827
  35008. }
  35009. },
  35010. back: {
  35011. height: math.unit(8, "feet"),
  35012. weight: math.unit(900, "lb"),
  35013. name: "Back",
  35014. image: {
  35015. source: "./media/characters/owen/back.svg",
  35016. extra: 1796/1706,
  35017. bottom: 59/1855
  35018. }
  35019. },
  35020. maw: {
  35021. height: math.unit(1.76, "feet"),
  35022. name: "Maw",
  35023. image: {
  35024. source: "./media/characters/owen/maw.svg"
  35025. }
  35026. },
  35027. },
  35028. [
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(8, "feet"),
  35032. default: true
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35038. {
  35039. front: {
  35040. height: math.unit(4, "feet"),
  35041. weight: math.unit(400, "lb"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/ryth/front.svg",
  35045. extra: 1920/1748,
  35046. bottom: 42/1962
  35047. }
  35048. },
  35049. back: {
  35050. height: math.unit(4, "feet"),
  35051. weight: math.unit(400, "lb"),
  35052. name: "Back",
  35053. image: {
  35054. source: "./media/characters/ryth/back.svg",
  35055. extra: 1897/1690,
  35056. bottom: 89/1986
  35057. }
  35058. },
  35059. mouth: {
  35060. height: math.unit(1.39, "feet"),
  35061. name: "Mouth",
  35062. image: {
  35063. source: "./media/characters/ryth/mouth.svg"
  35064. }
  35065. },
  35066. tailmaw: {
  35067. height: math.unit(1.23, "feet"),
  35068. name: "Tailmaw",
  35069. image: {
  35070. source: "./media/characters/ryth/tailmaw.svg"
  35071. }
  35072. },
  35073. goia: {
  35074. height: math.unit(4, "meters"),
  35075. weight: math.unit(10800, "lb"),
  35076. name: "Goia",
  35077. image: {
  35078. source: "./media/characters/ryth/goia.svg",
  35079. extra: 745/640,
  35080. bottom: 107/852
  35081. }
  35082. },
  35083. goiaFront: {
  35084. height: math.unit(4, "meters"),
  35085. weight: math.unit(10800, "lb"),
  35086. name: "Goia (Front)",
  35087. image: {
  35088. source: "./media/characters/ryth/goia-front.svg",
  35089. extra: 750/586,
  35090. bottom: 114/864
  35091. }
  35092. },
  35093. goiaMaw: {
  35094. height: math.unit(5.55, "feet"),
  35095. name: "Goia Maw",
  35096. image: {
  35097. source: "./media/characters/ryth/goia-maw.svg"
  35098. }
  35099. },
  35100. goiaForepaw: {
  35101. height: math.unit(3.5, "feet"),
  35102. name: "Goia Forepaw",
  35103. image: {
  35104. source: "./media/characters/ryth/goia-forepaw.svg"
  35105. }
  35106. },
  35107. goiaHindpaw: {
  35108. height: math.unit(5.55, "feet"),
  35109. name: "Goia Hindpaw",
  35110. image: {
  35111. source: "./media/characters/ryth/goia-hindpaw.svg"
  35112. }
  35113. },
  35114. },
  35115. [
  35116. {
  35117. name: "Normal",
  35118. height: math.unit(4, "feet"),
  35119. default: true
  35120. },
  35121. ]
  35122. ))
  35123. characterMakers.push(() => makeCharacter(
  35124. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35125. {
  35126. front: {
  35127. height: math.unit(7, "feet"),
  35128. weight: math.unit(180, "lb"),
  35129. name: "Front",
  35130. image: {
  35131. source: "./media/characters/necrolance/front.svg",
  35132. extra: 1062/947,
  35133. bottom: 41/1103
  35134. }
  35135. },
  35136. back: {
  35137. height: math.unit(7, "feet"),
  35138. weight: math.unit(180, "lb"),
  35139. name: "Back",
  35140. image: {
  35141. source: "./media/characters/necrolance/back.svg",
  35142. extra: 1045/984,
  35143. bottom: 14/1059
  35144. }
  35145. },
  35146. wing: {
  35147. height: math.unit(2.67, "feet"),
  35148. name: "Wing",
  35149. image: {
  35150. source: "./media/characters/necrolance/wing.svg"
  35151. }
  35152. },
  35153. },
  35154. [
  35155. {
  35156. name: "Normal",
  35157. height: math.unit(7, "feet"),
  35158. default: true
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35164. {
  35165. front: {
  35166. height: math.unit(76, "meters"),
  35167. weight: math.unit(30000, "tons"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/tyler/front.svg",
  35171. extra: 1640/1640,
  35172. bottom: 114/1754
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Macro",
  35179. height: math.unit(76, "meters"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(4 + 11/12, "feet"),
  35189. weight: math.unit(132, "lb"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/icey/front.svg",
  35193. extra: 2750/2550,
  35194. bottom: 33/2783
  35195. }
  35196. },
  35197. back: {
  35198. height: math.unit(4 + 11/12, "feet"),
  35199. weight: math.unit(132, "lb"),
  35200. name: "Back",
  35201. image: {
  35202. source: "./media/characters/icey/back.svg",
  35203. extra: 2624/2481,
  35204. bottom: 35/2659
  35205. }
  35206. },
  35207. },
  35208. [
  35209. {
  35210. name: "Normal",
  35211. height: math.unit(4 + 11/12, "feet"),
  35212. default: true
  35213. },
  35214. ]
  35215. ))
  35216. characterMakers.push(() => makeCharacter(
  35217. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35218. {
  35219. front: {
  35220. height: math.unit(100, "feet"),
  35221. weight: math.unit(0, "lb"),
  35222. name: "Front",
  35223. image: {
  35224. source: "./media/characters/smile/front.svg",
  35225. extra: 2983/2912,
  35226. bottom: 162/3145
  35227. }
  35228. },
  35229. back: {
  35230. height: math.unit(100, "feet"),
  35231. weight: math.unit(0, "lb"),
  35232. name: "Back",
  35233. image: {
  35234. source: "./media/characters/smile/back.svg",
  35235. extra: 3143/3031,
  35236. bottom: 91/3234
  35237. }
  35238. },
  35239. head: {
  35240. height: math.unit(26.3, "feet"),
  35241. weight: math.unit(0, "lb"),
  35242. name: "Head",
  35243. image: {
  35244. source: "./media/characters/smile/head.svg"
  35245. }
  35246. },
  35247. collar: {
  35248. height: math.unit(5.3, "feet"),
  35249. weight: math.unit(0, "lb"),
  35250. name: "Collar",
  35251. image: {
  35252. source: "./media/characters/smile/collar.svg"
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Macro",
  35259. height: math.unit(100, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35266. {
  35267. dragon: {
  35268. height: math.unit(26, "feet"),
  35269. weight: math.unit(36, "tons"),
  35270. name: "Dragon",
  35271. image: {
  35272. source: "./media/characters/arimphae/dragon.svg",
  35273. extra: 1574/983,
  35274. bottom: 357/1931
  35275. }
  35276. },
  35277. drake: {
  35278. height: math.unit(9, "feet"),
  35279. weight: math.unit(1.5, "tons"),
  35280. name: "Drake",
  35281. image: {
  35282. source: "./media/characters/arimphae/drake.svg",
  35283. extra: 1120/925,
  35284. bottom: 435/1555
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Small",
  35291. height: math.unit(26*5/9, "feet")
  35292. },
  35293. {
  35294. name: "Normal",
  35295. height: math.unit(26, "feet"),
  35296. default: true
  35297. },
  35298. ]
  35299. ))
  35300. characterMakers.push(() => makeCharacter(
  35301. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35302. {
  35303. front: {
  35304. height: math.unit(8 + 9/12, "feet"),
  35305. name: "Front",
  35306. image: {
  35307. source: "./media/characters/xander/front.svg",
  35308. extra: 1237/974,
  35309. bottom: 94/1331
  35310. }
  35311. },
  35312. },
  35313. [
  35314. {
  35315. name: "Normal",
  35316. height: math.unit(8 + 9/12, "feet"),
  35317. default: true
  35318. },
  35319. {
  35320. name: "Gaze Grabber",
  35321. height: math.unit(13 + 8/12, "feet")
  35322. },
  35323. {
  35324. name: "Jaw Dropper",
  35325. height: math.unit(27, "feet")
  35326. },
  35327. {
  35328. name: "Show Stopper",
  35329. height: math.unit(136, "feet")
  35330. },
  35331. {
  35332. name: "Superstar",
  35333. height: math.unit(1.9e6, "miles")
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35339. {
  35340. side: {
  35341. height: math.unit(2100, "feet"),
  35342. name: "Side",
  35343. image: {
  35344. source: "./media/characters/osiris/side.svg",
  35345. extra: 1105/939,
  35346. bottom: 167/1272
  35347. }
  35348. },
  35349. },
  35350. [
  35351. {
  35352. name: "Macro",
  35353. height: math.unit(2100, "feet"),
  35354. default: true
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35360. {
  35361. front: {
  35362. height: math.unit(6 + 8/12, "feet"),
  35363. weight: math.unit(225, "lb"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/rhys-londe/front.svg",
  35367. extra: 2258/2141,
  35368. bottom: 188/2446
  35369. }
  35370. },
  35371. back: {
  35372. height: math.unit(6 + 8/12, "feet"),
  35373. weight: math.unit(225, "lb"),
  35374. name: "Back",
  35375. image: {
  35376. source: "./media/characters/rhys-londe/back.svg",
  35377. extra: 2237/2137,
  35378. bottom: 63/2300
  35379. }
  35380. },
  35381. frontNsfw: {
  35382. height: math.unit(6 + 8/12, "feet"),
  35383. weight: math.unit(225, "lb"),
  35384. name: "Front (NSFW)",
  35385. image: {
  35386. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35387. extra: 2258/2141,
  35388. bottom: 188/2446
  35389. }
  35390. },
  35391. backNsfw: {
  35392. height: math.unit(6 + 8/12, "feet"),
  35393. weight: math.unit(225, "lb"),
  35394. name: "Back (NSFW)",
  35395. image: {
  35396. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35397. extra: 2237/2137,
  35398. bottom: 63/2300
  35399. }
  35400. },
  35401. dick: {
  35402. height: math.unit(30, "inches"),
  35403. name: "Dick",
  35404. image: {
  35405. source: "./media/characters/rhys-londe/dick.svg"
  35406. }
  35407. },
  35408. maw: {
  35409. height: math.unit(1.6, "feet"),
  35410. name: "Maw",
  35411. image: {
  35412. source: "./media/characters/rhys-londe/maw.svg"
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(6 + 8/12, "feet"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(3 + 10/12, "feet"),
  35429. weight: math.unit(90, "lb"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/taivas-ensim/front.svg",
  35433. extra: 1327/1216,
  35434. bottom: 96/1423
  35435. }
  35436. },
  35437. back: {
  35438. height: math.unit(3 + 10/12, "feet"),
  35439. weight: math.unit(90, "lb"),
  35440. name: "Back",
  35441. image: {
  35442. source: "./media/characters/taivas-ensim/back.svg",
  35443. extra: 1355/1247,
  35444. bottom: 11/1366
  35445. }
  35446. },
  35447. frontNsfw: {
  35448. height: math.unit(3 + 10/12, "feet"),
  35449. weight: math.unit(90, "lb"),
  35450. name: "Front (NSFW)",
  35451. image: {
  35452. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35453. extra: 1327/1216,
  35454. bottom: 96/1423
  35455. }
  35456. },
  35457. backNsfw: {
  35458. height: math.unit(3 + 10/12, "feet"),
  35459. weight: math.unit(90, "lb"),
  35460. name: "Back (NSFW)",
  35461. image: {
  35462. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35463. extra: 1355/1247,
  35464. bottom: 11/1366
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(3 + 10/12, "feet"),
  35472. default: true
  35473. },
  35474. ]
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35478. {
  35479. front: {
  35480. height: math.unit(9 + 6/12, "feet"),
  35481. weight: math.unit(940, "lb"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/byliss/front.svg",
  35485. extra: 1327/1290,
  35486. bottom: 82/1409
  35487. }
  35488. },
  35489. back: {
  35490. height: math.unit(9 + 6/12, "feet"),
  35491. weight: math.unit(940, "lb"),
  35492. name: "Back",
  35493. image: {
  35494. source: "./media/characters/byliss/back.svg",
  35495. extra: 1376/1349,
  35496. bottom: 9/1385
  35497. }
  35498. },
  35499. frontNsfw: {
  35500. height: math.unit(9 + 6/12, "feet"),
  35501. weight: math.unit(940, "lb"),
  35502. name: "Front (NSFW)",
  35503. image: {
  35504. source: "./media/characters/byliss/front-nsfw.svg",
  35505. extra: 1327/1290,
  35506. bottom: 82/1409
  35507. }
  35508. },
  35509. backNsfw: {
  35510. height: math.unit(9 + 6/12, "feet"),
  35511. weight: math.unit(940, "lb"),
  35512. name: "Back (NSFW)",
  35513. image: {
  35514. source: "./media/characters/byliss/back-nsfw.svg",
  35515. extra: 1376/1349,
  35516. bottom: 9/1385
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(9 + 6/12, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(5 + 2/12, "feet"),
  35533. weight: math.unit(200, "lb"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/noraly/front.svg",
  35537. extra: 4985/4773,
  35538. bottom: 150/5135
  35539. }
  35540. },
  35541. full: {
  35542. height: math.unit(5 + 2/12, "feet"),
  35543. weight: math.unit(164, "lb"),
  35544. name: "Full",
  35545. image: {
  35546. source: "./media/characters/noraly/full.svg",
  35547. extra: 1114/1059,
  35548. bottom: 35/1149
  35549. }
  35550. },
  35551. fuller: {
  35552. height: math.unit(5 + 2/12, "feet"),
  35553. weight: math.unit(230, "lb"),
  35554. name: "Fuller",
  35555. image: {
  35556. source: "./media/characters/noraly/fuller.svg",
  35557. extra: 1114/1059,
  35558. bottom: 35/1149
  35559. }
  35560. },
  35561. fullest: {
  35562. height: math.unit(5 + 2/12, "feet"),
  35563. weight: math.unit(300, "lb"),
  35564. name: "Fullest",
  35565. image: {
  35566. source: "./media/characters/noraly/fullest.svg",
  35567. extra: 1114/1059,
  35568. bottom: 35/1149
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(5 + 2/12, "feet"),
  35576. default: true
  35577. },
  35578. ]
  35579. ))
  35580. characterMakers.push(() => makeCharacter(
  35581. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35582. {
  35583. front: {
  35584. height: math.unit(5 + 2/12, "feet"),
  35585. weight: math.unit(210, "lb"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/pera/front.svg",
  35589. extra: 1560/1531,
  35590. bottom: 165/1725
  35591. }
  35592. },
  35593. back: {
  35594. height: math.unit(5 + 2/12, "feet"),
  35595. weight: math.unit(210, "lb"),
  35596. name: "Back",
  35597. image: {
  35598. source: "./media/characters/pera/back.svg",
  35599. extra: 1523/1493,
  35600. bottom: 152/1675
  35601. }
  35602. },
  35603. dick: {
  35604. height: math.unit(2.4, "feet"),
  35605. name: "Dick",
  35606. image: {
  35607. source: "./media/characters/pera/dick.svg"
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(5 + 2/12, "feet"),
  35615. default: true
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(12, "feet"),
  35624. weight: math.unit(3200, "lb"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/julian/front.svg",
  35628. extra: 2962/2701,
  35629. bottom: 184/3146
  35630. }
  35631. },
  35632. maw: {
  35633. height: math.unit(5.35, "feet"),
  35634. name: "Maw",
  35635. image: {
  35636. source: "./media/characters/julian/maw.svg"
  35637. }
  35638. },
  35639. paw: {
  35640. height: math.unit(3.07, "feet"),
  35641. name: "Paw",
  35642. image: {
  35643. source: "./media/characters/julian/paw.svg"
  35644. }
  35645. },
  35646. },
  35647. [
  35648. {
  35649. name: "Default",
  35650. height: math.unit(12, "feet"),
  35651. default: true
  35652. },
  35653. {
  35654. name: "Big",
  35655. height: math.unit(50, "feet")
  35656. },
  35657. {
  35658. name: "Really Big",
  35659. height: math.unit(1, "mile")
  35660. },
  35661. {
  35662. name: "Extremely Big",
  35663. height: math.unit(100, "miles")
  35664. },
  35665. {
  35666. name: "Planet Hugger",
  35667. height: math.unit(200, "megameters")
  35668. },
  35669. {
  35670. name: "Unreasonably Big",
  35671. height: math.unit(1e300, "meters")
  35672. },
  35673. ]
  35674. ))
  35675. characterMakers.push(() => makeCharacter(
  35676. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35677. {
  35678. solgooleo: {
  35679. height: math.unit(4, "meters"),
  35680. weight: math.unit(6000*1.5, "kg"),
  35681. volume: math.unit(6000, "liters"),
  35682. name: "Solgooleo",
  35683. image: {
  35684. source: "./media/characters/pi/solgooleo.svg",
  35685. extra: 388/331,
  35686. bottom: 29/417
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(4, "meters"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35700. {
  35701. front: {
  35702. height: math.unit(8, "feet"),
  35703. weight: math.unit(4, "tons"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/shaun/front.svg",
  35707. extra: 503/495,
  35708. bottom: 20/523
  35709. }
  35710. },
  35711. back: {
  35712. height: math.unit(8, "feet"),
  35713. weight: math.unit(4, "tons"),
  35714. name: "Back",
  35715. image: {
  35716. source: "./media/characters/shaun/back.svg",
  35717. extra: 487/480,
  35718. bottom: 20/507
  35719. }
  35720. },
  35721. },
  35722. [
  35723. {
  35724. name: "Lorg",
  35725. height: math.unit(8, "feet"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35732. {
  35733. frontAnthro: {
  35734. height: math.unit(7, "feet"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/sini/front-anthro.svg",
  35738. extra: 726/678,
  35739. bottom: 35/761
  35740. },
  35741. form: "anthro",
  35742. default: true
  35743. },
  35744. backAnthro: {
  35745. height: math.unit(7, "feet"),
  35746. name: "Back",
  35747. image: {
  35748. source: "./media/characters/sini/back-anthro.svg",
  35749. extra: 743/701,
  35750. bottom: 12/755
  35751. },
  35752. form: "anthro",
  35753. },
  35754. frontAnthroNsfw: {
  35755. height: math.unit(7, "feet"),
  35756. name: "Front (NSFW)",
  35757. image: {
  35758. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35759. extra: 726/678,
  35760. bottom: 35/761
  35761. },
  35762. form: "anthro"
  35763. },
  35764. backAnthroNsfw: {
  35765. height: math.unit(7, "feet"),
  35766. name: "Back (NSFW)",
  35767. image: {
  35768. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35769. extra: 743/701,
  35770. bottom: 12/755
  35771. },
  35772. form: "anthro",
  35773. },
  35774. mawAnthro: {
  35775. height: math.unit(2.14, "feet"),
  35776. name: "Maw",
  35777. image: {
  35778. source: "./media/characters/sini/maw-anthro.svg"
  35779. },
  35780. form: "anthro"
  35781. },
  35782. dick: {
  35783. height: math.unit(1.45, "feet"),
  35784. name: "Dick",
  35785. image: {
  35786. source: "./media/characters/sini/dick-anthro.svg"
  35787. },
  35788. form: "anthro"
  35789. },
  35790. feral: {
  35791. height: math.unit(16, "feet"),
  35792. name: "Feral",
  35793. image: {
  35794. source: "./media/characters/sini/feral.svg",
  35795. extra: 814/605,
  35796. bottom: 11/825
  35797. },
  35798. form: "feral",
  35799. default: true
  35800. },
  35801. feralNsfw: {
  35802. height: math.unit(16, "feet"),
  35803. name: "Feral (NSFW)",
  35804. image: {
  35805. source: "./media/characters/sini/feral-nsfw.svg",
  35806. extra: 814/605,
  35807. bottom: 11/825
  35808. },
  35809. form: "feral"
  35810. },
  35811. mawFeral: {
  35812. height: math.unit(5.66, "feet"),
  35813. name: "Maw",
  35814. image: {
  35815. source: "./media/characters/sini/maw-feral.svg"
  35816. },
  35817. form: "feral",
  35818. },
  35819. pawFeral: {
  35820. height: math.unit(5.17, "feet"),
  35821. name: "Paw",
  35822. image: {
  35823. source: "./media/characters/sini/paw-feral.svg"
  35824. },
  35825. form: "feral",
  35826. },
  35827. rumpFeral: {
  35828. height: math.unit(13.11, "feet"),
  35829. name: "Rump",
  35830. image: {
  35831. source: "./media/characters/sini/rump-feral.svg"
  35832. },
  35833. form: "feral",
  35834. },
  35835. dickFeral: {
  35836. height: math.unit(1, "feet"),
  35837. name: "Dick",
  35838. image: {
  35839. source: "./media/characters/sini/dick-feral.svg"
  35840. },
  35841. form: "feral",
  35842. },
  35843. eyeFeral: {
  35844. height: math.unit(1.23, "feet"),
  35845. name: "Eye",
  35846. image: {
  35847. source: "./media/characters/sini/eye-feral.svg"
  35848. },
  35849. form: "feral",
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Normal",
  35855. height: math.unit(7, "feet"),
  35856. default: true,
  35857. form: "anthro"
  35858. },
  35859. {
  35860. name: "Normal",
  35861. height: math.unit(16, "feet"),
  35862. default: true,
  35863. form: "feral"
  35864. },
  35865. ],
  35866. {
  35867. "anthro": {
  35868. name: "Anthro",
  35869. default: true
  35870. },
  35871. "feral": {
  35872. name: "Feral",
  35873. }
  35874. }
  35875. ))
  35876. characterMakers.push(() => makeCharacter(
  35877. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35878. {
  35879. side: {
  35880. height: math.unit(47.2, "meters"),
  35881. weight: math.unit(10000, "tons"),
  35882. name: "Side",
  35883. image: {
  35884. source: "./media/characters/raylldo/side.svg",
  35885. extra: 2363/642,
  35886. bottom: 221/2584
  35887. }
  35888. },
  35889. top: {
  35890. height: math.unit(240, "meters"),
  35891. weight: math.unit(10000, "tons"),
  35892. name: "Top",
  35893. image: {
  35894. source: "./media/characters/raylldo/top.svg"
  35895. }
  35896. },
  35897. bottom: {
  35898. height: math.unit(240, "meters"),
  35899. weight: math.unit(10000, "tons"),
  35900. name: "Bottom",
  35901. image: {
  35902. source: "./media/characters/raylldo/bottom.svg"
  35903. }
  35904. },
  35905. head: {
  35906. height: math.unit(38.6, "meters"),
  35907. name: "Head",
  35908. image: {
  35909. source: "./media/characters/raylldo/head.svg",
  35910. extra: 1335/1112,
  35911. bottom: 0/1335
  35912. }
  35913. },
  35914. maw: {
  35915. height: math.unit(16.37, "meters"),
  35916. name: "Maw",
  35917. image: {
  35918. source: "./media/characters/raylldo/maw.svg",
  35919. extra: 883/660,
  35920. bottom: 0/883
  35921. },
  35922. extraAttributes: {
  35923. preyCapacity: {
  35924. name: "Capacity",
  35925. power: 3,
  35926. type: "volume",
  35927. base: math.unit(1000, "people")
  35928. },
  35929. tongueSize: {
  35930. name: "Tongue Size",
  35931. power: 2,
  35932. type: "area",
  35933. base: math.unit(21, "m^2")
  35934. }
  35935. }
  35936. },
  35937. forepaw: {
  35938. height: math.unit(18, "meters"),
  35939. name: "Forepaw",
  35940. image: {
  35941. source: "./media/characters/raylldo/forepaw.svg"
  35942. }
  35943. },
  35944. hindpaw: {
  35945. height: math.unit(23, "meters"),
  35946. name: "Hindpaw",
  35947. image: {
  35948. source: "./media/characters/raylldo/hindpaw.svg"
  35949. }
  35950. },
  35951. genitals: {
  35952. height: math.unit(42, "meters"),
  35953. name: "Genitals",
  35954. image: {
  35955. source: "./media/characters/raylldo/genitals.svg"
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(47.2, "meters"),
  35963. default: true
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35969. {
  35970. anthroFront: {
  35971. height: math.unit(9, "feet"),
  35972. weight: math.unit(600, "lb"),
  35973. name: "Anthro (Front)",
  35974. image: {
  35975. source: "./media/characters/glint/anthro-front.svg",
  35976. extra: 1097/1018,
  35977. bottom: 28/1125
  35978. }
  35979. },
  35980. anthroBack: {
  35981. height: math.unit(9, "feet"),
  35982. weight: math.unit(600, "lb"),
  35983. name: "Anthro (Back)",
  35984. image: {
  35985. source: "./media/characters/glint/anthro-back.svg",
  35986. extra: 1154/997,
  35987. bottom: 36/1190
  35988. }
  35989. },
  35990. feral: {
  35991. height: math.unit(11, "feet"),
  35992. weight: math.unit(50000, "lb"),
  35993. name: "Feral",
  35994. image: {
  35995. source: "./media/characters/glint/feral.svg",
  35996. extra: 3035/1585,
  35997. bottom: 1169/4204
  35998. }
  35999. },
  36000. dickAnthro: {
  36001. height: math.unit(0.7, "meters"),
  36002. name: "Dick (Anthro)",
  36003. image: {
  36004. source: "./media/characters/glint/dick-anthro.svg"
  36005. }
  36006. },
  36007. dickFeral: {
  36008. height: math.unit(2.65, "meters"),
  36009. name: "Dick (Feral)",
  36010. image: {
  36011. source: "./media/characters/glint/dick-feral.svg"
  36012. }
  36013. },
  36014. slitHidden: {
  36015. height: math.unit(5.85, "meters"),
  36016. name: "Slit (Hidden)",
  36017. image: {
  36018. source: "./media/characters/glint/slit-hidden.svg"
  36019. }
  36020. },
  36021. slitErect: {
  36022. height: math.unit(5.85, "meters"),
  36023. name: "Slit (Erect)",
  36024. image: {
  36025. source: "./media/characters/glint/slit-erect.svg"
  36026. }
  36027. },
  36028. mawAnthro: {
  36029. height: math.unit(0.63, "meters"),
  36030. name: "Maw (Anthro)",
  36031. image: {
  36032. source: "./media/characters/glint/maw.svg"
  36033. }
  36034. },
  36035. mawFeral: {
  36036. height: math.unit(2.89, "meters"),
  36037. name: "Maw (Feral)",
  36038. image: {
  36039. source: "./media/characters/glint/maw.svg"
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Normal",
  36046. height: math.unit(9, "feet"),
  36047. default: true
  36048. },
  36049. ]
  36050. ))
  36051. characterMakers.push(() => makeCharacter(
  36052. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36053. {
  36054. side: {
  36055. height: math.unit(15, "feet"),
  36056. weight: math.unit(5000, "kg"),
  36057. name: "Side",
  36058. image: {
  36059. source: "./media/characters/kairne/side.svg",
  36060. extra: 979/811,
  36061. bottom: 13/992
  36062. }
  36063. },
  36064. front: {
  36065. height: math.unit(15, "feet"),
  36066. weight: math.unit(5000, "kg"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/kairne/front.svg",
  36070. extra: 908/814,
  36071. bottom: 26/934
  36072. }
  36073. },
  36074. sideNsfw: {
  36075. height: math.unit(15, "feet"),
  36076. weight: math.unit(5000, "kg"),
  36077. name: "Side (NSFW)",
  36078. image: {
  36079. source: "./media/characters/kairne/side-nsfw.svg",
  36080. extra: 979/811,
  36081. bottom: 13/992
  36082. }
  36083. },
  36084. frontNsfw: {
  36085. height: math.unit(15, "feet"),
  36086. weight: math.unit(5000, "kg"),
  36087. name: "Front (NSFW)",
  36088. image: {
  36089. source: "./media/characters/kairne/front-nsfw.svg",
  36090. extra: 908/814,
  36091. bottom: 26/934
  36092. }
  36093. },
  36094. dickCaged: {
  36095. height: math.unit(0.65, "meters"),
  36096. name: "Dick-caged",
  36097. image: {
  36098. source: "./media/characters/kairne/dick-caged.svg"
  36099. }
  36100. },
  36101. dick: {
  36102. height: math.unit(0.79, "meters"),
  36103. name: "Dick",
  36104. image: {
  36105. source: "./media/characters/kairne/dick.svg"
  36106. }
  36107. },
  36108. genitals: {
  36109. height: math.unit(1.29, "meters"),
  36110. name: "Genitals",
  36111. image: {
  36112. source: "./media/characters/kairne/genitals.svg"
  36113. }
  36114. },
  36115. maw: {
  36116. height: math.unit(1.73, "meters"),
  36117. name: "Maw",
  36118. image: {
  36119. source: "./media/characters/kairne/maw.svg"
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(15, "feet"),
  36127. default: true
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(5 + 8/12, "feet"),
  36136. weight: math.unit(139, "lb"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/biscuit-jackal/front.svg",
  36140. extra: 2106/1961,
  36141. bottom: 58/2164
  36142. }
  36143. },
  36144. back: {
  36145. height: math.unit(5 + 8/12, "feet"),
  36146. weight: math.unit(139, "lb"),
  36147. name: "Back",
  36148. image: {
  36149. source: "./media/characters/biscuit-jackal/back.svg",
  36150. extra: 2132/1976,
  36151. bottom: 57/2189
  36152. }
  36153. },
  36154. werejackal: {
  36155. height: math.unit(6 + 3/12, "feet"),
  36156. weight: math.unit(188, "lb"),
  36157. name: "Werejackal",
  36158. image: {
  36159. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36160. extra: 2373/2178,
  36161. bottom: 53/2426
  36162. }
  36163. },
  36164. },
  36165. [
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(5 + 8/12, "feet"),
  36169. default: true
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36175. {
  36176. front: {
  36177. height: math.unit(140, "cm"),
  36178. weight: math.unit(45, "kg"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/tayra-white/front.svg",
  36182. extra: 2229/2192,
  36183. bottom: 75/2304
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(140, "cm"),
  36191. default: true
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36197. {
  36198. front: {
  36199. height: math.unit(4 + 5/12, "feet"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/scoop/front.svg",
  36203. extra: 1257/1136,
  36204. bottom: 69/1326
  36205. }
  36206. },
  36207. back: {
  36208. height: math.unit(4 + 5/12, "feet"),
  36209. name: "Back",
  36210. image: {
  36211. source: "./media/characters/scoop/back.svg",
  36212. extra: 1321/1152,
  36213. bottom: 32/1353
  36214. }
  36215. },
  36216. maw: {
  36217. height: math.unit(0.68, "feet"),
  36218. name: "Maw",
  36219. image: {
  36220. source: "./media/characters/scoop/maw.svg"
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Really Small",
  36227. height: math.unit(1, "mm")
  36228. },
  36229. {
  36230. name: "Micro",
  36231. height: math.unit(1, "inch")
  36232. },
  36233. {
  36234. name: "Normal",
  36235. height: math.unit(4 + 5/12, "feet"),
  36236. default: true
  36237. },
  36238. {
  36239. name: "Macro",
  36240. height: math.unit(200, "feet")
  36241. },
  36242. {
  36243. name: "Megamacro",
  36244. height: math.unit(3240, "feet")
  36245. },
  36246. {
  36247. name: "Teramacro",
  36248. height: math.unit(2500, "miles")
  36249. },
  36250. ]
  36251. ))
  36252. characterMakers.push(() => makeCharacter(
  36253. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36254. {
  36255. front: {
  36256. height: math.unit(15 + 7/12, "feet"),
  36257. weight: math.unit(1150, "tons"),
  36258. name: "Front",
  36259. image: {
  36260. source: "./media/characters/saphinara/front.svg",
  36261. extra: 1837/1643,
  36262. bottom: 84/1921
  36263. },
  36264. form: "normal",
  36265. default: true
  36266. },
  36267. side: {
  36268. height: math.unit(15 + 7/12, "feet"),
  36269. weight: math.unit(1150, "tons"),
  36270. name: "Side",
  36271. image: {
  36272. source: "./media/characters/saphinara/side.svg",
  36273. extra: 605/547,
  36274. bottom: 6/611
  36275. },
  36276. form: "normal"
  36277. },
  36278. back: {
  36279. height: math.unit(15 + 7/12, "feet"),
  36280. weight: math.unit(1150, "tons"),
  36281. name: "Back",
  36282. image: {
  36283. source: "./media/characters/saphinara/back.svg",
  36284. extra: 591/531,
  36285. bottom: 13/604
  36286. },
  36287. form: "normal"
  36288. },
  36289. frontTail: {
  36290. height: math.unit(15 + 7/12, "feet"),
  36291. weight: math.unit(1150, "tons"),
  36292. name: "Front (Full Tail)",
  36293. image: {
  36294. source: "./media/characters/saphinara/front-tail.svg",
  36295. extra: 2256/1630,
  36296. bottom: 261/2517
  36297. },
  36298. form: "normal"
  36299. },
  36300. insides: {
  36301. height: math.unit(11.92, "feet"),
  36302. name: "Insides",
  36303. image: {
  36304. source: "./media/characters/saphinara/insides.svg"
  36305. },
  36306. form: "normal"
  36307. },
  36308. head: {
  36309. height: math.unit(4.17, "feet"),
  36310. name: "Head",
  36311. image: {
  36312. source: "./media/characters/saphinara/head.svg"
  36313. },
  36314. form: "normal"
  36315. },
  36316. tongue: {
  36317. height: math.unit(4.60, "feet"),
  36318. name: "Tongue",
  36319. image: {
  36320. source: "./media/characters/saphinara/tongue.svg"
  36321. },
  36322. form: "normal"
  36323. },
  36324. headEnraged: {
  36325. height: math.unit(5.55, "feet"),
  36326. name: "Head (Enraged)",
  36327. image: {
  36328. source: "./media/characters/saphinara/head-enraged.svg"
  36329. },
  36330. form: "normal"
  36331. },
  36332. wings: {
  36333. height: math.unit(11.95, "feet"),
  36334. name: "Wings",
  36335. image: {
  36336. source: "./media/characters/saphinara/wings.svg"
  36337. },
  36338. form: "normal"
  36339. },
  36340. feathers: {
  36341. height: math.unit(8.92, "feet"),
  36342. name: "Feathers",
  36343. image: {
  36344. source: "./media/characters/saphinara/feathers.svg"
  36345. },
  36346. form: "normal"
  36347. },
  36348. shackles: {
  36349. height: math.unit(2, "feet"),
  36350. name: "Shackles",
  36351. image: {
  36352. source: "./media/characters/saphinara/shackles.svg"
  36353. },
  36354. form: "normal"
  36355. },
  36356. eyes: {
  36357. height: math.unit(1.331, "feet"),
  36358. name: "Eyes",
  36359. image: {
  36360. source: "./media/characters/saphinara/eyes.svg"
  36361. },
  36362. form: "normal"
  36363. },
  36364. eyesEnraged: {
  36365. height: math.unit(1.331, "feet"),
  36366. name: "Eyes (Enraged)",
  36367. image: {
  36368. source: "./media/characters/saphinara/eyes-enraged.svg"
  36369. },
  36370. form: "normal"
  36371. },
  36372. trueFormSide: {
  36373. height: math.unit(200, "feet"),
  36374. weight: math.unit(1e7, "tons"),
  36375. name: "Side",
  36376. image: {
  36377. source: "./media/characters/saphinara/true-form-side.svg",
  36378. extra: 1399/770,
  36379. bottom: 97/1496
  36380. },
  36381. form: "true-form",
  36382. default: true
  36383. },
  36384. trueFormMaw: {
  36385. height: math.unit(71.5, "feet"),
  36386. name: "Maw",
  36387. image: {
  36388. source: "./media/characters/saphinara/true-form-maw.svg",
  36389. extra: 2302/1453,
  36390. bottom: 0/2302
  36391. },
  36392. form: "true-form"
  36393. },
  36394. meowberusSide: {
  36395. height: math.unit(75, "feet"),
  36396. weight: math.unit(180000, "kg"),
  36397. preyCapacity: math.unit(50000, "people"),
  36398. name: "Side",
  36399. image: {
  36400. source: "./media/characters/saphinara/meowberus-side.svg",
  36401. extra: 1400/711,
  36402. bottom: 126/1526
  36403. },
  36404. form: "meowberus",
  36405. extraAttributes: {
  36406. "pawArea": {
  36407. name: "Paw Size",
  36408. power: 2,
  36409. type: "area",
  36410. base: math.unit(35, "m^2")
  36411. }
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(15 + 7/12, "feet"),
  36419. default: true,
  36420. form: "normal"
  36421. },
  36422. {
  36423. name: "Angry",
  36424. height: math.unit(30 + 6/12, "feet"),
  36425. form: "normal"
  36426. },
  36427. {
  36428. name: "Enraged",
  36429. height: math.unit(102 + 1/12, "feet"),
  36430. form: "normal"
  36431. },
  36432. {
  36433. name: "True",
  36434. height: math.unit(200, "feet"),
  36435. default: true,
  36436. form: "true-form"
  36437. },
  36438. {
  36439. name: "Normal",
  36440. height: math.unit(75, "feet"),
  36441. default: true,
  36442. form: "meowberus"
  36443. },
  36444. ],
  36445. {
  36446. "normal": {
  36447. name: "Normal",
  36448. default: true
  36449. },
  36450. "true-form": {
  36451. name: "True Form"
  36452. },
  36453. "meowberus": {
  36454. name: "Meowberus",
  36455. },
  36456. }
  36457. ))
  36458. characterMakers.push(() => makeCharacter(
  36459. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36460. {
  36461. front: {
  36462. height: math.unit(6 + 8/12, "feet"),
  36463. weight: math.unit(300, "lb"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/jrain/front.svg",
  36467. extra: 3039/2865,
  36468. bottom: 399/3438
  36469. }
  36470. },
  36471. back: {
  36472. height: math.unit(6 + 8/12, "feet"),
  36473. weight: math.unit(300, "lb"),
  36474. name: "Back",
  36475. image: {
  36476. source: "./media/characters/jrain/back.svg",
  36477. extra: 3089/2938,
  36478. bottom: 172/3261
  36479. }
  36480. },
  36481. head: {
  36482. height: math.unit(2.14, "feet"),
  36483. name: "Head",
  36484. image: {
  36485. source: "./media/characters/jrain/head.svg"
  36486. }
  36487. },
  36488. maw: {
  36489. height: math.unit(1.77, "feet"),
  36490. name: "Maw",
  36491. image: {
  36492. source: "./media/characters/jrain/maw.svg"
  36493. }
  36494. },
  36495. leftHand: {
  36496. height: math.unit(1.1, "feet"),
  36497. name: "Left Hand",
  36498. image: {
  36499. source: "./media/characters/jrain/left-hand.svg"
  36500. }
  36501. },
  36502. rightHand: {
  36503. height: math.unit(1.1, "feet"),
  36504. name: "Right Hand",
  36505. image: {
  36506. source: "./media/characters/jrain/right-hand.svg"
  36507. }
  36508. },
  36509. eye: {
  36510. height: math.unit(0.35, "feet"),
  36511. name: "Eye",
  36512. image: {
  36513. source: "./media/characters/jrain/eye.svg"
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(6 + 8/12, "feet"),
  36521. default: true
  36522. },
  36523. {
  36524. name: "Casually Large",
  36525. height: math.unit(25, "feet")
  36526. },
  36527. {
  36528. name: "Giant",
  36529. height: math.unit(100, "feet")
  36530. },
  36531. {
  36532. name: "Kaiju",
  36533. height: math.unit(300, "feet")
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36539. {
  36540. dragon: {
  36541. height: math.unit(5, "meters"),
  36542. name: "Dragon",
  36543. image: {
  36544. source: "./media/characters/sabrina/dragon.svg",
  36545. extra: 3670 / 2365,
  36546. bottom: 333 / 4003
  36547. }
  36548. },
  36549. gryphon: {
  36550. height: math.unit(3, "meters"),
  36551. name: "Gryphon",
  36552. image: {
  36553. source: "./media/characters/sabrina/gryphon.svg",
  36554. extra: 1576 / 945,
  36555. bottom: 71 / 1647
  36556. }
  36557. },
  36558. snake: {
  36559. height: math.unit(12, "meters"),
  36560. name: "Snake",
  36561. image: {
  36562. source: "./media/characters/sabrina/snake.svg",
  36563. extra: 1758 / 1320,
  36564. bottom: 186 / 1944
  36565. }
  36566. },
  36567. collar: {
  36568. height: math.unit(1.86, "meters"),
  36569. name: "Collar",
  36570. image: {
  36571. source: "./media/characters/sabrina/collar.svg"
  36572. }
  36573. },
  36574. eye: {
  36575. height: math.unit(0.53, "meters"),
  36576. name: "Eye",
  36577. image: {
  36578. source: "./media/characters/sabrina/eye.svg"
  36579. }
  36580. },
  36581. foot: {
  36582. height: math.unit(1.86, "meters"),
  36583. name: "Foot",
  36584. image: {
  36585. source: "./media/characters/sabrina/foot.svg"
  36586. }
  36587. },
  36588. hand: {
  36589. height: math.unit(1.32, "meters"),
  36590. name: "Hand",
  36591. image: {
  36592. source: "./media/characters/sabrina/hand.svg"
  36593. }
  36594. },
  36595. head: {
  36596. height: math.unit(2.44, "meters"),
  36597. name: "Head",
  36598. image: {
  36599. source: "./media/characters/sabrina/head.svg"
  36600. }
  36601. },
  36602. headAngry: {
  36603. height: math.unit(2.44, "meters"),
  36604. name: "Head (Angry))",
  36605. image: {
  36606. source: "./media/characters/sabrina/head-angry.svg"
  36607. }
  36608. },
  36609. maw: {
  36610. height: math.unit(1.65, "meters"),
  36611. name: "Maw",
  36612. image: {
  36613. source: "./media/characters/sabrina/maw.svg"
  36614. }
  36615. },
  36616. spikes: {
  36617. height: math.unit(1.69, "meters"),
  36618. name: "Spikes",
  36619. image: {
  36620. source: "./media/characters/sabrina/spikes.svg"
  36621. }
  36622. },
  36623. stomach: {
  36624. height: math.unit(1.15, "meters"),
  36625. name: "Stomach",
  36626. image: {
  36627. source: "./media/characters/sabrina/stomach.svg"
  36628. }
  36629. },
  36630. tongue: {
  36631. height: math.unit(1.27, "meters"),
  36632. name: "Tongue",
  36633. image: {
  36634. source: "./media/characters/sabrina/tongue.svg"
  36635. }
  36636. },
  36637. wingDorsal: {
  36638. height: math.unit(4.85, "meters"),
  36639. name: "Wing (Dorsal)",
  36640. image: {
  36641. source: "./media/characters/sabrina/wing-dorsal.svg"
  36642. }
  36643. },
  36644. wingVentral: {
  36645. height: math.unit(4.85, "meters"),
  36646. name: "Wing (Ventral)",
  36647. image: {
  36648. source: "./media/characters/sabrina/wing-ventral.svg"
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(5, "meters"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36662. {
  36663. frontMaid: {
  36664. height: math.unit(5 + 5/12, "feet"),
  36665. weight: math.unit(130, "lb"),
  36666. name: "Front (Maid)",
  36667. image: {
  36668. source: "./media/characters/midnight-tales/front-maid.svg",
  36669. extra: 489/454,
  36670. bottom: 61/550
  36671. }
  36672. },
  36673. frontFormal: {
  36674. height: math.unit(5 + 5/12, "feet"),
  36675. weight: math.unit(130, "lb"),
  36676. name: "Front (Formal)",
  36677. image: {
  36678. source: "./media/characters/midnight-tales/front-formal.svg",
  36679. extra: 489/454,
  36680. bottom: 61/550
  36681. }
  36682. },
  36683. back: {
  36684. height: math.unit(5 + 5/12, "feet"),
  36685. weight: math.unit(130, "lb"),
  36686. name: "Back",
  36687. image: {
  36688. source: "./media/characters/midnight-tales/back.svg",
  36689. extra: 498/456,
  36690. bottom: 33/531
  36691. }
  36692. },
  36693. frontBeast: {
  36694. height: math.unit(40, "feet"),
  36695. weight: math.unit(64000, "lb"),
  36696. name: "Front (Beast)",
  36697. image: {
  36698. source: "./media/characters/midnight-tales/front-beast.svg",
  36699. extra: 927/860,
  36700. bottom: 53/980
  36701. }
  36702. },
  36703. backBeast: {
  36704. height: math.unit(40, "feet"),
  36705. weight: math.unit(64000, "lb"),
  36706. name: "Back (Beast)",
  36707. image: {
  36708. source: "./media/characters/midnight-tales/back-beast.svg",
  36709. extra: 929/855,
  36710. bottom: 16/945
  36711. }
  36712. },
  36713. footBeast: {
  36714. height: math.unit(6.7, "feet"),
  36715. name: "Foot (Beast)",
  36716. image: {
  36717. source: "./media/characters/midnight-tales/foot-beast.svg"
  36718. }
  36719. },
  36720. headBeast: {
  36721. height: math.unit(8, "feet"),
  36722. name: "Head (Beast)",
  36723. image: {
  36724. source: "./media/characters/midnight-tales/head-beast.svg"
  36725. }
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "Normal",
  36731. height: math.unit(5 + 5 / 12, "feet"),
  36732. default: true
  36733. },
  36734. {
  36735. name: "Macro",
  36736. height: math.unit(25, "feet")
  36737. },
  36738. ]
  36739. ))
  36740. characterMakers.push(() => makeCharacter(
  36741. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36742. {
  36743. front: {
  36744. height: math.unit(5 + 10/12, "feet"),
  36745. name: "Front",
  36746. image: {
  36747. source: "./media/characters/argon/front.svg",
  36748. extra: 2009/1935,
  36749. bottom: 118/2127
  36750. }
  36751. },
  36752. back: {
  36753. height: math.unit(5 + 10/12, "feet"),
  36754. name: "Back",
  36755. image: {
  36756. source: "./media/characters/argon/back.svg",
  36757. extra: 2047/1992,
  36758. bottom: 20/2067
  36759. }
  36760. },
  36761. frontDressed: {
  36762. height: math.unit(5 + 10/12, "feet"),
  36763. name: "Front (Dressed)",
  36764. image: {
  36765. source: "./media/characters/argon/front-dressed.svg",
  36766. extra: 2009/1935,
  36767. bottom: 118/2127
  36768. }
  36769. },
  36770. },
  36771. [
  36772. {
  36773. name: "Normal",
  36774. height: math.unit(5 + 10/12, "feet"),
  36775. default: true
  36776. },
  36777. ]
  36778. ))
  36779. characterMakers.push(() => makeCharacter(
  36780. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36781. {
  36782. front: {
  36783. height: math.unit(8 + 6/12, "feet"),
  36784. weight: math.unit(1150, "lb"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/kichi/front.svg",
  36788. extra: 1267/1164,
  36789. bottom: 61/1328
  36790. }
  36791. },
  36792. back: {
  36793. height: math.unit(8 + 6/12, "feet"),
  36794. weight: math.unit(1150, "lb"),
  36795. name: "Back",
  36796. image: {
  36797. source: "./media/characters/kichi/back.svg",
  36798. extra: 1273/1166,
  36799. bottom: 33/1306
  36800. }
  36801. },
  36802. },
  36803. [
  36804. {
  36805. name: "Normal",
  36806. height: math.unit(8 + 6/12, "feet"),
  36807. default: true
  36808. },
  36809. ]
  36810. ))
  36811. characterMakers.push(() => makeCharacter(
  36812. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36813. {
  36814. front: {
  36815. height: math.unit(6, "feet"),
  36816. weight: math.unit(210, "lb"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/manetel-greyscale/front.svg",
  36820. extra: 350/312,
  36821. bottom: 8/358
  36822. }
  36823. },
  36824. },
  36825. [
  36826. {
  36827. name: "Micro",
  36828. height: math.unit(2, "inches")
  36829. },
  36830. {
  36831. name: "Normal",
  36832. height: math.unit(6, "feet"),
  36833. default: true
  36834. },
  36835. {
  36836. name: "Minimacro",
  36837. height: math.unit(17, "feet")
  36838. },
  36839. {
  36840. name: "Macro",
  36841. height: math.unit(117, "feet")
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36847. {
  36848. side: {
  36849. height: math.unit(5 + 1/12, "feet"),
  36850. weight: math.unit(418, "lb"),
  36851. name: "Side",
  36852. image: {
  36853. source: "./media/characters/softpurr/side.svg",
  36854. extra: 1993/1945,
  36855. bottom: 134/2127
  36856. }
  36857. },
  36858. front: {
  36859. height: math.unit(5 + 1/12, "feet"),
  36860. weight: math.unit(418, "lb"),
  36861. name: "Front",
  36862. image: {
  36863. source: "./media/characters/softpurr/front.svg",
  36864. extra: 1950/1856,
  36865. bottom: 174/2124
  36866. }
  36867. },
  36868. paw: {
  36869. height: math.unit(1, "feet"),
  36870. name: "Paw",
  36871. image: {
  36872. source: "./media/characters/softpurr/paw.svg"
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(5 + 1/12, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36886. {
  36887. front: {
  36888. height: math.unit(260, "meters"),
  36889. name: "Front",
  36890. image: {
  36891. source: "./media/characters/anahita/front.svg",
  36892. extra: 665/635,
  36893. bottom: 89/754
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Macro",
  36900. height: math.unit(260, "meters"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(4 + 10/12, "feet"),
  36910. weight: math.unit(160, "lb"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/chip-mouse/front.svg",
  36914. extra: 3528/3408,
  36915. bottom: 0/3528
  36916. }
  36917. },
  36918. frontNsfw: {
  36919. height: math.unit(4 + 10/12, "feet"),
  36920. weight: math.unit(160, "lb"),
  36921. name: "Front (NSFW)",
  36922. image: {
  36923. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36924. extra: 3528/3408,
  36925. bottom: 0/3528
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(4 + 10/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36939. {
  36940. side: {
  36941. height: math.unit(10, "feet"),
  36942. weight: math.unit(14000, "lb"),
  36943. name: "Side",
  36944. image: {
  36945. source: "./media/characters/kremm/side.svg",
  36946. extra: 1390/1053,
  36947. bottom: 90/1480
  36948. }
  36949. },
  36950. gut: {
  36951. height: math.unit(5.8, "feet"),
  36952. name: "Gut",
  36953. image: {
  36954. source: "./media/characters/kremm/gut.svg"
  36955. }
  36956. },
  36957. ass: {
  36958. height: math.unit(6.1, "feet"),
  36959. name: "Ass",
  36960. image: {
  36961. source: "./media/characters/kremm/ass.svg"
  36962. }
  36963. },
  36964. jaws: {
  36965. height: math.unit(2.2, "feet"),
  36966. name: "Jaws",
  36967. image: {
  36968. source: "./media/characters/kremm/jaws.svg"
  36969. }
  36970. },
  36971. dick: {
  36972. height: math.unit(4.26, "feet"),
  36973. name: "Dick",
  36974. image: {
  36975. source: "./media/characters/kremm/dick.svg"
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(10, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36989. {
  36990. front: {
  36991. height: math.unit(30, "stories"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/kai/front.svg",
  36995. extra: 1892/1718,
  36996. bottom: 162/2054
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Macro",
  37003. height: math.unit(30, "stories"),
  37004. default: true
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37010. {
  37011. front: {
  37012. height: math.unit(6 + 4/12, "feet"),
  37013. weight: math.unit(145, "lb"),
  37014. name: "Front",
  37015. image: {
  37016. source: "./media/characters/sykes/front.svg",
  37017. extra: 1321 / 1187,
  37018. bottom: 66 / 1387
  37019. }
  37020. },
  37021. back: {
  37022. height: math.unit(6 + 4/12, "feet"),
  37023. weight: math.unit(145, "lb"),
  37024. name: "Back",
  37025. image: {
  37026. source: "./media/characters/sykes/back.svg",
  37027. extra: 1326/1181,
  37028. bottom: 31/1357
  37029. }
  37030. },
  37031. traditionalOutfit: {
  37032. height: math.unit(6 + 4/12, "feet"),
  37033. weight: math.unit(145, "lb"),
  37034. name: "Traditional Outfit",
  37035. image: {
  37036. source: "./media/characters/sykes/traditional-outfit.svg",
  37037. extra: 1321 / 1187,
  37038. bottom: 66 / 1387
  37039. }
  37040. },
  37041. adventureOutfit: {
  37042. height: math.unit(6 + 4/12, "feet"),
  37043. weight: math.unit(145, "lb"),
  37044. name: "Adventure Outfit",
  37045. image: {
  37046. source: "./media/characters/sykes/adventure-outfit.svg",
  37047. extra: 1321 / 1187,
  37048. bottom: 66 / 1387
  37049. }
  37050. },
  37051. handLeft: {
  37052. height: math.unit(0.9, "feet"),
  37053. name: "Hand (Left)",
  37054. image: {
  37055. source: "./media/characters/sykes/hand-left.svg"
  37056. }
  37057. },
  37058. handRight: {
  37059. height: math.unit(0.839, "feet"),
  37060. name: "Hand (Right)",
  37061. image: {
  37062. source: "./media/characters/sykes/hand-right.svg"
  37063. }
  37064. },
  37065. leftFoot: {
  37066. height: math.unit(1.2, "feet"),
  37067. name: "Foot (Left)",
  37068. image: {
  37069. source: "./media/characters/sykes/foot-left.svg"
  37070. }
  37071. },
  37072. rightFoot: {
  37073. height: math.unit(1.2, "feet"),
  37074. name: "Foot (Right)",
  37075. image: {
  37076. source: "./media/characters/sykes/foot-right.svg"
  37077. }
  37078. },
  37079. maw: {
  37080. height: math.unit(1.93, "feet"),
  37081. name: "Maw",
  37082. image: {
  37083. source: "./media/characters/sykes/maw.svg"
  37084. }
  37085. },
  37086. teeth: {
  37087. height: math.unit(0.51, "feet"),
  37088. name: "Teeth",
  37089. image: {
  37090. source: "./media/characters/sykes/teeth.svg"
  37091. }
  37092. },
  37093. tongue: {
  37094. height: math.unit(2.13, "feet"),
  37095. name: "Tongue",
  37096. image: {
  37097. source: "./media/characters/sykes/tongue.svg"
  37098. }
  37099. },
  37100. uvula: {
  37101. height: math.unit(0.16, "feet"),
  37102. name: "Uvula",
  37103. image: {
  37104. source: "./media/characters/sykes/uvula.svg"
  37105. }
  37106. },
  37107. collar: {
  37108. height: math.unit(0.287, "feet"),
  37109. name: "Collar",
  37110. image: {
  37111. source: "./media/characters/sykes/collar.svg"
  37112. }
  37113. },
  37114. tail: {
  37115. height: math.unit(3.8, "feet"),
  37116. name: "Tail",
  37117. image: {
  37118. source: "./media/characters/sykes/tail.svg"
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Shrunken",
  37125. height: math.unit(5, "inches")
  37126. },
  37127. {
  37128. name: "Normal",
  37129. height: math.unit(6 + 4 / 12, "feet"),
  37130. default: true
  37131. },
  37132. {
  37133. name: "Big",
  37134. height: math.unit(15, "feet")
  37135. },
  37136. ]
  37137. ))
  37138. characterMakers.push(() => makeCharacter(
  37139. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37140. {
  37141. front: {
  37142. height: math.unit(5 + 8/12, "feet"),
  37143. weight: math.unit(190, "lb"),
  37144. name: "Front",
  37145. image: {
  37146. source: "./media/characters/oven-otter/front.svg",
  37147. extra: 1809/1740,
  37148. bottom: 181/1990
  37149. }
  37150. },
  37151. back: {
  37152. height: math.unit(5 + 8/12, "feet"),
  37153. weight: math.unit(190, "lb"),
  37154. name: "Back",
  37155. image: {
  37156. source: "./media/characters/oven-otter/back.svg",
  37157. extra: 1709/1635,
  37158. bottom: 118/1827
  37159. }
  37160. },
  37161. hand: {
  37162. height: math.unit(1.07, "feet"),
  37163. name: "Hand",
  37164. image: {
  37165. source: "./media/characters/oven-otter/hand.svg"
  37166. }
  37167. },
  37168. beans: {
  37169. height: math.unit(1.74, "feet"),
  37170. name: "Beans",
  37171. image: {
  37172. source: "./media/characters/oven-otter/beans.svg"
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Micro",
  37179. height: math.unit(0.5, "inches")
  37180. },
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(5 + 8/12, "feet"),
  37184. default: true
  37185. },
  37186. {
  37187. name: "Macro",
  37188. height: math.unit(250, "feet")
  37189. },
  37190. {
  37191. name: "Really High",
  37192. height: math.unit(420, "feet")
  37193. },
  37194. ]
  37195. ))
  37196. characterMakers.push(() => makeCharacter(
  37197. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37198. {
  37199. front: {
  37200. height: math.unit(5, "meters"),
  37201. weight: math.unit(292000000000000, "kg"),
  37202. name: "Front",
  37203. image: {
  37204. source: "./media/characters/devourer/front.svg",
  37205. extra: 1800/1733,
  37206. bottom: 211/2011
  37207. }
  37208. },
  37209. maw: {
  37210. height: math.unit(1.1, "meter"),
  37211. name: "Maw",
  37212. image: {
  37213. source: "./media/characters/devourer/maw.svg"
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Small",
  37220. height: math.unit(3, "meters")
  37221. },
  37222. {
  37223. name: "Large",
  37224. height: math.unit(5, "meters"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37231. {
  37232. front: {
  37233. height: math.unit(6, "feet"),
  37234. weight: math.unit(400, "lb"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/ellarby/front.svg",
  37238. extra: 1909/1763,
  37239. bottom: 80/1989
  37240. }
  37241. },
  37242. back: {
  37243. height: math.unit(6, "feet"),
  37244. weight: math.unit(400, "lb"),
  37245. name: "Back",
  37246. image: {
  37247. source: "./media/characters/ellarby/back.svg",
  37248. extra: 1914/1784,
  37249. bottom: 172/2086
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Mischief",
  37256. height: math.unit(18, "inches")
  37257. },
  37258. {
  37259. name: "Trouble",
  37260. height: math.unit(12, "feet")
  37261. },
  37262. {
  37263. name: "Havoc",
  37264. height: math.unit(200, "feet"),
  37265. default: true
  37266. },
  37267. {
  37268. name: "Pandemonium",
  37269. height: math.unit(1, "mile")
  37270. },
  37271. {
  37272. name: "Catastrophe",
  37273. height: math.unit(100, "miles")
  37274. },
  37275. ]
  37276. ))
  37277. characterMakers.push(() => makeCharacter(
  37278. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37279. {
  37280. front: {
  37281. height: math.unit(4.7, "meters"),
  37282. weight: math.unit(6500, "kg"),
  37283. name: "Front",
  37284. image: {
  37285. source: "./media/characters/vex/front.svg",
  37286. extra: 1288/1140,
  37287. bottom: 100/1388
  37288. }
  37289. },
  37290. },
  37291. [
  37292. {
  37293. name: "Normal",
  37294. height: math.unit(4.7, "meters"),
  37295. default: true
  37296. },
  37297. ]
  37298. ))
  37299. characterMakers.push(() => makeCharacter(
  37300. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37301. {
  37302. normal: {
  37303. height: math.unit(6, "feet"),
  37304. weight: math.unit(350, "lb"),
  37305. name: "Normal",
  37306. image: {
  37307. source: "./media/characters/teshy/normal.svg",
  37308. extra: 1795/1735,
  37309. bottom: 16/1811
  37310. }
  37311. },
  37312. monsterFront: {
  37313. height: math.unit(12, "feet"),
  37314. weight: math.unit(4700, "lb"),
  37315. name: "Monster (Front)",
  37316. image: {
  37317. source: "./media/characters/teshy/monster-front.svg",
  37318. extra: 2042/2034,
  37319. bottom: 128/2170
  37320. }
  37321. },
  37322. monsterSide: {
  37323. height: math.unit(12, "feet"),
  37324. weight: math.unit(4700, "lb"),
  37325. name: "Monster (Side)",
  37326. image: {
  37327. source: "./media/characters/teshy/monster-side.svg",
  37328. extra: 2067/2056,
  37329. bottom: 70/2137
  37330. }
  37331. },
  37332. monsterBack: {
  37333. height: math.unit(12, "feet"),
  37334. weight: math.unit(4700, "lb"),
  37335. name: "Monster (Back)",
  37336. image: {
  37337. source: "./media/characters/teshy/monster-back.svg",
  37338. extra: 1921/1914,
  37339. bottom: 171/2092
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(6, "feet"),
  37347. default: true
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(6, "feet"),
  37356. name: "Front",
  37357. image: {
  37358. source: "./media/characters/ramey/front.svg",
  37359. extra: 790/787,
  37360. bottom: 27/817
  37361. }
  37362. },
  37363. },
  37364. [
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(6, "feet"),
  37368. default: true
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(5 + 5/12, "feet"),
  37377. weight: math.unit(120, "lb"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/phirae/front.svg",
  37381. extra: 2491/2436,
  37382. bottom: 38/2529
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(5 + 5/12, "feet"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37396. {
  37397. front: {
  37398. height: math.unit(5 + 3/12, "feet"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/stagglas/front.svg",
  37402. extra: 962/882,
  37403. bottom: 53/1015
  37404. }
  37405. },
  37406. feral: {
  37407. height: math.unit(335, "cm"),
  37408. name: "Feral",
  37409. image: {
  37410. source: "./media/characters/stagglas/feral.svg",
  37411. extra: 1732/1090,
  37412. bottom: 48/1780
  37413. }
  37414. },
  37415. },
  37416. [
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(5 + 3/12, "feet"),
  37420. default: true
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(5 + 4/12, "feet"),
  37429. weight: math.unit(145, "lb"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/starra/front.svg",
  37433. extra: 1790/1691,
  37434. bottom: 91/1881
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(5 + 4/12, "feet"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37448. {
  37449. front: {
  37450. height: math.unit(3.5, "meters"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37454. extra: 1248/972,
  37455. bottom: 38/1286
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(3.5, "meters"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37469. {
  37470. side: {
  37471. height: math.unit(8 + 2/12, "feet"),
  37472. weight: math.unit(1240, "lb"),
  37473. name: "Side",
  37474. image: {
  37475. source: "./media/characters/mika-valentine/side.svg",
  37476. extra: 2670/2501,
  37477. bottom: 250/2920
  37478. }
  37479. },
  37480. },
  37481. [
  37482. {
  37483. name: "Normal",
  37484. height: math.unit(8 + 2/12, "feet"),
  37485. default: true
  37486. },
  37487. ]
  37488. ))
  37489. characterMakers.push(() => makeCharacter(
  37490. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37491. {
  37492. front: {
  37493. height: math.unit(7 + 2/12, "feet"),
  37494. name: "Front",
  37495. image: {
  37496. source: "./media/characters/xoltol/front.svg",
  37497. extra: 2212/2124,
  37498. bottom: 84/2296
  37499. }
  37500. },
  37501. side: {
  37502. height: math.unit(7 + 2/12, "feet"),
  37503. name: "Side",
  37504. image: {
  37505. source: "./media/characters/xoltol/side.svg",
  37506. extra: 2273/2197,
  37507. bottom: 26/2299
  37508. }
  37509. },
  37510. hand: {
  37511. height: math.unit(2.5, "feet"),
  37512. name: "Hand",
  37513. image: {
  37514. source: "./media/characters/xoltol/hand.svg"
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Small-ish",
  37521. height: math.unit(5 + 11/12, "feet")
  37522. },
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(7 + 2/12, "feet")
  37526. },
  37527. {
  37528. name: "\"Macro\"",
  37529. height: math.unit(14 + 9/12, "feet"),
  37530. default: true
  37531. },
  37532. {
  37533. name: "Alternate Height",
  37534. height: math.unit(20, "feet")
  37535. },
  37536. {
  37537. name: "Actually Macro",
  37538. height: math.unit(100, "feet")
  37539. },
  37540. ]
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37544. {
  37545. front: {
  37546. height: math.unit(5 + 2/12, "feet"),
  37547. weight: math.unit(75, "kg"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/kotetsu-redwood/front.svg",
  37551. extra: 1053/942,
  37552. bottom: 60/1113
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(5 + 2/12, "feet"),
  37560. default: true
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(2.4, "meters"),
  37569. weight: math.unit(125, "kg"),
  37570. name: "Front",
  37571. image: {
  37572. source: "./media/characters/lilith/front.svg",
  37573. extra: 1590/1513,
  37574. bottom: 203/1793
  37575. }
  37576. },
  37577. },
  37578. [
  37579. {
  37580. name: "Humanoid",
  37581. height: math.unit(2.4, "meters")
  37582. },
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(6, "meters"),
  37586. default: true
  37587. },
  37588. {
  37589. name: "Largest",
  37590. height: math.unit(55, "meters")
  37591. },
  37592. ]
  37593. ))
  37594. characterMakers.push(() => makeCharacter(
  37595. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37596. {
  37597. front: {
  37598. height: math.unit(8 + 4/12, "feet"),
  37599. weight: math.unit(535, "lb"),
  37600. name: "Front",
  37601. image: {
  37602. source: "./media/characters/beh'kah-bolger/front.svg",
  37603. extra: 1660/1603,
  37604. bottom: 37/1697
  37605. }
  37606. },
  37607. },
  37608. [
  37609. {
  37610. name: "Normal",
  37611. height: math.unit(8 + 4/12, "feet"),
  37612. default: true
  37613. },
  37614. {
  37615. name: "Kaiju",
  37616. height: math.unit(250, "feet")
  37617. },
  37618. {
  37619. name: "Still Growing",
  37620. height: math.unit(10, "miles")
  37621. },
  37622. {
  37623. name: "Continental",
  37624. height: math.unit(5000, "miles")
  37625. },
  37626. {
  37627. name: "Final Form",
  37628. height: math.unit(2500000, "miles")
  37629. },
  37630. ]
  37631. ))
  37632. characterMakers.push(() => makeCharacter(
  37633. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37634. {
  37635. front: {
  37636. height: math.unit(7 + 2/12, "feet"),
  37637. weight: math.unit(230, "kg"),
  37638. name: "Front",
  37639. image: {
  37640. source: "./media/characters/tatyana-milewska/front.svg",
  37641. extra: 1199/1150,
  37642. bottom: 86/1285
  37643. }
  37644. },
  37645. },
  37646. [
  37647. {
  37648. name: "Normal",
  37649. height: math.unit(7 + 2/12, "feet"),
  37650. default: true
  37651. },
  37652. {
  37653. name: "Big",
  37654. height: math.unit(12, "feet")
  37655. },
  37656. {
  37657. name: "Minimacro",
  37658. height: math.unit(20, "feet")
  37659. },
  37660. {
  37661. name: "Macro",
  37662. height: math.unit(120, "feet")
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(7 + 8/12, "feet"),
  37671. weight: math.unit(152, "kg"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/helen-arri/front.svg",
  37675. extra: 440/423,
  37676. bottom: 14/454
  37677. }
  37678. },
  37679. back: {
  37680. height: math.unit(7 + 8/12, "feet"),
  37681. weight: math.unit(152, "kg"),
  37682. name: "Back",
  37683. image: {
  37684. source: "./media/characters/helen-arri/back.svg",
  37685. extra: 443/426,
  37686. bottom: 8/451
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(7 + 8/12, "feet"),
  37694. default: true
  37695. },
  37696. {
  37697. name: "Big",
  37698. height: math.unit(14, "feet")
  37699. },
  37700. {
  37701. name: "Minimacro",
  37702. height: math.unit(24, "feet")
  37703. },
  37704. {
  37705. name: "Macro",
  37706. height: math.unit(140, "feet")
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(6, "meters"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/ehanu-rehu/front.svg",
  37718. extra: 1800/1800,
  37719. bottom: 59/1859
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Normal",
  37726. height: math.unit(6, "meters"),
  37727. default: true
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37733. {
  37734. front: {
  37735. height: math.unit(7 + 3/12, "feet"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/renholder/front.svg",
  37739. extra: 3096/2960,
  37740. bottom: 250/3346
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal Bat",
  37747. height: math.unit(7 + 3/12, "feet"),
  37748. default: true
  37749. },
  37750. {
  37751. name: "Slightly Tall Bat",
  37752. height: math.unit(100, "feet")
  37753. },
  37754. {
  37755. name: "Big Bat",
  37756. height: math.unit(1000, "feet")
  37757. },
  37758. {
  37759. name: "City-Sized Bat",
  37760. height: math.unit(200000, "feet")
  37761. },
  37762. {
  37763. name: "Bigger Bat",
  37764. height: math.unit(10000, "miles")
  37765. },
  37766. {
  37767. name: "Solar Sized Bat",
  37768. height: math.unit(100, "AU")
  37769. },
  37770. {
  37771. name: "Galactic Bat",
  37772. height: math.unit(200000, "lightyears")
  37773. },
  37774. {
  37775. name: "Universally Known Bat",
  37776. height: math.unit(1, "universe")
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(6 + 11/12, "feet"),
  37785. weight: math.unit(250, "lb"),
  37786. name: "Front",
  37787. image: {
  37788. source: "./media/characters/cookiecat/front.svg",
  37789. extra: 893/827,
  37790. bottom: 14/907
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Micro",
  37797. height: math.unit(3, "inches")
  37798. },
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(6 + 11/12, "feet"),
  37802. default: true
  37803. },
  37804. {
  37805. name: "Macro",
  37806. height: math.unit(100, "feet")
  37807. },
  37808. {
  37809. name: "Macro+",
  37810. height: math.unit(404, "feet")
  37811. },
  37812. {
  37813. name: "Megamacro",
  37814. height: math.unit(165, "miles")
  37815. },
  37816. {
  37817. name: "Planetary",
  37818. height: math.unit(4600, "miles")
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37824. {
  37825. front: {
  37826. height: math.unit(10 + 3/12, "feet"),
  37827. weight: math.unit(1500, "lb"),
  37828. name: "Front",
  37829. image: {
  37830. source: "./media/characters/tux-kusanagi/front.svg",
  37831. extra: 944/840,
  37832. bottom: 39/983
  37833. }
  37834. },
  37835. back: {
  37836. height: math.unit(10 + 3/12, "feet"),
  37837. weight: math.unit(1500, "lb"),
  37838. name: "Back",
  37839. image: {
  37840. source: "./media/characters/tux-kusanagi/back.svg",
  37841. extra: 941/842,
  37842. bottom: 28/969
  37843. }
  37844. },
  37845. rump: {
  37846. height: math.unit(5.25, "feet"),
  37847. name: "Rump",
  37848. image: {
  37849. source: "./media/characters/tux-kusanagi/rump.svg"
  37850. }
  37851. },
  37852. beak: {
  37853. height: math.unit(1.54, "feet"),
  37854. name: "Beak",
  37855. image: {
  37856. source: "./media/characters/tux-kusanagi/beak.svg"
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Normal",
  37863. height: math.unit(10 + 3/12, "feet"),
  37864. default: true
  37865. },
  37866. ]
  37867. ))
  37868. characterMakers.push(() => makeCharacter(
  37869. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37870. {
  37871. front: {
  37872. height: math.unit(58, "feet"),
  37873. weight: math.unit(200, "tons"),
  37874. name: "Front",
  37875. image: {
  37876. source: "./media/characters/uzarmazari/front.svg",
  37877. extra: 1575/1455,
  37878. bottom: 152/1727
  37879. }
  37880. },
  37881. back: {
  37882. height: math.unit(58, "feet"),
  37883. weight: math.unit(200, "tons"),
  37884. name: "Back",
  37885. image: {
  37886. source: "./media/characters/uzarmazari/back.svg",
  37887. extra: 1585/1510,
  37888. bottom: 157/1742
  37889. }
  37890. },
  37891. head: {
  37892. height: math.unit(26, "feet"),
  37893. name: "Head",
  37894. image: {
  37895. source: "./media/characters/uzarmazari/head.svg"
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(58, "feet"),
  37903. default: true
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37909. {
  37910. side: {
  37911. height: math.unit(15, "feet"),
  37912. name: "Side",
  37913. image: {
  37914. source: "./media/characters/akitu/side.svg",
  37915. extra: 1421/1321,
  37916. bottom: 157/1578
  37917. }
  37918. },
  37919. front: {
  37920. height: math.unit(15, "feet"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/akitu/front.svg",
  37924. extra: 1435/1326,
  37925. bottom: 232/1667
  37926. }
  37927. },
  37928. },
  37929. [
  37930. {
  37931. name: "Normal",
  37932. height: math.unit(15, "feet"),
  37933. default: true
  37934. },
  37935. ]
  37936. ))
  37937. characterMakers.push(() => makeCharacter(
  37938. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37939. {
  37940. front: {
  37941. height: math.unit(10 + 8/12, "feet"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/azalie-croixland/front.svg",
  37945. extra: 1972/1856,
  37946. bottom: 31/2003
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Original Height",
  37953. height: math.unit(5 + 4/12, "feet")
  37954. },
  37955. {
  37956. name: "Normal Height",
  37957. height: math.unit(10 + 8/12, "feet"),
  37958. default: true
  37959. },
  37960. ]
  37961. ))
  37962. characterMakers.push(() => makeCharacter(
  37963. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37964. {
  37965. side: {
  37966. height: math.unit(7 + 1/12, "feet"),
  37967. weight: math.unit(245, "lb"),
  37968. name: "Side",
  37969. image: {
  37970. source: "./media/characters/kavus-kazian/side.svg",
  37971. extra: 349/342,
  37972. bottom: 15/364
  37973. }
  37974. },
  37975. },
  37976. [
  37977. {
  37978. name: "Normal",
  37979. height: math.unit(7 + 1/12, "feet"),
  37980. default: true
  37981. },
  37982. ]
  37983. ))
  37984. characterMakers.push(() => makeCharacter(
  37985. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37986. {
  37987. normalFront: {
  37988. height: math.unit(5 + 11/12, "feet"),
  37989. name: "Front",
  37990. image: {
  37991. source: "./media/characters/moonlight-rose/normal-front.svg",
  37992. extra: 1980/1825,
  37993. bottom: 18/1998
  37994. },
  37995. form: "normal",
  37996. default: true
  37997. },
  37998. normalBack: {
  37999. height: math.unit(5 + 11/12, "feet"),
  38000. name: "Back",
  38001. image: {
  38002. source: "./media/characters/moonlight-rose/normal-back.svg",
  38003. extra: 2010/1839,
  38004. bottom: 10/2020
  38005. },
  38006. form: "normal"
  38007. },
  38008. demonFront: {
  38009. height: math.unit(1.5, "earths"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/moonlight-rose/demon.svg",
  38013. extra: 1400/1294,
  38014. bottom: 45/1445
  38015. },
  38016. form: "demon",
  38017. default: true
  38018. },
  38019. terraFront: {
  38020. height: math.unit(1.5, "earths"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/moonlight-rose/terra.svg"
  38024. },
  38025. form: "terra",
  38026. default: true
  38027. },
  38028. jupiterFront: {
  38029. height: math.unit(69911*2, "km"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38033. extra: 1367/1286,
  38034. bottom: 55/1422
  38035. },
  38036. form: "jupiter",
  38037. default: true
  38038. },
  38039. neptuneFront: {
  38040. height: math.unit(24622*2, "feet"),
  38041. name: "Front",
  38042. image: {
  38043. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38044. extra: 1851/1712,
  38045. bottom: 0/1851
  38046. },
  38047. form: "neptune",
  38048. default: true
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "\"Natural\" Height",
  38054. height: math.unit(5 + 11/12, "feet"),
  38055. form: "normal"
  38056. },
  38057. {
  38058. name: "Smallest comfortable size",
  38059. height: math.unit(40, "meters"),
  38060. form: "normal"
  38061. },
  38062. {
  38063. name: "Common size",
  38064. height: math.unit(50, "km"),
  38065. form: "normal",
  38066. default: true
  38067. },
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(1.5, "earths"),
  38071. form: "demon",
  38072. default: true
  38073. },
  38074. {
  38075. name: "Universal",
  38076. height: math.unit(15, "universes"),
  38077. form: "demon"
  38078. },
  38079. {
  38080. name: "Earth",
  38081. height: math.unit(1.5, "earths"),
  38082. form: "terra",
  38083. default: true
  38084. },
  38085. {
  38086. name: "Super Earth",
  38087. height: math.unit(67.5, "earths"),
  38088. form: "terra"
  38089. },
  38090. {
  38091. name: "Doesn't fit in a solar system...",
  38092. height: math.unit(1, "galaxy"),
  38093. form: "terra"
  38094. },
  38095. {
  38096. name: "Saturn",
  38097. height: math.unit(58232*2, "km"),
  38098. form: "jupiter"
  38099. },
  38100. {
  38101. name: "Jupiter",
  38102. height: math.unit(69911*2, "km"),
  38103. form: "jupiter",
  38104. default: true
  38105. },
  38106. {
  38107. name: "HD 100546 b",
  38108. height: math.unit(482938, "km"),
  38109. form: "jupiter"
  38110. },
  38111. {
  38112. name: "Enceladus",
  38113. height: math.unit(513*2, "km"),
  38114. form: "neptune"
  38115. },
  38116. {
  38117. name: "Europe",
  38118. height: math.unit(1560*2, "km"),
  38119. form: "neptune"
  38120. },
  38121. {
  38122. name: "Neptune",
  38123. height: math.unit(24622*2, "km"),
  38124. form: "neptune",
  38125. default: true
  38126. },
  38127. {
  38128. name: "CoRoT-9b",
  38129. height: math.unit(75067*2, "km"),
  38130. form: "neptune"
  38131. },
  38132. ],
  38133. {
  38134. "normal": {
  38135. name: "Normal",
  38136. default: true
  38137. },
  38138. "demon": {
  38139. name: "Demon"
  38140. },
  38141. "terra": {
  38142. name: "Terra"
  38143. },
  38144. "jupiter": {
  38145. name: "Jupiter"
  38146. },
  38147. "neptune": {
  38148. name: "Neptune"
  38149. }
  38150. }
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38154. {
  38155. front: {
  38156. height: math.unit(16, "feet"),
  38157. weight: math.unit(610, "kg"),
  38158. name: "Front",
  38159. image: {
  38160. source: "./media/characters/huckle/front.svg",
  38161. extra: 1731/1625,
  38162. bottom: 33/1764
  38163. }
  38164. },
  38165. back: {
  38166. height: math.unit(16, "feet"),
  38167. weight: math.unit(610, "kg"),
  38168. name: "Back",
  38169. image: {
  38170. source: "./media/characters/huckle/back.svg",
  38171. extra: 1738/1651,
  38172. bottom: 37/1775
  38173. }
  38174. },
  38175. laughing: {
  38176. height: math.unit(3.75, "feet"),
  38177. name: "Laughing",
  38178. image: {
  38179. source: "./media/characters/huckle/laughing.svg"
  38180. }
  38181. },
  38182. angry: {
  38183. height: math.unit(4.15, "feet"),
  38184. name: "Angry",
  38185. image: {
  38186. source: "./media/characters/huckle/angry.svg"
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(16, "feet"),
  38194. default: true
  38195. },
  38196. {
  38197. name: "Mini Macro",
  38198. height: math.unit(463, "feet")
  38199. },
  38200. {
  38201. name: "Macro",
  38202. height: math.unit(1680, "meters")
  38203. },
  38204. {
  38205. name: "Mega Macro",
  38206. height: math.unit(175, "km")
  38207. },
  38208. {
  38209. name: "Terra Macro",
  38210. height: math.unit(32, "gigameters")
  38211. },
  38212. {
  38213. name: "Multiverse+",
  38214. height: math.unit(2.56e23, "yottameters")
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(6 + 9/12, "feet"),
  38223. weight: math.unit(280, "lb"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/candy/front.svg",
  38227. extra: 234/217,
  38228. bottom: 11/245
  38229. }
  38230. },
  38231. },
  38232. [
  38233. {
  38234. name: "Really Small",
  38235. height: math.unit(0.1, "nm")
  38236. },
  38237. {
  38238. name: "Micro",
  38239. height: math.unit(2, "inches")
  38240. },
  38241. {
  38242. name: "Normal",
  38243. height: math.unit(6 + 9/12, "feet"),
  38244. default: true
  38245. },
  38246. {
  38247. name: "Small Macro",
  38248. height: math.unit(69, "feet")
  38249. },
  38250. {
  38251. name: "Macro",
  38252. height: math.unit(160, "feet")
  38253. },
  38254. {
  38255. name: "Megamacro",
  38256. height: math.unit(22000, "miles")
  38257. },
  38258. {
  38259. name: "Gigamacro",
  38260. height: math.unit(50000, "miles")
  38261. },
  38262. ]
  38263. ))
  38264. characterMakers.push(() => makeCharacter(
  38265. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38266. {
  38267. front: {
  38268. height: math.unit(4, "feet"),
  38269. weight: math.unit(90, "lb"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/joey-mcdonald/front.svg",
  38273. extra: 1059/852,
  38274. bottom: 33/1092
  38275. }
  38276. },
  38277. back: {
  38278. height: math.unit(4, "feet"),
  38279. weight: math.unit(90, "lb"),
  38280. name: "Back",
  38281. image: {
  38282. source: "./media/characters/joey-mcdonald/back.svg",
  38283. extra: 1077/879,
  38284. bottom: 5/1082
  38285. }
  38286. },
  38287. frontKobold: {
  38288. height: math.unit(4, "feet"),
  38289. weight: math.unit(100, "lb"),
  38290. name: "Front-kobold",
  38291. image: {
  38292. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38293. extra: 1480/1367,
  38294. bottom: 0/1480
  38295. }
  38296. },
  38297. backKobold: {
  38298. height: math.unit(4, "feet"),
  38299. weight: math.unit(100, "lb"),
  38300. name: "Back-kobold",
  38301. image: {
  38302. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38303. extra: 1449/1361,
  38304. bottom: 0/1449
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(4, "feet"),
  38312. default: true
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(12 + 6/12, "feet"),
  38321. name: "Front",
  38322. image: {
  38323. source: "./media/characters/kass-lockheed/front.svg",
  38324. extra: 354/343,
  38325. bottom: 9/363
  38326. }
  38327. },
  38328. back: {
  38329. height: math.unit(12 + 6/12, "feet"),
  38330. name: "Back",
  38331. image: {
  38332. source: "./media/characters/kass-lockheed/back.svg",
  38333. extra: 364/352,
  38334. bottom: 3/367
  38335. }
  38336. },
  38337. dick: {
  38338. height: math.unit(3.12, "feet"),
  38339. name: "Dick",
  38340. image: {
  38341. source: "./media/characters/kass-lockheed/dick.svg"
  38342. }
  38343. },
  38344. head: {
  38345. height: math.unit(2.6, "feet"),
  38346. name: "Head",
  38347. image: {
  38348. source: "./media/characters/kass-lockheed/head.svg"
  38349. }
  38350. },
  38351. bleh: {
  38352. height: math.unit(2.85, "feet"),
  38353. name: "Bleh",
  38354. image: {
  38355. source: "./media/characters/kass-lockheed/bleh.svg"
  38356. }
  38357. },
  38358. smug: {
  38359. height: math.unit(2.85, "feet"),
  38360. name: "Smug",
  38361. image: {
  38362. source: "./media/characters/kass-lockheed/smug.svg"
  38363. }
  38364. },
  38365. },
  38366. [
  38367. {
  38368. name: "Normal",
  38369. height: math.unit(12 + 6/12, "feet"),
  38370. default: true
  38371. },
  38372. ]
  38373. ))
  38374. characterMakers.push(() => makeCharacter(
  38375. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38376. {
  38377. front: {
  38378. height: math.unit(6 + 2/12, "feet"),
  38379. name: "Front",
  38380. image: {
  38381. source: "./media/characters/taylor/front.svg",
  38382. extra: 639/495,
  38383. bottom: 12/651
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(6 + 2/12, "feet"),
  38391. default: true
  38392. },
  38393. {
  38394. name: "Big",
  38395. height: math.unit(15, "feet")
  38396. },
  38397. {
  38398. name: "Lorg",
  38399. height: math.unit(80, "feet")
  38400. },
  38401. {
  38402. name: "Too Lorg",
  38403. height: math.unit(120, "feet")
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38409. {
  38410. front: {
  38411. height: math.unit(15, "feet"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/kaizer/front.svg",
  38415. extra: 1612/1436,
  38416. bottom: 43/1655
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(15, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(2, "feet"),
  38433. weight: math.unit(30, "lb"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/sandy/front.svg",
  38437. extra: 1439/1307,
  38438. bottom: 194/1633
  38439. }
  38440. },
  38441. },
  38442. [
  38443. {
  38444. name: "Normal",
  38445. height: math.unit(2, "feet"),
  38446. default: true
  38447. },
  38448. ]
  38449. ))
  38450. characterMakers.push(() => makeCharacter(
  38451. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38452. {
  38453. front: {
  38454. height: math.unit(3, "feet"),
  38455. name: "Front",
  38456. image: {
  38457. source: "./media/characters/mellvi/front.svg",
  38458. extra: 1831/1630,
  38459. bottom: 58/1889
  38460. }
  38461. },
  38462. },
  38463. [
  38464. {
  38465. name: "Normal",
  38466. height: math.unit(3, "feet"),
  38467. default: true
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38473. {
  38474. front: {
  38475. height: math.unit(5 + 11/12, "feet"),
  38476. weight: math.unit(200, "lb"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/shirou/front.svg",
  38480. extra: 2491/2383,
  38481. bottom: 189/2680
  38482. }
  38483. },
  38484. back: {
  38485. height: math.unit(5 + 11/12, "feet"),
  38486. weight: math.unit(200, "lb"),
  38487. name: "Back",
  38488. image: {
  38489. source: "./media/characters/shirou/back.svg",
  38490. extra: 2554/2450,
  38491. bottom: 76/2630
  38492. }
  38493. },
  38494. },
  38495. [
  38496. {
  38497. name: "Normal",
  38498. height: math.unit(5 + 11/12, "feet"),
  38499. default: true
  38500. },
  38501. ]
  38502. ))
  38503. characterMakers.push(() => makeCharacter(
  38504. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38505. {
  38506. front: {
  38507. height: math.unit(6 + 3/12, "feet"),
  38508. weight: math.unit(177, "lb"),
  38509. name: "Front",
  38510. image: {
  38511. source: "./media/characters/noryu/front.svg",
  38512. extra: 973/885,
  38513. bottom: 10/983
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Normal",
  38520. height: math.unit(6 + 3/12, "feet"),
  38521. default: true
  38522. },
  38523. ]
  38524. ))
  38525. characterMakers.push(() => makeCharacter(
  38526. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38527. {
  38528. front: {
  38529. height: math.unit(5 + 6/12, "feet"),
  38530. weight: math.unit(170, "lb"),
  38531. name: "Front",
  38532. image: {
  38533. source: "./media/characters/mevolas-rubenido/front.svg",
  38534. extra: 2109/1901,
  38535. bottom: 96/2205
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(5 + 6/12, "feet"),
  38543. default: true
  38544. },
  38545. ]
  38546. ))
  38547. characterMakers.push(() => makeCharacter(
  38548. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38549. {
  38550. front: {
  38551. height: math.unit(100, "feet"),
  38552. name: "Front",
  38553. image: {
  38554. source: "./media/characters/dee/front.svg",
  38555. extra: 2153/2036,
  38556. bottom: 59/2212
  38557. }
  38558. },
  38559. back: {
  38560. height: math.unit(100, "feet"),
  38561. name: "Back",
  38562. image: {
  38563. source: "./media/characters/dee/back.svg",
  38564. extra: 2183/2058,
  38565. bottom: 75/2258
  38566. }
  38567. },
  38568. foot: {
  38569. height: math.unit(19.43, "feet"),
  38570. name: "Foot",
  38571. image: {
  38572. source: "./media/characters/dee/foot.svg"
  38573. }
  38574. },
  38575. hoof: {
  38576. height: math.unit(20.6, "feet"),
  38577. name: "Hoof",
  38578. image: {
  38579. source: "./media/characters/dee/hoof.svg"
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Macro",
  38586. height: math.unit(100, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(5 + 6/12, "feet"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/teh/front.svg",
  38599. extra: 1002/847,
  38600. bottom: 62/1064
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(5 + 6/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38614. {
  38615. side: {
  38616. height: math.unit(6 + 1/12, "feet"),
  38617. weight: math.unit(204, "lb"),
  38618. name: "Side",
  38619. image: {
  38620. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38621. extra: 974/775,
  38622. bottom: 169/1143
  38623. }
  38624. },
  38625. sitting: {
  38626. height: math.unit(6 + 2/12, "feet"),
  38627. weight: math.unit(204, "lb"),
  38628. name: "Sitting",
  38629. image: {
  38630. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38631. extra: 1175/964,
  38632. bottom: 378/1553
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(6 + 1/12, "feet"),
  38640. default: true
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(6, "inches"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/tululi/front.svg",
  38652. extra: 1997/1876,
  38653. bottom: 20/2017
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Normal",
  38660. height: math.unit(6, "inches"),
  38661. default: true
  38662. },
  38663. ]
  38664. ))
  38665. characterMakers.push(() => makeCharacter(
  38666. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38667. {
  38668. front: {
  38669. height: math.unit(4 + 1/12, "feet"),
  38670. name: "Front",
  38671. image: {
  38672. source: "./media/characters/star/front.svg",
  38673. extra: 1493/1189,
  38674. bottom: 48/1541
  38675. }
  38676. },
  38677. },
  38678. [
  38679. {
  38680. name: "Normal",
  38681. height: math.unit(4 + 1/12, "feet"),
  38682. default: true
  38683. },
  38684. ]
  38685. ))
  38686. characterMakers.push(() => makeCharacter(
  38687. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38688. {
  38689. front: {
  38690. height: math.unit(6 + 3/12, "feet"),
  38691. name: "Front",
  38692. image: {
  38693. source: "./media/characters/comet/front.svg",
  38694. extra: 1681/1462,
  38695. bottom: 26/1707
  38696. }
  38697. },
  38698. },
  38699. [
  38700. {
  38701. name: "Normal",
  38702. height: math.unit(6 + 3/12, "feet"),
  38703. default: true
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(950, "feet"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/vortex/front.svg",
  38715. extra: 1497/1434,
  38716. bottom: 56/1553
  38717. }
  38718. },
  38719. maw: {
  38720. height: math.unit(285, "feet"),
  38721. name: "Maw",
  38722. image: {
  38723. source: "./media/characters/vortex/maw.svg"
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Macro",
  38730. height: math.unit(950, "feet"),
  38731. default: true
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(600, "feet"),
  38740. weight: math.unit(0.02, "grams"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/doodle/front.svg",
  38744. extra: 1578/1413,
  38745. bottom: 37/1615
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Macro",
  38752. height: math.unit(600, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38759. {
  38760. front: {
  38761. height: math.unit(6 + 6/12, "feet"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/jai/front.svg",
  38765. extra: 1645/1534,
  38766. bottom: 115/1760
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Normal",
  38773. height: math.unit(6 + 6/12, "feet"),
  38774. default: true
  38775. },
  38776. ]
  38777. ))
  38778. characterMakers.push(() => makeCharacter(
  38779. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38780. {
  38781. front: {
  38782. height: math.unit(6 + 8/12, "feet"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/pixel/front.svg",
  38786. extra: 1900/1735,
  38787. bottom: 63/1963
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(6 + 8/12, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38801. {
  38802. back: {
  38803. height: math.unit(4 + 1/12, "feet"),
  38804. weight: math.unit(75, "lb"),
  38805. name: "Back",
  38806. image: {
  38807. source: "./media/characters/rhett/back.svg",
  38808. extra: 930/878,
  38809. bottom: 25/955
  38810. }
  38811. },
  38812. front: {
  38813. height: math.unit(4 + 1/12, "feet"),
  38814. weight: math.unit(75, "lb"),
  38815. name: "Front",
  38816. image: {
  38817. source: "./media/characters/rhett/front.svg",
  38818. extra: 1682/1586,
  38819. bottom: 92/1774
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Micro",
  38826. height: math.unit(8, "inches")
  38827. },
  38828. {
  38829. name: "Tiny",
  38830. height: math.unit(2, "feet")
  38831. },
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(4 + 1/12, "feet"),
  38835. default: true
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(3 + 3/12, "feet"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/penny/front.svg",
  38847. extra: 1406/1311,
  38848. bottom: 26/1432
  38849. }
  38850. },
  38851. },
  38852. [
  38853. {
  38854. name: "Normal",
  38855. height: math.unit(3 + 3/12, "feet"),
  38856. default: true
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(4 + 11/12, "feet"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/monty/front.svg",
  38868. extra: 1479/1209,
  38869. bottom: 0/1479
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(4 + 11/12, "feet"),
  38877. default: true
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38883. {
  38884. front: {
  38885. height: math.unit(8 + 4/12, "feet"),
  38886. name: "Front",
  38887. image: {
  38888. source: "./media/characters/sterling/front.svg",
  38889. extra: 1420/1236,
  38890. bottom: 27/1447
  38891. }
  38892. },
  38893. },
  38894. [
  38895. {
  38896. name: "Normal",
  38897. height: math.unit(8 + 4/12, "feet"),
  38898. default: true
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38904. {
  38905. front: {
  38906. height: math.unit(15, "feet"),
  38907. name: "Front",
  38908. image: {
  38909. source: "./media/characters/marble/front.svg",
  38910. extra: 973/937,
  38911. bottom: 32/1005
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(15, "feet"),
  38919. default: true
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38925. {
  38926. front: {
  38927. height: math.unit(3, "inches"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/powder/front.svg",
  38931. extra: 1504/1334,
  38932. bottom: 518/2022
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(3, "inches"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(4 + 5/12, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/joey-raccoon/front.svg",
  38952. extra: 1273/1197,
  38953. bottom: 0/1273
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(4 + 5/12, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(8 + 4/12, "feet"),
  38970. name: "Front",
  38971. image: {
  38972. source: "./media/characters/vick/front.svg",
  38973. extra: 2187/2118,
  38974. bottom: 47/2234
  38975. }
  38976. },
  38977. },
  38978. [
  38979. {
  38980. name: "Normal",
  38981. height: math.unit(8 + 4/12, "feet"),
  38982. default: true
  38983. },
  38984. ]
  38985. ))
  38986. characterMakers.push(() => makeCharacter(
  38987. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38988. {
  38989. front: {
  38990. height: math.unit(5 + 5/12, "feet"),
  38991. name: "Front",
  38992. image: {
  38993. source: "./media/characters/mitsy/front.svg",
  38994. extra: 1842/1695,
  38995. bottom: 0/1842
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(5 + 5/12, "feet"),
  39003. default: true
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(6 + 3/12, "feet"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/silvy/front.svg",
  39015. extra: 1995/1836,
  39016. bottom: 225/2220
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(6 + 3/12, "feet"),
  39024. default: true
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39030. {
  39031. front: {
  39032. height: math.unit(3 + 8/12, "feet"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/rodney/front.svg",
  39036. extra: 1956/1747,
  39037. bottom: 31/1987
  39038. }
  39039. },
  39040. frontDressed: {
  39041. height: math.unit(2.9, "feet"),
  39042. name: "Front (Dressed)",
  39043. image: {
  39044. source: "./media/characters/rodney/front-dressed.svg",
  39045. extra: 1382/1241,
  39046. bottom: 385/1767
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(3 + 8/12, "feet"),
  39054. default: true
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(5 + 9/12, "feet"),
  39063. weight: math.unit(194, "lbs"),
  39064. name: "Front",
  39065. image: {
  39066. source: "./media/characters/zakail-sudekai/front.svg",
  39067. extra: 2696/2533,
  39068. bottom: 248/2944
  39069. }
  39070. },
  39071. maw: {
  39072. height: math.unit(1.35, "feet"),
  39073. name: "Maw",
  39074. image: {
  39075. source: "./media/characters/zakail-sudekai/maw.svg"
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(5 + 9/12, "feet"),
  39083. default: true
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(8 + 4/12, "feet"),
  39092. weight: math.unit(1200, "lb"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/eleanor/front.svg",
  39096. extra: 1226/1192,
  39097. bottom: 52/1278
  39098. }
  39099. },
  39100. back: {
  39101. height: math.unit(8 + 4/12, "feet"),
  39102. weight: math.unit(1200, "lb"),
  39103. name: "Back",
  39104. image: {
  39105. source: "./media/characters/eleanor/back.svg",
  39106. extra: 1242/1184,
  39107. bottom: 60/1302
  39108. }
  39109. },
  39110. head: {
  39111. height: math.unit(2.62, "feet"),
  39112. name: "Head",
  39113. image: {
  39114. source: "./media/characters/eleanor/head.svg"
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(8 + 4/12, "feet"),
  39122. default: true
  39123. },
  39124. ]
  39125. ))
  39126. characterMakers.push(() => makeCharacter(
  39127. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39128. {
  39129. front: {
  39130. height: math.unit(8 + 4/12, "feet"),
  39131. weight: math.unit(750, "lb"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/tanya/front.svg",
  39135. extra: 1749/1615,
  39136. bottom: 33/1782
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(8 + 4/12, "feet"),
  39144. default: true
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(5, "feet"),
  39153. weight: math.unit(225, "lb"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/cindy/front.svg",
  39157. extra: 1320/1250,
  39158. bottom: 42/1362
  39159. }
  39160. },
  39161. frontDressed: {
  39162. height: math.unit(5, "feet"),
  39163. weight: math.unit(225, "lb"),
  39164. name: "Front (Dressed)",
  39165. image: {
  39166. source: "./media/characters/cindy/front-dressed.svg",
  39167. extra: 1320/1250,
  39168. bottom: 42/1362
  39169. }
  39170. },
  39171. back: {
  39172. height: math.unit(5, "feet"),
  39173. weight: math.unit(225, "lb"),
  39174. name: "Back",
  39175. image: {
  39176. source: "./media/characters/cindy/back.svg",
  39177. extra: 1384/1346,
  39178. bottom: 14/1398
  39179. }
  39180. },
  39181. },
  39182. [
  39183. {
  39184. name: "Normal",
  39185. height: math.unit(5, "feet"),
  39186. default: true
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(6 + 9/12, "feet"),
  39195. weight: math.unit(440, "lb"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/wilbur-owen/front.svg",
  39199. extra: 1575/1448,
  39200. bottom: 72/1647
  39201. }
  39202. },
  39203. back: {
  39204. height: math.unit(6 + 9/12, "feet"),
  39205. weight: math.unit(440, "lb"),
  39206. name: "Back",
  39207. image: {
  39208. source: "./media/characters/wilbur-owen/back.svg",
  39209. extra: 1578/1445,
  39210. bottom: 36/1614
  39211. }
  39212. },
  39213. },
  39214. [
  39215. {
  39216. name: "Normal",
  39217. height: math.unit(6 + 9/12, "feet"),
  39218. default: true
  39219. },
  39220. ]
  39221. ))
  39222. characterMakers.push(() => makeCharacter(
  39223. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39224. {
  39225. front: {
  39226. height: math.unit(6 + 5/12, "feet"),
  39227. weight: math.unit(650, "lb"),
  39228. name: "Front",
  39229. image: {
  39230. source: "./media/characters/keegan/front.svg",
  39231. extra: 2387/2198,
  39232. bottom: 33/2420
  39233. }
  39234. },
  39235. side: {
  39236. height: math.unit(6 + 5/12, "feet"),
  39237. weight: math.unit(650, "lb"),
  39238. name: "Side",
  39239. image: {
  39240. source: "./media/characters/keegan/side.svg",
  39241. extra: 2390/2202,
  39242. bottom: 47/2437
  39243. }
  39244. },
  39245. back: {
  39246. height: math.unit(6 + 5/12, "feet"),
  39247. weight: math.unit(650, "lb"),
  39248. name: "Back",
  39249. image: {
  39250. source: "./media/characters/keegan/back.svg",
  39251. extra: 2418/2268,
  39252. bottom: 15/2433
  39253. }
  39254. },
  39255. frontSfw: {
  39256. height: math.unit(6 + 5/12, "feet"),
  39257. weight: math.unit(650, "lb"),
  39258. name: "Front (SFW)",
  39259. image: {
  39260. source: "./media/characters/keegan/front-sfw.svg",
  39261. extra: 2387/2198,
  39262. bottom: 33/2420
  39263. }
  39264. },
  39265. beans: {
  39266. height: math.unit(1.85, "feet"),
  39267. name: "Beans",
  39268. image: {
  39269. source: "./media/characters/keegan/beans.svg"
  39270. }
  39271. },
  39272. },
  39273. [
  39274. {
  39275. name: "Normal",
  39276. height: math.unit(6 + 5/12, "feet"),
  39277. default: true
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39283. {
  39284. front: {
  39285. height: math.unit(9, "feet"),
  39286. name: "Front",
  39287. image: {
  39288. source: "./media/characters/colton/front.svg",
  39289. extra: 1589/1326,
  39290. bottom: 139/1728
  39291. }
  39292. },
  39293. },
  39294. [
  39295. {
  39296. name: "Normal",
  39297. height: math.unit(9, "feet"),
  39298. default: true
  39299. },
  39300. ]
  39301. ))
  39302. characterMakers.push(() => makeCharacter(
  39303. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39304. {
  39305. front: {
  39306. height: math.unit(2 + 9/12, "feet"),
  39307. name: "Front",
  39308. image: {
  39309. source: "./media/characters/bora/front.svg",
  39310. extra: 1265/1250,
  39311. bottom: 24/1289
  39312. }
  39313. },
  39314. },
  39315. [
  39316. {
  39317. name: "Normal",
  39318. height: math.unit(2 + 9/12, "feet"),
  39319. default: true
  39320. },
  39321. ]
  39322. ))
  39323. characterMakers.push(() => makeCharacter(
  39324. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39325. {
  39326. front: {
  39327. height: math.unit(8, "feet"),
  39328. name: "Front",
  39329. image: {
  39330. source: "./media/characters/myu-myu/front.svg",
  39331. extra: 1949/1857,
  39332. bottom: 90/2039
  39333. }
  39334. },
  39335. },
  39336. [
  39337. {
  39338. name: "Normal",
  39339. height: math.unit(8, "feet"),
  39340. default: true
  39341. },
  39342. {
  39343. name: "Big",
  39344. height: math.unit(15, "feet")
  39345. },
  39346. {
  39347. name: "BIG",
  39348. height: math.unit(25, "feet")
  39349. },
  39350. ]
  39351. ))
  39352. characterMakers.push(() => makeCharacter(
  39353. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39354. {
  39355. side: {
  39356. height: math.unit(7 + 5/12, "feet"),
  39357. weight: math.unit(2800, "lb"),
  39358. name: "Side",
  39359. image: {
  39360. source: "./media/characters/haloren/side.svg",
  39361. extra: 1793/409,
  39362. bottom: 59/1852
  39363. }
  39364. },
  39365. frontPaw: {
  39366. height: math.unit(2.36, "feet"),
  39367. name: "Front paw",
  39368. image: {
  39369. source: "./media/characters/haloren/front-paw.svg"
  39370. }
  39371. },
  39372. hindPaw: {
  39373. height: math.unit(3.18, "feet"),
  39374. name: "Hind paw",
  39375. image: {
  39376. source: "./media/characters/haloren/hind-paw.svg"
  39377. }
  39378. },
  39379. maw: {
  39380. height: math.unit(5.05, "feet"),
  39381. name: "Maw",
  39382. image: {
  39383. source: "./media/characters/haloren/maw.svg"
  39384. }
  39385. },
  39386. dick: {
  39387. height: math.unit(2.90, "feet"),
  39388. name: "Dick",
  39389. image: {
  39390. source: "./media/characters/haloren/dick.svg"
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(7 + 5/12, "feet"),
  39398. default: true
  39399. },
  39400. {
  39401. name: "Enhanced",
  39402. height: math.unit(14 + 3/12, "feet")
  39403. },
  39404. ]
  39405. ))
  39406. characterMakers.push(() => makeCharacter(
  39407. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39408. {
  39409. front: {
  39410. height: math.unit(171, "cm"),
  39411. name: "Front",
  39412. image: {
  39413. source: "./media/characters/kimmy/front.svg",
  39414. extra: 1491/1435,
  39415. bottom: 53/1544
  39416. }
  39417. },
  39418. },
  39419. [
  39420. {
  39421. name: "Small",
  39422. height: math.unit(9, "cm")
  39423. },
  39424. {
  39425. name: "Normal",
  39426. height: math.unit(171, "cm"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(8, "feet"),
  39436. weight: math.unit(300, "lb"),
  39437. name: "Front",
  39438. image: {
  39439. source: "./media/characters/galeboomer/front.svg",
  39440. extra: 4651/4415,
  39441. bottom: 162/4813
  39442. }
  39443. },
  39444. back: {
  39445. height: math.unit(8, "feet"),
  39446. weight: math.unit(300, "lb"),
  39447. name: "Back",
  39448. image: {
  39449. source: "./media/characters/galeboomer/back.svg",
  39450. extra: 4544/4314,
  39451. bottom: 16/4560
  39452. }
  39453. },
  39454. frontAlt: {
  39455. height: math.unit(8, "feet"),
  39456. weight: math.unit(300, "lb"),
  39457. name: "Front (Alt)",
  39458. image: {
  39459. source: "./media/characters/galeboomer/front-alt.svg",
  39460. extra: 4458/4228,
  39461. bottom: 68/4526
  39462. }
  39463. },
  39464. maw: {
  39465. height: math.unit(1.2, "feet"),
  39466. name: "Maw",
  39467. image: {
  39468. source: "./media/characters/galeboomer/maw.svg"
  39469. }
  39470. },
  39471. },
  39472. [
  39473. {
  39474. name: "Normal",
  39475. height: math.unit(8, "feet"),
  39476. default: true
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(5 + 9/12, "feet"),
  39485. weight: math.unit(120, "lb"),
  39486. name: "Front",
  39487. image: {
  39488. source: "./media/characters/chyr/front.svg",
  39489. extra: 1323/1254,
  39490. bottom: 63/1386
  39491. }
  39492. },
  39493. back: {
  39494. height: math.unit(5 + 9/12, "feet"),
  39495. weight: math.unit(120, "lb"),
  39496. name: "Back",
  39497. image: {
  39498. source: "./media/characters/chyr/back.svg",
  39499. extra: 1323/1252,
  39500. bottom: 48/1371
  39501. }
  39502. },
  39503. },
  39504. [
  39505. {
  39506. name: "Normal",
  39507. height: math.unit(5 + 9/12, "feet"),
  39508. default: true
  39509. },
  39510. ]
  39511. ))
  39512. characterMakers.push(() => makeCharacter(
  39513. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39514. {
  39515. front: {
  39516. height: math.unit(7, "feet"),
  39517. weight: math.unit(310, "lb"),
  39518. name: "Front",
  39519. image: {
  39520. source: "./media/characters/solarus/front.svg",
  39521. extra: 2415/2021,
  39522. bottom: 103/2518
  39523. }
  39524. },
  39525. back: {
  39526. height: math.unit(7, "feet"),
  39527. weight: math.unit(310, "lb"),
  39528. name: "Back",
  39529. image: {
  39530. source: "./media/characters/solarus/back.svg",
  39531. extra: 2463/2089,
  39532. bottom: 79/2542
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(7, "feet"),
  39540. default: true
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39546. {
  39547. front: {
  39548. height: math.unit(16, "feet"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39552. extra: 1844/1780,
  39553. bottom: 58/1902
  39554. }
  39555. },
  39556. winterCoat: {
  39557. height: math.unit(16, "feet"),
  39558. name: "Winter Coat",
  39559. image: {
  39560. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39561. extra: 1807/1775,
  39562. bottom: 69/1876
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(16, "feet"),
  39570. default: true
  39571. },
  39572. {
  39573. name: "Chicago Size",
  39574. height: math.unit(560, "feet")
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39580. {
  39581. front: {
  39582. height: math.unit(11 + 6/12, "feet"),
  39583. weight: math.unit(1366, "lb"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/lexor/front.svg",
  39587. extra: 1560/1481,
  39588. bottom: 211/1771
  39589. }
  39590. },
  39591. back: {
  39592. height: math.unit(11 + 6/12, "feet"),
  39593. weight: math.unit(1366, "lb"),
  39594. name: "Back",
  39595. image: {
  39596. source: "./media/characters/lexor/back.svg",
  39597. extra: 1614/1533,
  39598. bottom: 76/1690
  39599. }
  39600. },
  39601. maw: {
  39602. height: math.unit(3, "feet"),
  39603. name: "Maw",
  39604. image: {
  39605. source: "./media/characters/lexor/maw.svg"
  39606. }
  39607. },
  39608. dick: {
  39609. height: math.unit(2.59, "feet"),
  39610. name: "Dick",
  39611. image: {
  39612. source: "./media/characters/lexor/dick.svg"
  39613. }
  39614. },
  39615. },
  39616. [
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(11 + 6/12, "feet"),
  39620. default: true
  39621. },
  39622. ]
  39623. ))
  39624. characterMakers.push(() => makeCharacter(
  39625. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39626. {
  39627. front: {
  39628. height: math.unit(5 + 8/12, "feet"),
  39629. name: "Front",
  39630. image: {
  39631. source: "./media/characters/magnum/front.svg",
  39632. extra: 942/855,
  39633. bottom: 26/968
  39634. }
  39635. },
  39636. },
  39637. [
  39638. {
  39639. name: "Normal",
  39640. height: math.unit(5 + 8/12, "feet"),
  39641. default: true
  39642. },
  39643. ]
  39644. ))
  39645. characterMakers.push(() => makeCharacter(
  39646. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39647. {
  39648. front: {
  39649. height: math.unit(18 + 4/12, "feet"),
  39650. weight: math.unit(1500, "kg"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/solas-sharpsman/front.svg",
  39654. extra: 1698/1589,
  39655. bottom: 0/1698
  39656. }
  39657. },
  39658. },
  39659. [
  39660. {
  39661. name: "Normal",
  39662. height: math.unit(18 + 4/12, "feet"),
  39663. default: true
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(5 + 5/12, "feet"),
  39672. weight: math.unit(180, "lb"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/october/front.svg",
  39676. extra: 1800/1650,
  39677. bottom: 0/1800
  39678. }
  39679. },
  39680. frontNsfw: {
  39681. height: math.unit(5 + 5/12, "feet"),
  39682. weight: math.unit(180, "lb"),
  39683. name: "Front (NSFW)",
  39684. image: {
  39685. source: "./media/characters/october/front-nsfw.svg",
  39686. extra: 1392/1307,
  39687. bottom: 42/1434
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(5 + 5/12, "feet"),
  39695. default: true
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(8 + 6/12, "feet"),
  39704. name: "Front",
  39705. image: {
  39706. source: "./media/characters/essynkardi/front.svg",
  39707. extra: 1541/1457,
  39708. bottom: 47/1588
  39709. }
  39710. },
  39711. },
  39712. [
  39713. {
  39714. name: "Normal",
  39715. height: math.unit(8 + 6/12, "feet"),
  39716. default: true
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39722. {
  39723. front: {
  39724. height: math.unit(6 + 6/12, "feet"),
  39725. weight: math.unit(7, "lb"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/icky/front.svg",
  39729. extra: 813/782,
  39730. bottom: 66/879
  39731. }
  39732. },
  39733. back: {
  39734. height: math.unit(6 + 6/12, "feet"),
  39735. weight: math.unit(7, "lb"),
  39736. name: "Back",
  39737. image: {
  39738. source: "./media/characters/icky/back.svg",
  39739. extra: 754/735,
  39740. bottom: 56/810
  39741. }
  39742. },
  39743. },
  39744. [
  39745. {
  39746. name: "Normal",
  39747. height: math.unit(6 + 6/12, "feet"),
  39748. default: true
  39749. },
  39750. ]
  39751. ))
  39752. characterMakers.push(() => makeCharacter(
  39753. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39754. {
  39755. front: {
  39756. height: math.unit(15, "feet"),
  39757. name: "Front",
  39758. image: {
  39759. source: "./media/characters/rojas/front.svg",
  39760. extra: 1462/1408,
  39761. bottom: 95/1557
  39762. }
  39763. },
  39764. back: {
  39765. height: math.unit(15, "feet"),
  39766. name: "Back",
  39767. image: {
  39768. source: "./media/characters/rojas/back.svg",
  39769. extra: 1023/954,
  39770. bottom: 28/1051
  39771. }
  39772. },
  39773. },
  39774. [
  39775. {
  39776. name: "Normal",
  39777. height: math.unit(15, "feet"),
  39778. default: true
  39779. },
  39780. ]
  39781. ))
  39782. characterMakers.push(() => makeCharacter(
  39783. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39784. {
  39785. frontHuman: {
  39786. height: math.unit(5 + 7/12, "feet"),
  39787. name: "Front (Human)",
  39788. image: {
  39789. source: "./media/characters/alek-dryagan/front-human.svg",
  39790. extra: 1687/1667,
  39791. bottom: 69/1756
  39792. }
  39793. },
  39794. backHuman: {
  39795. height: math.unit(5 + 7/12, "feet"),
  39796. name: "Back (Human)",
  39797. image: {
  39798. source: "./media/characters/alek-dryagan/back-human.svg",
  39799. extra: 1670/1649,
  39800. bottom: 65/1735
  39801. }
  39802. },
  39803. frontDemi: {
  39804. height: math.unit(65, "feet"),
  39805. name: "Front (Demi)",
  39806. image: {
  39807. source: "./media/characters/alek-dryagan/front-demi.svg",
  39808. extra: 1669/1642,
  39809. bottom: 49/1718
  39810. }
  39811. },
  39812. backDemi: {
  39813. height: math.unit(65, "feet"),
  39814. name: "Back (Demi)",
  39815. image: {
  39816. source: "./media/characters/alek-dryagan/back-demi.svg",
  39817. extra: 1658/1637,
  39818. bottom: 40/1698
  39819. }
  39820. },
  39821. mawHuman: {
  39822. height: math.unit(0.3, "feet"),
  39823. name: "Maw (Human)",
  39824. image: {
  39825. source: "./media/characters/alek-dryagan/maw-human.svg"
  39826. }
  39827. },
  39828. mawDemi: {
  39829. height: math.unit(3.8, "feet"),
  39830. name: "Maw (Demi)",
  39831. image: {
  39832. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39833. }
  39834. },
  39835. },
  39836. [
  39837. {
  39838. name: "Normal",
  39839. height: math.unit(5 + 7/12, "feet"),
  39840. default: true
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39846. {
  39847. frontHuman: {
  39848. height: math.unit(5 + 2/12, "feet"),
  39849. name: "Front (Human)",
  39850. image: {
  39851. source: "./media/characters/gen/front-human.svg",
  39852. extra: 1627/1538,
  39853. bottom: 71/1698
  39854. }
  39855. },
  39856. backHuman: {
  39857. height: math.unit(5 + 2/12, "feet"),
  39858. name: "Back (Human)",
  39859. image: {
  39860. source: "./media/characters/gen/back-human.svg",
  39861. extra: 1638/1548,
  39862. bottom: 69/1707
  39863. }
  39864. },
  39865. frontDemi: {
  39866. height: math.unit(5 + 2/12, "feet"),
  39867. name: "Front (Demi)",
  39868. image: {
  39869. source: "./media/characters/gen/front-demi.svg",
  39870. extra: 1627/1538,
  39871. bottom: 71/1698
  39872. }
  39873. },
  39874. backDemi: {
  39875. height: math.unit(5 + 2/12, "feet"),
  39876. name: "Back (Demi)",
  39877. image: {
  39878. source: "./media/characters/gen/back-demi.svg",
  39879. extra: 1638/1548,
  39880. bottom: 69/1707
  39881. }
  39882. },
  39883. },
  39884. [
  39885. {
  39886. name: "Normal",
  39887. height: math.unit(5 + 2/12, "feet"),
  39888. default: true
  39889. },
  39890. ]
  39891. ))
  39892. characterMakers.push(() => makeCharacter(
  39893. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39894. {
  39895. frontImp: {
  39896. height: math.unit(1 + 11/12, "feet"),
  39897. name: "Front (Imp)",
  39898. image: {
  39899. source: "./media/characters/max-kobold/front-imp.svg",
  39900. extra: 1238/1134,
  39901. bottom: 81/1319
  39902. }
  39903. },
  39904. backImp: {
  39905. height: math.unit(1 + 11/12, "feet"),
  39906. name: "Back (Imp)",
  39907. image: {
  39908. source: "./media/characters/max-kobold/back-imp.svg",
  39909. extra: 1334/1175,
  39910. bottom: 34/1368
  39911. }
  39912. },
  39913. frontDemi: {
  39914. height: math.unit(5 + 9/12, "feet"),
  39915. name: "Front (Demi)",
  39916. image: {
  39917. source: "./media/characters/max-kobold/front-demi.svg",
  39918. extra: 1715/1685,
  39919. bottom: 54/1769
  39920. }
  39921. },
  39922. backDemi: {
  39923. height: math.unit(5 + 9/12, "feet"),
  39924. name: "Back (Demi)",
  39925. image: {
  39926. source: "./media/characters/max-kobold/back-demi.svg",
  39927. extra: 1752/1729,
  39928. bottom: 41/1793
  39929. }
  39930. },
  39931. handImp: {
  39932. height: math.unit(0.45, "feet"),
  39933. name: "Hand (Imp)",
  39934. image: {
  39935. source: "./media/characters/max-kobold/hand.svg"
  39936. }
  39937. },
  39938. pawImp: {
  39939. height: math.unit(0.46, "feet"),
  39940. name: "Paw (Imp)",
  39941. image: {
  39942. source: "./media/characters/max-kobold/paw.svg"
  39943. }
  39944. },
  39945. handDemi: {
  39946. height: math.unit(0.80, "feet"),
  39947. name: "Hand (Demi)",
  39948. image: {
  39949. source: "./media/characters/max-kobold/hand.svg"
  39950. }
  39951. },
  39952. pawDemi: {
  39953. height: math.unit(1.1, "feet"),
  39954. name: "Paw (Demi)",
  39955. image: {
  39956. source: "./media/characters/max-kobold/paw.svg"
  39957. }
  39958. },
  39959. headImp: {
  39960. height: math.unit(1.33, "feet"),
  39961. name: "Head (Imp)",
  39962. image: {
  39963. source: "./media/characters/max-kobold/head-imp.svg"
  39964. }
  39965. },
  39966. mawImp: {
  39967. height: math.unit(0.75, "feet"),
  39968. name: "Maw (Imp)",
  39969. image: {
  39970. source: "./media/characters/max-kobold/maw-imp.svg"
  39971. }
  39972. },
  39973. mawDemi: {
  39974. height: math.unit(0.42, "feet"),
  39975. name: "Maw (Demi)",
  39976. image: {
  39977. source: "./media/characters/max-kobold/maw-demi.svg"
  39978. }
  39979. },
  39980. },
  39981. [
  39982. {
  39983. name: "Normal",
  39984. height: math.unit(1 + 11/12, "feet"),
  39985. default: true
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39991. {
  39992. front: {
  39993. height: math.unit(7 + 5/12, "feet"),
  39994. name: "Front",
  39995. image: {
  39996. source: "./media/characters/carbon/front.svg",
  39997. extra: 1754/1689,
  39998. bottom: 65/1819
  39999. }
  40000. },
  40001. back: {
  40002. height: math.unit(7 + 5/12, "feet"),
  40003. name: "Back",
  40004. image: {
  40005. source: "./media/characters/carbon/back.svg",
  40006. extra: 1762/1695,
  40007. bottom: 24/1786
  40008. }
  40009. },
  40010. frontGigantamax: {
  40011. height: math.unit(150, "feet"),
  40012. name: "Front (Gigantamax)",
  40013. image: {
  40014. source: "./media/characters/carbon/front-gigantamax.svg",
  40015. extra: 1826/1669,
  40016. bottom: 59/1885
  40017. }
  40018. },
  40019. backGigantamax: {
  40020. height: math.unit(150, "feet"),
  40021. name: "Back (Gigantamax)",
  40022. image: {
  40023. source: "./media/characters/carbon/back-gigantamax.svg",
  40024. extra: 1796/1653,
  40025. bottom: 53/1849
  40026. }
  40027. },
  40028. maw: {
  40029. height: math.unit(0.48, "feet"),
  40030. name: "Maw",
  40031. image: {
  40032. source: "./media/characters/carbon/maw.svg"
  40033. }
  40034. },
  40035. mawGigantamax: {
  40036. height: math.unit(7.5, "feet"),
  40037. name: "Maw (Gigantamax)",
  40038. image: {
  40039. source: "./media/characters/carbon/maw-gigantamax.svg"
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Normal",
  40046. height: math.unit(7 + 5/12, "feet"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(6, "feet"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/maverick/front.svg",
  40059. extra: 1672/1661,
  40060. bottom: 85/1757
  40061. }
  40062. },
  40063. back: {
  40064. height: math.unit(6, "feet"),
  40065. name: "Back",
  40066. image: {
  40067. source: "./media/characters/maverick/back.svg",
  40068. extra: 1642/1631,
  40069. bottom: 38/1680
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Normal",
  40076. height: math.unit(6, "feet"),
  40077. default: true
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40083. {
  40084. front: {
  40085. height: math.unit(15, "feet"),
  40086. weight: math.unit(615, "lb"),
  40087. name: "Front",
  40088. image: {
  40089. source: "./media/characters/grockle/front.svg",
  40090. extra: 1535/1427,
  40091. bottom: 56/1591
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "Normal",
  40098. height: math.unit(15, "feet"),
  40099. default: true
  40100. },
  40101. {
  40102. name: "Large",
  40103. height: math.unit(150, "feet")
  40104. },
  40105. {
  40106. name: "Macro",
  40107. height: math.unit(1876, "feet")
  40108. },
  40109. {
  40110. name: "Mega Macro",
  40111. height: math.unit(121940, "feet")
  40112. },
  40113. {
  40114. name: "Giga Macro",
  40115. height: math.unit(750, "km")
  40116. },
  40117. {
  40118. name: "Tera Macro",
  40119. height: math.unit(750000, "km")
  40120. },
  40121. {
  40122. name: "Galactic",
  40123. height: math.unit(1.4e5, "km")
  40124. },
  40125. {
  40126. name: "Godlike",
  40127. height: math.unit(9.8e280, "galaxies")
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40133. {
  40134. front: {
  40135. height: math.unit(11, "meters"),
  40136. weight: math.unit(20, "tonnes"),
  40137. name: "Front",
  40138. image: {
  40139. source: "./media/characters/alistair/front.svg",
  40140. extra: 1265/1009,
  40141. bottom: 93/1358
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Normal",
  40148. height: math.unit(11, "meters"),
  40149. default: true
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(5 + 8/12, "feet"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/haruka/front.svg",
  40161. extra: 2012/1952,
  40162. bottom: 0/2012
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(5 + 8/12, "feet"),
  40170. default: true
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40176. {
  40177. back: {
  40178. height: math.unit(9, "feet"),
  40179. name: "Back",
  40180. image: {
  40181. source: "./media/characters/vivian-sylveon/back.svg",
  40182. extra: 1853/1714,
  40183. bottom: 0/1853
  40184. }
  40185. },
  40186. hyper: {
  40187. height: math.unit(5.58, "feet"),
  40188. name: "Hyper",
  40189. preyCapacity: math.unit(2.80616218797, "m^3"),
  40190. image: {
  40191. source: "./media/characters/vivian-sylveon/hyper.svg",
  40192. extra: 999/676,
  40193. bottom: 697/1696
  40194. },
  40195. },
  40196. paw: {
  40197. height: math.unit(1.8, "feet"),
  40198. name: "Paw",
  40199. image: {
  40200. source: "./media/characters/vivian-sylveon/paw.svg"
  40201. }
  40202. },
  40203. danger: {
  40204. height: math.unit(7.5, "feet"),
  40205. name: "DANGER",
  40206. image: {
  40207. source: "./media/characters/vivian-sylveon/danger.svg"
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(9, "feet"),
  40215. default: true
  40216. },
  40217. {
  40218. name: "Macro",
  40219. height: math.unit(500, "feet")
  40220. },
  40221. {
  40222. name: "Megamacro",
  40223. height: math.unit(600, "miles")
  40224. },
  40225. {
  40226. name: "Gigamacro",
  40227. height: math.unit(30000, "miles")
  40228. },
  40229. ]
  40230. ))
  40231. characterMakers.push(() => makeCharacter(
  40232. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40233. {
  40234. anthro: {
  40235. height: math.unit(5 + 10/12, "feet"),
  40236. weight: math.unit(100, "lb"),
  40237. name: "Anthro",
  40238. image: {
  40239. source: "./media/characters/daiki/anthro.svg",
  40240. extra: 1115/1027,
  40241. bottom: 69/1184
  40242. }
  40243. },
  40244. feral: {
  40245. height: math.unit(200, "feet"),
  40246. name: "Feral",
  40247. image: {
  40248. source: "./media/characters/daiki/feral.svg",
  40249. extra: 1256/313,
  40250. bottom: 39/1295
  40251. }
  40252. },
  40253. feralHead: {
  40254. height: math.unit(171, "feet"),
  40255. name: "Feral Head",
  40256. image: {
  40257. source: "./media/characters/daiki/feral-head.svg"
  40258. }
  40259. },
  40260. manaDragon: {
  40261. height: math.unit(170, "meters"),
  40262. name: "Mana-dragon",
  40263. image: {
  40264. source: "./media/characters/daiki/mana-dragon.svg",
  40265. extra: 763/420,
  40266. bottom: 97/860
  40267. }
  40268. },
  40269. },
  40270. [
  40271. {
  40272. name: "Normal",
  40273. height: math.unit(5 + 10/12, "feet"),
  40274. default: true
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40280. {
  40281. fullyEquippedFront: {
  40282. height: math.unit(3 + 1/12, "feet"),
  40283. weight: math.unit(24, "lb"),
  40284. name: "Fully Equipped (Front)",
  40285. image: {
  40286. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40287. extra: 687/605,
  40288. bottom: 18/705
  40289. }
  40290. },
  40291. fullyEquippedBack: {
  40292. height: math.unit(3 + 1/12, "feet"),
  40293. weight: math.unit(24, "lb"),
  40294. name: "Fully Equipped (Back)",
  40295. image: {
  40296. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40297. extra: 689/590,
  40298. bottom: 18/707
  40299. }
  40300. },
  40301. dailyWear: {
  40302. height: math.unit(3 + 1/12, "feet"),
  40303. weight: math.unit(24, "lb"),
  40304. name: "Daily Wear",
  40305. image: {
  40306. source: "./media/characters/tea-spot/daily-wear.svg",
  40307. extra: 701/620,
  40308. bottom: 21/722
  40309. }
  40310. },
  40311. maidWork: {
  40312. height: math.unit(3 + 1/12, "feet"),
  40313. weight: math.unit(24, "lb"),
  40314. name: "Maid Work",
  40315. image: {
  40316. source: "./media/characters/tea-spot/maid-work.svg",
  40317. extra: 693/609,
  40318. bottom: 15/708
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(3 + 1/12, "feet"),
  40326. default: true
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(175, "cm"),
  40335. weight: math.unit(75, "kg"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/chee/front.svg",
  40339. extra: 1796/1740,
  40340. bottom: 40/1836
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Micro-Micro",
  40347. height: math.unit(1, "nm")
  40348. },
  40349. {
  40350. name: "Micro-erst",
  40351. height: math.unit(1, "micrometer")
  40352. },
  40353. {
  40354. name: "Micro-er",
  40355. height: math.unit(1, "cm")
  40356. },
  40357. {
  40358. name: "Normal",
  40359. height: math.unit(175, "cm"),
  40360. default: true
  40361. },
  40362. {
  40363. name: "Macro",
  40364. height: math.unit(100, "m")
  40365. },
  40366. {
  40367. name: "Macro-er",
  40368. height: math.unit(1, "km")
  40369. },
  40370. {
  40371. name: "Macro-erst",
  40372. height: math.unit(10, "km")
  40373. },
  40374. {
  40375. name: "Macro-Macro",
  40376. height: math.unit(100, "km")
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(11 + 9/12, "feet"),
  40385. weight: math.unit(935, "lb"),
  40386. name: "Front",
  40387. image: {
  40388. source: "./media/characters/kingsley/front.svg",
  40389. extra: 1803/1674,
  40390. bottom: 127/1930
  40391. }
  40392. },
  40393. frontNude: {
  40394. height: math.unit(11 + 9/12, "feet"),
  40395. weight: math.unit(935, "lb"),
  40396. name: "Front (Nude)",
  40397. image: {
  40398. source: "./media/characters/kingsley/front-nude.svg",
  40399. extra: 1803/1674,
  40400. bottom: 127/1930
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Normal",
  40407. height: math.unit(11 + 9/12, "feet"),
  40408. default: true
  40409. },
  40410. ]
  40411. ))
  40412. characterMakers.push(() => makeCharacter(
  40413. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40414. {
  40415. side: {
  40416. height: math.unit(9, "feet"),
  40417. name: "Side",
  40418. image: {
  40419. source: "./media/characters/rymel/side.svg",
  40420. extra: 792/469,
  40421. bottom: 121/913
  40422. }
  40423. },
  40424. maw: {
  40425. height: math.unit(2.4, "meters"),
  40426. name: "Maw",
  40427. image: {
  40428. source: "./media/characters/rymel/maw.svg"
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "House Drake",
  40435. height: math.unit(2, "feet")
  40436. },
  40437. {
  40438. name: "Reduced",
  40439. height: math.unit(4.5, "feet")
  40440. },
  40441. {
  40442. name: "Normal",
  40443. height: math.unit(9, "feet"),
  40444. default: true
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40450. {
  40451. front: {
  40452. height: math.unit(1.74, "meters"),
  40453. weight: math.unit(55, "kg"),
  40454. name: "Front",
  40455. image: {
  40456. source: "./media/characters/rubus/front.svg",
  40457. extra: 1894/1742,
  40458. bottom: 44/1938
  40459. }
  40460. },
  40461. },
  40462. [
  40463. {
  40464. name: "Normal",
  40465. height: math.unit(1.74, "meters"),
  40466. default: true
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(5 + 2/12, "feet"),
  40475. weight: math.unit(112, "lb"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/cassie-kingston/front.svg",
  40479. extra: 1438/1390,
  40480. bottom: 47/1485
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(5 + 2/12, "feet"),
  40488. default: true
  40489. },
  40490. {
  40491. name: "Macro",
  40492. height: math.unit(128, "feet")
  40493. },
  40494. {
  40495. name: "Megamacro",
  40496. height: math.unit(2.56, "miles")
  40497. },
  40498. ]
  40499. ))
  40500. characterMakers.push(() => makeCharacter(
  40501. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40502. {
  40503. front: {
  40504. height: math.unit(7, "feet"),
  40505. name: "Front",
  40506. image: {
  40507. source: "./media/characters/fox/front.svg",
  40508. extra: 1798/1703,
  40509. bottom: 55/1853
  40510. }
  40511. },
  40512. back: {
  40513. height: math.unit(7, "feet"),
  40514. name: "Back",
  40515. image: {
  40516. source: "./media/characters/fox/back.svg",
  40517. extra: 1748/1649,
  40518. bottom: 32/1780
  40519. }
  40520. },
  40521. head: {
  40522. height: math.unit(1.95, "feet"),
  40523. name: "Head",
  40524. image: {
  40525. source: "./media/characters/fox/head.svg"
  40526. }
  40527. },
  40528. dick: {
  40529. height: math.unit(1.33, "feet"),
  40530. name: "Dick",
  40531. image: {
  40532. source: "./media/characters/fox/dick.svg"
  40533. }
  40534. },
  40535. foot: {
  40536. height: math.unit(1, "feet"),
  40537. name: "Foot",
  40538. image: {
  40539. source: "./media/characters/fox/foot.svg"
  40540. }
  40541. },
  40542. paw: {
  40543. height: math.unit(0.92, "feet"),
  40544. name: "Paw",
  40545. image: {
  40546. source: "./media/characters/fox/paw.svg"
  40547. }
  40548. },
  40549. },
  40550. [
  40551. {
  40552. name: "Small",
  40553. height: math.unit(3, "inches")
  40554. },
  40555. {
  40556. name: "\"Realistic\"",
  40557. height: math.unit(7, "feet")
  40558. },
  40559. {
  40560. name: "Normal",
  40561. height: math.unit(150, "feet"),
  40562. default: true
  40563. },
  40564. {
  40565. name: "BIG",
  40566. height: math.unit(1200, "feet")
  40567. },
  40568. {
  40569. name: "👀",
  40570. height: math.unit(5, "miles")
  40571. },
  40572. {
  40573. name: "👀👀👀",
  40574. height: math.unit(64, "miles")
  40575. },
  40576. ]
  40577. ))
  40578. characterMakers.push(() => makeCharacter(
  40579. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40580. {
  40581. front: {
  40582. height: math.unit(625, "feet"),
  40583. name: "Front",
  40584. image: {
  40585. source: "./media/characters/asonja-rossa/front.svg",
  40586. extra: 1833/1686,
  40587. bottom: 24/1857
  40588. }
  40589. },
  40590. back: {
  40591. height: math.unit(625, "feet"),
  40592. name: "Back",
  40593. image: {
  40594. source: "./media/characters/asonja-rossa/back.svg",
  40595. extra: 1852/1753,
  40596. bottom: 26/1878
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Macro",
  40603. height: math.unit(625, "feet"),
  40604. default: true
  40605. },
  40606. ]
  40607. ))
  40608. characterMakers.push(() => makeCharacter(
  40609. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40610. {
  40611. side: {
  40612. height: math.unit(8, "feet"),
  40613. name: "Side",
  40614. image: {
  40615. source: "./media/characters/rezukii/side.svg",
  40616. extra: 979/542,
  40617. bottom: 87/1066
  40618. }
  40619. },
  40620. sitting: {
  40621. height: math.unit(14.6, "feet"),
  40622. name: "Sitting",
  40623. image: {
  40624. source: "./media/characters/rezukii/sitting.svg",
  40625. extra: 1023/813,
  40626. bottom: 45/1068
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Tiny",
  40633. height: math.unit(2, "feet")
  40634. },
  40635. {
  40636. name: "Smol",
  40637. height: math.unit(4, "feet")
  40638. },
  40639. {
  40640. name: "Normal",
  40641. height: math.unit(8, "feet"),
  40642. default: true
  40643. },
  40644. {
  40645. name: "Big",
  40646. height: math.unit(12, "feet")
  40647. },
  40648. {
  40649. name: "Macro",
  40650. height: math.unit(30, "feet")
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40656. {
  40657. front: {
  40658. height: math.unit(14, "feet"),
  40659. weight: math.unit(9.5, "tonnes"),
  40660. name: "Front",
  40661. image: {
  40662. source: "./media/characters/dawnheart/front.svg",
  40663. extra: 2792/2675,
  40664. bottom: 64/2856
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Normal",
  40671. height: math.unit(14, "feet"),
  40672. default: true
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40678. {
  40679. front: {
  40680. height: math.unit(1.7, "m"),
  40681. name: "Front",
  40682. image: {
  40683. source: "./media/characters/gladi/front.svg",
  40684. extra: 1460/1362,
  40685. bottom: 19/1479
  40686. }
  40687. },
  40688. back: {
  40689. height: math.unit(1.7, "m"),
  40690. name: "Back",
  40691. image: {
  40692. source: "./media/characters/gladi/back.svg",
  40693. extra: 1459/1357,
  40694. bottom: 12/1471
  40695. }
  40696. },
  40697. feral: {
  40698. height: math.unit(2.05, "m"),
  40699. name: "Feral",
  40700. image: {
  40701. source: "./media/characters/gladi/feral.svg",
  40702. extra: 821/557,
  40703. bottom: 91/912
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Shortest",
  40710. height: math.unit(70, "cm")
  40711. },
  40712. {
  40713. name: "Normal",
  40714. height: math.unit(1.7, "m")
  40715. },
  40716. {
  40717. name: "Macro",
  40718. height: math.unit(10, "m"),
  40719. default: true
  40720. },
  40721. {
  40722. name: "Tallest",
  40723. height: math.unit(200, "m")
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40729. {
  40730. front: {
  40731. height: math.unit(5 + 7/12, "feet"),
  40732. weight: math.unit(2, "tons"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/erdno/front.svg",
  40736. extra: 1234/1129,
  40737. bottom: 35/1269
  40738. }
  40739. },
  40740. angled: {
  40741. height: math.unit(5 + 7/12, "feet"),
  40742. weight: math.unit(2, "tons"),
  40743. name: "Angled",
  40744. image: {
  40745. source: "./media/characters/erdno/angled.svg",
  40746. extra: 1185/1139,
  40747. bottom: 36/1221
  40748. }
  40749. },
  40750. side: {
  40751. height: math.unit(5 + 7/12, "feet"),
  40752. weight: math.unit(2, "tons"),
  40753. name: "Side",
  40754. image: {
  40755. source: "./media/characters/erdno/side.svg",
  40756. extra: 1191/1144,
  40757. bottom: 40/1231
  40758. }
  40759. },
  40760. back: {
  40761. height: math.unit(5 + 7/12, "feet"),
  40762. weight: math.unit(2, "tons"),
  40763. name: "Back",
  40764. image: {
  40765. source: "./media/characters/erdno/back.svg",
  40766. extra: 1202/1146,
  40767. bottom: 17/1219
  40768. }
  40769. },
  40770. frontNsfw: {
  40771. height: math.unit(5 + 7/12, "feet"),
  40772. weight: math.unit(2, "tons"),
  40773. name: "Front (NSFW)",
  40774. image: {
  40775. source: "./media/characters/erdno/front-nsfw.svg",
  40776. extra: 1234/1129,
  40777. bottom: 35/1269
  40778. }
  40779. },
  40780. angledNsfw: {
  40781. height: math.unit(5 + 7/12, "feet"),
  40782. weight: math.unit(2, "tons"),
  40783. name: "Angled (NSFW)",
  40784. image: {
  40785. source: "./media/characters/erdno/angled-nsfw.svg",
  40786. extra: 1185/1139,
  40787. bottom: 36/1221
  40788. }
  40789. },
  40790. sideNsfw: {
  40791. height: math.unit(5 + 7/12, "feet"),
  40792. weight: math.unit(2, "tons"),
  40793. name: "Side (NSFW)",
  40794. image: {
  40795. source: "./media/characters/erdno/side-nsfw.svg",
  40796. extra: 1191/1144,
  40797. bottom: 40/1231
  40798. }
  40799. },
  40800. backNsfw: {
  40801. height: math.unit(5 + 7/12, "feet"),
  40802. weight: math.unit(2, "tons"),
  40803. name: "Back (NSFW)",
  40804. image: {
  40805. source: "./media/characters/erdno/back-nsfw.svg",
  40806. extra: 1202/1146,
  40807. bottom: 17/1219
  40808. }
  40809. },
  40810. frontHyper: {
  40811. height: math.unit(5 + 7/12, "feet"),
  40812. weight: math.unit(2, "tons"),
  40813. name: "Front (Hyper)",
  40814. image: {
  40815. source: "./media/characters/erdno/front-hyper.svg",
  40816. extra: 1298/1136,
  40817. bottom: 35/1333
  40818. }
  40819. },
  40820. },
  40821. [
  40822. {
  40823. name: "Normal",
  40824. height: math.unit(5 + 7/12, "feet"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Big",
  40829. height: math.unit(5.7, "meters")
  40830. },
  40831. {
  40832. name: "Macro",
  40833. height: math.unit(5.7, "kilometers")
  40834. },
  40835. {
  40836. name: "Megamacro",
  40837. height: math.unit(5.7, "earths")
  40838. },
  40839. ]
  40840. ))
  40841. characterMakers.push(() => makeCharacter(
  40842. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40843. {
  40844. front: {
  40845. height: math.unit(5 + 10/12, "feet"),
  40846. weight: math.unit(150, "lb"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/jamie/front.svg",
  40850. extra: 1908/1768,
  40851. bottom: 19/1927
  40852. }
  40853. },
  40854. },
  40855. [
  40856. {
  40857. name: "Minimum",
  40858. height: math.unit(2, "cm")
  40859. },
  40860. {
  40861. name: "Micro",
  40862. height: math.unit(3, "inches")
  40863. },
  40864. {
  40865. name: "Normal",
  40866. height: math.unit(5 + 10/12, "feet"),
  40867. default: true
  40868. },
  40869. {
  40870. name: "Macro",
  40871. height: math.unit(150, "feet")
  40872. },
  40873. {
  40874. name: "Megamacro",
  40875. height: math.unit(10000, "m")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(2, "meters"),
  40884. weight: math.unit(100, "kg"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/shiron/front.svg",
  40888. extra: 2103/1985,
  40889. bottom: 98/2201
  40890. }
  40891. },
  40892. back: {
  40893. height: math.unit(2, "meters"),
  40894. weight: math.unit(100, "kg"),
  40895. name: "Back",
  40896. image: {
  40897. source: "./media/characters/shiron/back.svg",
  40898. extra: 2110/2015,
  40899. bottom: 89/2199
  40900. }
  40901. },
  40902. hand: {
  40903. height: math.unit(0.96, "feet"),
  40904. name: "Hand",
  40905. image: {
  40906. source: "./media/characters/shiron/hand.svg"
  40907. }
  40908. },
  40909. foot: {
  40910. height: math.unit(1.464, "feet"),
  40911. name: "Foot",
  40912. image: {
  40913. source: "./media/characters/shiron/foot.svg"
  40914. }
  40915. },
  40916. },
  40917. [
  40918. {
  40919. name: "Normal",
  40920. height: math.unit(2, "meters")
  40921. },
  40922. {
  40923. name: "Macro",
  40924. height: math.unit(500, "meters"),
  40925. default: true
  40926. },
  40927. {
  40928. name: "Megamacro",
  40929. height: math.unit(20, "km")
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(6, "feet"),
  40938. name: "Front",
  40939. image: {
  40940. source: "./media/characters/sam/front.svg",
  40941. extra: 849/826,
  40942. bottom: 19/868
  40943. }
  40944. },
  40945. },
  40946. [
  40947. {
  40948. name: "Normal",
  40949. height: math.unit(6, "feet"),
  40950. default: true
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40956. {
  40957. front: {
  40958. height: math.unit(8 + 4/12, "feet"),
  40959. weight: math.unit(122, "kg"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/namori-kurogawa/front.svg",
  40963. extra: 1894/1576,
  40964. bottom: 34/1928
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(8 + 4/12, "feet"),
  40972. default: true
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40978. {
  40979. front: {
  40980. height: math.unit(9, "feet"),
  40981. weight: math.unit(621, "lb"),
  40982. name: "Front",
  40983. image: {
  40984. source: "./media/characters/unmru/front.svg",
  40985. extra: 1853/1747,
  40986. bottom: 73/1926
  40987. }
  40988. },
  40989. side: {
  40990. height: math.unit(9, "feet"),
  40991. weight: math.unit(621, "lb"),
  40992. name: "Side",
  40993. image: {
  40994. source: "./media/characters/unmru/side.svg",
  40995. extra: 1781/1671,
  40996. bottom: 127/1908
  40997. }
  40998. },
  40999. back: {
  41000. height: math.unit(9, "feet"),
  41001. weight: math.unit(621, "lb"),
  41002. name: "Back",
  41003. image: {
  41004. source: "./media/characters/unmru/back.svg",
  41005. extra: 1894/1765,
  41006. bottom: 75/1969
  41007. }
  41008. },
  41009. dick: {
  41010. height: math.unit(3, "feet"),
  41011. weight: math.unit(35, "lb"),
  41012. name: "Dick",
  41013. image: {
  41014. source: "./media/characters/unmru/dick.svg"
  41015. }
  41016. },
  41017. },
  41018. [
  41019. {
  41020. name: "Normal",
  41021. height: math.unit(9, "feet")
  41022. },
  41023. {
  41024. name: "Natural",
  41025. height: math.unit(27, "feet"),
  41026. default: true
  41027. },
  41028. {
  41029. name: "Giant",
  41030. height: math.unit(90, "feet")
  41031. },
  41032. {
  41033. name: "Kaiju",
  41034. height: math.unit(270, "feet")
  41035. },
  41036. {
  41037. name: "Macro",
  41038. height: math.unit(900, "feet")
  41039. },
  41040. {
  41041. name: "Macro+",
  41042. height: math.unit(2700, "feet")
  41043. },
  41044. {
  41045. name: "Megamacro",
  41046. height: math.unit(9000, "feet")
  41047. },
  41048. {
  41049. name: "City-Crushing",
  41050. height: math.unit(27000, "feet")
  41051. },
  41052. {
  41053. name: "Mountain-Mashing",
  41054. height: math.unit(90000, "feet")
  41055. },
  41056. {
  41057. name: "Earth-Eclipsing",
  41058. height: math.unit(2.7e8, "feet")
  41059. },
  41060. {
  41061. name: "Sol-Swallowing",
  41062. height: math.unit(9e10, "feet")
  41063. },
  41064. {
  41065. name: "Majoris-Munching",
  41066. height: math.unit(2.7e13, "feet")
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41072. {
  41073. front: {
  41074. height: math.unit(1, "inch"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/squeaks-mouse/front.svg",
  41078. extra: 352/308,
  41079. bottom: 25/377
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Micro",
  41086. height: math.unit(1, "inch"),
  41087. default: true
  41088. },
  41089. ]
  41090. ))
  41091. characterMakers.push(() => makeCharacter(
  41092. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41093. {
  41094. side: {
  41095. height: math.unit(35, "feet"),
  41096. name: "Side",
  41097. image: {
  41098. source: "./media/characters/sayko/side.svg",
  41099. extra: 1697/1021,
  41100. bottom: 82/1779
  41101. }
  41102. },
  41103. head: {
  41104. height: math.unit(16, "feet"),
  41105. name: "Head",
  41106. image: {
  41107. source: "./media/characters/sayko/head.svg"
  41108. }
  41109. },
  41110. forepaw: {
  41111. height: math.unit(7.85, "feet"),
  41112. name: "Forepaw",
  41113. image: {
  41114. source: "./media/characters/sayko/forepaw.svg"
  41115. }
  41116. },
  41117. hindpaw: {
  41118. height: math.unit(8.8, "feet"),
  41119. name: "Hindpaw",
  41120. image: {
  41121. source: "./media/characters/sayko/hindpaw.svg"
  41122. }
  41123. },
  41124. },
  41125. [
  41126. {
  41127. name: "Normal",
  41128. height: math.unit(35, "feet"),
  41129. default: true
  41130. },
  41131. {
  41132. name: "Colossus",
  41133. height: math.unit(100, "meters")
  41134. },
  41135. {
  41136. name: "\"Small\" Deity",
  41137. height: math.unit(1, "km")
  41138. },
  41139. {
  41140. name: "\"Large\" Deity",
  41141. height: math.unit(15, "km")
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41147. {
  41148. front: {
  41149. height: math.unit(6, "feet"),
  41150. weight: math.unit(250, "lb"),
  41151. name: "Front",
  41152. image: {
  41153. source: "./media/characters/mukiro/front.svg",
  41154. extra: 1368/1310,
  41155. bottom: 34/1402
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Normal",
  41162. height: math.unit(6, "feet"),
  41163. default: true
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(12 + 4/12, "feet"),
  41172. name: "Front",
  41173. image: {
  41174. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41175. extra: 1346/1311,
  41176. bottom: 65/1411
  41177. }
  41178. },
  41179. },
  41180. [
  41181. {
  41182. name: "Base",
  41183. height: math.unit(12 + 4/12, "feet"),
  41184. default: true
  41185. },
  41186. {
  41187. name: "Macro",
  41188. height: math.unit(150, "feet")
  41189. },
  41190. {
  41191. name: "Mega",
  41192. height: math.unit(2, "miles")
  41193. },
  41194. {
  41195. name: "Demi God",
  41196. height: math.unit(4, "AU")
  41197. },
  41198. {
  41199. name: "God Size",
  41200. height: math.unit(1, "universe")
  41201. },
  41202. ]
  41203. ))
  41204. characterMakers.push(() => makeCharacter(
  41205. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41206. {
  41207. front: {
  41208. height: math.unit(3 + 3/12, "feet"),
  41209. weight: math.unit(88, "lb"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/trey/front.svg",
  41213. extra: 1815/1509,
  41214. bottom: 60/1875
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Normal",
  41221. height: math.unit(3 + 3/12, "feet"),
  41222. default: true
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41228. {
  41229. front: {
  41230. height: math.unit(4, "meters"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/adelonda/front.svg",
  41234. extra: 1077/982,
  41235. bottom: 39/1116
  41236. }
  41237. },
  41238. back: {
  41239. height: math.unit(4, "meters"),
  41240. name: "Back",
  41241. image: {
  41242. source: "./media/characters/adelonda/back.svg",
  41243. extra: 1105/1003,
  41244. bottom: 25/1130
  41245. }
  41246. },
  41247. feral: {
  41248. height: math.unit(40/1.5, "meters"),
  41249. name: "Feral",
  41250. image: {
  41251. source: "./media/characters/adelonda/feral.svg",
  41252. extra: 597/271,
  41253. bottom: 387/984
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Normal",
  41260. height: math.unit(4, "meters"),
  41261. default: true
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(8 + 4/12, "feet"),
  41270. weight: math.unit(670, "lb"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/acadiel/front.svg",
  41274. extra: 1901/1595,
  41275. bottom: 142/2043
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(8 + 4/12, "feet"),
  41283. default: true
  41284. },
  41285. {
  41286. name: "Macro",
  41287. height: math.unit(200, "feet")
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(6 + 2/12, "feet"),
  41296. weight: math.unit(185, "lb"),
  41297. name: "Front",
  41298. image: {
  41299. source: "./media/characters/kayne-ein/front.svg",
  41300. extra: 1780/1560,
  41301. bottom: 81/1861
  41302. }
  41303. },
  41304. },
  41305. [
  41306. {
  41307. name: "Normal",
  41308. height: math.unit(6 + 2/12, "feet"),
  41309. default: true
  41310. },
  41311. {
  41312. name: "Transformation Stage",
  41313. height: math.unit(15, "feet")
  41314. },
  41315. {
  41316. name: "Macro",
  41317. height: math.unit(150, "feet")
  41318. },
  41319. {
  41320. name: "Earth's Shadow",
  41321. height: math.unit(6200, "miles")
  41322. },
  41323. {
  41324. name: "Universal Demon",
  41325. height: math.unit(28e9, "parsecs")
  41326. },
  41327. {
  41328. name: "Multiverse God",
  41329. height: math.unit(3, "multiverses")
  41330. },
  41331. ]
  41332. ))
  41333. characterMakers.push(() => makeCharacter(
  41334. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41335. {
  41336. front: {
  41337. height: math.unit(5 + 5/12, "feet"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/fawn/front.svg",
  41341. extra: 1873/1731,
  41342. bottom: 95/1968
  41343. }
  41344. },
  41345. back: {
  41346. height: math.unit(5 + 5/12, "feet"),
  41347. name: "Back",
  41348. image: {
  41349. source: "./media/characters/fawn/back.svg",
  41350. extra: 1813/1700,
  41351. bottom: 14/1827
  41352. }
  41353. },
  41354. hoof: {
  41355. height: math.unit(1.45, "feet"),
  41356. name: "Hoof",
  41357. image: {
  41358. source: "./media/characters/fawn/hoof.svg"
  41359. }
  41360. },
  41361. },
  41362. [
  41363. {
  41364. name: "Normal",
  41365. height: math.unit(5 + 5/12, "feet"),
  41366. default: true
  41367. },
  41368. ]
  41369. ))
  41370. characterMakers.push(() => makeCharacter(
  41371. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41372. {
  41373. front: {
  41374. height: math.unit(2 + 5/12, "feet"),
  41375. name: "Front",
  41376. image: {
  41377. source: "./media/characters/orion/front.svg",
  41378. extra: 1366/1304,
  41379. bottom: 43/1409
  41380. }
  41381. },
  41382. paw: {
  41383. height: math.unit(0.52, "feet"),
  41384. name: "Paw",
  41385. image: {
  41386. source: "./media/characters/orion/paw.svg"
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(2 + 5/12, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41400. {
  41401. front: {
  41402. height: math.unit(5 + 10/12, "feet"),
  41403. name: "Front",
  41404. image: {
  41405. source: "./media/characters/vera/front.svg",
  41406. extra: 1680/1575,
  41407. bottom: 49/1729
  41408. }
  41409. },
  41410. back: {
  41411. height: math.unit(5 + 10/12, "feet"),
  41412. name: "Back",
  41413. image: {
  41414. source: "./media/characters/vera/back.svg",
  41415. extra: 1700/1588,
  41416. bottom: 18/1718
  41417. }
  41418. },
  41419. arcanine: {
  41420. height: math.unit(6 + 8/12, "feet"),
  41421. name: "Arcanine",
  41422. image: {
  41423. source: "./media/characters/vera/arcanine.svg",
  41424. extra: 1590/1511,
  41425. bottom: 71/1661
  41426. }
  41427. },
  41428. maw: {
  41429. height: math.unit(0.82, "feet"),
  41430. name: "Maw",
  41431. image: {
  41432. source: "./media/characters/vera/maw.svg"
  41433. }
  41434. },
  41435. mawArcanine: {
  41436. height: math.unit(0.97, "feet"),
  41437. name: "Maw (Arcanine)",
  41438. image: {
  41439. source: "./media/characters/vera/maw-arcanine.svg"
  41440. }
  41441. },
  41442. paw: {
  41443. height: math.unit(0.75, "feet"),
  41444. name: "Paw",
  41445. image: {
  41446. source: "./media/characters/vera/paw.svg"
  41447. }
  41448. },
  41449. pawprint: {
  41450. height: math.unit(0.52, "feet"),
  41451. name: "Pawprint",
  41452. image: {
  41453. source: "./media/characters/vera/pawprint.svg"
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(5 + 10/12, "feet"),
  41461. default: true
  41462. },
  41463. {
  41464. name: "Macro",
  41465. height: math.unit(75, "feet")
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(4, "feet"),
  41474. weight: math.unit(40, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/orvan-rabbit/front.svg",
  41478. extra: 1896/1642,
  41479. bottom: 29/1925
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(4, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(6, "feet"),
  41496. weight: math.unit(168, "lb"),
  41497. name: "Front",
  41498. image: {
  41499. source: "./media/characters/lisa/front.svg",
  41500. extra: 2065/1867,
  41501. bottom: 46/2111
  41502. }
  41503. },
  41504. back: {
  41505. height: math.unit(6, "feet"),
  41506. weight: math.unit(168, "lb"),
  41507. name: "Back",
  41508. image: {
  41509. source: "./media/characters/lisa/back.svg",
  41510. extra: 1982/1838,
  41511. bottom: 29/2011
  41512. }
  41513. },
  41514. maw: {
  41515. height: math.unit(0.81, "feet"),
  41516. name: "Maw",
  41517. image: {
  41518. source: "./media/characters/lisa/maw.svg"
  41519. }
  41520. },
  41521. paw: {
  41522. height: math.unit(0.9, "feet"),
  41523. name: "Paw",
  41524. image: {
  41525. source: "./media/characters/lisa/paw.svg"
  41526. }
  41527. },
  41528. caribousune: {
  41529. height: math.unit(7 + 2/12, "feet"),
  41530. weight: math.unit(268, "lb"),
  41531. name: "Caribousune",
  41532. image: {
  41533. source: "./media/characters/lisa/caribousune.svg",
  41534. extra: 1843/1633,
  41535. bottom: 29/1872
  41536. }
  41537. },
  41538. frontCaribousune: {
  41539. height: math.unit(7 + 2/12, "feet"),
  41540. weight: math.unit(268, "lb"),
  41541. name: "Front (Caribousune)",
  41542. image: {
  41543. source: "./media/characters/lisa/front-caribousune.svg",
  41544. extra: 1818/1638,
  41545. bottom: 52/1870
  41546. }
  41547. },
  41548. sideCaribousune: {
  41549. height: math.unit(7 + 2/12, "feet"),
  41550. weight: math.unit(268, "lb"),
  41551. name: "Side (Caribousune)",
  41552. image: {
  41553. source: "./media/characters/lisa/side-caribousune.svg",
  41554. extra: 1851/1635,
  41555. bottom: 16/1867
  41556. }
  41557. },
  41558. backCaribousune: {
  41559. height: math.unit(7 + 2/12, "feet"),
  41560. weight: math.unit(268, "lb"),
  41561. name: "Back (Caribousune)",
  41562. image: {
  41563. source: "./media/characters/lisa/back-caribousune.svg",
  41564. extra: 1801/1604,
  41565. bottom: 44/1845
  41566. }
  41567. },
  41568. caribou: {
  41569. height: math.unit(7 + 2/12, "feet"),
  41570. weight: math.unit(268, "lb"),
  41571. name: "Caribou",
  41572. image: {
  41573. source: "./media/characters/lisa/caribou.svg",
  41574. extra: 1843/1633,
  41575. bottom: 29/1872
  41576. }
  41577. },
  41578. frontCaribou: {
  41579. height: math.unit(7 + 2/12, "feet"),
  41580. weight: math.unit(268, "lb"),
  41581. name: "Front (Caribou)",
  41582. image: {
  41583. source: "./media/characters/lisa/front-caribou.svg",
  41584. extra: 1818/1638,
  41585. bottom: 52/1870
  41586. }
  41587. },
  41588. sideCaribou: {
  41589. height: math.unit(7 + 2/12, "feet"),
  41590. weight: math.unit(268, "lb"),
  41591. name: "Side (Caribou)",
  41592. image: {
  41593. source: "./media/characters/lisa/side-caribou.svg",
  41594. extra: 1851/1635,
  41595. bottom: 16/1867
  41596. }
  41597. },
  41598. backCaribou: {
  41599. height: math.unit(7 + 2/12, "feet"),
  41600. weight: math.unit(268, "lb"),
  41601. name: "Back (Caribou)",
  41602. image: {
  41603. source: "./media/characters/lisa/back-caribou.svg",
  41604. extra: 1801/1604,
  41605. bottom: 44/1845
  41606. }
  41607. },
  41608. mawCaribou: {
  41609. height: math.unit(1.45, "feet"),
  41610. name: "Maw (Caribou)",
  41611. image: {
  41612. source: "./media/characters/lisa/maw-caribou.svg"
  41613. }
  41614. },
  41615. mawCaribousune: {
  41616. height: math.unit(1.45, "feet"),
  41617. name: "Maw (Caribousune)",
  41618. image: {
  41619. source: "./media/characters/lisa/maw-caribousune.svg"
  41620. }
  41621. },
  41622. pawCaribousune: {
  41623. height: math.unit(1.61, "feet"),
  41624. name: "Paw (Caribou)",
  41625. image: {
  41626. source: "./media/characters/lisa/paw-caribousune.svg"
  41627. }
  41628. },
  41629. },
  41630. [
  41631. {
  41632. name: "Normal",
  41633. height: math.unit(6, "feet")
  41634. },
  41635. {
  41636. name: "God Size",
  41637. height: math.unit(72, "feet"),
  41638. default: true
  41639. },
  41640. {
  41641. name: "Towering",
  41642. height: math.unit(288, "feet")
  41643. },
  41644. {
  41645. name: "City Size",
  41646. height: math.unit(48384, "feet")
  41647. },
  41648. {
  41649. name: "Continental",
  41650. height: math.unit(4200, "miles")
  41651. },
  41652. {
  41653. name: "Planet Eater",
  41654. height: math.unit(42, "earths")
  41655. },
  41656. {
  41657. name: "Star Swallower",
  41658. height: math.unit(42, "solarradii")
  41659. },
  41660. {
  41661. name: "System Swallower",
  41662. height: math.unit(84000, "AU")
  41663. },
  41664. {
  41665. name: "Galaxy Gobbler",
  41666. height: math.unit(42, "galaxies")
  41667. },
  41668. {
  41669. name: "Universe Devourer",
  41670. height: math.unit(42, "universes")
  41671. },
  41672. {
  41673. name: "Multiverse Muncher",
  41674. height: math.unit(42, "multiverses")
  41675. },
  41676. ]
  41677. ))
  41678. characterMakers.push(() => makeCharacter(
  41679. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41680. {
  41681. front: {
  41682. height: math.unit(36, "feet"),
  41683. name: "Front",
  41684. image: {
  41685. source: "./media/characters/shadow-rat/front.svg",
  41686. extra: 1845/1758,
  41687. bottom: 83/1928
  41688. }
  41689. },
  41690. },
  41691. [
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(36, "feet"),
  41695. default: true
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41701. {
  41702. side: {
  41703. height: math.unit(8, "feet"),
  41704. weight: math.unit(2630, "lb"),
  41705. name: "Side",
  41706. image: {
  41707. source: "./media/characters/torallia/side.svg",
  41708. extra: 2164/2021,
  41709. bottom: 371/2535
  41710. }
  41711. },
  41712. },
  41713. [
  41714. {
  41715. name: "Mortal Interaction",
  41716. height: math.unit(8, "feet")
  41717. },
  41718. {
  41719. name: "Natural",
  41720. height: math.unit(24, "feet"),
  41721. default: true
  41722. },
  41723. {
  41724. name: "Giant",
  41725. height: math.unit(80, "feet")
  41726. },
  41727. {
  41728. name: "Kaiju",
  41729. height: math.unit(240, "feet")
  41730. },
  41731. {
  41732. name: "Macro",
  41733. height: math.unit(800, "feet")
  41734. },
  41735. {
  41736. name: "Macro+",
  41737. height: math.unit(2400, "feet")
  41738. },
  41739. {
  41740. name: "Macro++",
  41741. height: math.unit(8000, "feet")
  41742. },
  41743. {
  41744. name: "City-Crushing",
  41745. height: math.unit(24000, "feet")
  41746. },
  41747. {
  41748. name: "Mountain-Mashing",
  41749. height: math.unit(80000, "feet")
  41750. },
  41751. {
  41752. name: "District Demolisher",
  41753. height: math.unit(240000, "feet")
  41754. },
  41755. {
  41756. name: "Tri-County Terror",
  41757. height: math.unit(800000, "feet")
  41758. },
  41759. {
  41760. name: "State Smasher",
  41761. height: math.unit(2.4e6, "feet")
  41762. },
  41763. {
  41764. name: "Nation Nemesis",
  41765. height: math.unit(8e6, "feet")
  41766. },
  41767. {
  41768. name: "Continent Cracker",
  41769. height: math.unit(2.4e7, "feet")
  41770. },
  41771. {
  41772. name: "Planet-Pillaging",
  41773. height: math.unit(8e7, "feet")
  41774. },
  41775. {
  41776. name: "Earth-Eclipsing",
  41777. height: math.unit(2.4e8, "feet")
  41778. },
  41779. {
  41780. name: "Jovian-Jostling",
  41781. height: math.unit(8e8, "feet")
  41782. },
  41783. {
  41784. name: "Gas Giant Gulper",
  41785. height: math.unit(2.4e9, "feet")
  41786. },
  41787. {
  41788. name: "Astral Annihilator",
  41789. height: math.unit(8e9, "feet")
  41790. },
  41791. {
  41792. name: "Celestial Conqueror",
  41793. height: math.unit(2.4e10, "feet")
  41794. },
  41795. {
  41796. name: "Sol-Swallowing",
  41797. height: math.unit(8e10, "feet")
  41798. },
  41799. {
  41800. name: "Hunter of the Heavens",
  41801. height: math.unit(2.4e13, "feet")
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(10, "feet"),
  41810. weight: math.unit(844, "kilograms"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/rebecca-pawlson/front.svg",
  41814. extra: 1196/1099,
  41815. bottom: 81/1277
  41816. },
  41817. extraAttributes: {
  41818. "pawSize": {
  41819. name: "Paw Size",
  41820. power: 2,
  41821. type: "area",
  41822. base: math.unit(0.2 * 0.375, "meters^2")
  41823. },
  41824. "handSize": {
  41825. name: "Hand Size",
  41826. power: 2,
  41827. type: "area",
  41828. base: math.unit(0.2 * 0.35, "meters^2")
  41829. },
  41830. "breastDiameter": {
  41831. name: "Breast Diameter",
  41832. power: 1,
  41833. type: "length",
  41834. base: math.unit(0.5, "meters")
  41835. },
  41836. "breastVolume": {
  41837. name: "Breast Volume",
  41838. power: 3,
  41839. type: "volume",
  41840. base: math.unit(0.065, "m^3")
  41841. },
  41842. "breastMass": {
  41843. name: "Breast Mass",
  41844. power: 3,
  41845. type: "mass",
  41846. base: math.unit(65, "kg")
  41847. },
  41848. "nippleDiameter": {
  41849. name: "Nipple Diameter",
  41850. power: 1,
  41851. type: "length",
  41852. base: math.unit(0.1, "meters")
  41853. },
  41854. }
  41855. },
  41856. back: {
  41857. height: math.unit(10, "feet"),
  41858. weight: math.unit(844, "kilograms"),
  41859. name: "Back",
  41860. image: {
  41861. source: "./media/characters/rebecca-pawlson/back.svg",
  41862. extra: 879/776,
  41863. bottom: 43/922
  41864. },
  41865. extraAttributes: {
  41866. "pawSize": {
  41867. name: "Paw Size",
  41868. power: 2,
  41869. type: "area",
  41870. base: math.unit(0.2 * 0.375, "meters^2")
  41871. },
  41872. "handSize": {
  41873. name: "Hand Size",
  41874. power: 2,
  41875. type: "area",
  41876. base: math.unit(0.2 * 0.35, "meters^2")
  41877. },
  41878. "breastDiameter": {
  41879. name: "Breast Diameter",
  41880. power: 1,
  41881. type: "length",
  41882. base: math.unit(0.5, "meters")
  41883. },
  41884. "breastVolume": {
  41885. name: "Breast Volume",
  41886. power: 3,
  41887. type: "volume",
  41888. base: math.unit(0.065, "m^3")
  41889. },
  41890. "breastMass": {
  41891. name: "Breast Mass",
  41892. power: 3,
  41893. type: "mass",
  41894. base: math.unit(65, "kg")
  41895. },
  41896. "nippleDiameter": {
  41897. name: "Nipple Diameter",
  41898. power: 1,
  41899. type: "length",
  41900. base: math.unit(0.1, "meters")
  41901. },
  41902. }
  41903. },
  41904. },
  41905. [
  41906. {
  41907. name: "Normal",
  41908. height: math.unit(6 + 8/12, "feet")
  41909. },
  41910. {
  41911. name: "Mini Macro",
  41912. height: math.unit(10, "feet"),
  41913. default: true
  41914. },
  41915. {
  41916. name: "Macro",
  41917. height: math.unit(100, "feet")
  41918. },
  41919. {
  41920. name: "Mega Macro",
  41921. height: math.unit(2500, "feet")
  41922. },
  41923. {
  41924. name: "Giga Macro",
  41925. height: math.unit(50, "miles")
  41926. },
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41931. {
  41932. front: {
  41933. height: math.unit(7 + 6/12, "feet"),
  41934. weight: math.unit(600, "lb"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/moxie-nova/front.svg",
  41938. extra: 1734/1652,
  41939. bottom: 41/1775
  41940. }
  41941. },
  41942. },
  41943. [
  41944. {
  41945. name: "Normal",
  41946. height: math.unit(7 + 6/12, "feet"),
  41947. default: true
  41948. },
  41949. ]
  41950. ))
  41951. characterMakers.push(() => makeCharacter(
  41952. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41953. {
  41954. goat: {
  41955. height: math.unit(4, "feet"),
  41956. weight: math.unit(180, "lb"),
  41957. name: "Goat",
  41958. image: {
  41959. source: "./media/characters/tiffany/goat.svg",
  41960. extra: 1845/1595,
  41961. bottom: 106/1951
  41962. }
  41963. },
  41964. front: {
  41965. height: math.unit(5, "feet"),
  41966. weight: math.unit(150, "lb"),
  41967. name: "Foxcoon",
  41968. image: {
  41969. source: "./media/characters/tiffany/foxcoon.svg",
  41970. extra: 1941/1845,
  41971. bottom: 58/1999
  41972. }
  41973. },
  41974. },
  41975. [
  41976. {
  41977. name: "Normal",
  41978. height: math.unit(5, "feet"),
  41979. default: true
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(8, "feet"),
  41988. weight: math.unit(300, "lb"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/raxinath/front.svg",
  41992. extra: 1407/1309,
  41993. bottom: 39/1446
  41994. }
  41995. },
  41996. back: {
  41997. height: math.unit(8, "feet"),
  41998. weight: math.unit(300, "lb"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/raxinath/back.svg",
  42002. extra: 1405/1315,
  42003. bottom: 9/1414
  42004. }
  42005. },
  42006. },
  42007. [
  42008. {
  42009. name: "Speck",
  42010. height: math.unit(0.5, "nm")
  42011. },
  42012. {
  42013. name: "Micro",
  42014. height: math.unit(3, "inches")
  42015. },
  42016. {
  42017. name: "Kobold",
  42018. height: math.unit(3, "feet")
  42019. },
  42020. {
  42021. name: "Normal",
  42022. height: math.unit(8, "feet"),
  42023. default: true
  42024. },
  42025. {
  42026. name: "Giant",
  42027. height: math.unit(50, "feet")
  42028. },
  42029. {
  42030. name: "Macro",
  42031. height: math.unit(1000, "feet")
  42032. },
  42033. {
  42034. name: "Megamacro",
  42035. height: math.unit(1, "mile")
  42036. },
  42037. ]
  42038. ))
  42039. characterMakers.push(() => makeCharacter(
  42040. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42041. {
  42042. front: {
  42043. height: math.unit(10, "feet"),
  42044. weight: math.unit(1442, "lb"),
  42045. name: "Front",
  42046. image: {
  42047. source: "./media/characters/mal-dragon/front.svg",
  42048. extra: 1515/1444,
  42049. bottom: 113/1628
  42050. }
  42051. },
  42052. back: {
  42053. height: math.unit(10, "feet"),
  42054. weight: math.unit(1442, "lb"),
  42055. name: "Back",
  42056. image: {
  42057. source: "./media/characters/mal-dragon/back.svg",
  42058. extra: 1527/1434,
  42059. bottom: 25/1552
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Mortal Interaction",
  42066. height: math.unit(10, "feet"),
  42067. default: true
  42068. },
  42069. {
  42070. name: "Large",
  42071. height: math.unit(30, "feet")
  42072. },
  42073. {
  42074. name: "Kaiju",
  42075. height: math.unit(300, "feet")
  42076. },
  42077. {
  42078. name: "Megamacro",
  42079. height: math.unit(10000, "feet")
  42080. },
  42081. {
  42082. name: "Continent Cracker",
  42083. height: math.unit(30000000, "feet")
  42084. },
  42085. {
  42086. name: "Sol-Swallowing",
  42087. height: math.unit(1e11, "feet")
  42088. },
  42089. {
  42090. name: "Light Universal",
  42091. height: math.unit(5, "universes")
  42092. },
  42093. {
  42094. name: "Universe Atoms",
  42095. height: math.unit(1.829e9, "universes")
  42096. },
  42097. {
  42098. name: "Light Multiversal",
  42099. height: math.unit(5, "multiverses")
  42100. },
  42101. {
  42102. name: "Multiverse Atoms",
  42103. height: math.unit(1.829e9, "multiverses")
  42104. },
  42105. {
  42106. name: "Fabric of Time",
  42107. height: math.unit(1e262, "multiverses")
  42108. },
  42109. ]
  42110. ))
  42111. characterMakers.push(() => makeCharacter(
  42112. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42113. {
  42114. front: {
  42115. height: math.unit(9, "feet"),
  42116. weight: math.unit(1050, "lb"),
  42117. name: "Front",
  42118. image: {
  42119. source: "./media/characters/tabitha/front.svg",
  42120. extra: 2083/1994,
  42121. bottom: 68/2151
  42122. }
  42123. },
  42124. },
  42125. [
  42126. {
  42127. name: "Baseline",
  42128. height: math.unit(9, "feet"),
  42129. default: true
  42130. },
  42131. {
  42132. name: "Giant",
  42133. height: math.unit(90, "feet")
  42134. },
  42135. {
  42136. name: "Macro",
  42137. height: math.unit(900, "feet")
  42138. },
  42139. {
  42140. name: "Megamacro",
  42141. height: math.unit(9000, "feet")
  42142. },
  42143. {
  42144. name: "City-Crushing",
  42145. height: math.unit(27000, "feet")
  42146. },
  42147. {
  42148. name: "Mountain-Mashing",
  42149. height: math.unit(90000, "feet")
  42150. },
  42151. {
  42152. name: "Nation Nemesis",
  42153. height: math.unit(9e6, "feet")
  42154. },
  42155. {
  42156. name: "Continent Cracker",
  42157. height: math.unit(27e6, "feet")
  42158. },
  42159. {
  42160. name: "Earth-Eclipsing",
  42161. height: math.unit(2.7e8, "feet")
  42162. },
  42163. {
  42164. name: "Gas Giant Gulper",
  42165. height: math.unit(2.7e9, "feet")
  42166. },
  42167. {
  42168. name: "Sol-Swallowing",
  42169. height: math.unit(9e10, "feet")
  42170. },
  42171. {
  42172. name: "Galaxy Gulper",
  42173. height: math.unit(9, "galaxies")
  42174. },
  42175. {
  42176. name: "Cosmos Churner",
  42177. height: math.unit(9, "universes")
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(160, "cm"),
  42186. weight: math.unit(55, "kg"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/tow/front.svg",
  42190. extra: 1751/1722,
  42191. bottom: 74/1825
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Norm",
  42198. height: math.unit(160, "cm")
  42199. },
  42200. {
  42201. name: "Casual",
  42202. height: math.unit(3200, "m"),
  42203. default: true
  42204. },
  42205. {
  42206. name: "Show-Off",
  42207. height: math.unit(160, "km")
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42213. {
  42214. front: {
  42215. height: math.unit(7 + 11/12, "feet"),
  42216. weight: math.unit(342.8, "lb"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/vivian-orca-dragon/front.svg",
  42220. extra: 1890/1865,
  42221. bottom: 28/1918
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Micro",
  42228. height: math.unit(5, "inches")
  42229. },
  42230. {
  42231. name: "Normal",
  42232. height: math.unit(7 + 11/12, "feet"),
  42233. default: true
  42234. },
  42235. {
  42236. name: "Macro",
  42237. height: math.unit(395 + 7/12, "feet")
  42238. },
  42239. ]
  42240. ))
  42241. characterMakers.push(() => makeCharacter(
  42242. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42243. {
  42244. side: {
  42245. height: math.unit(10, "feet"),
  42246. weight: math.unit(1442, "lb"),
  42247. name: "Side",
  42248. image: {
  42249. source: "./media/characters/lotherakon/side.svg",
  42250. extra: 1604/1497,
  42251. bottom: 89/1693
  42252. }
  42253. },
  42254. },
  42255. [
  42256. {
  42257. name: "Mortal Interaction",
  42258. height: math.unit(10, "feet")
  42259. },
  42260. {
  42261. name: "Large",
  42262. height: math.unit(30, "feet"),
  42263. default: true
  42264. },
  42265. {
  42266. name: "Giant",
  42267. height: math.unit(100, "feet")
  42268. },
  42269. {
  42270. name: "Kaiju",
  42271. height: math.unit(300, "feet")
  42272. },
  42273. {
  42274. name: "Macro",
  42275. height: math.unit(1000, "feet")
  42276. },
  42277. {
  42278. name: "Macro+",
  42279. height: math.unit(3000, "feet")
  42280. },
  42281. {
  42282. name: "Megamacro",
  42283. height: math.unit(10000, "feet")
  42284. },
  42285. {
  42286. name: "City-Crushing",
  42287. height: math.unit(30000, "feet")
  42288. },
  42289. {
  42290. name: "Continent Cracker",
  42291. height: math.unit(30e6, "feet")
  42292. },
  42293. {
  42294. name: "Earth Eclipsing",
  42295. height: math.unit(3e8, "feet")
  42296. },
  42297. {
  42298. name: "Gas Giant Gulper",
  42299. height: math.unit(3e9, "feet")
  42300. },
  42301. {
  42302. name: "Sol-Swallowing",
  42303. height: math.unit(1e11, "feet")
  42304. },
  42305. {
  42306. name: "System Swallower",
  42307. height: math.unit(3e14, "feet")
  42308. },
  42309. {
  42310. name: "Galaxy Gulper",
  42311. height: math.unit(10, "galaxies")
  42312. },
  42313. {
  42314. name: "Light Universal",
  42315. height: math.unit(5, "universes")
  42316. },
  42317. {
  42318. name: "Universe Palm",
  42319. height: math.unit(20, "universes")
  42320. },
  42321. {
  42322. name: "Light Multiversal",
  42323. height: math.unit(5, "multiverses")
  42324. },
  42325. {
  42326. name: "Multiverse Palm",
  42327. height: math.unit(20, "multiverses")
  42328. },
  42329. {
  42330. name: "Inferno Incarnate",
  42331. height: math.unit(1e7, "multiverses")
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(8, "feet"),
  42340. weight: math.unit(1200, "lb"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/malithee/front.svg",
  42344. extra: 1675/1640,
  42345. bottom: 162/1837
  42346. }
  42347. },
  42348. },
  42349. [
  42350. {
  42351. name: "Mortal Interaction",
  42352. height: math.unit(8, "feet"),
  42353. default: true
  42354. },
  42355. {
  42356. name: "Large",
  42357. height: math.unit(24, "feet")
  42358. },
  42359. {
  42360. name: "Kaiju",
  42361. height: math.unit(240, "feet")
  42362. },
  42363. {
  42364. name: "Megamacro",
  42365. height: math.unit(8000, "feet")
  42366. },
  42367. {
  42368. name: "Continent Cracker",
  42369. height: math.unit(24e6, "feet")
  42370. },
  42371. {
  42372. name: "Earth-Eclipsing",
  42373. height: math.unit(2.4e8, "feet")
  42374. },
  42375. {
  42376. name: "Sol-Swallowing",
  42377. height: math.unit(8e10, "feet")
  42378. },
  42379. {
  42380. name: "Galaxy Gulper",
  42381. height: math.unit(8, "galaxies")
  42382. },
  42383. {
  42384. name: "Light Universal",
  42385. height: math.unit(4, "universes")
  42386. },
  42387. {
  42388. name: "Universe Atoms",
  42389. height: math.unit(1.829e9, "universes")
  42390. },
  42391. {
  42392. name: "Light Multiversal",
  42393. height: math.unit(4, "multiverses")
  42394. },
  42395. {
  42396. name: "Multiverse Atoms",
  42397. height: math.unit(1.829e9, "multiverses")
  42398. },
  42399. {
  42400. name: "Nigh-Omnipresence",
  42401. height: math.unit(8e261, "multiverses")
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42407. {
  42408. front: {
  42409. height: math.unit(10, "feet"),
  42410. weight: math.unit(1500, "lb"),
  42411. name: "Front",
  42412. image: {
  42413. source: "./media/characters/miles-thestia/front.svg",
  42414. extra: 1812/1727,
  42415. bottom: 86/1898
  42416. }
  42417. },
  42418. back: {
  42419. height: math.unit(10, "feet"),
  42420. weight: math.unit(1500, "lb"),
  42421. name: "Back",
  42422. image: {
  42423. source: "./media/characters/miles-thestia/back.svg",
  42424. extra: 1799/1690,
  42425. bottom: 47/1846
  42426. }
  42427. },
  42428. frontNsfw: {
  42429. height: math.unit(10, "feet"),
  42430. weight: math.unit(1500, "lb"),
  42431. name: "Front (NSFW)",
  42432. image: {
  42433. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42434. extra: 1812/1727,
  42435. bottom: 86/1898
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Mini-Macro",
  42442. height: math.unit(10, "feet"),
  42443. default: true
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(25, "feet"),
  42452. name: "Front",
  42453. image: {
  42454. source: "./media/characters/titan-s-wulf/front.svg",
  42455. extra: 1560/1484,
  42456. bottom: 76/1636
  42457. }
  42458. },
  42459. },
  42460. [
  42461. {
  42462. name: "Smallest",
  42463. height: math.unit(25, "feet"),
  42464. default: true
  42465. },
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(200, "feet")
  42469. },
  42470. {
  42471. name: "Macro",
  42472. height: math.unit(200000, "feet")
  42473. },
  42474. {
  42475. name: "Multiversal Original",
  42476. height: math.unit(10000, "multiverses")
  42477. },
  42478. ]
  42479. ))
  42480. characterMakers.push(() => makeCharacter(
  42481. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42482. {
  42483. front: {
  42484. height: math.unit(8, "feet"),
  42485. weight: math.unit(553, "lb"),
  42486. name: "Front",
  42487. image: {
  42488. source: "./media/characters/tawendeh/front.svg",
  42489. extra: 2365/2268,
  42490. bottom: 83/2448
  42491. }
  42492. },
  42493. frontClothed: {
  42494. height: math.unit(8, "feet"),
  42495. weight: math.unit(553, "lb"),
  42496. name: "Front (Clothed)",
  42497. image: {
  42498. source: "./media/characters/tawendeh/front-clothed.svg",
  42499. extra: 2365/2268,
  42500. bottom: 83/2448
  42501. }
  42502. },
  42503. back: {
  42504. height: math.unit(8, "feet"),
  42505. weight: math.unit(553, "lb"),
  42506. name: "Back",
  42507. image: {
  42508. source: "./media/characters/tawendeh/back.svg",
  42509. extra: 2397/2294,
  42510. bottom: 42/2439
  42511. }
  42512. },
  42513. },
  42514. [
  42515. {
  42516. name: "Mortal Interaction",
  42517. height: math.unit(8, "feet"),
  42518. default: true
  42519. },
  42520. {
  42521. name: "Giant",
  42522. height: math.unit(80, "feet")
  42523. },
  42524. {
  42525. name: "Macro",
  42526. height: math.unit(800, "feet")
  42527. },
  42528. {
  42529. name: "Megamacro",
  42530. height: math.unit(8000, "feet")
  42531. },
  42532. {
  42533. name: "City-Crushing",
  42534. height: math.unit(24000, "feet")
  42535. },
  42536. {
  42537. name: "Mountain-Mashing",
  42538. height: math.unit(80000, "feet")
  42539. },
  42540. {
  42541. name: "Nation Nemesis",
  42542. height: math.unit(8e6, "feet")
  42543. },
  42544. {
  42545. name: "Continent Cracker",
  42546. height: math.unit(24e6, "feet")
  42547. },
  42548. {
  42549. name: "Earth-Eclipsing",
  42550. height: math.unit(2.4e8, "feet")
  42551. },
  42552. {
  42553. name: "Gas Giant Gulper",
  42554. height: math.unit(2.4e9, "feet")
  42555. },
  42556. {
  42557. name: "Sol-Swallowing",
  42558. height: math.unit(8e10, "feet")
  42559. },
  42560. {
  42561. name: "Galaxy Gulper",
  42562. height: math.unit(8, "galaxies")
  42563. },
  42564. {
  42565. name: "Cosmos Churner",
  42566. height: math.unit(8, "universes")
  42567. },
  42568. {
  42569. name: "Omnipotent Otter",
  42570. height: math.unit(80, "universes")
  42571. },
  42572. ]
  42573. ))
  42574. characterMakers.push(() => makeCharacter(
  42575. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42576. {
  42577. front: {
  42578. height: math.unit(2.6, "meters"),
  42579. weight: math.unit(900, "kg"),
  42580. name: "Front",
  42581. image: {
  42582. source: "./media/characters/neesha/front.svg",
  42583. extra: 1803/1653,
  42584. bottom: 128/1931
  42585. }
  42586. },
  42587. },
  42588. [
  42589. {
  42590. name: "Normal",
  42591. height: math.unit(2.6, "meters"),
  42592. default: true
  42593. },
  42594. {
  42595. name: "Macro",
  42596. height: math.unit(50, "meters")
  42597. },
  42598. ]
  42599. ))
  42600. characterMakers.push(() => makeCharacter(
  42601. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42602. {
  42603. front: {
  42604. height: math.unit(5, "feet"),
  42605. weight: math.unit(185, "lb"),
  42606. name: "Front",
  42607. image: {
  42608. source: "./media/characters/kyera/front.svg",
  42609. extra: 1875/1790,
  42610. bottom: 96/1971
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Normal",
  42617. height: math.unit(5, "feet"),
  42618. default: true
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(7 + 6/12, "feet"),
  42627. weight: math.unit(540, "lb"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/yuko/front.svg",
  42631. extra: 1282/1222,
  42632. bottom: 101/1383
  42633. }
  42634. },
  42635. frontClothed: {
  42636. height: math.unit(7 + 6/12, "feet"),
  42637. weight: math.unit(540, "lb"),
  42638. name: "Front (Clothed)",
  42639. image: {
  42640. source: "./media/characters/yuko/front-clothed.svg",
  42641. extra: 1282/1222,
  42642. bottom: 101/1383
  42643. }
  42644. },
  42645. },
  42646. [
  42647. {
  42648. name: "Normal",
  42649. height: math.unit(7 + 6/12, "feet"),
  42650. default: true
  42651. },
  42652. {
  42653. name: "Macro",
  42654. height: math.unit(26 + 9/12, "feet")
  42655. },
  42656. {
  42657. name: "Megamacro",
  42658. height: math.unit(300, "feet")
  42659. },
  42660. {
  42661. name: "Gigamacro",
  42662. height: math.unit(5000, "feet")
  42663. },
  42664. {
  42665. name: "Planetary",
  42666. height: math.unit(10000, "miles")
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(8 + 2/12, "feet"),
  42675. weight: math.unit(600, "lb"),
  42676. name: "Front",
  42677. image: {
  42678. source: "./media/characters/deam-nitrel/front.svg",
  42679. extra: 1308/1234,
  42680. bottom: 125/1433
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(8 + 2/12, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(6.1, "feet"),
  42697. weight: math.unit(180, "lb"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/skyress/front.svg",
  42701. extra: 1045/915,
  42702. bottom: 28/1073
  42703. }
  42704. },
  42705. maw: {
  42706. height: math.unit(1, "feet"),
  42707. name: "Maw",
  42708. image: {
  42709. source: "./media/characters/skyress/maw.svg"
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(6.1, "feet"),
  42717. default: true
  42718. },
  42719. {
  42720. name: "Macro",
  42721. height: math.unit(200, "feet")
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42727. {
  42728. front: {
  42729. height: math.unit(4 + 2/12, "feet"),
  42730. weight: math.unit(40, "kg"),
  42731. name: "Front",
  42732. image: {
  42733. source: "./media/characters/amethyst-jones/front.svg",
  42734. extra: 1220/1150,
  42735. bottom: 101/1321
  42736. }
  42737. },
  42738. },
  42739. [
  42740. {
  42741. name: "Normal",
  42742. height: math.unit(4 + 2/12, "feet"),
  42743. default: true
  42744. },
  42745. ]
  42746. ))
  42747. characterMakers.push(() => makeCharacter(
  42748. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42749. {
  42750. front: {
  42751. height: math.unit(1.7, "m"),
  42752. weight: math.unit(135, "lb"),
  42753. name: "Front",
  42754. image: {
  42755. source: "./media/characters/jade/front.svg",
  42756. extra: 1818/1767,
  42757. bottom: 32/1850
  42758. }
  42759. },
  42760. back: {
  42761. height: math.unit(1.7, "m"),
  42762. weight: math.unit(135, "lb"),
  42763. name: "Back",
  42764. image: {
  42765. source: "./media/characters/jade/back.svg",
  42766. extra: 1869/1809,
  42767. bottom: 35/1904
  42768. }
  42769. },
  42770. hand: {
  42771. height: math.unit(0.24, "m"),
  42772. name: "Hand",
  42773. image: {
  42774. source: "./media/characters/jade/hand.svg"
  42775. }
  42776. },
  42777. foot: {
  42778. height: math.unit(0.263, "m"),
  42779. name: "Foot",
  42780. image: {
  42781. source: "./media/characters/jade/foot.svg"
  42782. }
  42783. },
  42784. dick: {
  42785. height: math.unit(0.47, "m"),
  42786. name: "Dick",
  42787. image: {
  42788. source: "./media/characters/jade/dick.svg"
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Micro",
  42795. height: math.unit(22, "cm")
  42796. },
  42797. {
  42798. name: "Normal",
  42799. height: math.unit(1.7, "m"),
  42800. default: true
  42801. },
  42802. {
  42803. name: "Macro",
  42804. height: math.unit(152, "m")
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(100, "miles"),
  42813. weight: math.unit(20000, "tons"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/cookie/front.svg",
  42817. extra: 1125/1070,
  42818. bottom: 30/1155
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Big",
  42825. height: math.unit(50, "feet")
  42826. },
  42827. {
  42828. name: "Macro",
  42829. height: math.unit(100, "miles"),
  42830. default: true
  42831. },
  42832. {
  42833. name: "Megamacro",
  42834. height: math.unit(90000, "miles")
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42840. {
  42841. front: {
  42842. height: math.unit(6, "feet"),
  42843. weight: math.unit(145, "lb"),
  42844. name: "Front",
  42845. image: {
  42846. source: "./media/characters/farzian/front.svg",
  42847. extra: 1902/1693,
  42848. bottom: 108/2010
  42849. }
  42850. },
  42851. },
  42852. [
  42853. {
  42854. name: "Macro",
  42855. height: math.unit(500, "feet"),
  42856. default: true
  42857. },
  42858. ]
  42859. ))
  42860. characterMakers.push(() => makeCharacter(
  42861. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42862. {
  42863. front: {
  42864. height: math.unit(3 + 6/12, "feet"),
  42865. weight: math.unit(50, "lb"),
  42866. name: "Front",
  42867. image: {
  42868. source: "./media/characters/kimberly-tilson/front.svg",
  42869. extra: 1400/1322,
  42870. bottom: 36/1436
  42871. }
  42872. },
  42873. back: {
  42874. height: math.unit(3 + 6/12, "feet"),
  42875. weight: math.unit(50, "lb"),
  42876. name: "Back",
  42877. image: {
  42878. source: "./media/characters/kimberly-tilson/back.svg",
  42879. extra: 1370/1307,
  42880. bottom: 20/1390
  42881. }
  42882. },
  42883. },
  42884. [
  42885. {
  42886. name: "Normal",
  42887. height: math.unit(3 + 6/12, "feet"),
  42888. default: true
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42894. {
  42895. front: {
  42896. height: math.unit(350, "meters"),
  42897. weight: math.unit(7.57059e+8, "lb"),
  42898. name: "Front",
  42899. image: {
  42900. source: "./media/characters/harthos/front.svg",
  42901. extra: 455/446,
  42902. bottom: 15/470
  42903. },
  42904. form: "peacekeeper",
  42905. default: true
  42906. },
  42907. allusus_front: {
  42908. height: math.unit(270, "meters"),
  42909. weight: math.unit(3.47550e+8, "lb"),
  42910. name: "Front",
  42911. image: {
  42912. source: "./media/characters/harthos/allusus-front.svg",
  42913. extra: 455/446,
  42914. bottom: 15/470
  42915. },
  42916. form: "allusus",
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Macro",
  42922. height: math.unit(350, "meters"),
  42923. default: true,
  42924. form: "peacekeeper"
  42925. },
  42926. {
  42927. name: "Macro",
  42928. height: math.unit(270, "meters"),
  42929. default: true,
  42930. form: "allusus"
  42931. },
  42932. ],
  42933. {
  42934. "peacekeeper": {
  42935. name: "Peacekeeper",
  42936. default: true
  42937. },
  42938. "allusus": {
  42939. name: "Allusus",
  42940. },
  42941. }
  42942. ))
  42943. characterMakers.push(() => makeCharacter(
  42944. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42945. {
  42946. front: {
  42947. height: math.unit(15, "feet"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/hypatia/front.svg",
  42951. extra: 1653/1591,
  42952. bottom: 79/1732
  42953. }
  42954. },
  42955. },
  42956. [
  42957. {
  42958. name: "Normal",
  42959. height: math.unit(15, "feet")
  42960. },
  42961. {
  42962. name: "Small",
  42963. height: math.unit(300, "feet")
  42964. },
  42965. {
  42966. name: "Macro",
  42967. height: math.unit(2500, "feet"),
  42968. default: true
  42969. },
  42970. {
  42971. name: "Mega Macro",
  42972. height: math.unit(1500, "miles")
  42973. },
  42974. {
  42975. name: "Giga Macro",
  42976. height: math.unit(1.5e6, "miles")
  42977. },
  42978. ]
  42979. ))
  42980. characterMakers.push(() => makeCharacter(
  42981. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42982. {
  42983. front: {
  42984. height: math.unit(6, "feet"),
  42985. weight: math.unit(200, "lb"),
  42986. name: "Front",
  42987. image: {
  42988. source: "./media/characters/wulver/front.svg",
  42989. extra: 1724/1632,
  42990. bottom: 130/1854
  42991. }
  42992. },
  42993. frontNsfw: {
  42994. height: math.unit(6, "feet"),
  42995. weight: math.unit(200, "lb"),
  42996. name: "Front (NSFW)",
  42997. image: {
  42998. source: "./media/characters/wulver/front-nsfw.svg",
  42999. extra: 1724/1632,
  43000. bottom: 130/1854
  43001. }
  43002. },
  43003. },
  43004. [
  43005. {
  43006. name: "Human-Sized",
  43007. height: math.unit(6, "feet")
  43008. },
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(4, "meters"),
  43012. default: true
  43013. },
  43014. {
  43015. name: "Large",
  43016. height: math.unit(6, "m")
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43022. {
  43023. front: {
  43024. height: math.unit(7, "feet"),
  43025. name: "Front",
  43026. image: {
  43027. source: "./media/characters/maru/front.svg",
  43028. extra: 1595/1570,
  43029. bottom: 0/1595
  43030. }
  43031. },
  43032. },
  43033. [
  43034. {
  43035. name: "Normal",
  43036. height: math.unit(7, "feet"),
  43037. default: true
  43038. },
  43039. {
  43040. name: "Macro",
  43041. height: math.unit(700, "feet")
  43042. },
  43043. {
  43044. name: "Mega Macro",
  43045. height: math.unit(25, "miles")
  43046. },
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(6, "feet"),
  43054. weight: math.unit(170, "lb"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/xenon/front.svg",
  43058. extra: 1376/1305,
  43059. bottom: 56/1432
  43060. }
  43061. },
  43062. back: {
  43063. height: math.unit(6, "feet"),
  43064. weight: math.unit(170, "lb"),
  43065. name: "Back",
  43066. image: {
  43067. source: "./media/characters/xenon/back.svg",
  43068. extra: 1328/1259,
  43069. bottom: 95/1423
  43070. }
  43071. },
  43072. maw: {
  43073. height: math.unit(0.52, "feet"),
  43074. name: "Maw",
  43075. image: {
  43076. source: "./media/characters/xenon/maw.svg"
  43077. }
  43078. },
  43079. handLeft: {
  43080. height: math.unit(0.82 * 169 / 153, "feet"),
  43081. name: "Hand (Left)",
  43082. image: {
  43083. source: "./media/characters/xenon/hand-left.svg"
  43084. }
  43085. },
  43086. handRight: {
  43087. height: math.unit(0.82, "feet"),
  43088. name: "Hand (Right)",
  43089. image: {
  43090. source: "./media/characters/xenon/hand-right.svg"
  43091. }
  43092. },
  43093. footLeft: {
  43094. height: math.unit(1.13, "feet"),
  43095. name: "Foot (Left)",
  43096. image: {
  43097. source: "./media/characters/xenon/foot-left.svg"
  43098. }
  43099. },
  43100. footRight: {
  43101. height: math.unit(1.13 * 194 / 196, "feet"),
  43102. name: "Foot (Right)",
  43103. image: {
  43104. source: "./media/characters/xenon/foot-right.svg"
  43105. }
  43106. },
  43107. },
  43108. [
  43109. {
  43110. name: "Micro",
  43111. height: math.unit(0.8, "inches")
  43112. },
  43113. {
  43114. name: "Normal",
  43115. height: math.unit(6, "feet")
  43116. },
  43117. {
  43118. name: "Macro",
  43119. height: math.unit(50, "feet"),
  43120. default: true
  43121. },
  43122. {
  43123. name: "Macro+",
  43124. height: math.unit(250, "feet")
  43125. },
  43126. {
  43127. name: "Megamacro",
  43128. height: math.unit(1500, "feet")
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(7 + 5/12, "feet"),
  43137. name: "Front",
  43138. image: {
  43139. source: "./media/characters/zane/front.svg",
  43140. extra: 1260/1203,
  43141. bottom: 94/1354
  43142. }
  43143. },
  43144. back: {
  43145. height: math.unit(5.05, "feet"),
  43146. name: "Back",
  43147. image: {
  43148. source: "./media/characters/zane/back.svg",
  43149. extra: 893/829,
  43150. bottom: 30/923
  43151. }
  43152. },
  43153. werewolf: {
  43154. height: math.unit(11, "feet"),
  43155. name: "Werewolf",
  43156. image: {
  43157. source: "./media/characters/zane/werewolf.svg",
  43158. extra: 1383/1323,
  43159. bottom: 89/1472
  43160. }
  43161. },
  43162. foot: {
  43163. height: math.unit(1.46, "feet"),
  43164. name: "Foot",
  43165. image: {
  43166. source: "./media/characters/zane/foot.svg"
  43167. }
  43168. },
  43169. footFront: {
  43170. height: math.unit(0.784, "feet"),
  43171. name: "Foot (Front)",
  43172. image: {
  43173. source: "./media/characters/zane/foot-front.svg"
  43174. }
  43175. },
  43176. dick: {
  43177. height: math.unit(1.95, "feet"),
  43178. name: "Dick",
  43179. image: {
  43180. source: "./media/characters/zane/dick.svg"
  43181. }
  43182. },
  43183. dickWerewolf: {
  43184. height: math.unit(3.77, "feet"),
  43185. name: "Dick (Werewolf)",
  43186. image: {
  43187. source: "./media/characters/zane/dick.svg"
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Normal",
  43194. height: math.unit(7 + 5/12, "feet"),
  43195. default: true
  43196. },
  43197. ]
  43198. ))
  43199. characterMakers.push(() => makeCharacter(
  43200. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43201. {
  43202. front: {
  43203. height: math.unit(6 + 2/12, "feet"),
  43204. weight: math.unit(284, "lb"),
  43205. name: "Front",
  43206. image: {
  43207. source: "./media/characters/benni-desparque/front.svg",
  43208. extra: 878/729,
  43209. bottom: 58/936
  43210. }
  43211. },
  43212. back: {
  43213. height: math.unit(6 + 2/12, "feet"),
  43214. weight: math.unit(284, "lb"),
  43215. name: "Back",
  43216. image: {
  43217. source: "./media/characters/benni-desparque/back.svg",
  43218. extra: 901/756,
  43219. bottom: 51/952
  43220. }
  43221. },
  43222. dressed: {
  43223. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43224. weight: math.unit(284, "lb"),
  43225. name: "Dressed",
  43226. image: {
  43227. source: "./media/characters/benni-desparque/dressed.svg",
  43228. extra: 1514/1276,
  43229. bottom: 65/1579
  43230. }
  43231. },
  43232. hand: {
  43233. height: math.unit(1.28, "feet"),
  43234. name: "Hand",
  43235. image: {
  43236. source: "./media/characters/benni-desparque/hand.svg"
  43237. }
  43238. },
  43239. foot: {
  43240. height: math.unit(1.53, "feet"),
  43241. name: "Foot",
  43242. image: {
  43243. source: "./media/characters/benni-desparque/foot.svg"
  43244. }
  43245. },
  43246. aiControlUnit: {
  43247. height: math.unit(0.175, "feet"),
  43248. name: "AI Control Unit",
  43249. image: {
  43250. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Civilian",
  43257. height: math.unit(6 + 2/12, "feet")
  43258. },
  43259. {
  43260. name: "Normal",
  43261. height: math.unit(98, "feet"),
  43262. default: true
  43263. },
  43264. {
  43265. name: "Kaiju Fighter",
  43266. height: math.unit(268, "feet")
  43267. },
  43268. ]
  43269. ))
  43270. characterMakers.push(() => makeCharacter(
  43271. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43272. {
  43273. front: {
  43274. height: math.unit(5, "feet"),
  43275. weight: math.unit(105, "lb"),
  43276. name: "Front",
  43277. image: {
  43278. source: "./media/characters/maxine/front.svg",
  43279. extra: 1386/1250,
  43280. bottom: 71/1457
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(5, "feet"),
  43288. default: true
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43294. {
  43295. front: {
  43296. height: math.unit(11 + 7/12, "feet"),
  43297. weight: math.unit(9576, "lb"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/scaly/front.svg",
  43301. extra: 888/867,
  43302. bottom: 36/924
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(11 + 7/12, "feet"),
  43310. default: true
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43316. {
  43317. front: {
  43318. height: math.unit(6 + 3/12, "feet"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/saelria/front.svg",
  43322. extra: 1243/1138,
  43323. bottom: 46/1289
  43324. }
  43325. },
  43326. },
  43327. [
  43328. {
  43329. name: "Micro",
  43330. height: math.unit(6, "inches"),
  43331. },
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(6 + 3/12, "feet"),
  43335. default: true
  43336. },
  43337. {
  43338. name: "Macro",
  43339. height: math.unit(25, "feet")
  43340. },
  43341. ]
  43342. ))
  43343. characterMakers.push(() => makeCharacter(
  43344. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43345. {
  43346. front: {
  43347. height: math.unit(80, "meters"),
  43348. weight: math.unit(7000, "tonnes"),
  43349. name: "Front",
  43350. image: {
  43351. source: "./media/characters/tef/front.svg",
  43352. extra: 2036/1991,
  43353. bottom: 54/2090
  43354. }
  43355. },
  43356. back: {
  43357. height: math.unit(80, "meters"),
  43358. weight: math.unit(7000, "tonnes"),
  43359. name: "Back",
  43360. image: {
  43361. source: "./media/characters/tef/back.svg",
  43362. extra: 2036/1991,
  43363. bottom: 54/2090
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Macro",
  43370. height: math.unit(80, "meters"),
  43371. default: true
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(13, "feet"),
  43380. weight: math.unit(6, "tons"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/rover/front.svg",
  43384. extra: 1233/1156,
  43385. bottom: 50/1283
  43386. }
  43387. },
  43388. back: {
  43389. height: math.unit(13, "feet"),
  43390. weight: math.unit(6, "tons"),
  43391. name: "Back",
  43392. image: {
  43393. source: "./media/characters/rover/back.svg",
  43394. extra: 1327/1258,
  43395. bottom: 39/1366
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(13, "feet"),
  43403. default: true
  43404. },
  43405. {
  43406. name: "Macro",
  43407. height: math.unit(1300, "feet")
  43408. },
  43409. {
  43410. name: "Megamacro",
  43411. height: math.unit(1300, "miles")
  43412. },
  43413. {
  43414. name: "Gigamacro",
  43415. height: math.unit(1300000, "miles")
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(10, "feet"),
  43424. weight: math.unit(500, "lb"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/ariz/front.svg",
  43428. extra: 461/450,
  43429. bottom: 16/477
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "MiniMacro",
  43436. height: math.unit(10, "feet"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(6, "feet"),
  43446. weight: math.unit(140, "lb"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/sigrun/front.svg",
  43450. extra: 1418/1359,
  43451. bottom: 27/1445
  43452. }
  43453. },
  43454. },
  43455. [
  43456. {
  43457. name: "Macro",
  43458. height: math.unit(35, "feet"),
  43459. default: true
  43460. },
  43461. ]
  43462. ))
  43463. characterMakers.push(() => makeCharacter(
  43464. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43465. {
  43466. front: {
  43467. height: math.unit(6, "feet"),
  43468. weight: math.unit(150, "lb"),
  43469. name: "Front",
  43470. image: {
  43471. source: "./media/characters/numin/front.svg",
  43472. extra: 1433/1388,
  43473. bottom: 12/1445
  43474. }
  43475. },
  43476. },
  43477. [
  43478. {
  43479. name: "Macro",
  43480. height: math.unit(21.5, "km"),
  43481. default: true
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(6, "feet"),
  43490. weight: math.unit(463, "lb"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/melwa/front.svg",
  43494. extra: 1307/1248,
  43495. bottom: 93/1400
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Macro",
  43502. height: math.unit(50, "meters"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43509. {
  43510. front: {
  43511. height: math.unit(325, "feet"),
  43512. name: "Front",
  43513. image: {
  43514. source: "./media/characters/zorkaiju/front.svg",
  43515. extra: 1955/1814,
  43516. bottom: 40/1995
  43517. }
  43518. },
  43519. frontExtended: {
  43520. height: math.unit(325, "feet"),
  43521. name: "Front (Extended)",
  43522. image: {
  43523. source: "./media/characters/zorkaiju/front-extended.svg",
  43524. extra: 1955/1814,
  43525. bottom: 40/1995
  43526. }
  43527. },
  43528. side: {
  43529. height: math.unit(325, "feet"),
  43530. name: "Side",
  43531. image: {
  43532. source: "./media/characters/zorkaiju/side.svg",
  43533. extra: 1495/1396,
  43534. bottom: 17/1512
  43535. }
  43536. },
  43537. sideExtended: {
  43538. height: math.unit(325, "feet"),
  43539. name: "Side (Extended)",
  43540. image: {
  43541. source: "./media/characters/zorkaiju/side-extended.svg",
  43542. extra: 1495/1396,
  43543. bottom: 17/1512
  43544. }
  43545. },
  43546. back: {
  43547. height: math.unit(325, "feet"),
  43548. name: "Back",
  43549. image: {
  43550. source: "./media/characters/zorkaiju/back.svg",
  43551. extra: 1959/1821,
  43552. bottom: 31/1990
  43553. }
  43554. },
  43555. backExtended: {
  43556. height: math.unit(325, "feet"),
  43557. name: "Back (Extended)",
  43558. image: {
  43559. source: "./media/characters/zorkaiju/back-extended.svg",
  43560. extra: 1959/1821,
  43561. bottom: 31/1990
  43562. }
  43563. },
  43564. hand: {
  43565. height: math.unit(58.4, "feet"),
  43566. name: "Hand",
  43567. image: {
  43568. source: "./media/characters/zorkaiju/hand.svg"
  43569. }
  43570. },
  43571. handExtended: {
  43572. height: math.unit(61.4, "feet"),
  43573. name: "Hand (Extended)",
  43574. image: {
  43575. source: "./media/characters/zorkaiju/hand-extended.svg"
  43576. }
  43577. },
  43578. foot: {
  43579. height: math.unit(95, "feet"),
  43580. name: "Foot",
  43581. image: {
  43582. source: "./media/characters/zorkaiju/foot.svg"
  43583. }
  43584. },
  43585. leftArm: {
  43586. height: math.unit(59, "feet"),
  43587. name: "Left Arm",
  43588. image: {
  43589. source: "./media/characters/zorkaiju/left-arm.svg"
  43590. }
  43591. },
  43592. rightArm: {
  43593. height: math.unit(59, "feet"),
  43594. name: "Right Arm",
  43595. image: {
  43596. source: "./media/characters/zorkaiju/right-arm.svg"
  43597. }
  43598. },
  43599. leftArmExtended: {
  43600. height: math.unit(59 * 1.033546, "feet"),
  43601. name: "Left Arm (Extended)",
  43602. image: {
  43603. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43604. }
  43605. },
  43606. rightArmExtended: {
  43607. height: math.unit(59 * 1.0496, "feet"),
  43608. name: "Right Arm (Extended)",
  43609. image: {
  43610. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43611. }
  43612. },
  43613. tail: {
  43614. height: math.unit(104, "feet"),
  43615. name: "Tail",
  43616. image: {
  43617. source: "./media/characters/zorkaiju/tail.svg"
  43618. }
  43619. },
  43620. tailExtended: {
  43621. height: math.unit(104, "feet"),
  43622. name: "Tail (Extended)",
  43623. image: {
  43624. source: "./media/characters/zorkaiju/tail-extended.svg"
  43625. }
  43626. },
  43627. tailBottom: {
  43628. height: math.unit(104, "feet"),
  43629. name: "Tail Bottom",
  43630. image: {
  43631. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43632. }
  43633. },
  43634. crystal: {
  43635. height: math.unit(27.54, "feet"),
  43636. name: "Crystal",
  43637. image: {
  43638. source: "./media/characters/zorkaiju/crystal.svg"
  43639. }
  43640. },
  43641. },
  43642. [
  43643. {
  43644. name: "Kaiju",
  43645. height: math.unit(325, "feet"),
  43646. default: true
  43647. },
  43648. ]
  43649. ))
  43650. characterMakers.push(() => makeCharacter(
  43651. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43652. {
  43653. front: {
  43654. height: math.unit(6 + 1/12, "feet"),
  43655. weight: math.unit(115, "lb"),
  43656. name: "Front",
  43657. image: {
  43658. source: "./media/characters/bailey-belfry/front.svg",
  43659. extra: 1240/1121,
  43660. bottom: 101/1341
  43661. }
  43662. },
  43663. },
  43664. [
  43665. {
  43666. name: "Normal",
  43667. height: math.unit(6 + 1/12, "feet"),
  43668. default: true
  43669. },
  43670. ]
  43671. ))
  43672. characterMakers.push(() => makeCharacter(
  43673. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43674. {
  43675. side: {
  43676. height: math.unit(4, "meters"),
  43677. weight: math.unit(250, "kg"),
  43678. name: "Side",
  43679. image: {
  43680. source: "./media/characters/blacky/side.svg",
  43681. extra: 1027/919,
  43682. bottom: 43/1070
  43683. }
  43684. },
  43685. maw: {
  43686. height: math.unit(1, "meters"),
  43687. name: "Maw",
  43688. image: {
  43689. source: "./media/characters/blacky/maw.svg"
  43690. }
  43691. },
  43692. paw: {
  43693. height: math.unit(1, "meters"),
  43694. name: "Paw",
  43695. image: {
  43696. source: "./media/characters/blacky/paw.svg"
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Normal",
  43703. height: math.unit(4, "meters"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43710. {
  43711. front: {
  43712. height: math.unit(170, "cm"),
  43713. weight: math.unit(66, "kg"),
  43714. name: "Front",
  43715. image: {
  43716. source: "./media/characters/thux-ei/front.svg",
  43717. extra: 1109/1011,
  43718. bottom: 8/1117
  43719. }
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Normal",
  43725. height: math.unit(170, "cm"),
  43726. default: true
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(5, "feet"),
  43735. weight: math.unit(120, "lb"),
  43736. name: "Front",
  43737. image: {
  43738. source: "./media/characters/roxanne-voltaire/front.svg",
  43739. extra: 1901/1779,
  43740. bottom: 53/1954
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(5, "feet"),
  43748. default: true
  43749. },
  43750. {
  43751. name: "Giant",
  43752. height: math.unit(50, "feet")
  43753. },
  43754. {
  43755. name: "Titan",
  43756. height: math.unit(500, "feet")
  43757. },
  43758. {
  43759. name: "Macro",
  43760. height: math.unit(5000, "feet")
  43761. },
  43762. {
  43763. name: "Megamacro",
  43764. height: math.unit(50000, "feet")
  43765. },
  43766. {
  43767. name: "Gigamacro",
  43768. height: math.unit(500000, "feet")
  43769. },
  43770. {
  43771. name: "Teramacro",
  43772. height: math.unit(5e6, "feet")
  43773. },
  43774. ]
  43775. ))
  43776. characterMakers.push(() => makeCharacter(
  43777. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43778. {
  43779. front: {
  43780. height: math.unit(6 + 2/12, "feet"),
  43781. name: "Front",
  43782. image: {
  43783. source: "./media/characters/squeaks/front.svg",
  43784. extra: 1823/1768,
  43785. bottom: 138/1961
  43786. }
  43787. },
  43788. },
  43789. [
  43790. {
  43791. name: "Micro",
  43792. height: math.unit(0.5, "inches")
  43793. },
  43794. {
  43795. name: "Normal",
  43796. height: math.unit(6 + 2/12, "feet"),
  43797. default: true
  43798. },
  43799. {
  43800. name: "Macro",
  43801. height: math.unit(600, "feet")
  43802. },
  43803. ]
  43804. ))
  43805. characterMakers.push(() => makeCharacter(
  43806. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43807. {
  43808. front: {
  43809. height: math.unit(1.72, "meters"),
  43810. name: "Front",
  43811. image: {
  43812. source: "./media/characters/archinger/front.svg",
  43813. extra: 1861/1675,
  43814. bottom: 125/1986
  43815. }
  43816. },
  43817. back: {
  43818. height: math.unit(1.72, "meters"),
  43819. name: "Back",
  43820. image: {
  43821. source: "./media/characters/archinger/back.svg",
  43822. extra: 1844/1701,
  43823. bottom: 104/1948
  43824. }
  43825. },
  43826. cock: {
  43827. height: math.unit(0.59, "feet"),
  43828. name: "Cock",
  43829. image: {
  43830. source: "./media/characters/archinger/cock.svg"
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Normal",
  43837. height: math.unit(1.72, "meters"),
  43838. default: true
  43839. },
  43840. {
  43841. name: "Macro",
  43842. height: math.unit(84, "meters")
  43843. },
  43844. {
  43845. name: "Macro+",
  43846. height: math.unit(112, "meters")
  43847. },
  43848. {
  43849. name: "Macro++",
  43850. height: math.unit(960, "meters")
  43851. },
  43852. {
  43853. name: "Macro+++",
  43854. height: math.unit(4, "km")
  43855. },
  43856. {
  43857. name: "Macro++++",
  43858. height: math.unit(48, "km")
  43859. },
  43860. {
  43861. name: "Macro+++++",
  43862. height: math.unit(4500, "km")
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43868. {
  43869. front: {
  43870. height: math.unit(5 + 5/12, "feet"),
  43871. name: "Front",
  43872. image: {
  43873. source: "./media/characters/alsnapz/front.svg",
  43874. extra: 1157/1065,
  43875. bottom: 42/1199
  43876. }
  43877. },
  43878. },
  43879. [
  43880. {
  43881. name: "Normal",
  43882. height: math.unit(5 + 5/12, "feet"),
  43883. default: true
  43884. },
  43885. ]
  43886. ))
  43887. characterMakers.push(() => makeCharacter(
  43888. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43889. {
  43890. side: {
  43891. height: math.unit(3.2, "earths"),
  43892. name: "Side",
  43893. image: {
  43894. source: "./media/characters/mag/side.svg",
  43895. extra: 1331/1008,
  43896. bottom: 52/1383
  43897. }
  43898. },
  43899. wing: {
  43900. height: math.unit(1.94, "earths"),
  43901. name: "Wing",
  43902. image: {
  43903. source: "./media/characters/mag/wing.svg"
  43904. }
  43905. },
  43906. dick: {
  43907. height: math.unit(1.8, "earths"),
  43908. name: "Dick",
  43909. image: {
  43910. source: "./media/characters/mag/dick.svg"
  43911. }
  43912. },
  43913. ass: {
  43914. height: math.unit(1.33, "earths"),
  43915. name: "Ass",
  43916. image: {
  43917. source: "./media/characters/mag/ass.svg"
  43918. }
  43919. },
  43920. head: {
  43921. height: math.unit(1.1, "earths"),
  43922. name: "Head",
  43923. image: {
  43924. source: "./media/characters/mag/head.svg"
  43925. }
  43926. },
  43927. maw: {
  43928. height: math.unit(1.62, "earths"),
  43929. name: "Maw",
  43930. image: {
  43931. source: "./media/characters/mag/maw.svg"
  43932. }
  43933. },
  43934. },
  43935. [
  43936. {
  43937. name: "Small",
  43938. height: math.unit(162, "feet")
  43939. },
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(3.2, "earths"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43949. {
  43950. front: {
  43951. height: math.unit(512, "feet"),
  43952. weight: math.unit(63509, "tonnes"),
  43953. name: "Front",
  43954. image: {
  43955. source: "./media/characters/vorrel-harroc/front.svg",
  43956. extra: 1075/1063,
  43957. bottom: 62/1137
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Normal",
  43964. height: math.unit(10, "feet")
  43965. },
  43966. {
  43967. name: "Macro",
  43968. height: math.unit(512, "feet"),
  43969. default: true
  43970. },
  43971. {
  43972. name: "Megamacro",
  43973. height: math.unit(256, "miles")
  43974. },
  43975. {
  43976. name: "Gigamacro",
  43977. height: math.unit(4096, "miles")
  43978. },
  43979. ]
  43980. ))
  43981. characterMakers.push(() => makeCharacter(
  43982. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43983. {
  43984. side: {
  43985. height: math.unit(50, "feet"),
  43986. name: "Side",
  43987. image: {
  43988. source: "./media/characters/froimar/side.svg",
  43989. extra: 855/638,
  43990. bottom: 99/954
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Macro",
  43997. height: math.unit(50, "feet"),
  43998. default: true
  43999. },
  44000. ]
  44001. ))
  44002. characterMakers.push(() => makeCharacter(
  44003. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44004. {
  44005. front: {
  44006. height: math.unit(210, "miles"),
  44007. name: "Front",
  44008. image: {
  44009. source: "./media/characters/timothy/front.svg",
  44010. extra: 1007/943,
  44011. bottom: 62/1069
  44012. }
  44013. },
  44014. frontSkirt: {
  44015. height: math.unit(210, "miles"),
  44016. name: "Front (Skirt)",
  44017. image: {
  44018. source: "./media/characters/timothy/front-skirt.svg",
  44019. extra: 1007/943,
  44020. bottom: 62/1069
  44021. }
  44022. },
  44023. frontCoat: {
  44024. height: math.unit(210, "miles"),
  44025. name: "Front (Coat)",
  44026. image: {
  44027. source: "./media/characters/timothy/front-coat.svg",
  44028. extra: 1007/943,
  44029. bottom: 62/1069
  44030. }
  44031. },
  44032. },
  44033. [
  44034. {
  44035. name: "Macro",
  44036. height: math.unit(210, "miles"),
  44037. default: true
  44038. },
  44039. {
  44040. name: "Megamacro",
  44041. height: math.unit(210000, "miles")
  44042. },
  44043. ]
  44044. ))
  44045. characterMakers.push(() => makeCharacter(
  44046. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44047. {
  44048. front: {
  44049. height: math.unit(188, "feet"),
  44050. name: "Front",
  44051. image: {
  44052. source: "./media/characters/pyotr/front.svg",
  44053. extra: 1912/1826,
  44054. bottom: 18/1930
  44055. }
  44056. },
  44057. },
  44058. [
  44059. {
  44060. name: "Macro",
  44061. height: math.unit(188, "feet"),
  44062. default: true
  44063. },
  44064. {
  44065. name: "Megamacro",
  44066. height: math.unit(8, "miles")
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44072. {
  44073. side: {
  44074. height: math.unit(10, "feet"),
  44075. weight: math.unit(4500, "lb"),
  44076. name: "Side",
  44077. image: {
  44078. source: "./media/characters/ackart/side.svg",
  44079. extra: 1776/1668,
  44080. bottom: 116/1892
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Normal",
  44087. height: math.unit(10, "feet"),
  44088. default: true
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44094. {
  44095. side: {
  44096. height: math.unit(21, "feet"),
  44097. name: "Side",
  44098. image: {
  44099. source: "./media/characters/nolow/side.svg",
  44100. extra: 1484/1434,
  44101. bottom: 85/1569
  44102. }
  44103. },
  44104. sideErect: {
  44105. height: math.unit(21, "feet"),
  44106. name: "Side-erect",
  44107. image: {
  44108. source: "./media/characters/nolow/side-erect.svg",
  44109. extra: 1484/1434,
  44110. bottom: 85/1569
  44111. }
  44112. },
  44113. },
  44114. [
  44115. {
  44116. name: "Regular",
  44117. height: math.unit(12, "feet")
  44118. },
  44119. {
  44120. name: "Big Chee",
  44121. height: math.unit(21, "feet"),
  44122. default: true
  44123. },
  44124. ]
  44125. ))
  44126. characterMakers.push(() => makeCharacter(
  44127. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44128. {
  44129. front: {
  44130. height: math.unit(7, "feet"),
  44131. weight: math.unit(250, "lb"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/nines/front.svg",
  44135. extra: 1741/1607,
  44136. bottom: 41/1782
  44137. }
  44138. },
  44139. side: {
  44140. height: math.unit(7, "feet"),
  44141. weight: math.unit(250, "lb"),
  44142. name: "Side",
  44143. image: {
  44144. source: "./media/characters/nines/side.svg",
  44145. extra: 1854/1735,
  44146. bottom: 93/1947
  44147. }
  44148. },
  44149. back: {
  44150. height: math.unit(7, "feet"),
  44151. weight: math.unit(250, "lb"),
  44152. name: "Back",
  44153. image: {
  44154. source: "./media/characters/nines/back.svg",
  44155. extra: 1748/1615,
  44156. bottom: 20/1768
  44157. }
  44158. },
  44159. },
  44160. [
  44161. {
  44162. name: "Megamacro",
  44163. height: math.unit(99, "km"),
  44164. default: true
  44165. },
  44166. ]
  44167. ))
  44168. characterMakers.push(() => makeCharacter(
  44169. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44170. {
  44171. front: {
  44172. height: math.unit(5 + 10/12, "feet"),
  44173. weight: math.unit(210, "lb"),
  44174. name: "Front",
  44175. image: {
  44176. source: "./media/characters/zenith/front.svg",
  44177. extra: 1531/1452,
  44178. bottom: 198/1729
  44179. }
  44180. },
  44181. back: {
  44182. height: math.unit(5 + 10/12, "feet"),
  44183. weight: math.unit(210, "lb"),
  44184. name: "Back",
  44185. image: {
  44186. source: "./media/characters/zenith/back.svg",
  44187. extra: 1571/1487,
  44188. bottom: 75/1646
  44189. }
  44190. },
  44191. },
  44192. [
  44193. {
  44194. name: "Normal",
  44195. height: math.unit(5 + 10/12, "feet"),
  44196. default: true
  44197. }
  44198. ]
  44199. ))
  44200. characterMakers.push(() => makeCharacter(
  44201. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44202. {
  44203. front: {
  44204. height: math.unit(4, "feet"),
  44205. weight: math.unit(60, "lb"),
  44206. name: "Front",
  44207. image: {
  44208. source: "./media/characters/jasper/front.svg",
  44209. extra: 1450/1379,
  44210. bottom: 19/1469
  44211. }
  44212. },
  44213. },
  44214. [
  44215. {
  44216. name: "Normal",
  44217. height: math.unit(4, "feet"),
  44218. default: true
  44219. },
  44220. ]
  44221. ))
  44222. characterMakers.push(() => makeCharacter(
  44223. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44224. {
  44225. front: {
  44226. height: math.unit(6 + 5/12, "feet"),
  44227. weight: math.unit(290, "lb"),
  44228. name: "Front",
  44229. image: {
  44230. source: "./media/characters/tiberius-thyben/front.svg",
  44231. extra: 757/739,
  44232. bottom: 39/796
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Micro",
  44239. height: math.unit(1.5, "inches")
  44240. },
  44241. {
  44242. name: "Normal",
  44243. height: math.unit(6 + 5/12, "feet"),
  44244. default: true
  44245. },
  44246. {
  44247. name: "Macro",
  44248. height: math.unit(300, "feet")
  44249. },
  44250. ]
  44251. ))
  44252. characterMakers.push(() => makeCharacter(
  44253. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44254. {
  44255. front: {
  44256. height: math.unit(5 + 6/12, "feet"),
  44257. weight: math.unit(60, "kg"),
  44258. name: "Front",
  44259. image: {
  44260. source: "./media/characters/sabre/front.svg",
  44261. extra: 738/671,
  44262. bottom: 27/765
  44263. }
  44264. },
  44265. },
  44266. [
  44267. {
  44268. name: "Teeny",
  44269. height: math.unit(2, "inches")
  44270. },
  44271. {
  44272. name: "Smol",
  44273. height: math.unit(8, "inches")
  44274. },
  44275. {
  44276. name: "Normal",
  44277. height: math.unit(5 + 6/12, "feet"),
  44278. default: true
  44279. },
  44280. {
  44281. name: "Mini-Macro",
  44282. height: math.unit(15, "feet")
  44283. },
  44284. {
  44285. name: "Macro",
  44286. height: math.unit(50, "feet")
  44287. },
  44288. ]
  44289. ))
  44290. characterMakers.push(() => makeCharacter(
  44291. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44292. {
  44293. front: {
  44294. height: math.unit(6 + 4/12, "feet"),
  44295. weight: math.unit(170, "lb"),
  44296. name: "Front",
  44297. image: {
  44298. source: "./media/characters/charlie/front.svg",
  44299. extra: 1348/1228,
  44300. bottom: 15/1363
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Macro",
  44307. height: math.unit(1700, "meters"),
  44308. default: true
  44309. },
  44310. {
  44311. name: "MegaMacro",
  44312. height: math.unit(20400, "meters")
  44313. },
  44314. ]
  44315. ))
  44316. characterMakers.push(() => makeCharacter(
  44317. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44318. {
  44319. front: {
  44320. height: math.unit(1.96, "meters"),
  44321. weight: math.unit(220, "lb"),
  44322. name: "Front",
  44323. image: {
  44324. source: "./media/characters/susan-grant/front.svg",
  44325. extra: 482/478,
  44326. bottom: 7/489
  44327. }
  44328. },
  44329. },
  44330. [
  44331. {
  44332. name: "Normal",
  44333. height: math.unit(1.96, "meters"),
  44334. default: true
  44335. },
  44336. {
  44337. name: "Macro",
  44338. height: math.unit(76.2, "meters")
  44339. },
  44340. {
  44341. name: "MegaMacro",
  44342. height: math.unit(305, "meters")
  44343. },
  44344. {
  44345. name: "GigaMacro",
  44346. height: math.unit(1220, "meters")
  44347. },
  44348. {
  44349. name: "SuperMacro",
  44350. height: math.unit(4878, "meters")
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44356. {
  44357. front: {
  44358. height: math.unit(5 + 4/12, "feet"),
  44359. weight: math.unit(110, "lb"),
  44360. name: "Front",
  44361. image: {
  44362. source: "./media/characters/axel-isanov/front.svg",
  44363. extra: 1096/1065,
  44364. bottom: 13/1109
  44365. }
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Normal",
  44371. height: math.unit(5 + 4/12, "feet"),
  44372. default: true
  44373. },
  44374. ]
  44375. ))
  44376. characterMakers.push(() => makeCharacter(
  44377. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44378. {
  44379. front: {
  44380. height: math.unit(9, "feet"),
  44381. weight: math.unit(467, "lb"),
  44382. name: "Front",
  44383. image: {
  44384. source: "./media/characters/necahual/front.svg",
  44385. extra: 920/873,
  44386. bottom: 26/946
  44387. }
  44388. },
  44389. back: {
  44390. height: math.unit(9, "feet"),
  44391. weight: math.unit(467, "lb"),
  44392. name: "Back",
  44393. image: {
  44394. source: "./media/characters/necahual/back.svg",
  44395. extra: 930/884,
  44396. bottom: 16/946
  44397. }
  44398. },
  44399. frontUnderwear: {
  44400. height: math.unit(9, "feet"),
  44401. weight: math.unit(467, "lb"),
  44402. name: "Front (Underwear)",
  44403. image: {
  44404. source: "./media/characters/necahual/front-underwear.svg",
  44405. extra: 920/873,
  44406. bottom: 26/946
  44407. }
  44408. },
  44409. frontDressed: {
  44410. height: math.unit(9, "feet"),
  44411. weight: math.unit(467, "lb"),
  44412. name: "Front (Dressed)",
  44413. image: {
  44414. source: "./media/characters/necahual/front-dressed.svg",
  44415. extra: 920/873,
  44416. bottom: 26/946
  44417. }
  44418. },
  44419. },
  44420. [
  44421. {
  44422. name: "Comprsesed",
  44423. height: math.unit(9, "feet")
  44424. },
  44425. {
  44426. name: "Natural",
  44427. height: math.unit(15, "feet"),
  44428. default: true
  44429. },
  44430. {
  44431. name: "Boosted",
  44432. height: math.unit(50, "feet")
  44433. },
  44434. {
  44435. name: "Boosted+",
  44436. height: math.unit(150, "feet")
  44437. },
  44438. {
  44439. name: "Max",
  44440. height: math.unit(500, "feet")
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(22 + 1/12, "feet"),
  44449. weight: math.unit(3200, "lb"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/theo-acacia/front.svg",
  44453. extra: 1796/1741,
  44454. bottom: 83/1879
  44455. }
  44456. },
  44457. frontUnderwear: {
  44458. height: math.unit(22 + 1/12, "feet"),
  44459. weight: math.unit(3200, "lb"),
  44460. name: "Front (Underwear)",
  44461. image: {
  44462. source: "./media/characters/theo-acacia/front-underwear.svg",
  44463. extra: 1796/1741,
  44464. bottom: 83/1879
  44465. }
  44466. },
  44467. frontNude: {
  44468. height: math.unit(22 + 1/12, "feet"),
  44469. weight: math.unit(3200, "lb"),
  44470. name: "Front (Nude)",
  44471. image: {
  44472. source: "./media/characters/theo-acacia/front-nude.svg",
  44473. extra: 1796/1741,
  44474. bottom: 83/1879
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(22 + 1/12, "feet"),
  44482. default: true
  44483. },
  44484. ]
  44485. ))
  44486. characterMakers.push(() => makeCharacter(
  44487. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44488. {
  44489. front: {
  44490. height: math.unit(20, "feet"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/astra/front.svg",
  44494. extra: 1850/1714,
  44495. bottom: 106/1956
  44496. }
  44497. },
  44498. frontUndressed: {
  44499. height: math.unit(20, "feet"),
  44500. name: "Front (Undressed)",
  44501. image: {
  44502. source: "./media/characters/astra/front-undressed.svg",
  44503. extra: 1926/1749,
  44504. bottom: 0/1926
  44505. }
  44506. },
  44507. hand: {
  44508. height: math.unit(1.53, "feet"),
  44509. name: "Hand",
  44510. image: {
  44511. source: "./media/characters/astra/hand.svg"
  44512. }
  44513. },
  44514. paw: {
  44515. height: math.unit(1.53, "feet"),
  44516. name: "Paw",
  44517. image: {
  44518. source: "./media/characters/astra/paw.svg"
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Smallest",
  44525. height: math.unit(20, "feet")
  44526. },
  44527. {
  44528. name: "Normal",
  44529. height: math.unit(1e9, "miles"),
  44530. default: true
  44531. },
  44532. {
  44533. name: "Larger",
  44534. height: math.unit(5, "multiverses")
  44535. },
  44536. {
  44537. name: "Largest",
  44538. height: math.unit(1e9, "multiverses")
  44539. },
  44540. ]
  44541. ))
  44542. characterMakers.push(() => makeCharacter(
  44543. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44544. {
  44545. front: {
  44546. height: math.unit(8, "feet"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/breanna/front.svg",
  44550. extra: 1912/1632,
  44551. bottom: 33/1945
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Smallest",
  44558. height: math.unit(8, "feet")
  44559. },
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(1, "mile"),
  44563. default: true
  44564. },
  44565. {
  44566. name: "Maximum",
  44567. height: math.unit(1500000000000, "lightyears")
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(5 + 11/12, "feet"),
  44576. weight: math.unit(155, "lb"),
  44577. name: "Front",
  44578. image: {
  44579. source: "./media/characters/cai/front.svg",
  44580. extra: 1823/1702,
  44581. bottom: 32/1855
  44582. }
  44583. },
  44584. back: {
  44585. height: math.unit(5 + 11/12, "feet"),
  44586. weight: math.unit(155, "lb"),
  44587. name: "Back",
  44588. image: {
  44589. source: "./media/characters/cai/back.svg",
  44590. extra: 1809/1708,
  44591. bottom: 31/1840
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Normal",
  44598. height: math.unit(5 + 11/12, "feet"),
  44599. default: true
  44600. },
  44601. {
  44602. name: "Big",
  44603. height: math.unit(15, "feet")
  44604. },
  44605. {
  44606. name: "Macro",
  44607. height: math.unit(200, "feet")
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(5 + 6/12, "feet"),
  44616. weight: math.unit(160, "lb"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44620. extra: 1227/1174,
  44621. bottom: 37/1264
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Macro",
  44628. height: math.unit(444, "meters"),
  44629. default: true
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(18 + 7/12, "feet"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/rex/front.svg",
  44641. extra: 1941/1807,
  44642. bottom: 66/2007
  44643. }
  44644. },
  44645. back: {
  44646. height: math.unit(18 + 7/12, "feet"),
  44647. name: "Back",
  44648. image: {
  44649. source: "./media/characters/rex/back.svg",
  44650. extra: 1937/1822,
  44651. bottom: 42/1979
  44652. }
  44653. },
  44654. boot: {
  44655. height: math.unit(3.45, "feet"),
  44656. name: "Boot",
  44657. image: {
  44658. source: "./media/characters/rex/boot.svg"
  44659. }
  44660. },
  44661. paw: {
  44662. height: math.unit(4.17, "feet"),
  44663. name: "Paw",
  44664. image: {
  44665. source: "./media/characters/rex/paw.svg"
  44666. }
  44667. },
  44668. head: {
  44669. height: math.unit(6.728, "feet"),
  44670. name: "Head",
  44671. image: {
  44672. source: "./media/characters/rex/head.svg"
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Nano",
  44679. height: math.unit(18 + 7/12, "feet")
  44680. },
  44681. {
  44682. name: "Micro",
  44683. height: math.unit(1.5, "megameters")
  44684. },
  44685. {
  44686. name: "Normal",
  44687. height: math.unit(440, "megameters"),
  44688. default: true
  44689. },
  44690. {
  44691. name: "Macro",
  44692. height: math.unit(2.5, "gigameters")
  44693. },
  44694. {
  44695. name: "Gigamacro",
  44696. height: math.unit(2, "galaxies")
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44702. {
  44703. side: {
  44704. height: math.unit(32, "feet"),
  44705. weight: math.unit(250000, "lb"),
  44706. name: "Side",
  44707. image: {
  44708. source: "./media/characters/silverwing/side.svg",
  44709. extra: 1100/1019,
  44710. bottom: 204/1304
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(32, "feet"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(6 + 6/12, "feet"),
  44727. weight: math.unit(350, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/tristan-hawthorne/front.svg",
  44731. extra: 1159/1124,
  44732. bottom: 37/1196
  44733. },
  44734. form: "labrador",
  44735. default: true
  44736. },
  44737. skunkFront: {
  44738. height: math.unit(4 + 6/12, "feet"),
  44739. weight: math.unit(120, "lb"),
  44740. name: "Front",
  44741. image: {
  44742. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44743. extra: 1609/1551,
  44744. bottom: 169/1778
  44745. },
  44746. form: "skunk",
  44747. default: true
  44748. },
  44749. },
  44750. [
  44751. {
  44752. name: "Normal",
  44753. height: math.unit(6 + 6/12, "feet"),
  44754. form: "labrador",
  44755. default: true
  44756. },
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(4 + 6/12, "feet"),
  44760. form: "skunk",
  44761. default: true
  44762. },
  44763. ],
  44764. {
  44765. "labrador": {
  44766. name: "Labrador",
  44767. default: true
  44768. },
  44769. "skunk": {
  44770. name: "Skunk"
  44771. }
  44772. }
  44773. ))
  44774. characterMakers.push(() => makeCharacter(
  44775. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44776. {
  44777. front: {
  44778. height: math.unit(5 + 11/12, "feet"),
  44779. weight: math.unit(190, "lb"),
  44780. name: "Front",
  44781. image: {
  44782. source: "./media/characters/mizu/front.svg",
  44783. extra: 1988/1788,
  44784. bottom: 14/2002
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(5 + 11/12, "feet"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(1.7, "feet"),
  44801. weight: math.unit(50, "lb"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/dechroma/front.svg",
  44805. extra: 1095/859,
  44806. bottom: 64/1159
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(1.7, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44820. {
  44821. side: {
  44822. height: math.unit(30, "feet"),
  44823. name: "Side",
  44824. image: {
  44825. source: "./media/characters/veluren-thanazel/side.svg",
  44826. extra: 1611/633,
  44827. bottom: 118/1729
  44828. }
  44829. },
  44830. front: {
  44831. height: math.unit(30, "feet"),
  44832. name: "Front",
  44833. image: {
  44834. source: "./media/characters/veluren-thanazel/front.svg",
  44835. extra: 1486/636,
  44836. bottom: 238/1724
  44837. }
  44838. },
  44839. head: {
  44840. height: math.unit(21.4, "feet"),
  44841. name: "Head",
  44842. image: {
  44843. source: "./media/characters/veluren-thanazel/head.svg"
  44844. }
  44845. },
  44846. genitals: {
  44847. height: math.unit(19.4, "feet"),
  44848. name: "Genitals",
  44849. image: {
  44850. source: "./media/characters/veluren-thanazel/genitals.svg"
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Social",
  44857. height: math.unit(6, "feet")
  44858. },
  44859. {
  44860. name: "Play",
  44861. height: math.unit(12, "feet")
  44862. },
  44863. {
  44864. name: "True",
  44865. height: math.unit(30, "feet"),
  44866. default: true
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(7 + 6/12, "feet"),
  44875. weight: math.unit(500, "kg"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/arcturas/front.svg",
  44879. extra: 1700/1500,
  44880. bottom: 145/1845
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "Normal",
  44887. height: math.unit(7 + 6/12, "feet"),
  44888. default: true
  44889. },
  44890. ]
  44891. ))
  44892. characterMakers.push(() => makeCharacter(
  44893. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44894. {
  44895. side: {
  44896. height: math.unit(6, "feet"),
  44897. weight: math.unit(2, "tons"),
  44898. name: "Side",
  44899. image: {
  44900. source: "./media/characters/vitaen/side.svg",
  44901. extra: 1157/617,
  44902. bottom: 122/1279
  44903. }
  44904. },
  44905. },
  44906. [
  44907. {
  44908. name: "Normal",
  44909. height: math.unit(6, "feet"),
  44910. default: true
  44911. },
  44912. ]
  44913. ))
  44914. characterMakers.push(() => makeCharacter(
  44915. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44916. {
  44917. front: {
  44918. height: math.unit(19, "feet"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/fia-dreamweaver/front.svg",
  44922. extra: 1630/1504,
  44923. bottom: 25/1655
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Normal",
  44930. height: math.unit(19, "feet"),
  44931. default: true
  44932. },
  44933. ]
  44934. ))
  44935. characterMakers.push(() => makeCharacter(
  44936. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44937. {
  44938. front: {
  44939. height: math.unit(5 + 4/12, "feet"),
  44940. name: "Front",
  44941. image: {
  44942. source: "./media/characters/artan/front.svg",
  44943. extra: 1618/1535,
  44944. bottom: 46/1664
  44945. }
  44946. },
  44947. back: {
  44948. height: math.unit(5 + 4/12, "feet"),
  44949. name: "Back",
  44950. image: {
  44951. source: "./media/characters/artan/back.svg",
  44952. extra: 1618/1543,
  44953. bottom: 31/1649
  44954. }
  44955. },
  44956. },
  44957. [
  44958. {
  44959. name: "Normal",
  44960. height: math.unit(5 + 4/12, "feet"),
  44961. default: true
  44962. },
  44963. ]
  44964. ))
  44965. characterMakers.push(() => makeCharacter(
  44966. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44967. {
  44968. side: {
  44969. height: math.unit(182, "cm"),
  44970. weight: math.unit(1000, "lb"),
  44971. name: "Side",
  44972. image: {
  44973. source: "./media/characters/silver-dragon/side.svg",
  44974. extra: 710/287,
  44975. bottom: 88/798
  44976. }
  44977. },
  44978. },
  44979. [
  44980. {
  44981. name: "Normal",
  44982. height: math.unit(182, "cm"),
  44983. default: true
  44984. },
  44985. ]
  44986. ))
  44987. characterMakers.push(() => makeCharacter(
  44988. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44989. {
  44990. side: {
  44991. height: math.unit(6 + 6/12, "feet"),
  44992. weight: math.unit(1.5, "tons"),
  44993. name: "Side",
  44994. image: {
  44995. source: "./media/characters/zephyr/side.svg",
  44996. extra: 1433/586,
  44997. bottom: 109/1542
  44998. }
  44999. },
  45000. },
  45001. [
  45002. {
  45003. name: "Normal",
  45004. height: math.unit(6 + 6/12, "feet"),
  45005. default: true
  45006. },
  45007. ]
  45008. ))
  45009. characterMakers.push(() => makeCharacter(
  45010. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45011. {
  45012. side: {
  45013. height: math.unit(1, "feet"),
  45014. name: "Side",
  45015. image: {
  45016. source: "./media/characters/vixye/side.svg",
  45017. extra: 632/541,
  45018. bottom: 0/632
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Normal",
  45025. height: math.unit(1, "feet"),
  45026. default: true
  45027. },
  45028. {
  45029. name: "True",
  45030. height: math.unit(1e15, "multiverses")
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(8 + 2/12, "feet"),
  45039. weight: math.unit(650, "lb"),
  45040. name: "Front",
  45041. image: {
  45042. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45043. extra: 1174/1137,
  45044. bottom: 82/1256
  45045. }
  45046. },
  45047. back: {
  45048. height: math.unit(8 + 2/12, "feet"),
  45049. weight: math.unit(650, "lb"),
  45050. name: "Back",
  45051. image: {
  45052. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45053. extra: 1204/1157,
  45054. bottom: 46/1250
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Wildform",
  45061. height: math.unit(8 + 2/12, "feet"),
  45062. default: true
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45068. {
  45069. front: {
  45070. height: math.unit(18, "feet"),
  45071. name: "Front",
  45072. image: {
  45073. source: "./media/characters/cyphin/front.svg",
  45074. extra: 970/886,
  45075. bottom: 42/1012
  45076. }
  45077. },
  45078. back: {
  45079. height: math.unit(18, "feet"),
  45080. name: "Back",
  45081. image: {
  45082. source: "./media/characters/cyphin/back.svg",
  45083. extra: 1009/894,
  45084. bottom: 24/1033
  45085. }
  45086. },
  45087. head: {
  45088. height: math.unit(5.05, "feet"),
  45089. name: "Head",
  45090. image: {
  45091. source: "./media/characters/cyphin/head.svg"
  45092. }
  45093. },
  45094. tailbud: {
  45095. height: math.unit(5, "feet"),
  45096. name: "Tailbud",
  45097. image: {
  45098. source: "./media/characters/cyphin/tailbud.svg"
  45099. }
  45100. },
  45101. },
  45102. [
  45103. ]
  45104. ))
  45105. characterMakers.push(() => makeCharacter(
  45106. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45107. {
  45108. side: {
  45109. height: math.unit(10, "feet"),
  45110. weight: math.unit(6, "tons"),
  45111. name: "Side",
  45112. image: {
  45113. source: "./media/characters/raijin/side.svg",
  45114. extra: 1529/613,
  45115. bottom: 337/1866
  45116. }
  45117. },
  45118. },
  45119. [
  45120. {
  45121. name: "Normal",
  45122. height: math.unit(10, "feet"),
  45123. default: true
  45124. },
  45125. ]
  45126. ))
  45127. characterMakers.push(() => makeCharacter(
  45128. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45129. {
  45130. side: {
  45131. height: math.unit(9, "feet"),
  45132. name: "Side",
  45133. image: {
  45134. source: "./media/characters/nilghais/side.svg",
  45135. extra: 1047/744,
  45136. bottom: 91/1138
  45137. }
  45138. },
  45139. head: {
  45140. height: math.unit(3.14, "feet"),
  45141. name: "Head",
  45142. image: {
  45143. source: "./media/characters/nilghais/head.svg"
  45144. }
  45145. },
  45146. mouth: {
  45147. height: math.unit(4.6, "feet"),
  45148. name: "Mouth",
  45149. image: {
  45150. source: "./media/characters/nilghais/mouth.svg"
  45151. }
  45152. },
  45153. wings: {
  45154. height: math.unit(24, "feet"),
  45155. name: "Wings",
  45156. image: {
  45157. source: "./media/characters/nilghais/wings.svg"
  45158. }
  45159. },
  45160. ass: {
  45161. height: math.unit(6.12, "feet"),
  45162. name: "Ass",
  45163. image: {
  45164. source: "./media/characters/nilghais/ass.svg"
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal",
  45171. height: math.unit(9, "feet"),
  45172. default: true
  45173. },
  45174. ]
  45175. ))
  45176. characterMakers.push(() => makeCharacter(
  45177. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45178. {
  45179. regular: {
  45180. height: math.unit(16 + 2/12, "feet"),
  45181. weight: math.unit(2300, "lb"),
  45182. name: "Regular",
  45183. image: {
  45184. source: "./media/characters/zolgar/regular.svg",
  45185. extra: 1246/1004,
  45186. bottom: 124/1370
  45187. }
  45188. },
  45189. boxers: {
  45190. height: math.unit(16 + 2/12, "feet"),
  45191. weight: math.unit(2300, "lb"),
  45192. name: "Boxers",
  45193. image: {
  45194. source: "./media/characters/zolgar/boxers.svg",
  45195. extra: 1246/1004,
  45196. bottom: 124/1370
  45197. }
  45198. },
  45199. armored: {
  45200. height: math.unit(16 + 2/12, "feet"),
  45201. weight: math.unit(2300, "lb"),
  45202. name: "Armored",
  45203. image: {
  45204. source: "./media/characters/zolgar/armored.svg",
  45205. extra: 1246/1004,
  45206. bottom: 124/1370
  45207. }
  45208. },
  45209. goth: {
  45210. height: math.unit(16 + 2/12, "feet"),
  45211. weight: math.unit(2300, "lb"),
  45212. name: "Goth",
  45213. image: {
  45214. source: "./media/characters/zolgar/goth.svg",
  45215. extra: 1246/1004,
  45216. bottom: 124/1370
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Shrunken Down",
  45223. height: math.unit(9 + 2/12, "feet")
  45224. },
  45225. {
  45226. name: "Normal",
  45227. height: math.unit(16 + 2/12, "feet"),
  45228. default: true
  45229. },
  45230. ]
  45231. ))
  45232. characterMakers.push(() => makeCharacter(
  45233. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45234. {
  45235. front: {
  45236. height: math.unit(6, "feet"),
  45237. weight: math.unit(168, "lb"),
  45238. name: "Front",
  45239. image: {
  45240. source: "./media/characters/luca/front.svg",
  45241. extra: 841/667,
  45242. bottom: 102/943
  45243. }
  45244. },
  45245. },
  45246. [
  45247. {
  45248. name: "Normal",
  45249. height: math.unit(6, "feet"),
  45250. default: true
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45256. {
  45257. side: {
  45258. height: math.unit(7 + 3/12, "feet"),
  45259. weight: math.unit(312, "lb"),
  45260. name: "Side",
  45261. image: {
  45262. source: "./media/characters/zezo/side.svg",
  45263. extra: 1192/1067,
  45264. bottom: 63/1255
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(7 + 3/12, "feet"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(5 + 5/12, "feet"),
  45281. weight: math.unit(170, "lb"),
  45282. name: "Front",
  45283. image: {
  45284. source: "./media/characters/mayso/front.svg",
  45285. extra: 1215/1108,
  45286. bottom: 16/1231
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Normal",
  45293. height: math.unit(5 + 5/12, "feet"),
  45294. default: true
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(4 + 3/12, "feet"),
  45303. weight: math.unit(80, "lb"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/hess/front.svg",
  45307. extra: 1200/1123,
  45308. bottom: 16/1216
  45309. }
  45310. },
  45311. },
  45312. [
  45313. {
  45314. name: "Normal",
  45315. height: math.unit(4 + 3/12, "feet"),
  45316. default: true
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45322. {
  45323. front: {
  45324. height: math.unit(1.9, "meters"),
  45325. name: "Front",
  45326. image: {
  45327. source: "./media/characters/ashgar/front.svg",
  45328. extra: 1177/1146,
  45329. bottom: 99/1276
  45330. }
  45331. },
  45332. back: {
  45333. height: math.unit(1.9, "meters"),
  45334. name: "Back",
  45335. image: {
  45336. source: "./media/characters/ashgar/back.svg",
  45337. extra: 1201/1183,
  45338. bottom: 53/1254
  45339. }
  45340. },
  45341. feral: {
  45342. height: math.unit(1.4, "meters"),
  45343. name: "Feral",
  45344. image: {
  45345. source: "./media/characters/ashgar/feral.svg",
  45346. extra: 370/345,
  45347. bottom: 45/415
  45348. }
  45349. },
  45350. },
  45351. [
  45352. {
  45353. name: "Normal",
  45354. height: math.unit(1.9, "meters"),
  45355. default: true
  45356. },
  45357. ]
  45358. ))
  45359. characterMakers.push(() => makeCharacter(
  45360. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45361. {
  45362. regular: {
  45363. height: math.unit(6, "feet"),
  45364. weight: math.unit(220, "lb"),
  45365. name: "Regular",
  45366. image: {
  45367. source: "./media/characters/phillip/regular.svg",
  45368. extra: 1373/1277,
  45369. bottom: 75/1448
  45370. }
  45371. },
  45372. dressed: {
  45373. height: math.unit(6, "feet"),
  45374. weight: math.unit(220, "lb"),
  45375. name: "Dressed",
  45376. image: {
  45377. source: "./media/characters/phillip/dressed.svg",
  45378. extra: 1373/1277,
  45379. bottom: 75/1448
  45380. }
  45381. },
  45382. paw: {
  45383. height: math.unit(1.44, "feet"),
  45384. name: "Paw",
  45385. image: {
  45386. source: "./media/characters/phillip/paw.svg"
  45387. }
  45388. },
  45389. },
  45390. [
  45391. {
  45392. name: "Normal",
  45393. height: math.unit(6, "feet"),
  45394. default: true
  45395. },
  45396. ]
  45397. ))
  45398. characterMakers.push(() => makeCharacter(
  45399. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45400. {
  45401. side: {
  45402. height: math.unit(42, "feet"),
  45403. name: "Side",
  45404. image: {
  45405. source: "./media/characters/uvula/side.svg",
  45406. extra: 683/586,
  45407. bottom: 60/743
  45408. }
  45409. },
  45410. front: {
  45411. height: math.unit(42, "feet"),
  45412. name: "Front",
  45413. image: {
  45414. source: "./media/characters/uvula/front.svg",
  45415. extra: 705/613,
  45416. bottom: 54/759
  45417. }
  45418. },
  45419. maw: {
  45420. height: math.unit(23.5, "feet"),
  45421. name: "Maw",
  45422. image: {
  45423. source: "./media/characters/uvula/maw.svg"
  45424. }
  45425. },
  45426. },
  45427. [
  45428. {
  45429. name: "Original Size",
  45430. height: math.unit(14, "inches")
  45431. },
  45432. {
  45433. name: "Human Size",
  45434. height: math.unit(6, "feet")
  45435. },
  45436. {
  45437. name: "Big",
  45438. height: math.unit(42, "feet"),
  45439. default: true
  45440. },
  45441. {
  45442. name: "Bigger",
  45443. height: math.unit(100, "feet")
  45444. },
  45445. ]
  45446. ))
  45447. characterMakers.push(() => makeCharacter(
  45448. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45449. {
  45450. front: {
  45451. height: math.unit(5 + 11/12, "feet"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/lannah/front.svg",
  45455. extra: 1208/1113,
  45456. bottom: 97/1305
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(5 + 11/12, "feet"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45470. {
  45471. front: {
  45472. height: math.unit(6 + 3/12, "feet"),
  45473. weight: math.unit(3.5, "tons"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/emberflame/front.svg",
  45477. extra: 1198/672,
  45478. bottom: 82/1280
  45479. }
  45480. },
  45481. side: {
  45482. height: math.unit(6 + 3/12, "feet"),
  45483. weight: math.unit(3.5, "tons"),
  45484. name: "Side",
  45485. image: {
  45486. source: "./media/characters/emberflame/side.svg",
  45487. extra: 938/527,
  45488. bottom: 56/994
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(6 + 3/12, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45502. {
  45503. side: {
  45504. height: math.unit(17.5, "feet"),
  45505. weight: math.unit(35, "tons"),
  45506. name: "Side",
  45507. image: {
  45508. source: "./media/characters/sophie-ambrose/side.svg",
  45509. extra: 1573/1242,
  45510. bottom: 71/1644
  45511. }
  45512. },
  45513. maw: {
  45514. height: math.unit(7.4, "feet"),
  45515. name: "Maw",
  45516. image: {
  45517. source: "./media/characters/sophie-ambrose/maw.svg"
  45518. }
  45519. },
  45520. },
  45521. [
  45522. {
  45523. name: "Normal",
  45524. height: math.unit(17.5, "feet"),
  45525. default: true
  45526. },
  45527. ]
  45528. ))
  45529. characterMakers.push(() => makeCharacter(
  45530. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45531. {
  45532. front: {
  45533. height: math.unit(280, "feet"),
  45534. weight: math.unit(550, "tons"),
  45535. name: "Front",
  45536. image: {
  45537. source: "./media/characters/king-mugi/front.svg",
  45538. extra: 1102/947,
  45539. bottom: 104/1206
  45540. }
  45541. },
  45542. },
  45543. [
  45544. {
  45545. name: "King Mugi",
  45546. height: math.unit(280, "feet"),
  45547. default: true
  45548. },
  45549. ]
  45550. ))
  45551. characterMakers.push(() => makeCharacter(
  45552. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45553. {
  45554. female: {
  45555. height: math.unit(300, "meters"),
  45556. name: "Front",
  45557. image: {
  45558. source: "./media/characters/nova-fox/female.svg",
  45559. extra: 664/632,
  45560. bottom: 51/715
  45561. },
  45562. form: "female",
  45563. default: true
  45564. },
  45565. male: {
  45566. height: math.unit(300, "meters"),
  45567. name: "Front",
  45568. image: {
  45569. source: "./media/characters/nova-fox/male.svg",
  45570. extra: 663/631,
  45571. bottom: 30/693
  45572. },
  45573. form: "male",
  45574. default: true
  45575. },
  45576. },
  45577. [
  45578. {
  45579. name: "Macro",
  45580. height: math.unit(300, "meters"),
  45581. default: true,
  45582. allForms: true
  45583. },
  45584. ],
  45585. {
  45586. "female": {
  45587. name: "Female",
  45588. default: true
  45589. },
  45590. "male": {
  45591. name: "Male",
  45592. },
  45593. }
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45597. {
  45598. front: {
  45599. height: math.unit(6 + 3/12, "feet"),
  45600. weight: math.unit(170, "lb"),
  45601. name: "Front",
  45602. image: {
  45603. source: "./media/characters/sam-bat/front.svg",
  45604. extra: 1601/1411,
  45605. bottom: 125/1726
  45606. }
  45607. },
  45608. back: {
  45609. height: math.unit(6 + 3/12, "feet"),
  45610. weight: math.unit(170, "lb"),
  45611. name: "Back",
  45612. image: {
  45613. source: "./media/characters/sam-bat/back.svg",
  45614. extra: 1577/1405,
  45615. bottom: 58/1635
  45616. }
  45617. },
  45618. },
  45619. [
  45620. {
  45621. name: "Normal",
  45622. height: math.unit(6 + 3/12, "feet"),
  45623. default: true
  45624. },
  45625. ]
  45626. ))
  45627. characterMakers.push(() => makeCharacter(
  45628. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45629. {
  45630. front: {
  45631. height: math.unit(59, "feet"),
  45632. weight: math.unit(40000, "lb"),
  45633. name: "Front",
  45634. image: {
  45635. source: "./media/characters/inari/front.svg",
  45636. extra: 1884/1350,
  45637. bottom: 95/1979
  45638. }
  45639. },
  45640. },
  45641. [
  45642. {
  45643. name: "Gigantamax",
  45644. height: math.unit(59, "feet"),
  45645. default: true
  45646. },
  45647. ]
  45648. ))
  45649. characterMakers.push(() => makeCharacter(
  45650. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45651. {
  45652. front: {
  45653. height: math.unit(5 + 8/12, "feet"),
  45654. name: "Front",
  45655. image: {
  45656. source: "./media/characters/elizabeth/front.svg",
  45657. extra: 1395/1298,
  45658. bottom: 54/1449
  45659. }
  45660. },
  45661. mouth: {
  45662. height: math.unit(1.97, "feet"),
  45663. name: "Mouth",
  45664. image: {
  45665. source: "./media/characters/elizabeth/mouth.svg"
  45666. }
  45667. },
  45668. foot: {
  45669. height: math.unit(1.17, "feet"),
  45670. name: "Foot",
  45671. image: {
  45672. source: "./media/characters/elizabeth/foot.svg"
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(5 + 8/12, "feet"),
  45680. default: true
  45681. },
  45682. {
  45683. name: "Minimacro",
  45684. height: math.unit(18, "feet")
  45685. },
  45686. {
  45687. name: "Macro",
  45688. height: math.unit(180, "feet")
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(5 + 2/12, "feet"),
  45697. name: "Front",
  45698. image: {
  45699. source: "./media/characters/october-gossamer/front.svg",
  45700. extra: 505/454,
  45701. bottom: 7/512
  45702. }
  45703. },
  45704. back: {
  45705. height: math.unit(5 + 2/12, "feet"),
  45706. name: "Back",
  45707. image: {
  45708. source: "./media/characters/october-gossamer/back.svg",
  45709. extra: 501/454,
  45710. bottom: 11/512
  45711. }
  45712. },
  45713. },
  45714. [
  45715. {
  45716. name: "Normal",
  45717. height: math.unit(5 + 2/12, "feet"),
  45718. default: true
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45724. {
  45725. front: {
  45726. height: math.unit(5, "feet"),
  45727. name: "Front",
  45728. image: {
  45729. source: "./media/characters/epiglottis/front.svg",
  45730. extra: 923/849,
  45731. bottom: 17/940
  45732. }
  45733. },
  45734. },
  45735. [
  45736. {
  45737. name: "Original Size",
  45738. height: math.unit(10, "inches")
  45739. },
  45740. {
  45741. name: "Human Size",
  45742. height: math.unit(5, "feet"),
  45743. default: true
  45744. },
  45745. {
  45746. name: "Big",
  45747. height: math.unit(25, "feet")
  45748. },
  45749. {
  45750. name: "Bigger",
  45751. height: math.unit(50, "feet")
  45752. },
  45753. {
  45754. name: "oh lawd",
  45755. height: math.unit(75, "feet")
  45756. },
  45757. ]
  45758. ))
  45759. characterMakers.push(() => makeCharacter(
  45760. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45761. {
  45762. front: {
  45763. height: math.unit(2 + 4/12, "feet"),
  45764. weight: math.unit(60, "lb"),
  45765. name: "Front",
  45766. image: {
  45767. source: "./media/characters/lerm/front.svg",
  45768. extra: 796/790,
  45769. bottom: 79/875
  45770. }
  45771. },
  45772. },
  45773. [
  45774. {
  45775. name: "Normal",
  45776. height: math.unit(2 + 4/12, "feet"),
  45777. default: true
  45778. },
  45779. ]
  45780. ))
  45781. characterMakers.push(() => makeCharacter(
  45782. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45783. {
  45784. front: {
  45785. height: math.unit(5.5, "feet"),
  45786. weight: math.unit(130, "lb"),
  45787. name: "Front",
  45788. image: {
  45789. source: "./media/characters/xena-nebadon/front.svg",
  45790. extra: 1828/1730,
  45791. bottom: 79/1907
  45792. }
  45793. },
  45794. },
  45795. [
  45796. {
  45797. name: "Tiny Puppy",
  45798. height: math.unit(3, "inches")
  45799. },
  45800. {
  45801. name: "Normal",
  45802. height: math.unit(5.5, "feet"),
  45803. default: true
  45804. },
  45805. {
  45806. name: "Lotta Lady",
  45807. height: math.unit(12, "feet")
  45808. },
  45809. {
  45810. name: "Pretty Big",
  45811. height: math.unit(100, "feet")
  45812. },
  45813. {
  45814. name: "Big",
  45815. height: math.unit(500, "feet")
  45816. },
  45817. {
  45818. name: "Skyscraper Toys",
  45819. height: math.unit(2500, "feet")
  45820. },
  45821. {
  45822. name: "Plane Catcher",
  45823. height: math.unit(8, "miles")
  45824. },
  45825. {
  45826. name: "Planet Toys",
  45827. height: math.unit(15, "earths")
  45828. },
  45829. {
  45830. name: "Stardust",
  45831. height: math.unit(0.25, "galaxies")
  45832. },
  45833. {
  45834. name: "Snacks",
  45835. height: math.unit(70, "universes")
  45836. },
  45837. ]
  45838. ))
  45839. characterMakers.push(() => makeCharacter(
  45840. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45841. {
  45842. front: {
  45843. height: math.unit(1.6, "meters"),
  45844. weight: math.unit(60, "kg"),
  45845. name: "Front",
  45846. image: {
  45847. source: "./media/characters/bounty/front.svg",
  45848. extra: 1426/1308,
  45849. bottom: 15/1441
  45850. }
  45851. },
  45852. back: {
  45853. height: math.unit(1.6, "meters"),
  45854. weight: math.unit(60, "kg"),
  45855. name: "Back",
  45856. image: {
  45857. source: "./media/characters/bounty/back.svg",
  45858. extra: 1417/1307,
  45859. bottom: 8/1425
  45860. }
  45861. },
  45862. },
  45863. [
  45864. {
  45865. name: "Normal",
  45866. height: math.unit(1.6, "meters"),
  45867. default: true
  45868. },
  45869. {
  45870. name: "Macro",
  45871. height: math.unit(300, "meters")
  45872. },
  45873. ]
  45874. ))
  45875. characterMakers.push(() => makeCharacter(
  45876. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45877. {
  45878. front: {
  45879. height: math.unit(2 + 8/12, "feet"),
  45880. weight: math.unit(15, "lb"),
  45881. name: "Front",
  45882. image: {
  45883. source: "./media/characters/mochi/front.svg",
  45884. extra: 1022/852,
  45885. bottom: 435/1457
  45886. }
  45887. },
  45888. back: {
  45889. height: math.unit(2 + 8/12, "feet"),
  45890. weight: math.unit(15, "lb"),
  45891. name: "Back",
  45892. image: {
  45893. source: "./media/characters/mochi/back.svg",
  45894. extra: 1335/1119,
  45895. bottom: 39/1374
  45896. }
  45897. },
  45898. bird: {
  45899. height: math.unit(2 + 8/12, "feet"),
  45900. weight: math.unit(15, "lb"),
  45901. name: "Bird",
  45902. image: {
  45903. source: "./media/characters/mochi/bird.svg",
  45904. extra: 1251/1113,
  45905. bottom: 178/1429
  45906. }
  45907. },
  45908. kaiju: {
  45909. height: math.unit(154, "feet"),
  45910. weight: math.unit(1e7, "lb"),
  45911. name: "Kaiju",
  45912. image: {
  45913. source: "./media/characters/mochi/kaiju.svg",
  45914. extra: 460/324,
  45915. bottom: 40/500
  45916. }
  45917. },
  45918. head: {
  45919. height: math.unit(1.21, "feet"),
  45920. name: "Head",
  45921. image: {
  45922. source: "./media/characters/mochi/head.svg"
  45923. }
  45924. },
  45925. alternateTail: {
  45926. height: math.unit(2 + 8/12, "feet"),
  45927. weight: math.unit(45, "lb"),
  45928. name: "Alternate Tail",
  45929. image: {
  45930. source: "./media/characters/mochi/alternate-tail.svg",
  45931. extra: 139/76,
  45932. bottom: 45/184
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Micro",
  45939. height: math.unit(2, "inches")
  45940. },
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(2 + 8/12, "feet"),
  45944. default: true
  45945. },
  45946. {
  45947. name: "Macro",
  45948. height: math.unit(106, "feet")
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45954. {
  45955. front: {
  45956. height: math.unit(5.67, "feet"),
  45957. weight: math.unit(135, "lb"),
  45958. name: "Front",
  45959. image: {
  45960. source: "./media/characters/sarel/front.svg",
  45961. extra: 865/788,
  45962. bottom: 97/962
  45963. }
  45964. },
  45965. back: {
  45966. height: math.unit(5.67, "feet"),
  45967. weight: math.unit(135, "lb"),
  45968. name: "Back",
  45969. image: {
  45970. source: "./media/characters/sarel/back.svg",
  45971. extra: 857/777,
  45972. bottom: 32/889
  45973. }
  45974. },
  45975. chozoan: {
  45976. height: math.unit(5.67, "feet"),
  45977. weight: math.unit(135, "lb"),
  45978. name: "Chozoan",
  45979. image: {
  45980. source: "./media/characters/sarel/chozoan.svg",
  45981. extra: 865/788,
  45982. bottom: 97/962
  45983. }
  45984. },
  45985. current: {
  45986. height: math.unit(5.67, "feet"),
  45987. weight: math.unit(135, "lb"),
  45988. name: "Current",
  45989. image: {
  45990. source: "./media/characters/sarel/current.svg",
  45991. extra: 865/788,
  45992. bottom: 97/962
  45993. }
  45994. },
  45995. head: {
  45996. height: math.unit(1.77, "feet"),
  45997. name: "Head",
  45998. image: {
  45999. source: "./media/characters/sarel/head.svg"
  46000. }
  46001. },
  46002. claws: {
  46003. height: math.unit(1.8, "feet"),
  46004. name: "Claws",
  46005. image: {
  46006. source: "./media/characters/sarel/claws.svg"
  46007. }
  46008. },
  46009. clawsAlt: {
  46010. height: math.unit(1.8, "feet"),
  46011. name: "Claws-alt",
  46012. image: {
  46013. source: "./media/characters/sarel/claws-alt.svg"
  46014. }
  46015. },
  46016. },
  46017. [
  46018. {
  46019. name: "Normal",
  46020. height: math.unit(5.67, "feet"),
  46021. default: true
  46022. },
  46023. ]
  46024. ))
  46025. characterMakers.push(() => makeCharacter(
  46026. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46027. {
  46028. front: {
  46029. height: math.unit(5500, "feet"),
  46030. name: "Front",
  46031. image: {
  46032. source: "./media/characters/alyonia/front.svg",
  46033. extra: 1200/1135,
  46034. bottom: 29/1229
  46035. }
  46036. },
  46037. back: {
  46038. height: math.unit(5500, "feet"),
  46039. name: "Back",
  46040. image: {
  46041. source: "./media/characters/alyonia/back.svg",
  46042. extra: 1205/1138,
  46043. bottom: 10/1215
  46044. }
  46045. },
  46046. },
  46047. [
  46048. {
  46049. name: "Small",
  46050. height: math.unit(10, "feet")
  46051. },
  46052. {
  46053. name: "Macro",
  46054. height: math.unit(500, "feet")
  46055. },
  46056. {
  46057. name: "Mega Macro",
  46058. height: math.unit(5500, "feet"),
  46059. default: true
  46060. },
  46061. {
  46062. name: "Mega Macro+",
  46063. height: math.unit(500000, "feet")
  46064. },
  46065. {
  46066. name: "Giga Macro",
  46067. height: math.unit(3000, "miles")
  46068. },
  46069. {
  46070. name: "Tera Macro",
  46071. height: math.unit(2.8e6, "miles")
  46072. },
  46073. {
  46074. name: "Galactic",
  46075. height: math.unit(120000, "lightyears")
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46081. {
  46082. werewolf: {
  46083. height: math.unit(8, "feet"),
  46084. weight: math.unit(425, "lb"),
  46085. name: "Werewolf",
  46086. image: {
  46087. source: "./media/characters/autumn/werewolf.svg",
  46088. extra: 2154/2031,
  46089. bottom: 160/2314
  46090. }
  46091. },
  46092. human: {
  46093. height: math.unit(5 + 8/12, "feet"),
  46094. weight: math.unit(150, "lb"),
  46095. name: "Human",
  46096. image: {
  46097. source: "./media/characters/autumn/human.svg",
  46098. extra: 1200/1149,
  46099. bottom: 30/1230
  46100. }
  46101. },
  46102. },
  46103. [
  46104. {
  46105. name: "Normal",
  46106. height: math.unit(8, "feet"),
  46107. default: true
  46108. },
  46109. ]
  46110. ))
  46111. characterMakers.push(() => makeCharacter(
  46112. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46113. {
  46114. front: {
  46115. height: math.unit(8 + 5/12, "feet"),
  46116. weight: math.unit(825, "lb"),
  46117. name: "Front",
  46118. image: {
  46119. source: "./media/characters/cobalt-charizard/front.svg",
  46120. extra: 1268/1155,
  46121. bottom: 122/1390
  46122. }
  46123. },
  46124. side: {
  46125. height: math.unit(8 + 5/12, "feet"),
  46126. weight: math.unit(825, "lb"),
  46127. name: "Side",
  46128. image: {
  46129. source: "./media/characters/cobalt-charizard/side.svg",
  46130. extra: 1348/1257,
  46131. bottom: 58/1406
  46132. }
  46133. },
  46134. gMax: {
  46135. height: math.unit(134 + 11/12, "feet"),
  46136. name: "G-Max",
  46137. image: {
  46138. source: "./media/characters/cobalt-charizard/g-max.svg",
  46139. extra: 1835/1541,
  46140. bottom: 151/1986
  46141. }
  46142. },
  46143. },
  46144. [
  46145. {
  46146. name: "Normal",
  46147. height: math.unit(8 + 5/12, "feet"),
  46148. default: true
  46149. },
  46150. ]
  46151. ))
  46152. characterMakers.push(() => makeCharacter(
  46153. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46154. {
  46155. front: {
  46156. height: math.unit(6 + 3/12, "feet"),
  46157. weight: math.unit(210, "lb"),
  46158. name: "Front",
  46159. image: {
  46160. source: "./media/characters/stella/front.svg",
  46161. extra: 3549/3335,
  46162. bottom: 51/3600
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(6 + 3/12, "feet"),
  46170. default: true
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46176. {
  46177. front: {
  46178. height: math.unit(5, "feet"),
  46179. weight: math.unit(90, "lb"),
  46180. name: "Front",
  46181. image: {
  46182. source: "./media/characters/riley-bishop/front.svg",
  46183. extra: 1450/1428,
  46184. bottom: 152/1602
  46185. }
  46186. },
  46187. },
  46188. [
  46189. {
  46190. name: "Normal",
  46191. height: math.unit(5, "feet"),
  46192. default: true
  46193. },
  46194. ]
  46195. ))
  46196. characterMakers.push(() => makeCharacter(
  46197. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46198. {
  46199. side: {
  46200. height: math.unit(8 + 2/12, "feet"),
  46201. weight: math.unit(500, "kg"),
  46202. name: "Side",
  46203. image: {
  46204. source: "./media/characters/theo-arcanine/side.svg",
  46205. extra: 1342/1074,
  46206. bottom: 111/1453
  46207. }
  46208. },
  46209. },
  46210. [
  46211. {
  46212. name: "Normal",
  46213. height: math.unit(8 + 2/12, "feet"),
  46214. default: true
  46215. },
  46216. ]
  46217. ))
  46218. characterMakers.push(() => makeCharacter(
  46219. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46220. {
  46221. front: {
  46222. height: math.unit(4, "feet"),
  46223. name: "Front",
  46224. image: {
  46225. source: "./media/characters/kali/front.svg",
  46226. extra: 1074/867,
  46227. bottom: 34/1108
  46228. }
  46229. },
  46230. back: {
  46231. height: math.unit(4, "feet"),
  46232. name: "Back",
  46233. image: {
  46234. source: "./media/characters/kali/back.svg",
  46235. extra: 1068/863,
  46236. bottom: 26/1094
  46237. }
  46238. },
  46239. frontAlt: {
  46240. height: math.unit(4, "feet"),
  46241. name: "Front (Alt)",
  46242. image: {
  46243. source: "./media/characters/kali/front-alt.svg",
  46244. extra: 1921/1357,
  46245. bottom: 70/1991
  46246. }
  46247. },
  46248. },
  46249. [
  46250. {
  46251. name: "Normal",
  46252. height: math.unit(4, "feet"),
  46253. default: true
  46254. },
  46255. {
  46256. name: "Big'vali",
  46257. height: math.unit(11, "feet")
  46258. },
  46259. {
  46260. name: "Macro",
  46261. height: math.unit(32, "meters")
  46262. },
  46263. {
  46264. name: "Macro+",
  46265. height: math.unit(150, "meters")
  46266. },
  46267. {
  46268. name: "Megamacro",
  46269. height: math.unit(7500, "meters")
  46270. },
  46271. {
  46272. name: "Megamacro+",
  46273. height: math.unit(80, "kilometers")
  46274. },
  46275. ]
  46276. ))
  46277. characterMakers.push(() => makeCharacter(
  46278. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46279. {
  46280. side: {
  46281. height: math.unit(5 + 11/12, "feet"),
  46282. weight: math.unit(236, "lb"),
  46283. name: "Side",
  46284. image: {
  46285. source: "./media/characters/gapp/side.svg",
  46286. extra: 775/340,
  46287. bottom: 58/833
  46288. }
  46289. },
  46290. mouth: {
  46291. height: math.unit(2.98, "feet"),
  46292. name: "Mouth",
  46293. image: {
  46294. source: "./media/characters/gapp/mouth.svg"
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(5 + 1/12, "feet"),
  46302. default: true
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46308. {
  46309. front: {
  46310. height: math.unit(6, "feet"),
  46311. name: "Front",
  46312. image: {
  46313. source: "./media/characters/persephone/front.svg",
  46314. extra: 1895/1717,
  46315. bottom: 96/1991
  46316. }
  46317. },
  46318. back: {
  46319. height: math.unit(6, "feet"),
  46320. name: "Back",
  46321. image: {
  46322. source: "./media/characters/persephone/back.svg",
  46323. extra: 1868/1679,
  46324. bottom: 26/1894
  46325. }
  46326. },
  46327. casual: {
  46328. height: math.unit(6, "feet"),
  46329. name: "Casual",
  46330. image: {
  46331. source: "./media/characters/persephone/casual.svg",
  46332. extra: 1713/1541,
  46333. bottom: 76/1789
  46334. }
  46335. },
  46336. gaming: {
  46337. height: math.unit(3.55, "feet"),
  46338. name: "Gaming",
  46339. image: {
  46340. source: "./media/characters/persephone/gaming.svg",
  46341. extra: 1242/1038,
  46342. bottom: 66/1308
  46343. }
  46344. },
  46345. head: {
  46346. height: math.unit(2.15, "feet"),
  46347. name: "😐",
  46348. image: {
  46349. source: "./media/characters/persephone/head.svg"
  46350. }
  46351. },
  46352. talking: {
  46353. height: math.unit(2.5, "feet"),
  46354. name: "💬",
  46355. image: {
  46356. source: "./media/characters/persephone/talking.svg"
  46357. }
  46358. },
  46359. hmm: {
  46360. height: math.unit(2.28, "feet"),
  46361. name: "🤨",
  46362. image: {
  46363. source: "./media/characters/persephone/hmm.svg"
  46364. }
  46365. },
  46366. },
  46367. [
  46368. {
  46369. name: "Human Size",
  46370. height: math.unit(6, "feet")
  46371. },
  46372. {
  46373. name: "Big Steppy",
  46374. height: math.unit(600, "meters"),
  46375. default: true
  46376. },
  46377. {
  46378. name: "Galaxy Brain",
  46379. height: math.unit(1, "zettameter")
  46380. },
  46381. ]
  46382. ))
  46383. characterMakers.push(() => makeCharacter(
  46384. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46385. {
  46386. front: {
  46387. height: math.unit(1.85, "meters"),
  46388. name: "Front",
  46389. image: {
  46390. source: "./media/characters/riley-foxthing/front.svg",
  46391. extra: 1495/1354,
  46392. bottom: 122/1617
  46393. }
  46394. },
  46395. frontAlt: {
  46396. height: math.unit(1.85, "meters"),
  46397. name: "Front (Alt)",
  46398. image: {
  46399. source: "./media/characters/riley-foxthing/front-alt.svg",
  46400. extra: 1572/1389,
  46401. bottom: 116/1688
  46402. }
  46403. },
  46404. },
  46405. [
  46406. {
  46407. name: "Normal Sized",
  46408. height: math.unit(1.85, "meters"),
  46409. default: true
  46410. },
  46411. {
  46412. name: "Quite Sizable",
  46413. height: math.unit(5, "meters")
  46414. },
  46415. {
  46416. name: "Rather Large",
  46417. height: math.unit(20, "meters")
  46418. },
  46419. {
  46420. name: "Macro",
  46421. height: math.unit(450, "meters")
  46422. },
  46423. {
  46424. name: "Giga",
  46425. height: math.unit(5, "km")
  46426. },
  46427. ]
  46428. ))
  46429. characterMakers.push(() => makeCharacter(
  46430. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46431. {
  46432. front: {
  46433. height: math.unit(6, "feet"),
  46434. weight: math.unit(200, "lb"),
  46435. name: "Front",
  46436. image: {
  46437. source: "./media/characters/blizzard/front.svg",
  46438. extra: 1136/990,
  46439. bottom: 136/1272
  46440. }
  46441. },
  46442. back: {
  46443. height: math.unit(6, "feet"),
  46444. weight: math.unit(200, "lb"),
  46445. name: "Back",
  46446. image: {
  46447. source: "./media/characters/blizzard/back.svg",
  46448. extra: 1175/1034,
  46449. bottom: 97/1272
  46450. }
  46451. },
  46452. sitting: {
  46453. height: math.unit(3.725, "feet"),
  46454. weight: math.unit(200, "lb"),
  46455. name: "Sitting",
  46456. image: {
  46457. source: "./media/characters/blizzard/sitting.svg",
  46458. extra: 581/485,
  46459. bottom: 90/671
  46460. }
  46461. },
  46462. frontWizard: {
  46463. height: math.unit(7.9, "feet"),
  46464. weight: math.unit(200, "lb"),
  46465. name: "Front (Wizard)",
  46466. image: {
  46467. source: "./media/characters/blizzard/front-wizard.svg"
  46468. }
  46469. },
  46470. backWizard: {
  46471. height: math.unit(7.9, "feet"),
  46472. weight: math.unit(200, "lb"),
  46473. name: "Back (Wizard)",
  46474. image: {
  46475. source: "./media/characters/blizzard/back-wizard.svg"
  46476. }
  46477. },
  46478. frontNsfw: {
  46479. height: math.unit(6, "feet"),
  46480. weight: math.unit(200, "lb"),
  46481. name: "Front (NSFW)",
  46482. image: {
  46483. source: "./media/characters/blizzard/front-nsfw.svg",
  46484. extra: 1136/990,
  46485. bottom: 136/1272
  46486. }
  46487. },
  46488. backNsfw: {
  46489. height: math.unit(6, "feet"),
  46490. weight: math.unit(200, "lb"),
  46491. name: "Back (NSFW)",
  46492. image: {
  46493. source: "./media/characters/blizzard/back-nsfw.svg",
  46494. extra: 1175/1034,
  46495. bottom: 97/1272
  46496. }
  46497. },
  46498. sittingNsfw: {
  46499. height: math.unit(3.725, "feet"),
  46500. weight: math.unit(200, "lb"),
  46501. name: "Sitting (NSFW)",
  46502. image: {
  46503. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46504. extra: 581/485,
  46505. bottom: 90/671
  46506. }
  46507. },
  46508. wizardFrontNsfw: {
  46509. height: math.unit(7.9, "feet"),
  46510. weight: math.unit(200, "lb"),
  46511. name: "Wizard (Front, NSFW)",
  46512. image: {
  46513. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46514. }
  46515. },
  46516. },
  46517. [
  46518. {
  46519. name: "Normal",
  46520. height: math.unit(6, "feet"),
  46521. default: true
  46522. },
  46523. ]
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46527. {
  46528. front: {
  46529. height: math.unit(5 + 2/12, "feet"),
  46530. name: "Front",
  46531. image: {
  46532. source: "./media/characters/lumi/front.svg",
  46533. extra: 1328/1268,
  46534. bottom: 103/1431
  46535. }
  46536. },
  46537. back: {
  46538. height: math.unit(5 + 2/12, "feet"),
  46539. name: "Back",
  46540. image: {
  46541. source: "./media/characters/lumi/back.svg",
  46542. extra: 1381/1327,
  46543. bottom: 43/1424
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Normal",
  46550. height: math.unit(5 + 2/12, "feet"),
  46551. default: true
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46557. {
  46558. front: {
  46559. height: math.unit(5 + 9/12, "feet"),
  46560. name: "Front",
  46561. image: {
  46562. source: "./media/characters/aliya-cotton/front.svg",
  46563. extra: 577/564,
  46564. bottom: 29/606
  46565. }
  46566. },
  46567. },
  46568. [
  46569. {
  46570. name: "Normal",
  46571. height: math.unit(5 + 9/12, "feet"),
  46572. default: true
  46573. },
  46574. ]
  46575. ))
  46576. characterMakers.push(() => makeCharacter(
  46577. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46578. {
  46579. front: {
  46580. height: math.unit(2.7, "meters"),
  46581. weight: math.unit(25000, "lb"),
  46582. name: "Front",
  46583. image: {
  46584. source: "./media/characters/noah-luxray/front.svg",
  46585. extra: 1644/825,
  46586. bottom: 339/1983
  46587. }
  46588. },
  46589. side: {
  46590. height: math.unit(2.97, "meters"),
  46591. weight: math.unit(25000, "lb"),
  46592. name: "Side",
  46593. image: {
  46594. source: "./media/characters/noah-luxray/side.svg",
  46595. extra: 1319/650,
  46596. bottom: 163/1482
  46597. }
  46598. },
  46599. dick: {
  46600. height: math.unit(7.4, "feet"),
  46601. weight: math.unit(2500, "lb"),
  46602. name: "Dick",
  46603. image: {
  46604. source: "./media/characters/noah-luxray/dick.svg"
  46605. }
  46606. },
  46607. dickAlt: {
  46608. height: math.unit(10.83, "feet"),
  46609. weight: math.unit(2500, "lb"),
  46610. name: "Dick-alt",
  46611. image: {
  46612. source: "./media/characters/noah-luxray/dick-alt.svg"
  46613. }
  46614. },
  46615. },
  46616. [
  46617. {
  46618. name: "BIG",
  46619. height: math.unit(2.7, "meters"),
  46620. default: true
  46621. },
  46622. ]
  46623. ))
  46624. characterMakers.push(() => makeCharacter(
  46625. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46626. {
  46627. standing: {
  46628. height: math.unit(183, "cm"),
  46629. weight: math.unit(68, "kg"),
  46630. name: "Standing",
  46631. image: {
  46632. source: "./media/characters/arion/standing.svg",
  46633. extra: 1869/1807,
  46634. bottom: 93/1962
  46635. }
  46636. },
  46637. reclining: {
  46638. height: math.unit(70.5, "cm"),
  46639. weight: math.unit(68, "lb"),
  46640. name: "Reclining",
  46641. image: {
  46642. source: "./media/characters/arion/reclining.svg",
  46643. extra: 937/870,
  46644. bottom: 63/1000
  46645. }
  46646. },
  46647. },
  46648. [
  46649. {
  46650. name: "Colossus Size, Low",
  46651. height: math.unit(33, "meters"),
  46652. default: true
  46653. },
  46654. {
  46655. name: "Colossus Size, Mid",
  46656. height: math.unit(52, "meters")
  46657. },
  46658. {
  46659. name: "Colossus Size, High",
  46660. height: math.unit(60, "meters")
  46661. },
  46662. {
  46663. name: "Titan Size, Low",
  46664. height: math.unit(91, "meters"),
  46665. },
  46666. {
  46667. name: "Titan Size, Mid",
  46668. height: math.unit(122, "meters")
  46669. },
  46670. {
  46671. name: "Titan Size, High",
  46672. height: math.unit(162, "meters")
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46678. {
  46679. front: {
  46680. height: math.unit(53, "meters"),
  46681. name: "Front",
  46682. image: {
  46683. source: "./media/characters/stellar-marbey/front.svg",
  46684. extra: 1913/1805,
  46685. bottom: 92/2005
  46686. }
  46687. },
  46688. back: {
  46689. height: math.unit(53, "meters"),
  46690. name: "Back",
  46691. image: {
  46692. source: "./media/characters/stellar-marbey/back.svg",
  46693. extra: 1960/1851,
  46694. bottom: 28/1988
  46695. }
  46696. },
  46697. mouth: {
  46698. height: math.unit(3.5, "meters"),
  46699. name: "Mouth",
  46700. image: {
  46701. source: "./media/characters/stellar-marbey/mouth.svg"
  46702. }
  46703. },
  46704. },
  46705. [
  46706. {
  46707. name: "Macro",
  46708. height: math.unit(53, "meters"),
  46709. default: true
  46710. },
  46711. ]
  46712. ))
  46713. characterMakers.push(() => makeCharacter(
  46714. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46715. {
  46716. front: {
  46717. height: math.unit(8 + 1/12, "feet"),
  46718. weight: math.unit(233, "lb"),
  46719. name: "Front",
  46720. image: {
  46721. source: "./media/characters/matsu/front.svg",
  46722. extra: 832/772,
  46723. bottom: 40/872
  46724. }
  46725. },
  46726. back: {
  46727. height: math.unit(8 + 1/12, "feet"),
  46728. weight: math.unit(233, "lb"),
  46729. name: "Back",
  46730. image: {
  46731. source: "./media/characters/matsu/back.svg",
  46732. extra: 839/780,
  46733. bottom: 47/886
  46734. }
  46735. },
  46736. },
  46737. [
  46738. {
  46739. name: "Normal",
  46740. height: math.unit(8 + 1/12, "feet"),
  46741. default: true
  46742. },
  46743. ]
  46744. ))
  46745. characterMakers.push(() => makeCharacter(
  46746. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46747. {
  46748. front: {
  46749. height: math.unit(4, "feet"),
  46750. weight: math.unit(148, "lb"),
  46751. name: "Front",
  46752. image: {
  46753. source: "./media/characters/thiz/front.svg",
  46754. extra: 1913/1748,
  46755. bottom: 62/1975
  46756. }
  46757. },
  46758. },
  46759. [
  46760. {
  46761. name: "Normal",
  46762. height: math.unit(4, "feet"),
  46763. default: true
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(7 + 6/12, "feet"),
  46772. weight: math.unit(267, "lb"),
  46773. name: "Front",
  46774. image: {
  46775. source: "./media/characters/marcel/front.svg",
  46776. extra: 1221/1096,
  46777. bottom: 76/1297
  46778. }
  46779. },
  46780. },
  46781. [
  46782. {
  46783. name: "Normal",
  46784. height: math.unit(7 + 6/12, "feet"),
  46785. default: true
  46786. },
  46787. ]
  46788. ))
  46789. characterMakers.push(() => makeCharacter(
  46790. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46791. {
  46792. side: {
  46793. height: math.unit(42, "meters"),
  46794. name: "Side",
  46795. image: {
  46796. source: "./media/characters/flake/side.svg",
  46797. extra: 1525/1306,
  46798. bottom: 209/1734
  46799. }
  46800. },
  46801. },
  46802. [
  46803. {
  46804. name: "Normal",
  46805. height: math.unit(42, "meters"),
  46806. default: true
  46807. },
  46808. ]
  46809. ))
  46810. characterMakers.push(() => makeCharacter(
  46811. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46812. {
  46813. dressed: {
  46814. height: math.unit(6 + 4/12, "feet"),
  46815. weight: math.unit(520, "lb"),
  46816. name: "Dressed",
  46817. image: {
  46818. source: "./media/characters/someonne/dressed.svg",
  46819. extra: 1020/1010,
  46820. bottom: 178/1198
  46821. }
  46822. },
  46823. undressed: {
  46824. height: math.unit(6 + 4/12, "feet"),
  46825. weight: math.unit(520, "lb"),
  46826. name: "Undressed",
  46827. image: {
  46828. source: "./media/characters/someonne/undressed.svg",
  46829. extra: 1019/1014,
  46830. bottom: 169/1188
  46831. }
  46832. },
  46833. },
  46834. [
  46835. {
  46836. name: "Normal",
  46837. height: math.unit(6 + 4/12, "feet"),
  46838. default: true
  46839. },
  46840. ]
  46841. ))
  46842. characterMakers.push(() => makeCharacter(
  46843. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46844. {
  46845. front: {
  46846. height: math.unit(3, "feet"),
  46847. weight: math.unit(30, "lb"),
  46848. name: "Front",
  46849. image: {
  46850. source: "./media/characters/till/front.svg",
  46851. extra: 892/823,
  46852. bottom: 55/947
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(3, "feet"),
  46860. default: true
  46861. },
  46862. ]
  46863. ))
  46864. characterMakers.push(() => makeCharacter(
  46865. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46866. {
  46867. front: {
  46868. height: math.unit(9 + 8/12, "feet"),
  46869. weight: math.unit(800, "lb"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/sydney-heki/front.svg",
  46873. extra: 1360/1300,
  46874. bottom: 22/1382
  46875. }
  46876. },
  46877. back: {
  46878. height: math.unit(9 + 8/12, "feet"),
  46879. weight: math.unit(800, "lb"),
  46880. name: "Back",
  46881. image: {
  46882. source: "./media/characters/sydney-heki/back.svg",
  46883. extra: 1356/1293,
  46884. bottom: 12/1368
  46885. }
  46886. },
  46887. frontDressed: {
  46888. height: math.unit(9 + 8/12, "feet"),
  46889. weight: math.unit(800, "lb"),
  46890. name: "Front-dressed",
  46891. image: {
  46892. source: "./media/characters/sydney-heki/front-dressed.svg",
  46893. extra: 1360/1300,
  46894. bottom: 22/1382
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Normal",
  46901. height: math.unit(9 + 8/12, "feet"),
  46902. default: true
  46903. },
  46904. {
  46905. name: "Macro",
  46906. height: math.unit(500, "feet")
  46907. },
  46908. {
  46909. name: "Megamacro",
  46910. height: math.unit(3.6, "miles")
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46916. {
  46917. front: {
  46918. height: math.unit(200, "cm"),
  46919. weight: math.unit(250, "lb"),
  46920. name: "Front",
  46921. image: {
  46922. source: "./media/characters/fowler-karlsson/front.svg",
  46923. extra: 897/845,
  46924. bottom: 123/1020
  46925. }
  46926. },
  46927. back: {
  46928. height: math.unit(200, "cm"),
  46929. weight: math.unit(250, "lb"),
  46930. name: "Back",
  46931. image: {
  46932. source: "./media/characters/fowler-karlsson/back.svg",
  46933. extra: 999/944,
  46934. bottom: 26/1025
  46935. }
  46936. },
  46937. dick: {
  46938. height: math.unit(1.92, "feet"),
  46939. weight: math.unit(150, "lb"),
  46940. name: "Dick",
  46941. image: {
  46942. source: "./media/characters/fowler-karlsson/dick.svg"
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(200, "cm"),
  46950. default: true
  46951. },
  46952. {
  46953. name: "Smaller Macro",
  46954. height: math.unit(90, "m")
  46955. },
  46956. {
  46957. name: "Macro",
  46958. height: math.unit(150, "m")
  46959. },
  46960. {
  46961. name: "Bigger Macro",
  46962. height: math.unit(300, "m")
  46963. },
  46964. ]
  46965. ))
  46966. characterMakers.push(() => makeCharacter(
  46967. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46968. {
  46969. side: {
  46970. height: math.unit(8 + 2/12, "feet"),
  46971. weight: math.unit(1, "tonne"),
  46972. name: "Side",
  46973. image: {
  46974. source: "./media/characters/rylide/side.svg",
  46975. extra: 1318/1034,
  46976. bottom: 106/1424
  46977. }
  46978. },
  46979. sitting: {
  46980. height: math.unit(303, "cm"),
  46981. weight: math.unit(1, "tonne"),
  46982. name: "Sitting",
  46983. image: {
  46984. source: "./media/characters/rylide/sitting.svg",
  46985. extra: 1303/1103,
  46986. bottom: 36/1339
  46987. }
  46988. },
  46989. },
  46990. [
  46991. {
  46992. name: "Normal",
  46993. height: math.unit(8 + 2/12, "feet"),
  46994. default: true
  46995. },
  46996. ]
  46997. ))
  46998. characterMakers.push(() => makeCharacter(
  46999. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47000. {
  47001. front: {
  47002. height: math.unit(5 + 10/12, "feet"),
  47003. weight: math.unit(160, "lb"),
  47004. name: "Front",
  47005. image: {
  47006. source: "./media/characters/pudask/front.svg",
  47007. extra: 1616/1590,
  47008. bottom: 161/1777
  47009. }
  47010. },
  47011. },
  47012. [
  47013. {
  47014. name: "Ferret Height",
  47015. height: math.unit(2 + 5/12, "feet")
  47016. },
  47017. {
  47018. name: "Canon Height",
  47019. height: math.unit(5 + 10/12, "feet"),
  47020. default: true
  47021. },
  47022. ]
  47023. ))
  47024. characterMakers.push(() => makeCharacter(
  47025. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47026. {
  47027. front: {
  47028. height: math.unit(3 + 6/12, "feet"),
  47029. weight: math.unit(60, "lb"),
  47030. name: "Front",
  47031. image: {
  47032. source: "./media/characters/ramita/front.svg",
  47033. extra: 1402/1232,
  47034. bottom: 62/1464
  47035. }
  47036. },
  47037. dressed: {
  47038. height: math.unit(3 + 6/12, "feet"),
  47039. weight: math.unit(60, "lb"),
  47040. name: "Dressed",
  47041. image: {
  47042. source: "./media/characters/ramita/dressed.svg",
  47043. extra: 1534/1249,
  47044. bottom: 50/1584
  47045. }
  47046. },
  47047. },
  47048. [
  47049. {
  47050. name: "Normal",
  47051. height: math.unit(3 + 6/12, "feet"),
  47052. default: true
  47053. },
  47054. ]
  47055. ))
  47056. characterMakers.push(() => makeCharacter(
  47057. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47058. {
  47059. front: {
  47060. height: math.unit(8, "feet"),
  47061. name: "Front",
  47062. image: {
  47063. source: "./media/characters/ark/front.svg",
  47064. extra: 772/693,
  47065. bottom: 45/817
  47066. }
  47067. },
  47068. },
  47069. [
  47070. {
  47071. name: "Normal",
  47072. height: math.unit(8, "feet"),
  47073. default: true
  47074. },
  47075. ]
  47076. ))
  47077. characterMakers.push(() => makeCharacter(
  47078. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47079. {
  47080. front: {
  47081. height: math.unit(6, "feet"),
  47082. weight: math.unit(250, "lb"),
  47083. volume: math.unit(5/8, "gallons"),
  47084. name: "Front",
  47085. image: {
  47086. source: "./media/characters/ludwig-horn/front.svg",
  47087. extra: 1782/1635,
  47088. bottom: 96/1878
  47089. }
  47090. },
  47091. back: {
  47092. height: math.unit(6, "feet"),
  47093. weight: math.unit(250, "lb"),
  47094. volume: math.unit(5/8, "gallons"),
  47095. name: "Back",
  47096. image: {
  47097. source: "./media/characters/ludwig-horn/back.svg",
  47098. extra: 1874/1729,
  47099. bottom: 27/1901
  47100. }
  47101. },
  47102. dick: {
  47103. height: math.unit(1.05, "feet"),
  47104. weight: math.unit(15, "lb"),
  47105. volume: math.unit(5/8, "gallons"),
  47106. name: "Dick",
  47107. image: {
  47108. source: "./media/characters/ludwig-horn/dick.svg"
  47109. }
  47110. },
  47111. },
  47112. [
  47113. {
  47114. name: "Small",
  47115. height: math.unit(6, "feet")
  47116. },
  47117. {
  47118. name: "Typical",
  47119. height: math.unit(12, "feet"),
  47120. default: true
  47121. },
  47122. {
  47123. name: "Building",
  47124. height: math.unit(80, "feet")
  47125. },
  47126. {
  47127. name: "Town",
  47128. height: math.unit(800, "feet")
  47129. },
  47130. {
  47131. name: "Kingdom",
  47132. height: math.unit(80000, "feet")
  47133. },
  47134. {
  47135. name: "Planet",
  47136. height: math.unit(8000000, "feet")
  47137. },
  47138. {
  47139. name: "Universe",
  47140. height: math.unit(8000000000, "feet")
  47141. },
  47142. {
  47143. name: "Transcended",
  47144. height: math.unit(8e27, "feet")
  47145. },
  47146. ]
  47147. ))
  47148. characterMakers.push(() => makeCharacter(
  47149. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47150. {
  47151. front: {
  47152. height: math.unit(5, "feet"),
  47153. weight: math.unit(50, "kg"),
  47154. name: "Front",
  47155. image: {
  47156. source: "./media/characters/biot-avery/front.svg",
  47157. extra: 1295/1232,
  47158. bottom: 86/1381
  47159. }
  47160. },
  47161. },
  47162. [
  47163. {
  47164. name: "Normal",
  47165. height: math.unit(5, "feet"),
  47166. default: true
  47167. },
  47168. ]
  47169. ))
  47170. characterMakers.push(() => makeCharacter(
  47171. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47172. {
  47173. front: {
  47174. height: math.unit(6, "feet"),
  47175. name: "Front",
  47176. image: {
  47177. source: "./media/characters/kitsune-kiro/front.svg",
  47178. extra: 1270/1158,
  47179. bottom: 42/1312
  47180. }
  47181. },
  47182. frontAlt: {
  47183. height: math.unit(6, "feet"),
  47184. name: "Front-alt",
  47185. image: {
  47186. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47187. extra: 1130/1081,
  47188. bottom: 36/1166
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Smol",
  47195. height: math.unit(3, "feet")
  47196. },
  47197. {
  47198. name: "Normal",
  47199. height: math.unit(6, "feet"),
  47200. default: true
  47201. },
  47202. ]
  47203. ))
  47204. characterMakers.push(() => makeCharacter(
  47205. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47206. {
  47207. front: {
  47208. height: math.unit(6, "feet"),
  47209. weight: math.unit(125, "lb"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/jack-thatcher/front.svg",
  47213. extra: 1474/1370,
  47214. bottom: 26/1500
  47215. }
  47216. },
  47217. back: {
  47218. height: math.unit(6, "feet"),
  47219. weight: math.unit(125, "lb"),
  47220. name: "Back",
  47221. image: {
  47222. source: "./media/characters/jack-thatcher/back.svg",
  47223. extra: 1489/1384,
  47224. bottom: 18/1507
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(6, "feet"),
  47232. default: true
  47233. },
  47234. {
  47235. name: "Macro",
  47236. height: math.unit(75, "feet")
  47237. },
  47238. {
  47239. name: "Macro-er",
  47240. height: math.unit(250, "feet")
  47241. },
  47242. ]
  47243. ))
  47244. characterMakers.push(() => makeCharacter(
  47245. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47246. {
  47247. front: {
  47248. height: math.unit(7, "feet"),
  47249. weight: math.unit(110, "kg"),
  47250. name: "Front",
  47251. image: {
  47252. source: "./media/characters/max-hyper/front.svg",
  47253. extra: 1969/1881,
  47254. bottom: 49/2018
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Normal",
  47261. height: math.unit(7, "feet"),
  47262. default: true
  47263. },
  47264. ]
  47265. ))
  47266. characterMakers.push(() => makeCharacter(
  47267. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47268. {
  47269. front: {
  47270. height: math.unit(5 + 5/12, "feet"),
  47271. weight: math.unit(160, "lb"),
  47272. name: "Front",
  47273. image: {
  47274. source: "./media/characters/spook/front.svg",
  47275. extra: 794/791,
  47276. bottom: 54/848
  47277. }
  47278. },
  47279. back: {
  47280. height: math.unit(5 + 5/12, "feet"),
  47281. weight: math.unit(160, "lb"),
  47282. name: "Back",
  47283. image: {
  47284. source: "./media/characters/spook/back.svg",
  47285. extra: 812/798,
  47286. bottom: 32/844
  47287. }
  47288. },
  47289. },
  47290. [
  47291. {
  47292. name: "Normal",
  47293. height: math.unit(5 + 5/12, "feet"),
  47294. default: true
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47300. {
  47301. front: {
  47302. height: math.unit(18, "feet"),
  47303. name: "Front",
  47304. image: {
  47305. source: "./media/characters/xeaduulix/front.svg",
  47306. extra: 1380/1166,
  47307. bottom: 110/1490
  47308. }
  47309. },
  47310. back: {
  47311. height: math.unit(18, "feet"),
  47312. name: "Back",
  47313. image: {
  47314. source: "./media/characters/xeaduulix/back.svg",
  47315. extra: 1592/1170,
  47316. bottom: 128/1720
  47317. }
  47318. },
  47319. frontNsfw: {
  47320. height: math.unit(18, "feet"),
  47321. name: "Front (NSFW)",
  47322. image: {
  47323. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47324. extra: 1380/1166,
  47325. bottom: 110/1490
  47326. }
  47327. },
  47328. backNsfw: {
  47329. height: math.unit(18, "feet"),
  47330. name: "Back (NSFW)",
  47331. image: {
  47332. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47333. extra: 1592/1170,
  47334. bottom: 128/1720
  47335. }
  47336. },
  47337. },
  47338. [
  47339. {
  47340. name: "Normal",
  47341. height: math.unit(18, "feet"),
  47342. default: true
  47343. },
  47344. ]
  47345. ))
  47346. characterMakers.push(() => makeCharacter(
  47347. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47348. {
  47349. spreadWings: {
  47350. height: math.unit(20, "feet"),
  47351. name: "Spread Wings",
  47352. image: {
  47353. source: "./media/characters/fledge/spread-wings.svg",
  47354. extra: 693/635,
  47355. bottom: 26/719
  47356. }
  47357. },
  47358. front: {
  47359. height: math.unit(20, "feet"),
  47360. name: "Front",
  47361. image: {
  47362. source: "./media/characters/fledge/front.svg",
  47363. extra: 684/637,
  47364. bottom: 18/702
  47365. }
  47366. },
  47367. frontAlt: {
  47368. height: math.unit(20, "feet"),
  47369. name: "Front (Alt)",
  47370. image: {
  47371. source: "./media/characters/fledge/front-alt.svg",
  47372. extra: 708/664,
  47373. bottom: 13/721
  47374. }
  47375. },
  47376. back: {
  47377. height: math.unit(20, "feet"),
  47378. name: "Back",
  47379. image: {
  47380. source: "./media/characters/fledge/back.svg",
  47381. extra: 718/634,
  47382. bottom: 22/740
  47383. }
  47384. },
  47385. head: {
  47386. height: math.unit(5.55, "feet"),
  47387. name: "Head",
  47388. image: {
  47389. source: "./media/characters/fledge/head.svg"
  47390. }
  47391. },
  47392. headAlt: {
  47393. height: math.unit(5.1, "feet"),
  47394. name: "Head (Alt)",
  47395. image: {
  47396. source: "./media/characters/fledge/head-alt.svg"
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Small",
  47403. height: math.unit(6 + 2/12, "feet")
  47404. },
  47405. {
  47406. name: "Big",
  47407. height: math.unit(20, "feet"),
  47408. default: true
  47409. },
  47410. {
  47411. name: "Giant",
  47412. height: math.unit(100, "feet")
  47413. },
  47414. {
  47415. name: "Macro",
  47416. height: math.unit(200, "feet")
  47417. },
  47418. ]
  47419. ))
  47420. characterMakers.push(() => makeCharacter(
  47421. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47422. {
  47423. front: {
  47424. height: math.unit(1, "meter"),
  47425. name: "Front",
  47426. image: {
  47427. source: "./media/characters/atlas-morenai/front.svg",
  47428. extra: 1275/1043,
  47429. bottom: 19/1294
  47430. }
  47431. },
  47432. back: {
  47433. height: math.unit(1, "meter"),
  47434. name: "Back",
  47435. image: {
  47436. source: "./media/characters/atlas-morenai/back.svg",
  47437. extra: 1141/1001,
  47438. bottom: 25/1166
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(1, "meter"),
  47446. default: true
  47447. },
  47448. {
  47449. name: "Magic-Infused",
  47450. height: math.unit(5, "meters")
  47451. },
  47452. ]
  47453. ))
  47454. characterMakers.push(() => makeCharacter(
  47455. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47456. {
  47457. front: {
  47458. height: math.unit(5, "meters"),
  47459. name: "Front",
  47460. image: {
  47461. source: "./media/characters/cintia/front.svg",
  47462. extra: 1312/1228,
  47463. bottom: 38/1350
  47464. }
  47465. },
  47466. back: {
  47467. height: math.unit(5, "meters"),
  47468. name: "Back",
  47469. image: {
  47470. source: "./media/characters/cintia/back.svg",
  47471. extra: 1260/1166,
  47472. bottom: 98/1358
  47473. }
  47474. },
  47475. frontDick: {
  47476. height: math.unit(5, "meters"),
  47477. name: "Front (Dick)",
  47478. image: {
  47479. source: "./media/characters/cintia/front-dick.svg",
  47480. extra: 1312/1228,
  47481. bottom: 38/1350
  47482. }
  47483. },
  47484. backDick: {
  47485. height: math.unit(5, "meters"),
  47486. name: "Back (Dick)",
  47487. image: {
  47488. source: "./media/characters/cintia/back-dick.svg",
  47489. extra: 1260/1166,
  47490. bottom: 98/1358
  47491. }
  47492. },
  47493. bust: {
  47494. height: math.unit(1.97, "meters"),
  47495. name: "Bust",
  47496. image: {
  47497. source: "./media/characters/cintia/bust.svg",
  47498. extra: 617/565,
  47499. bottom: 0/617
  47500. }
  47501. },
  47502. },
  47503. [
  47504. {
  47505. name: "Normal",
  47506. height: math.unit(5, "meters"),
  47507. default: true
  47508. },
  47509. ]
  47510. ))
  47511. characterMakers.push(() => makeCharacter(
  47512. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47513. {
  47514. side: {
  47515. height: math.unit(100, "feet"),
  47516. name: "Side",
  47517. image: {
  47518. source: "./media/characters/denora/side.svg",
  47519. extra: 875/803,
  47520. bottom: 9/884
  47521. }
  47522. },
  47523. },
  47524. [
  47525. {
  47526. name: "Standard",
  47527. height: math.unit(100, "feet"),
  47528. default: true
  47529. },
  47530. {
  47531. name: "Grand",
  47532. height: math.unit(1000, "feet")
  47533. },
  47534. {
  47535. name: "Conquering",
  47536. height: math.unit(10000, "feet")
  47537. },
  47538. ]
  47539. ))
  47540. characterMakers.push(() => makeCharacter(
  47541. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47542. {
  47543. dressed: {
  47544. height: math.unit(8 + 5/12, "feet"),
  47545. weight: math.unit(700, "lb"),
  47546. name: "Dressed",
  47547. image: {
  47548. source: "./media/characters/kiva/dressed.svg",
  47549. extra: 1102/1055,
  47550. bottom: 60/1162
  47551. }
  47552. },
  47553. nude: {
  47554. height: math.unit(8 + 5/12, "feet"),
  47555. weight: math.unit(700, "lb"),
  47556. name: "Nude",
  47557. image: {
  47558. source: "./media/characters/kiva/nude.svg",
  47559. extra: 1102/1055,
  47560. bottom: 60/1162
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Base Height",
  47567. height: math.unit(8 + 5/12, "feet"),
  47568. default: true
  47569. },
  47570. {
  47571. name: "Macro",
  47572. height: math.unit(100, "feet")
  47573. },
  47574. {
  47575. name: "Max",
  47576. height: math.unit(3280, "feet")
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47582. {
  47583. front: {
  47584. height: math.unit(6 + 8/12, "feet"),
  47585. weight: math.unit(250, "lb"),
  47586. name: "Front",
  47587. image: {
  47588. source: "./media/characters/ztragon/front.svg",
  47589. extra: 1825/1684,
  47590. bottom: 98/1923
  47591. }
  47592. },
  47593. },
  47594. [
  47595. {
  47596. name: "Normal",
  47597. height: math.unit(6 + 8/12, "feet"),
  47598. default: true
  47599. },
  47600. {
  47601. name: "Macro",
  47602. height: math.unit(80, "feet")
  47603. },
  47604. ]
  47605. ))
  47606. characterMakers.push(() => makeCharacter(
  47607. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47608. {
  47609. front: {
  47610. height: math.unit(10.4, "feet"),
  47611. weight: math.unit(2, "tons"),
  47612. name: "Front",
  47613. image: {
  47614. source: "./media/characters/yesenia/front.svg",
  47615. extra: 1479/1474,
  47616. bottom: 233/1712
  47617. }
  47618. },
  47619. },
  47620. [
  47621. {
  47622. name: "Normal",
  47623. height: math.unit(10.4, "feet"),
  47624. default: true
  47625. },
  47626. ]
  47627. ))
  47628. characterMakers.push(() => makeCharacter(
  47629. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47630. {
  47631. normal: {
  47632. height: math.unit(6 + 1/12, "feet"),
  47633. weight: math.unit(180, "lb"),
  47634. name: "Normal",
  47635. image: {
  47636. source: "./media/characters/leanne-lycheborne/normal.svg",
  47637. extra: 1748/1660,
  47638. bottom: 98/1846
  47639. }
  47640. },
  47641. were: {
  47642. height: math.unit(12, "feet"),
  47643. weight: math.unit(1600, "lb"),
  47644. name: "Were",
  47645. image: {
  47646. source: "./media/characters/leanne-lycheborne/were.svg",
  47647. extra: 1485/1432,
  47648. bottom: 66/1551
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(6 + 1/12, "feet"),
  47656. default: true
  47657. },
  47658. ]
  47659. ))
  47660. characterMakers.push(() => makeCharacter(
  47661. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47662. {
  47663. side: {
  47664. height: math.unit(13, "feet"),
  47665. name: "Side",
  47666. image: {
  47667. source: "./media/characters/kira-tyler/side.svg",
  47668. extra: 693/393,
  47669. bottom: 58/751
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(13, "feet"),
  47677. default: true
  47678. },
  47679. ]
  47680. ))
  47681. characterMakers.push(() => makeCharacter(
  47682. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47683. {
  47684. front: {
  47685. height: math.unit(10.3, "feet"),
  47686. weight: math.unit(150, "lb"),
  47687. name: "Front",
  47688. image: {
  47689. source: "./media/characters/blaze/front.svg",
  47690. extra: 1378/1286,
  47691. bottom: 172/1550
  47692. }
  47693. },
  47694. },
  47695. [
  47696. {
  47697. name: "Normal",
  47698. height: math.unit(10.3, "feet"),
  47699. default: true
  47700. },
  47701. ]
  47702. ))
  47703. characterMakers.push(() => makeCharacter(
  47704. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47705. {
  47706. side: {
  47707. height: math.unit(2, "meters"),
  47708. weight: math.unit(400, "kg"),
  47709. name: "Side",
  47710. image: {
  47711. source: "./media/characters/anu/side.svg",
  47712. extra: 506/394,
  47713. bottom: 18/524
  47714. }
  47715. },
  47716. },
  47717. [
  47718. {
  47719. name: "Humanoid",
  47720. height: math.unit(2, "meters")
  47721. },
  47722. {
  47723. name: "Normal",
  47724. height: math.unit(5, "meters"),
  47725. default: true
  47726. },
  47727. ]
  47728. ))
  47729. characterMakers.push(() => makeCharacter(
  47730. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47731. {
  47732. front: {
  47733. height: math.unit(5 + 5/12, "feet"),
  47734. weight: math.unit(170, "lb"),
  47735. name: "Front",
  47736. image: {
  47737. source: "./media/characters/synx-the-lynx/front.svg",
  47738. extra: 1893/1745,
  47739. bottom: 17/1910
  47740. }
  47741. },
  47742. side: {
  47743. height: math.unit(5 + 5/12, "feet"),
  47744. weight: math.unit(170, "lb"),
  47745. name: "Side",
  47746. image: {
  47747. source: "./media/characters/synx-the-lynx/side.svg",
  47748. extra: 1884/1740,
  47749. bottom: 39/1923
  47750. }
  47751. },
  47752. back: {
  47753. height: math.unit(5 + 5/12, "feet"),
  47754. weight: math.unit(170, "lb"),
  47755. name: "Back",
  47756. image: {
  47757. source: "./media/characters/synx-the-lynx/back.svg",
  47758. extra: 1903/1755,
  47759. bottom: 14/1917
  47760. }
  47761. },
  47762. },
  47763. [
  47764. {
  47765. name: "Normal",
  47766. height: math.unit(5 + 5/12, "feet"),
  47767. default: true
  47768. },
  47769. ]
  47770. ))
  47771. characterMakers.push(() => makeCharacter(
  47772. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47773. {
  47774. back: {
  47775. height: math.unit(15, "feet"),
  47776. name: "Back",
  47777. image: {
  47778. source: "./media/characters/nadezda-fex/back.svg",
  47779. extra: 1695/1481,
  47780. bottom: 25/1720
  47781. }
  47782. },
  47783. },
  47784. [
  47785. {
  47786. name: "Normal",
  47787. height: math.unit(15, "feet"),
  47788. default: true
  47789. },
  47790. {
  47791. name: "Macro",
  47792. height: math.unit(2.5, "miles")
  47793. },
  47794. {
  47795. name: "Goddess",
  47796. height: math.unit(2, "multiverses")
  47797. },
  47798. ]
  47799. ))
  47800. characterMakers.push(() => makeCharacter(
  47801. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47802. {
  47803. front: {
  47804. height: math.unit(216, "cm"),
  47805. name: "Front",
  47806. image: {
  47807. source: "./media/characters/lev/front.svg",
  47808. extra: 1728/1670,
  47809. bottom: 82/1810
  47810. }
  47811. },
  47812. back: {
  47813. height: math.unit(216, "cm"),
  47814. name: "Back",
  47815. image: {
  47816. source: "./media/characters/lev/back.svg",
  47817. extra: 1738/1675,
  47818. bottom: 24/1762
  47819. }
  47820. },
  47821. dressed: {
  47822. height: math.unit(216, "cm"),
  47823. name: "Dressed",
  47824. image: {
  47825. source: "./media/characters/lev/dressed.svg",
  47826. extra: 1397/1351,
  47827. bottom: 73/1470
  47828. }
  47829. },
  47830. head: {
  47831. height: math.unit(0.51, "meter"),
  47832. name: "Head",
  47833. image: {
  47834. source: "./media/characters/lev/head.svg"
  47835. }
  47836. },
  47837. },
  47838. [
  47839. {
  47840. name: "Normal",
  47841. height: math.unit(216, "cm"),
  47842. default: true
  47843. },
  47844. {
  47845. name: "Relatively Macro",
  47846. height: math.unit(80, "meters")
  47847. },
  47848. {
  47849. name: "Megamacro",
  47850. height: math.unit(21600, "meters")
  47851. },
  47852. {
  47853. name: "Megamacro+",
  47854. height: math.unit(64800, "meters")
  47855. },
  47856. ]
  47857. ))
  47858. characterMakers.push(() => makeCharacter(
  47859. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47860. {
  47861. front: {
  47862. height: math.unit(2, "meters"),
  47863. weight: math.unit(80, "kg"),
  47864. name: "Front",
  47865. image: {
  47866. source: "./media/characters/moka/front.svg",
  47867. extra: 1337/1255,
  47868. bottom: 58/1395
  47869. }
  47870. },
  47871. },
  47872. [
  47873. {
  47874. name: "Micro",
  47875. height: math.unit(15, "cm")
  47876. },
  47877. {
  47878. name: "Normal",
  47879. height: math.unit(2, "meters"),
  47880. default: true
  47881. },
  47882. {
  47883. name: "Macro",
  47884. height: math.unit(20, "meters"),
  47885. },
  47886. ]
  47887. ))
  47888. characterMakers.push(() => makeCharacter(
  47889. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47890. {
  47891. front: {
  47892. height: math.unit(9, "feet"),
  47893. weight: math.unit(240, "lb"),
  47894. name: "Front",
  47895. image: {
  47896. source: "./media/characters/kuzco/front.svg",
  47897. extra: 1593/1487,
  47898. bottom: 32/1625
  47899. }
  47900. },
  47901. side: {
  47902. height: math.unit(9, "feet"),
  47903. weight: math.unit(240, "lb"),
  47904. name: "Side",
  47905. image: {
  47906. source: "./media/characters/kuzco/side.svg",
  47907. extra: 1575/1485,
  47908. bottom: 30/1605
  47909. }
  47910. },
  47911. back: {
  47912. height: math.unit(9, "feet"),
  47913. weight: math.unit(240, "lb"),
  47914. name: "Back",
  47915. image: {
  47916. source: "./media/characters/kuzco/back.svg",
  47917. extra: 1603/1514,
  47918. bottom: 14/1617
  47919. }
  47920. },
  47921. },
  47922. [
  47923. {
  47924. name: "Normal",
  47925. height: math.unit(9, "feet"),
  47926. default: true
  47927. },
  47928. ]
  47929. ))
  47930. characterMakers.push(() => makeCharacter(
  47931. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47932. {
  47933. side: {
  47934. height: math.unit(2, "meters"),
  47935. weight: math.unit(300, "kg"),
  47936. name: "Side",
  47937. image: {
  47938. source: "./media/characters/ceruleus/side.svg",
  47939. extra: 1068/974,
  47940. bottom: 126/1194
  47941. }
  47942. },
  47943. maw: {
  47944. height: math.unit(0.8125, "meter"),
  47945. name: "Maw",
  47946. image: {
  47947. source: "./media/characters/ceruleus/maw.svg"
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Normal",
  47954. height: math.unit(16, "meters"),
  47955. default: true
  47956. },
  47957. ]
  47958. ))
  47959. characterMakers.push(() => makeCharacter(
  47960. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47961. {
  47962. front: {
  47963. height: math.unit(9, "feet"),
  47964. weight: math.unit(500, "kg"),
  47965. name: "Front",
  47966. image: {
  47967. source: "./media/characters/acouya/front.svg",
  47968. extra: 1660/1473,
  47969. bottom: 28/1688
  47970. }
  47971. },
  47972. },
  47973. [
  47974. {
  47975. name: "Normal",
  47976. height: math.unit(9, "feet"),
  47977. default: true
  47978. },
  47979. ]
  47980. ))
  47981. characterMakers.push(() => makeCharacter(
  47982. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47983. {
  47984. front: {
  47985. height: math.unit(5 + 6/12, "feet"),
  47986. weight: math.unit(195, "lb"),
  47987. name: "Front",
  47988. image: {
  47989. source: "./media/characters/vant/front.svg",
  47990. extra: 1396/1320,
  47991. bottom: 20/1416
  47992. }
  47993. },
  47994. back: {
  47995. height: math.unit(5 + 6/12, "feet"),
  47996. weight: math.unit(195, "lb"),
  47997. name: "Back",
  47998. image: {
  47999. source: "./media/characters/vant/back.svg",
  48000. extra: 1396/1320,
  48001. bottom: 20/1416
  48002. }
  48003. },
  48004. maw: {
  48005. height: math.unit(0.75, "feet"),
  48006. name: "Maw",
  48007. image: {
  48008. source: "./media/characters/vant/maw.svg"
  48009. }
  48010. },
  48011. paw: {
  48012. height: math.unit(1.07, "feet"),
  48013. name: "Paw",
  48014. image: {
  48015. source: "./media/characters/vant/paw.svg"
  48016. }
  48017. },
  48018. },
  48019. [
  48020. {
  48021. name: "Micro",
  48022. height: math.unit(0.25, "inches")
  48023. },
  48024. {
  48025. name: "Normal",
  48026. height: math.unit(5 + 6/12, "feet"),
  48027. default: true
  48028. },
  48029. {
  48030. name: "Macro",
  48031. height: math.unit(75, "feet")
  48032. },
  48033. ]
  48034. ))
  48035. characterMakers.push(() => makeCharacter(
  48036. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48037. {
  48038. front: {
  48039. height: math.unit(30, "meters"),
  48040. weight: math.unit(363, "tons"),
  48041. name: "Front",
  48042. image: {
  48043. source: "./media/characters/ahra/front.svg",
  48044. extra: 1914/1814,
  48045. bottom: 46/1960
  48046. }
  48047. },
  48048. },
  48049. [
  48050. {
  48051. name: "Macro",
  48052. height: math.unit(30, "meters"),
  48053. default: true
  48054. },
  48055. ]
  48056. ))
  48057. characterMakers.push(() => makeCharacter(
  48058. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48059. {
  48060. undressed: {
  48061. height: math.unit(2, "m"),
  48062. weight: math.unit(250, "kg"),
  48063. name: "Undressed",
  48064. image: {
  48065. source: "./media/characters/coriander/undressed.svg",
  48066. extra: 1757/1606,
  48067. bottom: 107/1864
  48068. }
  48069. },
  48070. dressed: {
  48071. height: math.unit(2, "m"),
  48072. weight: math.unit(250, "kg"),
  48073. name: "Dressed",
  48074. image: {
  48075. source: "./media/characters/coriander/dressed.svg",
  48076. extra: 1757/1606,
  48077. bottom: 107/1864
  48078. }
  48079. },
  48080. },
  48081. [
  48082. {
  48083. name: "Normal",
  48084. height: math.unit(4, "meters"),
  48085. default: true
  48086. },
  48087. {
  48088. name: "XL",
  48089. height: math.unit(6, "meters")
  48090. },
  48091. {
  48092. name: "XXL",
  48093. height: math.unit(8, "meters")
  48094. },
  48095. ]
  48096. ))
  48097. characterMakers.push(() => makeCharacter(
  48098. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48099. {
  48100. front: {
  48101. height: math.unit(6, "feet"),
  48102. name: "Front",
  48103. image: {
  48104. source: "./media/characters/syrinx/front.svg",
  48105. extra: 1557/1259,
  48106. bottom: 171/1728
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Normal",
  48113. height: math.unit(6 + 3/12, "feet"),
  48114. default: true
  48115. },
  48116. ]
  48117. ))
  48118. characterMakers.push(() => makeCharacter(
  48119. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48120. {
  48121. front: {
  48122. height: math.unit(11 + 6/12, "feet"),
  48123. weight: math.unit(1.5, "tons"),
  48124. name: "Front",
  48125. image: {
  48126. source: "./media/characters/bor/front.svg",
  48127. extra: 1189/1109,
  48128. bottom: 170/1359
  48129. }
  48130. },
  48131. },
  48132. [
  48133. {
  48134. name: "Normal",
  48135. height: math.unit(11 + 6/12, "feet"),
  48136. default: true
  48137. },
  48138. {
  48139. name: "Macro",
  48140. height: math.unit(32 + 9/12, "feet")
  48141. },
  48142. ]
  48143. ))
  48144. characterMakers.push(() => makeCharacter(
  48145. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48146. {
  48147. anthro: {
  48148. height: math.unit(9, "feet"),
  48149. weight: math.unit(2076, "lb"),
  48150. name: "Anthro",
  48151. image: {
  48152. source: "./media/characters/abacus/anthro.svg",
  48153. extra: 1540/1494,
  48154. bottom: 233/1773
  48155. }
  48156. },
  48157. pigeon: {
  48158. height: math.unit(1, "feet"),
  48159. name: "Pigeon",
  48160. image: {
  48161. source: "./media/characters/abacus/pigeon.svg",
  48162. extra: 528/525,
  48163. bottom: 46/574
  48164. }
  48165. },
  48166. },
  48167. [
  48168. {
  48169. name: "Normal",
  48170. height: math.unit(9, "feet"),
  48171. default: true
  48172. },
  48173. ]
  48174. ))
  48175. characterMakers.push(() => makeCharacter(
  48176. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48177. {
  48178. side: {
  48179. height: math.unit(6, "feet"),
  48180. name: "Side",
  48181. image: {
  48182. source: "./media/characters/delkhan/side.svg",
  48183. extra: 1884/1786,
  48184. bottom: 308/2192
  48185. }
  48186. },
  48187. head: {
  48188. height: math.unit(3.38, "feet"),
  48189. name: "Head",
  48190. image: {
  48191. source: "./media/characters/delkhan/head.svg"
  48192. }
  48193. },
  48194. },
  48195. [
  48196. {
  48197. name: "Normal",
  48198. height: math.unit(72, "feet"),
  48199. default: true
  48200. },
  48201. {
  48202. name: "Giant",
  48203. height: math.unit(172, "feet")
  48204. },
  48205. ]
  48206. ))
  48207. characterMakers.push(() => makeCharacter(
  48208. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48209. {
  48210. standing: {
  48211. height: math.unit(6, "feet"),
  48212. name: "Standing",
  48213. image: {
  48214. source: "./media/characters/euchidat/standing.svg",
  48215. extra: 1612/1553,
  48216. bottom: 116/1728
  48217. }
  48218. },
  48219. leaning: {
  48220. height: math.unit(6, "feet"),
  48221. name: "Leaning",
  48222. image: {
  48223. source: "./media/characters/euchidat/leaning.svg",
  48224. extra: 1719/1674,
  48225. bottom: 27/1746
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Normal",
  48232. height: math.unit(175, "feet"),
  48233. default: true
  48234. },
  48235. {
  48236. name: "Megamacro",
  48237. height: math.unit(190, "miles")
  48238. },
  48239. {
  48240. name: "Gigamacro",
  48241. height: math.unit(190000, "miles")
  48242. },
  48243. ]
  48244. ))
  48245. characterMakers.push(() => makeCharacter(
  48246. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48247. {
  48248. front: {
  48249. height: math.unit(6, "feet"),
  48250. weight: math.unit(150, "lb"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/rebecca-stack/front.svg",
  48254. extra: 1256/1201,
  48255. bottom: 18/1274
  48256. }
  48257. },
  48258. },
  48259. [
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(5 + 8/12, "feet"),
  48263. default: true
  48264. },
  48265. {
  48266. name: "Demolitionist",
  48267. height: math.unit(200, "feet")
  48268. },
  48269. {
  48270. name: "Out of Control",
  48271. height: math.unit(2, "miles")
  48272. },
  48273. {
  48274. name: "Giga",
  48275. height: math.unit(7200, "miles")
  48276. },
  48277. ]
  48278. ))
  48279. characterMakers.push(() => makeCharacter(
  48280. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48281. {
  48282. front: {
  48283. height: math.unit(6, "feet"),
  48284. weight: math.unit(150, "lb"),
  48285. name: "Front",
  48286. image: {
  48287. source: "./media/characters/jenny-cartwright/front.svg",
  48288. extra: 1384/1376,
  48289. bottom: 58/1442
  48290. }
  48291. },
  48292. },
  48293. [
  48294. {
  48295. name: "Normal",
  48296. height: math.unit(6 + 7/12, "feet"),
  48297. default: true
  48298. },
  48299. {
  48300. name: "Librarian",
  48301. height: math.unit(55, "feet")
  48302. },
  48303. {
  48304. name: "Sightseer",
  48305. height: math.unit(50, "miles")
  48306. },
  48307. {
  48308. name: "Giga",
  48309. height: math.unit(30000, "miles")
  48310. },
  48311. ]
  48312. ))
  48313. characterMakers.push(() => makeCharacter(
  48314. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48315. {
  48316. nude: {
  48317. height: math.unit(8, "feet"),
  48318. weight: math.unit(225, "lb"),
  48319. name: "Nude",
  48320. image: {
  48321. source: "./media/characters/marvy/nude.svg",
  48322. extra: 1900/1683,
  48323. bottom: 89/1989
  48324. }
  48325. },
  48326. dressed: {
  48327. height: math.unit(8, "feet"),
  48328. weight: math.unit(225, "lb"),
  48329. name: "Dressed",
  48330. image: {
  48331. source: "./media/characters/marvy/dressed.svg",
  48332. extra: 1900/1683,
  48333. bottom: 89/1989
  48334. }
  48335. },
  48336. head: {
  48337. height: math.unit(2.85, "feet"),
  48338. name: "Head",
  48339. image: {
  48340. source: "./media/characters/marvy/head.svg"
  48341. }
  48342. },
  48343. },
  48344. [
  48345. {
  48346. name: "Normal",
  48347. height: math.unit(8, "feet"),
  48348. default: true
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48354. {
  48355. front: {
  48356. height: math.unit(8, "feet"),
  48357. weight: math.unit(250, "lb"),
  48358. name: "Front",
  48359. image: {
  48360. source: "./media/characters/leah/front.svg",
  48361. extra: 1257/1149,
  48362. bottom: 109/1366
  48363. }
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Normal",
  48369. height: math.unit(8, "feet"),
  48370. default: true
  48371. },
  48372. {
  48373. name: "Minimacro",
  48374. height: math.unit(40, "feet")
  48375. },
  48376. {
  48377. name: "Macro",
  48378. height: math.unit(124, "feet")
  48379. },
  48380. {
  48381. name: "Megamacro",
  48382. height: math.unit(850, "feet")
  48383. },
  48384. ]
  48385. ))
  48386. characterMakers.push(() => makeCharacter(
  48387. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48388. {
  48389. side: {
  48390. height: math.unit(13 + 6/12, "feet"),
  48391. weight: math.unit(3200, "lb"),
  48392. name: "Side",
  48393. image: {
  48394. source: "./media/characters/alvir/side.svg",
  48395. extra: 896/589,
  48396. bottom: 26/922
  48397. }
  48398. },
  48399. },
  48400. [
  48401. {
  48402. name: "Normal",
  48403. height: math.unit(13 + 6/12, "feet"),
  48404. default: true
  48405. },
  48406. ]
  48407. ))
  48408. characterMakers.push(() => makeCharacter(
  48409. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48410. {
  48411. front: {
  48412. height: math.unit(5 + 4/12, "feet"),
  48413. weight: math.unit(236, "lb"),
  48414. name: "Front",
  48415. image: {
  48416. source: "./media/characters/zaina-khalil/front.svg",
  48417. extra: 1533/1485,
  48418. bottom: 94/1627
  48419. }
  48420. },
  48421. side: {
  48422. height: math.unit(5 + 4/12, "feet"),
  48423. weight: math.unit(236, "lb"),
  48424. name: "Side",
  48425. image: {
  48426. source: "./media/characters/zaina-khalil/side.svg",
  48427. extra: 1537/1498,
  48428. bottom: 66/1603
  48429. }
  48430. },
  48431. back: {
  48432. height: math.unit(5 + 4/12, "feet"),
  48433. weight: math.unit(236, "lb"),
  48434. name: "Back",
  48435. image: {
  48436. source: "./media/characters/zaina-khalil/back.svg",
  48437. extra: 1546/1494,
  48438. bottom: 89/1635
  48439. }
  48440. },
  48441. },
  48442. [
  48443. {
  48444. name: "Normal",
  48445. height: math.unit(5 + 4/12, "feet"),
  48446. default: true
  48447. },
  48448. ]
  48449. ))
  48450. characterMakers.push(() => makeCharacter(
  48451. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48452. {
  48453. side: {
  48454. height: math.unit(12, "feet"),
  48455. weight: math.unit(4000, "lb"),
  48456. name: "Side",
  48457. image: {
  48458. source: "./media/characters/terry/side.svg",
  48459. extra: 1518/1439,
  48460. bottom: 149/1667
  48461. }
  48462. },
  48463. },
  48464. [
  48465. {
  48466. name: "Normal",
  48467. height: math.unit(12, "feet"),
  48468. default: true
  48469. },
  48470. ]
  48471. ))
  48472. characterMakers.push(() => makeCharacter(
  48473. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48474. {
  48475. front: {
  48476. height: math.unit(12, "feet"),
  48477. weight: math.unit(1500, "lb"),
  48478. name: "Front",
  48479. image: {
  48480. source: "./media/characters/kahea/front.svg",
  48481. extra: 1722/1617,
  48482. bottom: 179/1901
  48483. }
  48484. },
  48485. },
  48486. [
  48487. {
  48488. name: "Normal",
  48489. height: math.unit(12, "feet"),
  48490. default: true
  48491. },
  48492. ]
  48493. ))
  48494. characterMakers.push(() => makeCharacter(
  48495. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48496. {
  48497. demonFront: {
  48498. height: math.unit(36, "feet"),
  48499. name: "Front",
  48500. image: {
  48501. source: "./media/characters/alex-xuria/demon-front.svg",
  48502. extra: 1705/1673,
  48503. bottom: 198/1903
  48504. },
  48505. form: "demon",
  48506. default: true
  48507. },
  48508. demonBack: {
  48509. height: math.unit(36, "feet"),
  48510. name: "Back",
  48511. image: {
  48512. source: "./media/characters/alex-xuria/demon-back.svg",
  48513. extra: 1725/1693,
  48514. bottom: 70/1795
  48515. },
  48516. form: "demon"
  48517. },
  48518. demonHead: {
  48519. height: math.unit(2.14, "meters"),
  48520. name: "Head",
  48521. image: {
  48522. source: "./media/characters/alex-xuria/demon-head.svg"
  48523. },
  48524. form: "demon"
  48525. },
  48526. demonHand: {
  48527. height: math.unit(1.61, "meters"),
  48528. name: "Hand",
  48529. image: {
  48530. source: "./media/characters/alex-xuria/demon-hand.svg"
  48531. },
  48532. form: "demon"
  48533. },
  48534. demonPaw: {
  48535. height: math.unit(1.35, "meters"),
  48536. name: "Paw",
  48537. image: {
  48538. source: "./media/characters/alex-xuria/demon-paw.svg"
  48539. },
  48540. form: "demon"
  48541. },
  48542. demonFoot: {
  48543. height: math.unit(2.2, "meters"),
  48544. name: "Foot",
  48545. image: {
  48546. source: "./media/characters/alex-xuria/demon-foot.svg"
  48547. },
  48548. form: "demon"
  48549. },
  48550. demonCock: {
  48551. height: math.unit(1.74, "meters"),
  48552. name: "Cock",
  48553. image: {
  48554. source: "./media/characters/alex-xuria/demon-cock.svg"
  48555. },
  48556. form: "demon"
  48557. },
  48558. demonTailClosed: {
  48559. height: math.unit(1.47, "meters"),
  48560. name: "Tail (Closed)",
  48561. image: {
  48562. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48563. },
  48564. form: "demon"
  48565. },
  48566. demonTailOpen: {
  48567. height: math.unit(2.85, "meters"),
  48568. name: "Tail (Open)",
  48569. image: {
  48570. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48571. },
  48572. form: "demon"
  48573. },
  48574. incubusFront: {
  48575. height: math.unit(12, "feet"),
  48576. name: "Front",
  48577. image: {
  48578. source: "./media/characters/alex-xuria/incubus-front.svg",
  48579. extra: 1754/1677,
  48580. bottom: 125/1879
  48581. },
  48582. form: "incubus",
  48583. default: true
  48584. },
  48585. incubusBack: {
  48586. height: math.unit(12, "feet"),
  48587. name: "Back",
  48588. image: {
  48589. source: "./media/characters/alex-xuria/incubus-back.svg",
  48590. extra: 1702/1647,
  48591. bottom: 30/1732
  48592. },
  48593. form: "incubus"
  48594. },
  48595. incubusHead: {
  48596. height: math.unit(3.45, "feet"),
  48597. name: "Head",
  48598. image: {
  48599. source: "./media/characters/alex-xuria/incubus-head.svg"
  48600. },
  48601. form: "incubus"
  48602. },
  48603. rabbitFront: {
  48604. height: math.unit(6, "feet"),
  48605. name: "Front",
  48606. image: {
  48607. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48608. extra: 1369/1349,
  48609. bottom: 45/1414
  48610. },
  48611. form: "rabbit",
  48612. default: true
  48613. },
  48614. rabbitSide: {
  48615. height: math.unit(6, "feet"),
  48616. name: "Side",
  48617. image: {
  48618. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48619. extra: 1370/1356,
  48620. bottom: 37/1407
  48621. },
  48622. form: "rabbit"
  48623. },
  48624. rabbitBack: {
  48625. height: math.unit(6, "feet"),
  48626. name: "Back",
  48627. image: {
  48628. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48629. extra: 1375/1358,
  48630. bottom: 43/1418
  48631. },
  48632. form: "rabbit"
  48633. },
  48634. },
  48635. [
  48636. {
  48637. name: "Normal",
  48638. height: math.unit(6, "feet"),
  48639. default: true,
  48640. form: "rabbit"
  48641. },
  48642. {
  48643. name: "Incubus",
  48644. height: math.unit(12, "feet"),
  48645. default: true,
  48646. form: "incubus"
  48647. },
  48648. {
  48649. name: "Demon",
  48650. height: math.unit(36, "feet"),
  48651. default: true,
  48652. form: "demon"
  48653. }
  48654. ],
  48655. {
  48656. "demon": {
  48657. name: "Demon",
  48658. default: true
  48659. },
  48660. "incubus": {
  48661. name: "Incubus",
  48662. },
  48663. "rabbit": {
  48664. name: "Rabbit"
  48665. }
  48666. }
  48667. ))
  48668. characterMakers.push(() => makeCharacter(
  48669. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48670. {
  48671. front: {
  48672. height: math.unit(7 + 5/12, "feet"),
  48673. weight: math.unit(510, "lb"),
  48674. name: "Front",
  48675. image: {
  48676. source: "./media/characters/syrup/front.svg",
  48677. extra: 932/916,
  48678. bottom: 26/958
  48679. }
  48680. },
  48681. },
  48682. [
  48683. {
  48684. name: "Normal",
  48685. height: math.unit(7 + 5/12, "feet"),
  48686. default: true
  48687. },
  48688. {
  48689. name: "Big",
  48690. height: math.unit(50, "feet")
  48691. },
  48692. {
  48693. name: "Macro",
  48694. height: math.unit(300, "feet")
  48695. },
  48696. {
  48697. name: "Megamacro",
  48698. height: math.unit(1, "mile")
  48699. },
  48700. ]
  48701. ))
  48702. characterMakers.push(() => makeCharacter(
  48703. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48704. {
  48705. front: {
  48706. height: math.unit(6 + 9/12, "feet"),
  48707. name: "Front",
  48708. image: {
  48709. source: "./media/characters/zeimne/front.svg",
  48710. extra: 1969/1806,
  48711. bottom: 53/2022
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Normal",
  48718. height: math.unit(6 + 9/12, "feet"),
  48719. default: true
  48720. },
  48721. {
  48722. name: "Giant",
  48723. height: math.unit(550, "feet")
  48724. },
  48725. {
  48726. name: "Mega",
  48727. height: math.unit(3, "miles")
  48728. },
  48729. {
  48730. name: "Giga",
  48731. height: math.unit(250, "miles")
  48732. },
  48733. {
  48734. name: "Tera",
  48735. height: math.unit(1, "AU")
  48736. },
  48737. ]
  48738. ))
  48739. characterMakers.push(() => makeCharacter(
  48740. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48741. {
  48742. front: {
  48743. height: math.unit(5 + 2/12, "feet"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/grar/front.svg",
  48747. extra: 1331/1119,
  48748. bottom: 60/1391
  48749. }
  48750. },
  48751. back: {
  48752. height: math.unit(5 + 2/12, "feet"),
  48753. name: "Back",
  48754. image: {
  48755. source: "./media/characters/grar/back.svg",
  48756. extra: 1385/1169,
  48757. bottom: 23/1408
  48758. }
  48759. },
  48760. },
  48761. [
  48762. {
  48763. name: "Normal",
  48764. height: math.unit(5 + 2/12, "feet"),
  48765. default: true
  48766. },
  48767. ]
  48768. ))
  48769. characterMakers.push(() => makeCharacter(
  48770. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48771. {
  48772. front: {
  48773. height: math.unit(13 + 7/12, "feet"),
  48774. weight: math.unit(2200, "lb"),
  48775. name: "Front",
  48776. image: {
  48777. source: "./media/characters/endraya/front.svg",
  48778. extra: 1289/1215,
  48779. bottom: 50/1339
  48780. }
  48781. },
  48782. nude: {
  48783. height: math.unit(13 + 7/12, "feet"),
  48784. weight: math.unit(2200, "lb"),
  48785. name: "Nude",
  48786. image: {
  48787. source: "./media/characters/endraya/nude.svg",
  48788. extra: 1247/1171,
  48789. bottom: 40/1287
  48790. }
  48791. },
  48792. head: {
  48793. height: math.unit(2.6, "feet"),
  48794. name: "Head",
  48795. image: {
  48796. source: "./media/characters/endraya/head.svg"
  48797. }
  48798. },
  48799. slit: {
  48800. height: math.unit(3.4, "feet"),
  48801. name: "Slit",
  48802. image: {
  48803. source: "./media/characters/endraya/slit.svg"
  48804. }
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(13 + 7/12, "feet"),
  48811. default: true
  48812. },
  48813. {
  48814. name: "Macro",
  48815. height: math.unit(200, "feet")
  48816. },
  48817. ]
  48818. ))
  48819. characterMakers.push(() => makeCharacter(
  48820. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48821. {
  48822. front: {
  48823. height: math.unit(1.81, "meters"),
  48824. weight: math.unit(69, "kg"),
  48825. name: "Front",
  48826. image: {
  48827. source: "./media/characters/rodryana/front.svg",
  48828. extra: 2002/1921,
  48829. bottom: 53/2055
  48830. }
  48831. },
  48832. back: {
  48833. height: math.unit(1.81, "meters"),
  48834. weight: math.unit(69, "kg"),
  48835. name: "Back",
  48836. image: {
  48837. source: "./media/characters/rodryana/back.svg",
  48838. extra: 1993/1926,
  48839. bottom: 48/2041
  48840. }
  48841. },
  48842. maw: {
  48843. height: math.unit(0.19769417475, "meters"),
  48844. name: "Maw",
  48845. image: {
  48846. source: "./media/characters/rodryana/maw.svg"
  48847. }
  48848. },
  48849. slit: {
  48850. height: math.unit(0.31631067961, "meters"),
  48851. name: "Slit",
  48852. image: {
  48853. source: "./media/characters/rodryana/slit.svg"
  48854. }
  48855. },
  48856. },
  48857. [
  48858. {
  48859. name: "Normal",
  48860. height: math.unit(1.81, "meters")
  48861. },
  48862. {
  48863. name: "Mini Macro",
  48864. height: math.unit(181, "meters")
  48865. },
  48866. {
  48867. name: "Macro",
  48868. height: math.unit(452, "meters"),
  48869. default: true
  48870. },
  48871. {
  48872. name: "Mega Macro",
  48873. height: math.unit(1.375, "km")
  48874. },
  48875. {
  48876. name: "Giga Macro",
  48877. height: math.unit(13.575, "km")
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48883. {
  48884. front: {
  48885. height: math.unit(6, "feet"),
  48886. weight: math.unit(1000, "lb"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/asaya/front.svg",
  48890. extra: 1460/1200,
  48891. bottom: 71/1531
  48892. }
  48893. },
  48894. },
  48895. [
  48896. {
  48897. name: "Normal",
  48898. height: math.unit(8, "km"),
  48899. default: true
  48900. },
  48901. ]
  48902. ))
  48903. characterMakers.push(() => makeCharacter(
  48904. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48905. {
  48906. front: {
  48907. height: math.unit(3.5, "meters"),
  48908. name: "Front",
  48909. image: {
  48910. source: "./media/characters/sarzu-and-israz/front.svg",
  48911. extra: 1570/1558,
  48912. bottom: 150/1720
  48913. },
  48914. },
  48915. back: {
  48916. height: math.unit(3.5, "meters"),
  48917. name: "Back",
  48918. image: {
  48919. source: "./media/characters/sarzu-and-israz/back.svg",
  48920. extra: 1523/1509,
  48921. bottom: 132/1655
  48922. },
  48923. },
  48924. frontFemale: {
  48925. height: math.unit(3.5, "meters"),
  48926. name: "Front (Female)",
  48927. image: {
  48928. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48929. extra: 1570/1558,
  48930. bottom: 150/1720
  48931. },
  48932. },
  48933. frontHerm: {
  48934. height: math.unit(3.5, "meters"),
  48935. name: "Front (Herm)",
  48936. image: {
  48937. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48938. extra: 1570/1558,
  48939. bottom: 150/1720
  48940. },
  48941. },
  48942. },
  48943. [
  48944. {
  48945. name: "Normal",
  48946. height: math.unit(3.5, "meters"),
  48947. default: true,
  48948. },
  48949. {
  48950. name: "Macro",
  48951. height: math.unit(65.5, "meters"),
  48952. },
  48953. ],
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(6, "feet"),
  48960. weight: math.unit(250, "lb"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/zenimma/front.svg",
  48964. extra: 1346/1320,
  48965. bottom: 58/1404
  48966. }
  48967. },
  48968. back: {
  48969. height: math.unit(6, "feet"),
  48970. weight: math.unit(250, "lb"),
  48971. name: "Back",
  48972. image: {
  48973. source: "./media/characters/zenimma/back.svg",
  48974. extra: 1324/1308,
  48975. bottom: 44/1368
  48976. }
  48977. },
  48978. dick: {
  48979. height: math.unit(1.44, "feet"),
  48980. name: "Dick",
  48981. image: {
  48982. source: "./media/characters/zenimma/dick.svg"
  48983. }
  48984. },
  48985. },
  48986. [
  48987. {
  48988. name: "Canon Height",
  48989. height: math.unit(66, "miles"),
  48990. default: true
  48991. },
  48992. ]
  48993. ))
  48994. characterMakers.push(() => makeCharacter(
  48995. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48996. {
  48997. nude: {
  48998. height: math.unit(6, "feet"),
  48999. weight: math.unit(150, "lb"),
  49000. name: "Nude",
  49001. image: {
  49002. source: "./media/characters/shavon/nude.svg",
  49003. extra: 1242/1096,
  49004. bottom: 98/1340
  49005. }
  49006. },
  49007. dressed: {
  49008. height: math.unit(6, "feet"),
  49009. weight: math.unit(150, "lb"),
  49010. name: "Dressed",
  49011. image: {
  49012. source: "./media/characters/shavon/dressed.svg",
  49013. extra: 1242/1096,
  49014. bottom: 98/1340
  49015. }
  49016. },
  49017. },
  49018. [
  49019. {
  49020. name: "Macro",
  49021. height: math.unit(255, "feet"),
  49022. default: true
  49023. },
  49024. ]
  49025. ))
  49026. characterMakers.push(() => makeCharacter(
  49027. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49028. {
  49029. front: {
  49030. height: math.unit(6, "feet"),
  49031. name: "Front",
  49032. image: {
  49033. source: "./media/characters/steph/front.svg",
  49034. extra: 1430/1330,
  49035. bottom: 54/1484
  49036. }
  49037. },
  49038. },
  49039. [
  49040. {
  49041. name: "Normal",
  49042. height: math.unit(6, "feet"),
  49043. default: true
  49044. },
  49045. ]
  49046. ))
  49047. characterMakers.push(() => makeCharacter(
  49048. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49049. {
  49050. front: {
  49051. height: math.unit(9, "feet"),
  49052. weight: math.unit(400, "lb"),
  49053. name: "Front",
  49054. image: {
  49055. source: "./media/characters/kil'aman/front.svg",
  49056. extra: 1210/1159,
  49057. bottom: 109/1319
  49058. }
  49059. },
  49060. head: {
  49061. height: math.unit(2.14, "feet"),
  49062. name: "Head",
  49063. image: {
  49064. source: "./media/characters/kil'aman/head.svg"
  49065. }
  49066. },
  49067. maw: {
  49068. height: math.unit(1.21, "feet"),
  49069. name: "Maw",
  49070. image: {
  49071. source: "./media/characters/kil'aman/maw.svg"
  49072. }
  49073. },
  49074. foot: {
  49075. height: math.unit(1.7, "feet"),
  49076. name: "Foot",
  49077. image: {
  49078. source: "./media/characters/kil'aman/foot.svg"
  49079. }
  49080. },
  49081. dick: {
  49082. height: math.unit(2.1, "feet"),
  49083. name: "Dick",
  49084. image: {
  49085. source: "./media/characters/kil'aman/dick.svg"
  49086. }
  49087. },
  49088. },
  49089. [
  49090. {
  49091. name: "Normal",
  49092. height: math.unit(9, "feet")
  49093. },
  49094. {
  49095. name: "Canon Height",
  49096. height: math.unit(10, "miles"),
  49097. default: true
  49098. },
  49099. {
  49100. name: "Maximum",
  49101. height: math.unit(6e9, "miles")
  49102. },
  49103. ]
  49104. ))
  49105. characterMakers.push(() => makeCharacter(
  49106. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49107. {
  49108. front: {
  49109. height: math.unit(90, "feet"),
  49110. weight: math.unit(675000, "lb"),
  49111. name: "Front",
  49112. image: {
  49113. source: "./media/characters/qadan/front.svg",
  49114. extra: 1012/1004,
  49115. bottom: 78/1090
  49116. }
  49117. },
  49118. back: {
  49119. height: math.unit(90, "feet"),
  49120. weight: math.unit(675000, "lb"),
  49121. name: "Back",
  49122. image: {
  49123. source: "./media/characters/qadan/back.svg",
  49124. extra: 1042/1031,
  49125. bottom: 55/1097
  49126. }
  49127. },
  49128. armored: {
  49129. height: math.unit(90, "feet"),
  49130. weight: math.unit(675000, "lb"),
  49131. name: "Armored",
  49132. image: {
  49133. source: "./media/characters/qadan/armored.svg",
  49134. extra: 1047/1037,
  49135. bottom: 48/1095
  49136. }
  49137. },
  49138. },
  49139. [
  49140. {
  49141. name: "Normal",
  49142. height: math.unit(90, "feet"),
  49143. default: true
  49144. },
  49145. ]
  49146. ))
  49147. characterMakers.push(() => makeCharacter(
  49148. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49149. {
  49150. front: {
  49151. height: math.unit(6, "feet"),
  49152. weight: math.unit(225, "lb"),
  49153. name: "Front",
  49154. image: {
  49155. source: "./media/characters/brooke/front.svg",
  49156. extra: 1050/1010,
  49157. bottom: 66/1116
  49158. }
  49159. },
  49160. back: {
  49161. height: math.unit(6, "feet"),
  49162. weight: math.unit(225, "lb"),
  49163. name: "Back",
  49164. image: {
  49165. source: "./media/characters/brooke/back.svg",
  49166. extra: 1053/1013,
  49167. bottom: 41/1094
  49168. }
  49169. },
  49170. dressed: {
  49171. height: math.unit(6, "feet"),
  49172. weight: math.unit(225, "lb"),
  49173. name: "Dressed",
  49174. image: {
  49175. source: "./media/characters/brooke/dressed.svg",
  49176. extra: 1050/1010,
  49177. bottom: 66/1116
  49178. }
  49179. },
  49180. },
  49181. [
  49182. {
  49183. name: "Canon Height",
  49184. height: math.unit(500, "miles"),
  49185. default: true
  49186. },
  49187. ]
  49188. ))
  49189. characterMakers.push(() => makeCharacter(
  49190. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49191. {
  49192. front: {
  49193. height: math.unit(6 + 2/12, "feet"),
  49194. weight: math.unit(210, "lb"),
  49195. name: "Front",
  49196. image: {
  49197. source: "./media/characters/wubs/front.svg",
  49198. extra: 1345/1325,
  49199. bottom: 70/1415
  49200. }
  49201. },
  49202. back: {
  49203. height: math.unit(6 + 2/12, "feet"),
  49204. weight: math.unit(210, "lb"),
  49205. name: "Back",
  49206. image: {
  49207. source: "./media/characters/wubs/back.svg",
  49208. extra: 1296/1275,
  49209. bottom: 58/1354
  49210. }
  49211. },
  49212. },
  49213. [
  49214. {
  49215. name: "Normal",
  49216. height: math.unit(6 + 2/12, "feet"),
  49217. default: true
  49218. },
  49219. {
  49220. name: "Macro",
  49221. height: math.unit(1000, "feet")
  49222. },
  49223. {
  49224. name: "Megamacro",
  49225. height: math.unit(1, "mile")
  49226. },
  49227. ]
  49228. ))
  49229. characterMakers.push(() => makeCharacter(
  49230. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49231. {
  49232. front: {
  49233. height: math.unit(4, "feet"),
  49234. weight: math.unit(120, "lb"),
  49235. name: "Front",
  49236. image: {
  49237. source: "./media/characters/blue/front.svg",
  49238. extra: 1636/1525,
  49239. bottom: 43/1679
  49240. }
  49241. },
  49242. back: {
  49243. height: math.unit(4, "feet"),
  49244. weight: math.unit(120, "lb"),
  49245. name: "Back",
  49246. image: {
  49247. source: "./media/characters/blue/back.svg",
  49248. extra: 1660/1560,
  49249. bottom: 57/1717
  49250. }
  49251. },
  49252. paws: {
  49253. height: math.unit(0.826, "feet"),
  49254. name: "Paws",
  49255. image: {
  49256. source: "./media/characters/blue/paws.svg"
  49257. }
  49258. },
  49259. },
  49260. [
  49261. {
  49262. name: "Micro",
  49263. height: math.unit(3, "inches")
  49264. },
  49265. {
  49266. name: "Normal",
  49267. height: math.unit(4, "feet"),
  49268. default: true
  49269. },
  49270. {
  49271. name: "Femenine Form",
  49272. height: math.unit(14, "feet")
  49273. },
  49274. {
  49275. name: "Werebat Form",
  49276. height: math.unit(18, "feet")
  49277. },
  49278. ]
  49279. ))
  49280. characterMakers.push(() => makeCharacter(
  49281. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49282. {
  49283. female: {
  49284. height: math.unit(7 + 4/12, "feet"),
  49285. weight: math.unit(243, "lb"),
  49286. name: "Female",
  49287. image: {
  49288. source: "./media/characters/kaya/female.svg",
  49289. extra: 975/898,
  49290. bottom: 34/1009
  49291. }
  49292. },
  49293. herm: {
  49294. height: math.unit(7 + 4/12, "feet"),
  49295. weight: math.unit(243, "lb"),
  49296. name: "Herm",
  49297. image: {
  49298. source: "./media/characters/kaya/herm.svg",
  49299. extra: 975/898,
  49300. bottom: 34/1009
  49301. }
  49302. },
  49303. },
  49304. [
  49305. {
  49306. name: "Normal",
  49307. height: math.unit(7 + 4/12, "feet"),
  49308. default: true
  49309. },
  49310. ]
  49311. ))
  49312. characterMakers.push(() => makeCharacter(
  49313. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49314. {
  49315. female: {
  49316. height: math.unit(9 + 4/12, "feet"),
  49317. weight: math.unit(398, "lb"),
  49318. name: "Female",
  49319. image: {
  49320. source: "./media/characters/kassandra/female.svg",
  49321. extra: 908/839,
  49322. bottom: 61/969
  49323. }
  49324. },
  49325. intersex: {
  49326. height: math.unit(9 + 4/12, "feet"),
  49327. weight: math.unit(398, "lb"),
  49328. name: "Intersex",
  49329. image: {
  49330. source: "./media/characters/kassandra/intersex.svg",
  49331. extra: 908/839,
  49332. bottom: 61/969
  49333. }
  49334. },
  49335. },
  49336. [
  49337. {
  49338. name: "Normal",
  49339. height: math.unit(9 + 4/12, "feet"),
  49340. default: true
  49341. },
  49342. ]
  49343. ))
  49344. characterMakers.push(() => makeCharacter(
  49345. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49346. {
  49347. front: {
  49348. height: math.unit(3, "meters"),
  49349. name: "Front",
  49350. image: {
  49351. source: "./media/characters/amy/front.svg",
  49352. extra: 1380/1343,
  49353. bottom: 70/1450
  49354. }
  49355. },
  49356. back: {
  49357. height: math.unit(3, "meters"),
  49358. name: "Back",
  49359. image: {
  49360. source: "./media/characters/amy/back.svg",
  49361. extra: 1380/1347,
  49362. bottom: 66/1446
  49363. }
  49364. },
  49365. },
  49366. [
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(3, "meters"),
  49370. default: true
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49376. {
  49377. side: {
  49378. height: math.unit(47, "cm"),
  49379. weight: math.unit(10.8, "kg"),
  49380. name: "Side",
  49381. image: {
  49382. source: "./media/characters/alphaschakal/side.svg",
  49383. extra: 1058/568,
  49384. bottom: 62/1120
  49385. }
  49386. },
  49387. back: {
  49388. height: math.unit(78, "cm"),
  49389. weight: math.unit(10.8, "kg"),
  49390. name: "Back",
  49391. image: {
  49392. source: "./media/characters/alphaschakal/back.svg",
  49393. extra: 1102/942,
  49394. bottom: 185/1287
  49395. }
  49396. },
  49397. head: {
  49398. height: math.unit(28, "cm"),
  49399. name: "Head",
  49400. image: {
  49401. source: "./media/characters/alphaschakal/head.svg",
  49402. extra: 696/508,
  49403. bottom: 0/696
  49404. }
  49405. },
  49406. paw: {
  49407. height: math.unit(16, "cm"),
  49408. name: "Paw",
  49409. image: {
  49410. source: "./media/characters/alphaschakal/paw.svg"
  49411. }
  49412. },
  49413. },
  49414. [
  49415. {
  49416. name: "Normal",
  49417. height: math.unit(47, "cm"),
  49418. default: true
  49419. },
  49420. {
  49421. name: "Macro",
  49422. height: math.unit(340, "cm")
  49423. },
  49424. ]
  49425. ))
  49426. characterMakers.push(() => makeCharacter(
  49427. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49428. {
  49429. front: {
  49430. height: math.unit(36, "earths"),
  49431. name: "Front",
  49432. image: {
  49433. source: "./media/characters/ecobyss/front.svg",
  49434. extra: 1282/1215,
  49435. bottom: 11/1293
  49436. }
  49437. },
  49438. back: {
  49439. height: math.unit(36, "earths"),
  49440. name: "Back",
  49441. image: {
  49442. source: "./media/characters/ecobyss/back.svg",
  49443. extra: 1291/1222,
  49444. bottom: 8/1299
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Normal",
  49451. height: math.unit(36, "earths"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49458. {
  49459. front: {
  49460. height: math.unit(12, "feet"),
  49461. name: "Front",
  49462. image: {
  49463. source: "./media/characters/vasuk/front.svg",
  49464. extra: 1326/1207,
  49465. bottom: 64/1390
  49466. }
  49467. },
  49468. },
  49469. [
  49470. {
  49471. name: "Normal",
  49472. height: math.unit(12, "feet"),
  49473. default: true
  49474. },
  49475. ]
  49476. ))
  49477. characterMakers.push(() => makeCharacter(
  49478. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49479. {
  49480. side: {
  49481. height: math.unit(100, "feet"),
  49482. name: "Side",
  49483. image: {
  49484. source: "./media/characters/linneaus/side.svg",
  49485. extra: 987/807,
  49486. bottom: 47/1034
  49487. }
  49488. },
  49489. },
  49490. [
  49491. {
  49492. name: "Macro",
  49493. height: math.unit(100, "feet"),
  49494. default: true
  49495. },
  49496. ]
  49497. ))
  49498. characterMakers.push(() => makeCharacter(
  49499. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49500. {
  49501. front: {
  49502. height: math.unit(8, "feet"),
  49503. weight: math.unit(1200, "lb"),
  49504. name: "Front",
  49505. image: {
  49506. source: "./media/characters/nyterious-daligdig/front.svg",
  49507. extra: 1284/1094,
  49508. bottom: 84/1368
  49509. }
  49510. },
  49511. back: {
  49512. height: math.unit(8, "feet"),
  49513. weight: math.unit(1200, "lb"),
  49514. name: "Back",
  49515. image: {
  49516. source: "./media/characters/nyterious-daligdig/back.svg",
  49517. extra: 1301/1121,
  49518. bottom: 129/1430
  49519. }
  49520. },
  49521. mouth: {
  49522. height: math.unit(1.464, "feet"),
  49523. name: "Mouth",
  49524. image: {
  49525. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49526. }
  49527. },
  49528. },
  49529. [
  49530. {
  49531. name: "Small",
  49532. height: math.unit(8, "feet"),
  49533. default: true
  49534. },
  49535. {
  49536. name: "Normal",
  49537. height: math.unit(15, "feet")
  49538. },
  49539. {
  49540. name: "Macro",
  49541. height: math.unit(90, "feet")
  49542. },
  49543. ]
  49544. ))
  49545. characterMakers.push(() => makeCharacter(
  49546. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49547. {
  49548. front: {
  49549. height: math.unit(7 + 4/12, "feet"),
  49550. weight: math.unit(252, "lb"),
  49551. name: "Front",
  49552. image: {
  49553. source: "./media/characters/bandel/front.svg",
  49554. extra: 1946/1775,
  49555. bottom: 26/1972
  49556. }
  49557. },
  49558. back: {
  49559. height: math.unit(7 + 4/12, "feet"),
  49560. weight: math.unit(252, "lb"),
  49561. name: "Back",
  49562. image: {
  49563. source: "./media/characters/bandel/back.svg",
  49564. extra: 1940/1770,
  49565. bottom: 25/1965
  49566. }
  49567. },
  49568. maw: {
  49569. height: math.unit(2.15, "feet"),
  49570. name: "Maw",
  49571. image: {
  49572. source: "./media/characters/bandel/maw.svg"
  49573. }
  49574. },
  49575. stomach: {
  49576. height: math.unit(1.95, "feet"),
  49577. name: "Stomach",
  49578. image: {
  49579. source: "./media/characters/bandel/stomach.svg"
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Normal",
  49586. height: math.unit(7 + 4/12, "feet"),
  49587. default: true
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(10 + 5/12, "feet"),
  49596. weight: math.unit(773.5, "kg"),
  49597. name: "Front",
  49598. image: {
  49599. source: "./media/characters/zed/front.svg",
  49600. extra: 987/941,
  49601. bottom: 52/1039
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Short",
  49608. height: math.unit(5 + 4/12, "feet")
  49609. },
  49610. {
  49611. name: "Average",
  49612. height: math.unit(10 + 5/12, "feet"),
  49613. default: true
  49614. },
  49615. {
  49616. name: "Mini-Macro",
  49617. height: math.unit(24 + 9/12, "feet")
  49618. },
  49619. {
  49620. name: "Macro",
  49621. height: math.unit(249, "feet")
  49622. },
  49623. {
  49624. name: "Mega-Macro",
  49625. height: math.unit(12490, "feet")
  49626. },
  49627. {
  49628. name: "Giga-Macro",
  49629. height: math.unit(24.9, "miles")
  49630. },
  49631. {
  49632. name: "Tera-Macro",
  49633. height: math.unit(24900, "miles")
  49634. },
  49635. {
  49636. name: "Cosmic Scale",
  49637. height: math.unit(38.9, "lightyears")
  49638. },
  49639. {
  49640. name: "Universal Scale",
  49641. height: math.unit(138e12, "lightyears")
  49642. },
  49643. ]
  49644. ))
  49645. characterMakers.push(() => makeCharacter(
  49646. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49647. {
  49648. front: {
  49649. height: math.unit(1561, "inches"),
  49650. name: "Front",
  49651. image: {
  49652. source: "./media/characters/ivan/front.svg",
  49653. extra: 1126/1071,
  49654. bottom: 26/1152
  49655. }
  49656. },
  49657. back: {
  49658. height: math.unit(1561, "inches"),
  49659. name: "Back",
  49660. image: {
  49661. source: "./media/characters/ivan/back.svg",
  49662. extra: 1134/1079,
  49663. bottom: 30/1164
  49664. }
  49665. },
  49666. },
  49667. [
  49668. {
  49669. name: "Normal",
  49670. height: math.unit(1561, "inches"),
  49671. default: true
  49672. },
  49673. ]
  49674. ))
  49675. characterMakers.push(() => makeCharacter(
  49676. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49677. {
  49678. front: {
  49679. height: math.unit(5 + 7/12, "feet"),
  49680. weight: math.unit(150, "lb"),
  49681. name: "Front",
  49682. image: {
  49683. source: "./media/characters/robin-arctic-hare/front.svg",
  49684. extra: 1148/974,
  49685. bottom: 20/1168
  49686. }
  49687. },
  49688. },
  49689. [
  49690. {
  49691. name: "Normal",
  49692. height: math.unit(5 + 7/12, "feet"),
  49693. default: true
  49694. },
  49695. ]
  49696. ))
  49697. characterMakers.push(() => makeCharacter(
  49698. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49699. {
  49700. side: {
  49701. height: math.unit(5, "feet"),
  49702. name: "Side",
  49703. image: {
  49704. source: "./media/characters/birch/side.svg",
  49705. extra: 985/796,
  49706. bottom: 111/1096
  49707. }
  49708. },
  49709. },
  49710. [
  49711. {
  49712. name: "Normal",
  49713. height: math.unit(5, "feet"),
  49714. default: true
  49715. },
  49716. ]
  49717. ))
  49718. characterMakers.push(() => makeCharacter(
  49719. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49720. {
  49721. front: {
  49722. height: math.unit(4, "feet"),
  49723. name: "Front",
  49724. image: {
  49725. source: "./media/characters/rasp/front.svg",
  49726. extra: 561/478,
  49727. bottom: 74/635
  49728. }
  49729. },
  49730. },
  49731. [
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(4, "feet"),
  49735. default: true
  49736. },
  49737. ]
  49738. ))
  49739. characterMakers.push(() => makeCharacter(
  49740. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49741. {
  49742. front: {
  49743. height: math.unit(4 + 6/12, "feet"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/agatha/front.svg",
  49747. extra: 947/933,
  49748. bottom: 42/989
  49749. }
  49750. },
  49751. back: {
  49752. height: math.unit(4 + 6/12, "feet"),
  49753. name: "Back",
  49754. image: {
  49755. source: "./media/characters/agatha/back.svg",
  49756. extra: 935/922,
  49757. bottom: 48/983
  49758. }
  49759. },
  49760. },
  49761. [
  49762. {
  49763. name: "Normal",
  49764. height: math.unit(4 + 6 /12, "feet"),
  49765. default: true
  49766. },
  49767. {
  49768. name: "Max Size",
  49769. height: math.unit(500, "feet")
  49770. },
  49771. ]
  49772. ))
  49773. characterMakers.push(() => makeCharacter(
  49774. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49775. {
  49776. side: {
  49777. height: math.unit(30, "feet"),
  49778. name: "Side",
  49779. image: {
  49780. source: "./media/characters/roggy/side.svg",
  49781. extra: 909/643,
  49782. bottom: 63/972
  49783. }
  49784. },
  49785. lounging: {
  49786. height: math.unit(20, "feet"),
  49787. name: "Lounging",
  49788. image: {
  49789. source: "./media/characters/roggy/lounging.svg",
  49790. extra: 643/479,
  49791. bottom: 145/788
  49792. }
  49793. },
  49794. handpaw: {
  49795. height: math.unit(13.1, "feet"),
  49796. name: "Handpaw",
  49797. image: {
  49798. source: "./media/characters/roggy/handpaw.svg"
  49799. }
  49800. },
  49801. footpaw: {
  49802. height: math.unit(15.8, "feet"),
  49803. name: "Footpaw",
  49804. image: {
  49805. source: "./media/characters/roggy/footpaw.svg"
  49806. }
  49807. },
  49808. },
  49809. [
  49810. {
  49811. name: "Menacing",
  49812. height: math.unit(30, "feet"),
  49813. default: true
  49814. },
  49815. ]
  49816. ))
  49817. characterMakers.push(() => makeCharacter(
  49818. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49819. {
  49820. front: {
  49821. height: math.unit(5 + 7/12, "feet"),
  49822. weight: math.unit(135, "lb"),
  49823. name: "Front",
  49824. image: {
  49825. source: "./media/characters/naomi/front.svg",
  49826. extra: 1209/1154,
  49827. bottom: 129/1338
  49828. }
  49829. },
  49830. back: {
  49831. height: math.unit(5 + 7/12, "feet"),
  49832. weight: math.unit(135, "lb"),
  49833. name: "Back",
  49834. image: {
  49835. source: "./media/characters/naomi/back.svg",
  49836. extra: 1252/1190,
  49837. bottom: 23/1275
  49838. }
  49839. },
  49840. },
  49841. [
  49842. {
  49843. name: "Normal",
  49844. height: math.unit(5 + 7 /12, "feet"),
  49845. default: true
  49846. },
  49847. ]
  49848. ))
  49849. characterMakers.push(() => makeCharacter(
  49850. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49851. {
  49852. side: {
  49853. height: math.unit(35, "meters"),
  49854. name: "Side",
  49855. image: {
  49856. source: "./media/characters/kimpi/side.svg",
  49857. extra: 419/382,
  49858. bottom: 63/482
  49859. }
  49860. },
  49861. hand: {
  49862. height: math.unit(8.96, "meters"),
  49863. name: "Hand",
  49864. image: {
  49865. source: "./media/characters/kimpi/hand.svg"
  49866. }
  49867. },
  49868. },
  49869. [
  49870. {
  49871. name: "Normal",
  49872. height: math.unit(35, "meters"),
  49873. default: true
  49874. },
  49875. ]
  49876. ))
  49877. characterMakers.push(() => makeCharacter(
  49878. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49879. {
  49880. front: {
  49881. height: math.unit(4 + 4/12, "feet"),
  49882. name: "Front",
  49883. image: {
  49884. source: "./media/characters/pepper-purrloin/front.svg",
  49885. extra: 1141/1024,
  49886. bottom: 21/1162
  49887. }
  49888. },
  49889. },
  49890. [
  49891. {
  49892. name: "Normal",
  49893. height: math.unit(4 + 4/12, "feet"),
  49894. default: true
  49895. },
  49896. ]
  49897. ))
  49898. characterMakers.push(() => makeCharacter(
  49899. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49900. {
  49901. front: {
  49902. height: math.unit(6 + 2/12, "feet"),
  49903. name: "Front",
  49904. image: {
  49905. source: "./media/characters/raphael/front.svg",
  49906. extra: 1101/962,
  49907. bottom: 59/1160
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Normal",
  49914. height: math.unit(6 + 2/12, "feet"),
  49915. default: true
  49916. },
  49917. ]
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49921. {
  49922. front: {
  49923. height: math.unit(6, "feet"),
  49924. weight: math.unit(150, "lb"),
  49925. name: "Front",
  49926. image: {
  49927. source: "./media/characters/victor-williams/front.svg",
  49928. extra: 1894/1825,
  49929. bottom: 67/1961
  49930. }
  49931. },
  49932. },
  49933. [
  49934. {
  49935. name: "Normal",
  49936. height: math.unit(6, "feet"),
  49937. default: true
  49938. },
  49939. ]
  49940. ))
  49941. characterMakers.push(() => makeCharacter(
  49942. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49943. {
  49944. front: {
  49945. height: math.unit(5 + 8/12, "feet"),
  49946. weight: math.unit(150, "lb"),
  49947. name: "Front",
  49948. image: {
  49949. source: "./media/characters/rachel/front.svg",
  49950. extra: 1902/1787,
  49951. bottom: 46/1948
  49952. }
  49953. },
  49954. },
  49955. [
  49956. {
  49957. name: "Base Height",
  49958. height: math.unit(5 + 8/12, "feet"),
  49959. default: true
  49960. },
  49961. {
  49962. name: "Macro",
  49963. height: math.unit(200, "feet")
  49964. },
  49965. {
  49966. name: "Mega Macro",
  49967. height: math.unit(1, "mile")
  49968. },
  49969. {
  49970. name: "Giga Macro",
  49971. height: math.unit(1500, "miles")
  49972. },
  49973. {
  49974. name: "Tera Macro",
  49975. height: math.unit(8000, "miles")
  49976. },
  49977. {
  49978. name: "Tera Macro+",
  49979. height: math.unit(2e5, "miles")
  49980. },
  49981. ]
  49982. ))
  49983. characterMakers.push(() => makeCharacter(
  49984. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49985. {
  49986. front: {
  49987. height: math.unit(6.5, "feet"),
  49988. name: "Front",
  49989. image: {
  49990. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49991. extra: 860/819,
  49992. bottom: 307/1167
  49993. }
  49994. },
  49995. back: {
  49996. height: math.unit(6.5, "feet"),
  49997. name: "Back",
  49998. image: {
  49999. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50000. extra: 880/837,
  50001. bottom: 395/1275
  50002. }
  50003. },
  50004. sleeping: {
  50005. height: math.unit(2.79, "feet"),
  50006. name: "Sleeping",
  50007. image: {
  50008. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50009. extra: 465/383,
  50010. bottom: 263/728
  50011. }
  50012. },
  50013. maw: {
  50014. height: math.unit(2.52, "feet"),
  50015. name: "Maw",
  50016. image: {
  50017. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50018. }
  50019. },
  50020. },
  50021. [
  50022. {
  50023. name: "Normal",
  50024. height: math.unit(6.5, "feet"),
  50025. default: true
  50026. },
  50027. ]
  50028. ))
  50029. characterMakers.push(() => makeCharacter(
  50030. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50031. {
  50032. front: {
  50033. height: math.unit(5, "feet"),
  50034. name: "Front",
  50035. image: {
  50036. source: "./media/characters/nova-nerium/front.svg",
  50037. extra: 1548/1392,
  50038. bottom: 374/1922
  50039. }
  50040. },
  50041. back: {
  50042. height: math.unit(5, "feet"),
  50043. name: "Back",
  50044. image: {
  50045. source: "./media/characters/nova-nerium/back.svg",
  50046. extra: 1658/1468,
  50047. bottom: 257/1915
  50048. }
  50049. },
  50050. },
  50051. [
  50052. {
  50053. name: "Normal",
  50054. height: math.unit(5, "feet"),
  50055. default: true
  50056. },
  50057. ]
  50058. ))
  50059. characterMakers.push(() => makeCharacter(
  50060. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50061. {
  50062. front: {
  50063. height: math.unit(5 + 4/12, "feet"),
  50064. name: "Front",
  50065. image: {
  50066. source: "./media/characters/ashe-pyriph/front.svg",
  50067. extra: 1935/1747,
  50068. bottom: 60/1995
  50069. }
  50070. },
  50071. },
  50072. [
  50073. {
  50074. name: "Normal",
  50075. height: math.unit(5 + 4/12, "feet"),
  50076. default: true
  50077. },
  50078. ]
  50079. ))
  50080. characterMakers.push(() => makeCharacter(
  50081. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50082. {
  50083. front: {
  50084. height: math.unit(8.7, "feet"),
  50085. name: "Front",
  50086. image: {
  50087. source: "./media/characters/flicker-wisp/front.svg",
  50088. extra: 1835/1613,
  50089. bottom: 449/2284
  50090. }
  50091. },
  50092. side: {
  50093. height: math.unit(8.7, "feet"),
  50094. name: "Side",
  50095. image: {
  50096. source: "./media/characters/flicker-wisp/side.svg",
  50097. extra: 1841/1642,
  50098. bottom: 336/2177
  50099. },
  50100. default: true
  50101. },
  50102. maw: {
  50103. height: math.unit(3.35, "feet"),
  50104. name: "Maw",
  50105. image: {
  50106. source: "./media/characters/flicker-wisp/maw.svg",
  50107. extra: 2338/1506,
  50108. bottom: 0/2338
  50109. }
  50110. },
  50111. ovipositor: {
  50112. height: math.unit(4.95, "feet"),
  50113. name: "Ovipositor",
  50114. image: {
  50115. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50116. }
  50117. },
  50118. egg: {
  50119. height: math.unit(0.385, "feet"),
  50120. weight: math.unit(2, "lb"),
  50121. name: "Egg",
  50122. image: {
  50123. source: "./media/characters/flicker-wisp/egg.svg"
  50124. }
  50125. },
  50126. },
  50127. [
  50128. {
  50129. name: "Normal",
  50130. height: math.unit(8.7, "feet"),
  50131. default: true
  50132. },
  50133. ]
  50134. ))
  50135. characterMakers.push(() => makeCharacter(
  50136. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50137. {
  50138. side: {
  50139. height: math.unit(11, "feet"),
  50140. name: "Side",
  50141. image: {
  50142. source: "./media/characters/faefnul/side.svg",
  50143. extra: 1100/1007,
  50144. bottom: 0/1100
  50145. }
  50146. },
  50147. },
  50148. [
  50149. {
  50150. name: "Normal",
  50151. height: math.unit(11, "feet"),
  50152. default: true
  50153. },
  50154. ]
  50155. ))
  50156. characterMakers.push(() => makeCharacter(
  50157. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50158. {
  50159. front: {
  50160. height: math.unit(6 + 2/12, "feet"),
  50161. name: "Front",
  50162. image: {
  50163. source: "./media/characters/shady/front.svg",
  50164. extra: 502/461,
  50165. bottom: 9/511
  50166. }
  50167. },
  50168. kneeling: {
  50169. height: math.unit(4.6, "feet"),
  50170. name: "Kneeling",
  50171. image: {
  50172. source: "./media/characters/shady/kneeling.svg",
  50173. extra: 1328/1219,
  50174. bottom: 117/1445
  50175. }
  50176. },
  50177. maw: {
  50178. height: math.unit(2, "feet"),
  50179. name: "Maw",
  50180. image: {
  50181. source: "./media/characters/shady/maw.svg"
  50182. }
  50183. },
  50184. },
  50185. [
  50186. {
  50187. name: "Nano",
  50188. height: math.unit(1, "mm")
  50189. },
  50190. {
  50191. name: "Micro",
  50192. height: math.unit(12, "mm")
  50193. },
  50194. {
  50195. name: "Tiny",
  50196. height: math.unit(3, "inches")
  50197. },
  50198. {
  50199. name: "Normal",
  50200. height: math.unit(6 + 2/12, "feet"),
  50201. default: true
  50202. },
  50203. {
  50204. name: "Big",
  50205. height: math.unit(15, "feet")
  50206. },
  50207. {
  50208. name: "Macro",
  50209. height: math.unit(150, "feet")
  50210. },
  50211. {
  50212. name: "Titanic",
  50213. height: math.unit(500, "feet")
  50214. },
  50215. ]
  50216. ))
  50217. characterMakers.push(() => makeCharacter(
  50218. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50219. {
  50220. front: {
  50221. height: math.unit(12, "feet"),
  50222. name: "Front",
  50223. image: {
  50224. source: "./media/characters/fenrir/front.svg",
  50225. extra: 968/875,
  50226. bottom: 22/990
  50227. }
  50228. },
  50229. },
  50230. [
  50231. {
  50232. name: "Big",
  50233. height: math.unit(12, "feet"),
  50234. default: true
  50235. },
  50236. ]
  50237. ))
  50238. characterMakers.push(() => makeCharacter(
  50239. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50240. {
  50241. front: {
  50242. height: math.unit(5 + 4/12, "feet"),
  50243. name: "Front",
  50244. image: {
  50245. source: "./media/characters/makar/front.svg",
  50246. extra: 1181/1112,
  50247. bottom: 78/1259
  50248. }
  50249. },
  50250. },
  50251. [
  50252. {
  50253. name: "Normal",
  50254. height: math.unit(5 + 4/12, "feet"),
  50255. default: true
  50256. },
  50257. ]
  50258. ))
  50259. characterMakers.push(() => makeCharacter(
  50260. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50261. {
  50262. front: {
  50263. height: math.unit(5 + 7/12, "feet"),
  50264. name: "Front",
  50265. image: {
  50266. source: "./media/characters/callow/front.svg",
  50267. extra: 1482/1304,
  50268. bottom: 23/1505
  50269. }
  50270. },
  50271. back: {
  50272. height: math.unit(5 + 7/12, "feet"),
  50273. name: "Back",
  50274. image: {
  50275. source: "./media/characters/callow/back.svg",
  50276. extra: 1484/1296,
  50277. bottom: 25/1509
  50278. }
  50279. },
  50280. },
  50281. [
  50282. {
  50283. name: "Micro",
  50284. height: math.unit(3, "inches"),
  50285. default: true
  50286. },
  50287. {
  50288. name: "Normal",
  50289. height: math.unit(5 + 7/12, "feet")
  50290. },
  50291. ]
  50292. ))
  50293. characterMakers.push(() => makeCharacter(
  50294. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50295. {
  50296. front: {
  50297. height: math.unit(6 + 2/12, "feet"),
  50298. name: "Front",
  50299. image: {
  50300. source: "./media/characters/natel/front.svg",
  50301. extra: 1833/1692,
  50302. bottom: 166/1999
  50303. }
  50304. },
  50305. },
  50306. [
  50307. {
  50308. name: "Normal",
  50309. height: math.unit(6 + 2/12, "feet"),
  50310. default: true
  50311. },
  50312. ]
  50313. ))
  50314. characterMakers.push(() => makeCharacter(
  50315. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50316. {
  50317. front: {
  50318. height: math.unit(1.75, "meters"),
  50319. name: "Front",
  50320. image: {
  50321. source: "./media/characters/misu/front.svg",
  50322. extra: 1690/1558,
  50323. bottom: 234/1924
  50324. }
  50325. },
  50326. back: {
  50327. height: math.unit(1.75, "meters"),
  50328. name: "Back",
  50329. image: {
  50330. source: "./media/characters/misu/back.svg",
  50331. extra: 1762/1618,
  50332. bottom: 146/1908
  50333. }
  50334. },
  50335. frontNude: {
  50336. height: math.unit(1.75, "meters"),
  50337. name: "Front (Nude)",
  50338. image: {
  50339. source: "./media/characters/misu/front-nude.svg",
  50340. extra: 1690/1558,
  50341. bottom: 234/1924
  50342. }
  50343. },
  50344. backNude: {
  50345. height: math.unit(1.75, "meters"),
  50346. name: "Back (Nude)",
  50347. image: {
  50348. source: "./media/characters/misu/back-nude.svg",
  50349. extra: 1762/1618,
  50350. bottom: 146/1908
  50351. }
  50352. },
  50353. frontErect: {
  50354. height: math.unit(1.75, "meters"),
  50355. name: "Front (Erect)",
  50356. image: {
  50357. source: "./media/characters/misu/front-erect.svg",
  50358. extra: 1690/1558,
  50359. bottom: 234/1924
  50360. }
  50361. },
  50362. maw: {
  50363. height: math.unit(0.47, "meters"),
  50364. name: "Maw",
  50365. image: {
  50366. source: "./media/characters/misu/maw.svg"
  50367. }
  50368. },
  50369. head: {
  50370. height: math.unit(0.35, "meters"),
  50371. name: "Head",
  50372. image: {
  50373. source: "./media/characters/misu/head.svg"
  50374. }
  50375. },
  50376. rear: {
  50377. height: math.unit(0.47, "meters"),
  50378. name: "Rear",
  50379. image: {
  50380. source: "./media/characters/misu/rear.svg"
  50381. }
  50382. },
  50383. },
  50384. [
  50385. {
  50386. name: "Normal",
  50387. height: math.unit(1.75, "meters")
  50388. },
  50389. {
  50390. name: "Not good for the people",
  50391. height: math.unit(42, "meters")
  50392. },
  50393. {
  50394. name: "Not good for the neighborhood",
  50395. height: math.unit(135, "meters")
  50396. },
  50397. {
  50398. name: "Bit bigger problem",
  50399. height: math.unit(380, "meters"),
  50400. default: true
  50401. },
  50402. {
  50403. name: "Not good for the city",
  50404. height: math.unit(1.5, "km")
  50405. },
  50406. {
  50407. name: "Not good for the county",
  50408. height: math.unit(5.5, "km")
  50409. },
  50410. {
  50411. name: "Not good for the state",
  50412. height: math.unit(25, "km")
  50413. },
  50414. {
  50415. name: "Not good for the country",
  50416. height: math.unit(125, "km")
  50417. },
  50418. {
  50419. name: "Not good for the continent",
  50420. height: math.unit(2100, "km")
  50421. },
  50422. {
  50423. name: "Not good for the planet",
  50424. height: math.unit(35000, "km")
  50425. },
  50426. {
  50427. name: "Just no",
  50428. height: math.unit(8.5e18, "km")
  50429. },
  50430. ]
  50431. ))
  50432. characterMakers.push(() => makeCharacter(
  50433. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50434. {
  50435. front: {
  50436. height: math.unit(6.5, "feet"),
  50437. name: "Front",
  50438. image: {
  50439. source: "./media/characters/poppy/front.svg",
  50440. extra: 1878/1812,
  50441. bottom: 43/1921
  50442. }
  50443. },
  50444. feet: {
  50445. height: math.unit(1.06, "feet"),
  50446. name: "Feet",
  50447. image: {
  50448. source: "./media/characters/poppy/feet.svg",
  50449. extra: 1083/1083,
  50450. bottom: 87/1170
  50451. }
  50452. },
  50453. },
  50454. [
  50455. {
  50456. name: "Human",
  50457. height: math.unit(6.5, "feet")
  50458. },
  50459. {
  50460. name: "Default",
  50461. height: math.unit(300, "feet"),
  50462. default: true
  50463. },
  50464. {
  50465. name: "Huge",
  50466. height: math.unit(850, "feet")
  50467. },
  50468. {
  50469. name: "Mega",
  50470. height: math.unit(8000, "feet")
  50471. },
  50472. {
  50473. name: "Giga",
  50474. height: math.unit(300, "miles")
  50475. },
  50476. ]
  50477. ))
  50478. characterMakers.push(() => makeCharacter(
  50479. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50480. {
  50481. bipedal: {
  50482. height: math.unit(7, "feet"),
  50483. name: "Bipedal",
  50484. image: {
  50485. source: "./media/characters/zener/bipedal.svg",
  50486. extra: 874/805,
  50487. bottom: 109/983
  50488. }
  50489. },
  50490. quadrupedal: {
  50491. height: math.unit(4.64, "feet"),
  50492. name: "Quadrupedal",
  50493. image: {
  50494. source: "./media/characters/zener/quadrupedal.svg",
  50495. extra: 638/507,
  50496. bottom: 190/828
  50497. }
  50498. },
  50499. cock: {
  50500. height: math.unit(18, "inches"),
  50501. name: "Cock",
  50502. image: {
  50503. source: "./media/characters/zener/cock.svg"
  50504. }
  50505. },
  50506. },
  50507. [
  50508. {
  50509. name: "Normal",
  50510. height: math.unit(7, "feet"),
  50511. default: true
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50517. {
  50518. nude: {
  50519. height: math.unit(5 + 6/12, "feet"),
  50520. name: "Nude",
  50521. image: {
  50522. source: "./media/characters/charlie-dog/nude.svg",
  50523. extra: 768/734,
  50524. bottom: 26/794
  50525. }
  50526. },
  50527. dressed: {
  50528. height: math.unit(5 + 6/12, "feet"),
  50529. name: "Dressed",
  50530. image: {
  50531. source: "./media/characters/charlie-dog/dressed.svg",
  50532. extra: 768/734,
  50533. bottom: 26/794
  50534. }
  50535. },
  50536. },
  50537. [
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(5 + 6/12, "feet"),
  50541. default: true
  50542. },
  50543. ]
  50544. ))
  50545. characterMakers.push(() => makeCharacter(
  50546. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50547. {
  50548. front: {
  50549. height: math.unit(6 + 4/12, "feet"),
  50550. name: "Front",
  50551. image: {
  50552. source: "./media/characters/ir'istrasz/front.svg",
  50553. extra: 1014/977,
  50554. bottom: 65/1079
  50555. }
  50556. },
  50557. back: {
  50558. height: math.unit(6 + 4/12, "feet"),
  50559. name: "Back",
  50560. image: {
  50561. source: "./media/characters/ir'istrasz/back.svg",
  50562. extra: 1024/992,
  50563. bottom: 34/1058
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Normal",
  50570. height: math.unit(6 + 4/12, "feet"),
  50571. default: true
  50572. },
  50573. ]
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50577. {
  50578. front: {
  50579. height: math.unit(5 + 8/12, "feet"),
  50580. name: "Front",
  50581. image: {
  50582. source: "./media/characters/dee-ditto/front.svg",
  50583. extra: 1874/1785,
  50584. bottom: 68/1942
  50585. }
  50586. },
  50587. back: {
  50588. height: math.unit(5 + 8/12, "feet"),
  50589. name: "Back",
  50590. image: {
  50591. source: "./media/characters/dee-ditto/back.svg",
  50592. extra: 1870/1783,
  50593. bottom: 77/1947
  50594. }
  50595. },
  50596. },
  50597. [
  50598. {
  50599. name: "Normal",
  50600. height: math.unit(5 + 8/12, "feet"),
  50601. default: true
  50602. },
  50603. ]
  50604. ))
  50605. characterMakers.push(() => makeCharacter(
  50606. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50607. {
  50608. front: {
  50609. height: math.unit(7 + 6/12, "feet"),
  50610. name: "Front",
  50611. image: {
  50612. source: "./media/characters/fey/front.svg",
  50613. extra: 995/979,
  50614. bottom: 30/1025
  50615. }
  50616. },
  50617. back: {
  50618. height: math.unit(7 + 6/12, "feet"),
  50619. name: "Back",
  50620. image: {
  50621. source: "./media/characters/fey/back.svg",
  50622. extra: 1079/1008,
  50623. bottom: 5/1084
  50624. }
  50625. },
  50626. dressed: {
  50627. height: math.unit(7 + 6/12, "feet"),
  50628. name: "Dressed",
  50629. image: {
  50630. source: "./media/characters/fey/dressed.svg",
  50631. extra: 995/979,
  50632. bottom: 30/1025
  50633. }
  50634. },
  50635. },
  50636. [
  50637. {
  50638. name: "Normal",
  50639. height: math.unit(7 + 6/12, "feet"),
  50640. default: true
  50641. },
  50642. ]
  50643. ))
  50644. characterMakers.push(() => makeCharacter(
  50645. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50646. {
  50647. standing: {
  50648. height: math.unit(17, "feet"),
  50649. name: "Standing",
  50650. image: {
  50651. source: "./media/characters/aster/standing.svg",
  50652. extra: 1798/1598,
  50653. bottom: 117/1915
  50654. }
  50655. },
  50656. },
  50657. [
  50658. {
  50659. name: "Normal",
  50660. height: math.unit(17, "feet"),
  50661. default: true
  50662. },
  50663. {
  50664. name: "Homewrecker",
  50665. height: math.unit(95, "feet")
  50666. },
  50667. {
  50668. name: "Planet Devourer",
  50669. height: math.unit(1008000, "miles")
  50670. },
  50671. ]
  50672. ))
  50673. characterMakers.push(() => makeCharacter(
  50674. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50675. {
  50676. front: {
  50677. height: math.unit(6 + 5/12, "feet"),
  50678. weight: math.unit(265, "lb"),
  50679. name: "Front",
  50680. image: {
  50681. source: "./media/characters/devon-childs/front.svg",
  50682. extra: 1795/1721,
  50683. bottom: 41/1836
  50684. }
  50685. },
  50686. side: {
  50687. height: math.unit(6 + 5/12, "feet"),
  50688. weight: math.unit(265, "lb"),
  50689. name: "Side",
  50690. image: {
  50691. source: "./media/characters/devon-childs/side.svg",
  50692. extra: 1812/1738,
  50693. bottom: 30/1842
  50694. }
  50695. },
  50696. back: {
  50697. height: math.unit(6 + 5/12, "feet"),
  50698. weight: math.unit(265, "lb"),
  50699. name: "Back",
  50700. image: {
  50701. source: "./media/characters/devon-childs/back.svg",
  50702. extra: 1808/1735,
  50703. bottom: 23/1831
  50704. }
  50705. },
  50706. hand: {
  50707. height: math.unit(1.464, "feet"),
  50708. name: "Hand",
  50709. image: {
  50710. source: "./media/characters/devon-childs/hand.svg"
  50711. }
  50712. },
  50713. foot: {
  50714. height: math.unit(1.6, "feet"),
  50715. name: "Foot",
  50716. image: {
  50717. source: "./media/characters/devon-childs/foot.svg"
  50718. }
  50719. },
  50720. },
  50721. [
  50722. {
  50723. name: "Micro",
  50724. height: math.unit(7, "cm")
  50725. },
  50726. {
  50727. name: "Normal",
  50728. height: math.unit(6 + 5/12, "feet"),
  50729. default: true
  50730. },
  50731. {
  50732. name: "Macro",
  50733. height: math.unit(154, "feet")
  50734. },
  50735. ]
  50736. ))
  50737. characterMakers.push(() => makeCharacter(
  50738. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50739. {
  50740. front: {
  50741. height: math.unit(6, "feet"),
  50742. weight: math.unit(180, "lb"),
  50743. name: "Front",
  50744. image: {
  50745. source: "./media/characters/lydemox-vir/front.svg",
  50746. extra: 1632/1435,
  50747. bottom: 58/1690
  50748. }
  50749. },
  50750. frontSFW: {
  50751. height: math.unit(6, "feet"),
  50752. weight: math.unit(180, "lb"),
  50753. name: "Front (SFW)",
  50754. image: {
  50755. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50756. extra: 1632/1435,
  50757. bottom: 58/1690
  50758. }
  50759. },
  50760. back: {
  50761. height: math.unit(6, "feet"),
  50762. weight: math.unit(180, "lb"),
  50763. name: "Back",
  50764. image: {
  50765. source: "./media/characters/lydemox-vir/back.svg",
  50766. extra: 1593/1408,
  50767. bottom: 31/1624
  50768. }
  50769. },
  50770. paw: {
  50771. height: math.unit(1.85, "feet"),
  50772. name: "Paw",
  50773. image: {
  50774. source: "./media/characters/lydemox-vir/paw.svg"
  50775. }
  50776. },
  50777. dick: {
  50778. height: math.unit(1.8, "feet"),
  50779. name: "Dick",
  50780. image: {
  50781. source: "./media/characters/lydemox-vir/dick.svg"
  50782. }
  50783. },
  50784. },
  50785. [
  50786. {
  50787. name: "Macro",
  50788. height: math.unit(100, "feet"),
  50789. default: true
  50790. },
  50791. {
  50792. name: "Teramacro",
  50793. height: math.unit(1, "earth")
  50794. },
  50795. {
  50796. name: "Planetary",
  50797. height: math.unit(20, "earths")
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(15 + 8/12, "feet"),
  50806. weight: math.unit(1237, "kg"),
  50807. name: "Front",
  50808. image: {
  50809. source: "./media/characters/mia/front.svg",
  50810. extra: 1573/1446,
  50811. bottom: 58/1631
  50812. }
  50813. },
  50814. },
  50815. [
  50816. {
  50817. name: "Small",
  50818. height: math.unit(9 + 5/12, "feet")
  50819. },
  50820. {
  50821. name: "Normal",
  50822. height: math.unit(15 + 8/12, "feet"),
  50823. default: true
  50824. },
  50825. ]
  50826. ))
  50827. characterMakers.push(() => makeCharacter(
  50828. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50829. {
  50830. front: {
  50831. height: math.unit(10 + 6/12, "feet"),
  50832. weight: math.unit(1.3, "tons"),
  50833. name: "Front",
  50834. image: {
  50835. source: "./media/characters/mr-graves/front.svg",
  50836. extra: 1779/1695,
  50837. bottom: 198/1977
  50838. }
  50839. },
  50840. },
  50841. [
  50842. {
  50843. name: "Normal",
  50844. height: math.unit(10 + 6 /12, "feet"),
  50845. default: true
  50846. },
  50847. ]
  50848. ))
  50849. characterMakers.push(() => makeCharacter(
  50850. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50851. {
  50852. dressedFront: {
  50853. height: math.unit(5 + 8/12, "feet"),
  50854. weight: math.unit(125, "lb"),
  50855. name: "Dressed (Front)",
  50856. image: {
  50857. source: "./media/characters/jess/dressed-front.svg",
  50858. extra: 1176/1152,
  50859. bottom: 42/1218
  50860. }
  50861. },
  50862. dressedSide: {
  50863. height: math.unit(5 + 8/12, "feet"),
  50864. weight: math.unit(125, "lb"),
  50865. name: "Dressed (Side)",
  50866. image: {
  50867. source: "./media/characters/jess/dressed-side.svg",
  50868. extra: 1204/1190,
  50869. bottom: 6/1210
  50870. }
  50871. },
  50872. nudeFront: {
  50873. height: math.unit(5 + 8/12, "feet"),
  50874. weight: math.unit(125, "lb"),
  50875. name: "Nude (Front)",
  50876. image: {
  50877. source: "./media/characters/jess/nude-front.svg",
  50878. extra: 1176/1152,
  50879. bottom: 42/1218
  50880. }
  50881. },
  50882. nudeSide: {
  50883. height: math.unit(5 + 8/12, "feet"),
  50884. weight: math.unit(125, "lb"),
  50885. name: "Nude (Side)",
  50886. image: {
  50887. source: "./media/characters/jess/nude-side.svg",
  50888. extra: 1204/1190,
  50889. bottom: 6/1210
  50890. }
  50891. },
  50892. organsFront: {
  50893. height: math.unit(2.83799342105, "feet"),
  50894. name: "Organs (Front)",
  50895. image: {
  50896. source: "./media/characters/jess/organs-front.svg"
  50897. }
  50898. },
  50899. organsSide: {
  50900. height: math.unit(2.64225290474, "feet"),
  50901. name: "Organs (Side)",
  50902. image: {
  50903. source: "./media/characters/jess/organs-side.svg"
  50904. }
  50905. },
  50906. digestiveTractFront: {
  50907. height: math.unit(2.8106580871, "feet"),
  50908. name: "Digestive Tract (Front)",
  50909. image: {
  50910. source: "./media/characters/jess/digestive-tract-front.svg"
  50911. }
  50912. },
  50913. digestiveTractSide: {
  50914. height: math.unit(2.54365045014, "feet"),
  50915. name: "Digestive Tract (Side)",
  50916. image: {
  50917. source: "./media/characters/jess/digestive-tract-side.svg"
  50918. }
  50919. },
  50920. respiratorySystemFront: {
  50921. height: math.unit(1.11196233456, "feet"),
  50922. name: "Respiratory System (Front)",
  50923. image: {
  50924. source: "./media/characters/jess/respiratory-system-front.svg"
  50925. }
  50926. },
  50927. respiratorySystemSide: {
  50928. height: math.unit(0.89327966297, "feet"),
  50929. name: "Respiratory System (Side)",
  50930. image: {
  50931. source: "./media/characters/jess/respiratory-system-side.svg"
  50932. }
  50933. },
  50934. urinaryTractFront: {
  50935. height: math.unit(1.16126356186, "feet"),
  50936. name: "Urinary Tract (Front)",
  50937. image: {
  50938. source: "./media/characters/jess/urinary-tract-front.svg"
  50939. }
  50940. },
  50941. urinaryTractSide: {
  50942. height: math.unit(1.20910039627, "feet"),
  50943. name: "Urinary Tract (Side)",
  50944. image: {
  50945. source: "./media/characters/jess/urinary-tract-side.svg"
  50946. }
  50947. },
  50948. reproductiveOrgansFront: {
  50949. height: math.unit(0.48422591566, "feet"),
  50950. name: "Reproductive Organs (Front)",
  50951. image: {
  50952. source: "./media/characters/jess/reproductive-organs-front.svg"
  50953. }
  50954. },
  50955. reproductiveOrgansSide: {
  50956. height: math.unit(0.61553314481, "feet"),
  50957. name: "Reproductive Organs (Side)",
  50958. image: {
  50959. source: "./media/characters/jess/reproductive-organs-side.svg"
  50960. }
  50961. },
  50962. breastsFront: {
  50963. height: math.unit(0.47690395121, "feet"),
  50964. name: "Breasts (Front)",
  50965. image: {
  50966. source: "./media/characters/jess/breasts-front.svg"
  50967. }
  50968. },
  50969. breastsSide: {
  50970. height: math.unit(0.30556998307, "feet"),
  50971. name: "Breasts (Side)",
  50972. image: {
  50973. source: "./media/characters/jess/breasts-side.svg"
  50974. }
  50975. },
  50976. heartFront: {
  50977. height: math.unit(0.53011022622, "feet"),
  50978. name: "Heart (Front)",
  50979. image: {
  50980. source: "./media/characters/jess/heart-front.svg"
  50981. }
  50982. },
  50983. heartSide: {
  50984. height: math.unit(0.51790695213, "feet"),
  50985. name: "Heart (Side)",
  50986. image: {
  50987. source: "./media/characters/jess/heart-side.svg"
  50988. }
  50989. },
  50990. earsAndNoseFront: {
  50991. height: math.unit(0.29385483995, "feet"),
  50992. name: "Ears and Nose (Front)",
  50993. image: {
  50994. source: "./media/characters/jess/ears-and-nose-front.svg"
  50995. }
  50996. },
  50997. earsAndNoseSide: {
  50998. height: math.unit(0.18109658741, "feet"),
  50999. name: "Ears and Nose (Side)",
  51000. image: {
  51001. source: "./media/characters/jess/ears-and-nose-side.svg"
  51002. }
  51003. },
  51004. },
  51005. [
  51006. {
  51007. name: "Normal",
  51008. height: math.unit(5 + 8/12, "feet"),
  51009. default: true
  51010. },
  51011. ]
  51012. ))
  51013. characterMakers.push(() => makeCharacter(
  51014. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51015. {
  51016. front: {
  51017. height: math.unit(6, "feet"),
  51018. weight: math.unit(6.64467e-7, "grams"),
  51019. name: "Front",
  51020. image: {
  51021. source: "./media/characters/wimpering/front.svg",
  51022. extra: 597/587,
  51023. bottom: 34/631
  51024. }
  51025. },
  51026. },
  51027. [
  51028. {
  51029. name: "Micro",
  51030. height: math.unit(0.4, "mm"),
  51031. default: true
  51032. },
  51033. ]
  51034. ))
  51035. characterMakers.push(() => makeCharacter(
  51036. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51037. {
  51038. front: {
  51039. height: math.unit(5 + 2/12, "feet"),
  51040. weight: math.unit(110, "lb"),
  51041. name: "Front",
  51042. image: {
  51043. source: "./media/characters/keltre/front.svg",
  51044. extra: 1099/1057,
  51045. bottom: 22/1121
  51046. }
  51047. },
  51048. back: {
  51049. height: math.unit(5 + 2/12, "feet"),
  51050. weight: math.unit(110, "lb"),
  51051. name: "Back",
  51052. image: {
  51053. source: "./media/characters/keltre/back.svg",
  51054. extra: 1095/1053,
  51055. bottom: 17/1112
  51056. }
  51057. },
  51058. dressed: {
  51059. height: math.unit(5 + 2/12, "feet"),
  51060. weight: math.unit(110, "lb"),
  51061. name: "Dressed",
  51062. image: {
  51063. source: "./media/characters/keltre/dressed.svg",
  51064. extra: 1099/1057,
  51065. bottom: 22/1121
  51066. }
  51067. },
  51068. winter: {
  51069. height: math.unit(5 + 2/12, "feet"),
  51070. weight: math.unit(110, "lb"),
  51071. name: "Winter",
  51072. image: {
  51073. source: "./media/characters/keltre/winter.svg",
  51074. extra: 1099/1057,
  51075. bottom: 22/1121
  51076. }
  51077. },
  51078. head: {
  51079. height: math.unit(1.61 * 0.86, "feet"),
  51080. name: "Head",
  51081. image: {
  51082. source: "./media/characters/keltre/head.svg",
  51083. extra: 534/421,
  51084. bottom: 0/534
  51085. }
  51086. },
  51087. hand: {
  51088. height: math.unit(1.3 * 0.86, "feet"),
  51089. name: "Hand",
  51090. image: {
  51091. source: "./media/characters/keltre/hand.svg"
  51092. }
  51093. },
  51094. foot: {
  51095. height: math.unit(1.8 * 0.86, "feet"),
  51096. name: "Foot",
  51097. image: {
  51098. source: "./media/characters/keltre/foot.svg"
  51099. }
  51100. },
  51101. },
  51102. [
  51103. {
  51104. name: "Fine",
  51105. height: math.unit(1, "inch")
  51106. },
  51107. {
  51108. name: "Dimnutive",
  51109. height: math.unit(4, "inches")
  51110. },
  51111. {
  51112. name: "Tiny",
  51113. height: math.unit(1, "foot")
  51114. },
  51115. {
  51116. name: "Small",
  51117. height: math.unit(3, "feet")
  51118. },
  51119. {
  51120. name: "Normal",
  51121. height: math.unit(5 + 2/12, "feet"),
  51122. default: true
  51123. },
  51124. ]
  51125. ))
  51126. characterMakers.push(() => makeCharacter(
  51127. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51128. {
  51129. front: {
  51130. height: math.unit(6 + 2/12, "feet"),
  51131. name: "Front",
  51132. image: {
  51133. source: "./media/characters/nox/front.svg",
  51134. extra: 1917/1830,
  51135. bottom: 74/1991
  51136. }
  51137. },
  51138. back: {
  51139. height: math.unit(6 + 2/12, "feet"),
  51140. name: "Back",
  51141. image: {
  51142. source: "./media/characters/nox/back.svg",
  51143. extra: 1896/1815,
  51144. bottom: 21/1917
  51145. }
  51146. },
  51147. head: {
  51148. height: math.unit(1.1, "feet"),
  51149. name: "Head",
  51150. image: {
  51151. source: "./media/characters/nox/head.svg",
  51152. extra: 874/704,
  51153. bottom: 0/874
  51154. }
  51155. },
  51156. tattoo: {
  51157. height: math.unit(0.729, "feet"),
  51158. name: "Tattoo",
  51159. image: {
  51160. source: "./media/characters/nox/tattoo.svg"
  51161. }
  51162. },
  51163. },
  51164. [
  51165. {
  51166. name: "Normal",
  51167. height: math.unit(6 + 2/12, "feet")
  51168. },
  51169. {
  51170. name: "Gigamacro",
  51171. height: math.unit(2, "earths"),
  51172. default: true
  51173. },
  51174. {
  51175. name: "Cosmic",
  51176. height: math.unit(867, "yottameters")
  51177. },
  51178. ]
  51179. ))
  51180. characterMakers.push(() => makeCharacter(
  51181. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51182. {
  51183. front: {
  51184. height: math.unit(6, "feet"),
  51185. weight: math.unit(150, "lb"),
  51186. name: "Front",
  51187. image: {
  51188. source: "./media/characters/caspian/front.svg",
  51189. extra: 1443/1359,
  51190. bottom: 0/1443
  51191. }
  51192. },
  51193. back: {
  51194. height: math.unit(6, "feet"),
  51195. weight: math.unit(150, "lb"),
  51196. name: "Back",
  51197. image: {
  51198. source: "./media/characters/caspian/back.svg",
  51199. extra: 1379/1309,
  51200. bottom: 0/1379
  51201. }
  51202. },
  51203. head: {
  51204. height: math.unit(0.9, "feet"),
  51205. name: "Head",
  51206. image: {
  51207. source: "./media/characters/caspian/head.svg",
  51208. extra: 692/492,
  51209. bottom: 0/692
  51210. }
  51211. },
  51212. headAlt: {
  51213. height: math.unit(0.95, "feet"),
  51214. name: "Head (Alt)",
  51215. image: {
  51216. source: "./media/characters/caspian/head-alt.svg",
  51217. extra: 668/508,
  51218. bottom: 0/668
  51219. }
  51220. },
  51221. hand: {
  51222. height: math.unit(0.8, "feet"),
  51223. name: "Hand",
  51224. image: {
  51225. source: "./media/characters/caspian/hand.svg"
  51226. }
  51227. },
  51228. paw: {
  51229. height: math.unit(0.95, "feet"),
  51230. name: "Paw",
  51231. image: {
  51232. source: "./media/characters/caspian/paw.svg"
  51233. }
  51234. },
  51235. },
  51236. [
  51237. {
  51238. name: "Normal",
  51239. height: math.unit(162, "feet"),
  51240. default: true
  51241. },
  51242. ]
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51246. {
  51247. front: {
  51248. height: math.unit(6, "feet"),
  51249. name: "Front",
  51250. image: {
  51251. source: "./media/characters/myra-aisling/front.svg",
  51252. extra: 1268/1166,
  51253. bottom: 73/1341
  51254. }
  51255. },
  51256. back: {
  51257. height: math.unit(6, "feet"),
  51258. name: "Back",
  51259. image: {
  51260. source: "./media/characters/myra-aisling/back.svg",
  51261. extra: 1249/1149,
  51262. bottom: 79/1328
  51263. }
  51264. },
  51265. dressed: {
  51266. height: math.unit(6, "feet"),
  51267. name: "Dressed",
  51268. image: {
  51269. source: "./media/characters/myra-aisling/dressed.svg",
  51270. extra: 1290/1189,
  51271. bottom: 47/1337
  51272. }
  51273. },
  51274. hand: {
  51275. height: math.unit(1.1, "feet"),
  51276. name: "Hand",
  51277. image: {
  51278. source: "./media/characters/myra-aisling/hand.svg"
  51279. }
  51280. },
  51281. paw: {
  51282. height: math.unit(1.23, "feet"),
  51283. name: "Paw",
  51284. image: {
  51285. source: "./media/characters/myra-aisling/paw.svg"
  51286. }
  51287. },
  51288. },
  51289. [
  51290. {
  51291. name: "Normal",
  51292. height: math.unit(160, "feet"),
  51293. default: true
  51294. },
  51295. ]
  51296. ))
  51297. characterMakers.push(() => makeCharacter(
  51298. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51299. {
  51300. front: {
  51301. height: math.unit(6, "feet"),
  51302. name: "Front",
  51303. image: {
  51304. source: "./media/characters/tenley-sidero/front.svg",
  51305. extra: 1365/1276,
  51306. bottom: 47/1412
  51307. }
  51308. },
  51309. back: {
  51310. height: math.unit(6, "feet"),
  51311. name: "Back",
  51312. image: {
  51313. source: "./media/characters/tenley-sidero/back.svg",
  51314. extra: 1383/1283,
  51315. bottom: 35/1418
  51316. }
  51317. },
  51318. dressed: {
  51319. height: math.unit(6, "feet"),
  51320. name: "Dressed",
  51321. image: {
  51322. source: "./media/characters/tenley-sidero/dressed.svg",
  51323. extra: 1364/1275,
  51324. bottom: 42/1406
  51325. }
  51326. },
  51327. head: {
  51328. height: math.unit(1.47, "feet"),
  51329. name: "Head",
  51330. image: {
  51331. source: "./media/characters/tenley-sidero/head.svg",
  51332. extra: 610/490,
  51333. bottom: 0/610
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(154, "feet"),
  51341. default: true
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(5, "inches"),
  51350. name: "Front",
  51351. image: {
  51352. source: "./media/characters/mallory/front.svg",
  51353. extra: 1919/1678,
  51354. bottom: 29/1948
  51355. }
  51356. },
  51357. hand: {
  51358. height: math.unit(0.73, "inches"),
  51359. name: "Hand",
  51360. image: {
  51361. source: "./media/characters/mallory/hand.svg"
  51362. }
  51363. },
  51364. paw: {
  51365. height: math.unit(0.68, "inches"),
  51366. name: "Paw",
  51367. image: {
  51368. source: "./media/characters/mallory/paw.svg"
  51369. }
  51370. },
  51371. },
  51372. [
  51373. {
  51374. name: "Small",
  51375. height: math.unit(5, "inches"),
  51376. default: true
  51377. },
  51378. ]
  51379. ))
  51380. characterMakers.push(() => makeCharacter(
  51381. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51382. {
  51383. naked: {
  51384. height: math.unit(6, "feet"),
  51385. name: "Naked",
  51386. image: {
  51387. source: "./media/characters/mab/naked.svg",
  51388. extra: 1855/1757,
  51389. bottom: 208/2063
  51390. }
  51391. },
  51392. outside: {
  51393. height: math.unit(6, "feet"),
  51394. name: "Outside",
  51395. image: {
  51396. source: "./media/characters/mab/outside.svg",
  51397. extra: 1855/1757,
  51398. bottom: 208/2063
  51399. }
  51400. },
  51401. party: {
  51402. height: math.unit(6, "feet"),
  51403. name: "Party",
  51404. image: {
  51405. source: "./media/characters/mab/party.svg",
  51406. extra: 1855/1757,
  51407. bottom: 208/2063
  51408. }
  51409. },
  51410. },
  51411. [
  51412. {
  51413. name: "Normal",
  51414. height: math.unit(165, "feet"),
  51415. default: true
  51416. },
  51417. ]
  51418. ))
  51419. characterMakers.push(() => makeCharacter(
  51420. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51421. {
  51422. feral: {
  51423. height: math.unit(12, "feet"),
  51424. weight: math.unit(20000, "lb"),
  51425. name: "Side",
  51426. image: {
  51427. source: "./media/characters/winter/feral.svg",
  51428. extra: 1286/943,
  51429. bottom: 112/1398
  51430. },
  51431. form: "feral",
  51432. default: true
  51433. },
  51434. feralNsfw: {
  51435. height: math.unit(12, "feet"),
  51436. weight: math.unit(20000, "lb"),
  51437. name: "Side (NSFW)",
  51438. image: {
  51439. source: "./media/characters/winter/feral-nsfw.svg",
  51440. extra: 1286/943,
  51441. bottom: 112/1398
  51442. },
  51443. form: "feral"
  51444. },
  51445. dick: {
  51446. height: math.unit(3.79, "feet"),
  51447. name: "Dick",
  51448. image: {
  51449. source: "./media/characters/winter/dick.svg"
  51450. },
  51451. form: "feral"
  51452. },
  51453. anthro: {
  51454. height: math.unit(12, "feet"),
  51455. weight: math.unit(10, "tons"),
  51456. name: "Anthro",
  51457. image: {
  51458. source: "./media/characters/winter/anthro.svg",
  51459. extra: 1701/1553,
  51460. bottom: 64/1765
  51461. },
  51462. form: "anthro",
  51463. default: true
  51464. },
  51465. },
  51466. [
  51467. {
  51468. name: "Big",
  51469. height: math.unit(12, "feet"),
  51470. default: true,
  51471. form: "feral"
  51472. },
  51473. {
  51474. name: "Big",
  51475. height: math.unit(12, "feet"),
  51476. default: true,
  51477. form: "anthro"
  51478. },
  51479. ],
  51480. {
  51481. "feral": {
  51482. name: "Feral",
  51483. default: true
  51484. },
  51485. "anthro": {
  51486. name: "Anthro"
  51487. }
  51488. }
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51492. {
  51493. front: {
  51494. height: math.unit(4.1, "inches"),
  51495. name: "Front",
  51496. image: {
  51497. source: "./media/characters/alto/front.svg",
  51498. extra: 736/627,
  51499. bottom: 90/826
  51500. }
  51501. },
  51502. },
  51503. [
  51504. {
  51505. name: "Normal",
  51506. height: math.unit(4.1, "inches"),
  51507. default: true
  51508. },
  51509. ]
  51510. ))
  51511. characterMakers.push(() => makeCharacter(
  51512. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51513. {
  51514. sitting: {
  51515. height: math.unit(3, "feet"),
  51516. name: "Sitting",
  51517. image: {
  51518. source: "./media/characters/ratstrid-v/sitting.svg",
  51519. extra: 355/310,
  51520. bottom: 136/491
  51521. }
  51522. },
  51523. },
  51524. [
  51525. {
  51526. name: "Normal",
  51527. height: math.unit(3, "feet"),
  51528. default: true
  51529. },
  51530. ]
  51531. ))
  51532. characterMakers.push(() => makeCharacter(
  51533. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51534. {
  51535. back: {
  51536. height: math.unit(6, "feet"),
  51537. weight: math.unit(450, "lb"),
  51538. name: "Back",
  51539. image: {
  51540. source: "./media/characters/siz/back.svg",
  51541. extra: 1449/1274,
  51542. bottom: 13/1462
  51543. }
  51544. },
  51545. },
  51546. [
  51547. {
  51548. name: "Smallest",
  51549. height: math.unit(18 + 3/12, "feet")
  51550. },
  51551. {
  51552. name: "Modest",
  51553. height: math.unit(56 + 8/12, "feet"),
  51554. default: true
  51555. },
  51556. {
  51557. name: "Largest",
  51558. height: math.unit(3590, "feet")
  51559. },
  51560. ]
  51561. ))
  51562. characterMakers.push(() => makeCharacter(
  51563. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51564. {
  51565. front: {
  51566. height: math.unit(5 + 9/12, "feet"),
  51567. weight: math.unit(150, "lb"),
  51568. name: "Front",
  51569. image: {
  51570. source: "./media/characters/ven/front.svg",
  51571. extra: 1372/1320,
  51572. bottom: 73/1445
  51573. }
  51574. },
  51575. side: {
  51576. height: math.unit(5 + 9/12, "feet"),
  51577. weight: math.unit(1150, "lb"),
  51578. name: "Side",
  51579. image: {
  51580. source: "./media/characters/ven/side.svg",
  51581. extra: 1119/1070,
  51582. bottom: 42/1161
  51583. },
  51584. default: true
  51585. },
  51586. },
  51587. [
  51588. {
  51589. name: "Normal",
  51590. height: math.unit(5 + 9/12, "feet"),
  51591. default: true
  51592. },
  51593. ]
  51594. ))
  51595. characterMakers.push(() => makeCharacter(
  51596. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51597. {
  51598. front: {
  51599. height: math.unit(12, "feet"),
  51600. weight: math.unit(1000, "kg"),
  51601. name: "Front",
  51602. image: {
  51603. source: "./media/characters/maple/front.svg",
  51604. extra: 1193/1081,
  51605. bottom: 22/1215
  51606. }
  51607. },
  51608. },
  51609. [
  51610. {
  51611. name: "Compressed",
  51612. height: math.unit(7, "feet")
  51613. },
  51614. {
  51615. name: "Normal",
  51616. height: math.unit(12, "feet"),
  51617. default: true
  51618. },
  51619. ]
  51620. ))
  51621. characterMakers.push(() => makeCharacter(
  51622. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51623. {
  51624. front: {
  51625. height: math.unit(9, "feet"),
  51626. weight: math.unit(1500, "lb"),
  51627. name: "Front",
  51628. image: {
  51629. source: "./media/characters/nora/front.svg",
  51630. extra: 1348/1286,
  51631. bottom: 218/1566
  51632. }
  51633. },
  51634. erect: {
  51635. height: math.unit(9, "feet"),
  51636. weight: math.unit(11500, "lb"),
  51637. name: "Erect",
  51638. image: {
  51639. source: "./media/characters/nora/erect.svg",
  51640. extra: 1488/1433,
  51641. bottom: 133/1621
  51642. }
  51643. },
  51644. },
  51645. [
  51646. {
  51647. name: "Normal",
  51648. height: math.unit(9, "feet"),
  51649. default: true
  51650. },
  51651. ]
  51652. ))
  51653. characterMakers.push(() => makeCharacter(
  51654. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51655. {
  51656. front: {
  51657. height: math.unit(25, "feet"),
  51658. weight: math.unit(27500, "lb"),
  51659. name: "Front",
  51660. image: {
  51661. source: "./media/characters/north-caudin/front.svg",
  51662. extra: 1184/1082,
  51663. bottom: 23/1207
  51664. }
  51665. },
  51666. },
  51667. [
  51668. {
  51669. name: "Compressed",
  51670. height: math.unit(10, "feet")
  51671. },
  51672. {
  51673. name: "Normal",
  51674. height: math.unit(25, "feet"),
  51675. default: true
  51676. },
  51677. ]
  51678. ))
  51679. characterMakers.push(() => makeCharacter(
  51680. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51681. {
  51682. front: {
  51683. height: math.unit(9, "feet"),
  51684. weight: math.unit(1250, "lb"),
  51685. name: "Front",
  51686. image: {
  51687. source: "./media/characters/merrian/front.svg",
  51688. extra: 2393/2304,
  51689. bottom: 40/2433
  51690. }
  51691. },
  51692. },
  51693. [
  51694. {
  51695. name: "Normal",
  51696. height: math.unit(9, "feet"),
  51697. default: true
  51698. },
  51699. ]
  51700. ))
  51701. characterMakers.push(() => makeCharacter(
  51702. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51703. {
  51704. front: {
  51705. height: math.unit(9, "feet"),
  51706. weight: math.unit(1000, "lb"),
  51707. name: "Front",
  51708. image: {
  51709. source: "./media/characters/hazel/front.svg",
  51710. extra: 2351/2298,
  51711. bottom: 38/2389
  51712. }
  51713. },
  51714. },
  51715. [
  51716. {
  51717. name: "Normal",
  51718. height: math.unit(9, "feet"),
  51719. default: true
  51720. },
  51721. ]
  51722. ))
  51723. characterMakers.push(() => makeCharacter(
  51724. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51725. {
  51726. front: {
  51727. height: math.unit(13, "feet"),
  51728. weight: math.unit(3200, "lb"),
  51729. name: "Front",
  51730. image: {
  51731. source: "./media/characters/emma/front.svg",
  51732. extra: 2263/2029,
  51733. bottom: 68/2331
  51734. }
  51735. },
  51736. },
  51737. [
  51738. {
  51739. name: "Normal",
  51740. height: math.unit(13, "feet"),
  51741. default: true
  51742. },
  51743. ]
  51744. ))
  51745. characterMakers.push(() => makeCharacter(
  51746. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51747. {
  51748. front: {
  51749. height: math.unit(11 + 9/12, "feet"),
  51750. weight: math.unit(2500, "lb"),
  51751. name: "Front",
  51752. image: {
  51753. source: "./media/characters/ilumina/front.svg",
  51754. extra: 2248/2209,
  51755. bottom: 164/2412
  51756. }
  51757. },
  51758. },
  51759. [
  51760. {
  51761. name: "Normal",
  51762. height: math.unit(11 + 9/12, "feet"),
  51763. default: true
  51764. },
  51765. ]
  51766. ))
  51767. characterMakers.push(() => makeCharacter(
  51768. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51769. {
  51770. front: {
  51771. height: math.unit(8 + 10/12, "feet"),
  51772. weight: math.unit(1350, "lb"),
  51773. name: "Front",
  51774. image: {
  51775. source: "./media/characters/moonshine/front.svg",
  51776. extra: 2395/2288,
  51777. bottom: 40/2435
  51778. }
  51779. },
  51780. },
  51781. [
  51782. {
  51783. name: "Normal",
  51784. height: math.unit(8 + 10/12, "feet"),
  51785. default: true
  51786. },
  51787. ]
  51788. ))
  51789. characterMakers.push(() => makeCharacter(
  51790. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51791. {
  51792. front: {
  51793. height: math.unit(14, "feet"),
  51794. weight: math.unit(3400, "lb"),
  51795. name: "Front",
  51796. image: {
  51797. source: "./media/characters/aletia/front.svg",
  51798. extra: 1185/1052,
  51799. bottom: 21/1206
  51800. }
  51801. },
  51802. },
  51803. [
  51804. {
  51805. name: "Compressed",
  51806. height: math.unit(8, "feet")
  51807. },
  51808. {
  51809. name: "Normal",
  51810. height: math.unit(14, "feet"),
  51811. default: true
  51812. },
  51813. ]
  51814. ))
  51815. characterMakers.push(() => makeCharacter(
  51816. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51817. {
  51818. front: {
  51819. height: math.unit(17, "feet"),
  51820. weight: math.unit(6500, "lb"),
  51821. name: "Front",
  51822. image: {
  51823. source: "./media/characters/deidra/front.svg",
  51824. extra: 1201/1081,
  51825. bottom: 16/1217
  51826. }
  51827. },
  51828. },
  51829. [
  51830. {
  51831. name: "Compressed",
  51832. height: math.unit(9 + 6/12, "feet")
  51833. },
  51834. {
  51835. name: "Normal",
  51836. height: math.unit(17, "feet"),
  51837. default: true
  51838. },
  51839. ]
  51840. ))
  51841. characterMakers.push(() => makeCharacter(
  51842. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51843. {
  51844. front: {
  51845. height: math.unit(7 + 4/12, "feet"),
  51846. weight: math.unit(280, "lb"),
  51847. name: "Front",
  51848. image: {
  51849. source: "./media/characters/freki-yrmori/front.svg",
  51850. extra: 1286/1182,
  51851. bottom: 29/1315
  51852. }
  51853. },
  51854. maw: {
  51855. height: math.unit(0.9, "feet"),
  51856. name: "Maw",
  51857. image: {
  51858. source: "./media/characters/freki-yrmori/maw.svg"
  51859. }
  51860. },
  51861. },
  51862. [
  51863. {
  51864. name: "Normal",
  51865. height: math.unit(7 + 4/12, "feet"),
  51866. default: true
  51867. },
  51868. {
  51869. name: "Macro",
  51870. height: math.unit(38.5, "meters")
  51871. },
  51872. ]
  51873. ))
  51874. characterMakers.push(() => makeCharacter(
  51875. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51876. {
  51877. side: {
  51878. height: math.unit(47.2, "meters"),
  51879. weight: math.unit(10000, "tons"),
  51880. name: "Side",
  51881. image: {
  51882. source: "./media/characters/aetherios/side.svg",
  51883. extra: 2363/642,
  51884. bottom: 221/2584
  51885. }
  51886. },
  51887. top: {
  51888. height: math.unit(240, "meters"),
  51889. weight: math.unit(10000, "tons"),
  51890. name: "Top",
  51891. image: {
  51892. source: "./media/characters/aetherios/top.svg"
  51893. }
  51894. },
  51895. bottom: {
  51896. height: math.unit(240, "meters"),
  51897. weight: math.unit(10000, "tons"),
  51898. name: "Bottom",
  51899. image: {
  51900. source: "./media/characters/aetherios/bottom.svg"
  51901. }
  51902. },
  51903. head: {
  51904. height: math.unit(38.6, "meters"),
  51905. name: "Head",
  51906. image: {
  51907. source: "./media/characters/aetherios/head.svg",
  51908. extra: 1335/1112,
  51909. bottom: 0/1335
  51910. }
  51911. },
  51912. front: {
  51913. height: math.unit(29, "meters"),
  51914. name: "Front",
  51915. image: {
  51916. source: "./media/characters/aetherios/front.svg",
  51917. extra: 1266/953,
  51918. bottom: 158/1424
  51919. }
  51920. },
  51921. maw: {
  51922. height: math.unit(16.37, "meters"),
  51923. name: "Maw",
  51924. image: {
  51925. source: "./media/characters/aetherios/maw.svg",
  51926. extra: 748/637,
  51927. bottom: 0/748
  51928. },
  51929. extraAttributes: {
  51930. preyCapacity: {
  51931. name: "Capacity",
  51932. power: 3,
  51933. type: "volume",
  51934. base: math.unit(1000, "people")
  51935. },
  51936. tongueSize: {
  51937. name: "Tongue Size",
  51938. power: 2,
  51939. type: "area",
  51940. base: math.unit(21, "m^2")
  51941. }
  51942. }
  51943. },
  51944. forepaw: {
  51945. height: math.unit(18, "meters"),
  51946. name: "Forepaw",
  51947. image: {
  51948. source: "./media/characters/aetherios/forepaw.svg"
  51949. }
  51950. },
  51951. hindpaw: {
  51952. height: math.unit(23, "meters"),
  51953. name: "Hindpaw",
  51954. image: {
  51955. source: "./media/characters/aetherios/hindpaw.svg"
  51956. }
  51957. },
  51958. genitals: {
  51959. height: math.unit(42, "meters"),
  51960. name: "Genitals",
  51961. image: {
  51962. source: "./media/characters/aetherios/genitals.svg"
  51963. }
  51964. },
  51965. },
  51966. [
  51967. {
  51968. name: "Normal",
  51969. height: math.unit(47.2, "meters"),
  51970. default: true
  51971. },
  51972. {
  51973. name: "Macro",
  51974. height: math.unit(160, "meters")
  51975. },
  51976. {
  51977. name: "Mega",
  51978. height: math.unit(1.87, "km")
  51979. },
  51980. {
  51981. name: "Giga",
  51982. height: math.unit(40000, "km")
  51983. },
  51984. {
  51985. name: "Stellar",
  51986. height: math.unit(158000000, "km")
  51987. },
  51988. {
  51989. name: "Cosmic",
  51990. height: math.unit(9.46e12, "km")
  51991. },
  51992. ]
  51993. ))
  51994. characterMakers.push(() => makeCharacter(
  51995. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51996. {
  51997. front: {
  51998. height: math.unit(5 + 4/12, "feet"),
  51999. weight: math.unit(80, "lb"),
  52000. name: "Front",
  52001. image: {
  52002. source: "./media/characters/mizu-gieeg/front.svg",
  52003. extra: 850/709,
  52004. bottom: 52/902
  52005. }
  52006. },
  52007. back: {
  52008. height: math.unit(5 + 4/12, "feet"),
  52009. weight: math.unit(80, "lb"),
  52010. name: "Back",
  52011. image: {
  52012. source: "./media/characters/mizu-gieeg/back.svg",
  52013. extra: 882/745,
  52014. bottom: 25/907
  52015. }
  52016. },
  52017. },
  52018. [
  52019. {
  52020. name: "Normal",
  52021. height: math.unit(5 + 4/12, "feet"),
  52022. default: true
  52023. },
  52024. ]
  52025. ))
  52026. characterMakers.push(() => makeCharacter(
  52027. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52028. {
  52029. front: {
  52030. height: math.unit(6, "feet"),
  52031. name: "Front",
  52032. image: {
  52033. source: "./media/characters/roselle-st-papier/front.svg",
  52034. extra: 1430/1280,
  52035. bottom: 37/1467
  52036. }
  52037. },
  52038. back: {
  52039. height: math.unit(6, "feet"),
  52040. name: "Back",
  52041. image: {
  52042. source: "./media/characters/roselle-st-papier/back.svg",
  52043. extra: 1491/1296,
  52044. bottom: 23/1514
  52045. }
  52046. },
  52047. ear: {
  52048. height: math.unit(1.26, "feet"),
  52049. name: "Ear",
  52050. image: {
  52051. source: "./media/characters/roselle-st-papier/ear.svg"
  52052. }
  52053. },
  52054. },
  52055. [
  52056. {
  52057. name: "Normal",
  52058. height: math.unit(150, "feet"),
  52059. default: true
  52060. },
  52061. ]
  52062. ))
  52063. characterMakers.push(() => makeCharacter(
  52064. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52065. {
  52066. front: {
  52067. height: math.unit(1, "inches"),
  52068. name: "Front",
  52069. image: {
  52070. source: "./media/characters/valargent/front.svg",
  52071. extra: 1825/1694,
  52072. bottom: 62/1887
  52073. }
  52074. },
  52075. back: {
  52076. height: math.unit(1, "inches"),
  52077. name: "Back",
  52078. image: {
  52079. source: "./media/characters/valargent/back.svg",
  52080. extra: 1775/1682,
  52081. bottom: 88/1863
  52082. }
  52083. },
  52084. },
  52085. [
  52086. {
  52087. name: "Micro",
  52088. height: math.unit(1, "inch"),
  52089. default: true
  52090. },
  52091. ]
  52092. ))
  52093. characterMakers.push(() => makeCharacter(
  52094. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52095. {
  52096. front: {
  52097. height: math.unit(3.4, "meters"),
  52098. name: "Front",
  52099. image: {
  52100. source: "./media/characters/zarina/front.svg",
  52101. extra: 1733/1425,
  52102. bottom: 93/1826
  52103. }
  52104. },
  52105. squatting: {
  52106. height: math.unit(2.14, "meters"),
  52107. name: "Squatting",
  52108. image: {
  52109. source: "./media/characters/zarina/squatting.svg",
  52110. extra: 1073/788,
  52111. bottom: 63/1136
  52112. }
  52113. },
  52114. back: {
  52115. height: math.unit(2.14, "meters"),
  52116. name: "Back",
  52117. image: {
  52118. source: "./media/characters/zarina/back.svg",
  52119. extra: 1128/885,
  52120. bottom: 0/1128
  52121. }
  52122. },
  52123. },
  52124. [
  52125. {
  52126. name: "Normal",
  52127. height: math.unit(3.4, "meters"),
  52128. default: true
  52129. },
  52130. {
  52131. name: "Big",
  52132. height: math.unit(5, "meters")
  52133. },
  52134. {
  52135. name: "Macro",
  52136. height: math.unit(110, "meters")
  52137. },
  52138. ]
  52139. ))
  52140. characterMakers.push(() => makeCharacter(
  52141. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52142. {
  52143. front: {
  52144. height: math.unit(7, "feet"),
  52145. name: "Front",
  52146. image: {
  52147. source: "./media/characters/ventus-astro-fox/front.svg",
  52148. extra: 1792/1623,
  52149. bottom: 28/1820
  52150. }
  52151. },
  52152. back: {
  52153. height: math.unit(7, "feet"),
  52154. name: "Back",
  52155. image: {
  52156. source: "./media/characters/ventus-astro-fox/back.svg",
  52157. extra: 1789/1620,
  52158. bottom: 31/1820
  52159. }
  52160. },
  52161. outfit: {
  52162. height: math.unit(7, "feet"),
  52163. name: "Outfit",
  52164. image: {
  52165. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52166. extra: 1054/925,
  52167. bottom: 15/1069
  52168. }
  52169. },
  52170. head: {
  52171. height: math.unit(1.12, "feet"),
  52172. name: "Head",
  52173. image: {
  52174. source: "./media/characters/ventus-astro-fox/head.svg",
  52175. extra: 866/504,
  52176. bottom: 0/866
  52177. }
  52178. },
  52179. hand: {
  52180. height: math.unit(1, "feet"),
  52181. name: "Hand",
  52182. image: {
  52183. source: "./media/characters/ventus-astro-fox/hand.svg"
  52184. }
  52185. },
  52186. paw: {
  52187. height: math.unit(1.5, "feet"),
  52188. name: "Paw",
  52189. image: {
  52190. source: "./media/characters/ventus-astro-fox/paw.svg"
  52191. }
  52192. },
  52193. },
  52194. [
  52195. {
  52196. name: "Normal",
  52197. height: math.unit(7, "feet"),
  52198. default: true
  52199. },
  52200. {
  52201. name: "Macro",
  52202. height: math.unit(200, "feet")
  52203. },
  52204. {
  52205. name: "Cosmic",
  52206. height: math.unit(3, "universes")
  52207. },
  52208. ]
  52209. ))
  52210. characterMakers.push(() => makeCharacter(
  52211. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52212. {
  52213. front: {
  52214. height: math.unit(3, "meters"),
  52215. weight: math.unit(7000, "lb"),
  52216. name: "Front",
  52217. image: {
  52218. source: "./media/characters/core-t/front.svg",
  52219. extra: 5729/4941,
  52220. bottom: 1129/6858
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Big",
  52227. height: math.unit(3, "meters"),
  52228. default: true
  52229. },
  52230. ]
  52231. ))
  52232. characterMakers.push(() => makeCharacter(
  52233. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52234. {
  52235. normal: {
  52236. height: math.unit(6 + 6/12, "feet"),
  52237. weight: math.unit(275, "lb"),
  52238. name: "Front",
  52239. image: {
  52240. source: "./media/characters/cadbunny/normal.svg",
  52241. extra: 1129/947,
  52242. bottom: 93/1222
  52243. },
  52244. default: true,
  52245. form: "normal"
  52246. },
  52247. gigantamax: {
  52248. height: math.unit(26, "feet"),
  52249. weight: math.unit(16000, "lb"),
  52250. name: "Front",
  52251. image: {
  52252. source: "./media/characters/cadbunny/gigantamax.svg",
  52253. extra: 1133/944,
  52254. bottom: 90/1223
  52255. },
  52256. default: true,
  52257. form: "gigantamax"
  52258. },
  52259. },
  52260. [
  52261. {
  52262. name: "Normal",
  52263. height: math.unit(6 + 6/12, "feet"),
  52264. default: true,
  52265. form: "normal"
  52266. },
  52267. {
  52268. name: "Small",
  52269. height: math.unit(26, "feet"),
  52270. default: true,
  52271. form: "gigantamax"
  52272. },
  52273. {
  52274. name: "Large",
  52275. height: math.unit(78, "feet"),
  52276. form: "gigantamax"
  52277. },
  52278. ],
  52279. {
  52280. "normal": {
  52281. name: "Normal",
  52282. default: true
  52283. },
  52284. "gigantamax": {
  52285. name: "Gigantamax"
  52286. }
  52287. }
  52288. ))
  52289. characterMakers.push(() => makeCharacter(
  52290. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52291. {
  52292. anthroFront: {
  52293. height: math.unit(8, "feet"),
  52294. weight: math.unit(300, "lb"),
  52295. name: "Front",
  52296. image: {
  52297. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52298. extra: 1272/1176,
  52299. bottom: 53/1325
  52300. },
  52301. form: "anthro",
  52302. default: true
  52303. },
  52304. feralSide: {
  52305. height: math.unit(4, "feet"),
  52306. weight: math.unit(250, "lb"),
  52307. name: "Side",
  52308. image: {
  52309. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52310. extra: 731/621,
  52311. bottom: 0/731
  52312. },
  52313. form: "feral",
  52314. default: true
  52315. },
  52316. },
  52317. [
  52318. {
  52319. name: "Regular",
  52320. height: math.unit(8, "feet"),
  52321. form: "anthro"
  52322. },
  52323. {
  52324. name: "Macro",
  52325. height: math.unit(250, "feet"),
  52326. form: "anthro",
  52327. default: true
  52328. },
  52329. {
  52330. name: "Regular",
  52331. height: math.unit(4, "feet"),
  52332. form: "feral"
  52333. },
  52334. {
  52335. name: "Macro",
  52336. height: math.unit(125, "feet"),
  52337. form: "feral",
  52338. default: true
  52339. },
  52340. ],
  52341. {
  52342. "anthro": {
  52343. name: "Anthro",
  52344. default: true
  52345. },
  52346. "feral": {
  52347. name: "Feral",
  52348. },
  52349. }
  52350. ))
  52351. characterMakers.push(() => makeCharacter(
  52352. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52353. {
  52354. front: {
  52355. height: math.unit(11 + 10/12, "feet"),
  52356. weight: math.unit(1587, "kg"),
  52357. name: "Front",
  52358. image: {
  52359. source: "./media/characters/maple-javira-dragon/front.svg",
  52360. extra: 1136/744,
  52361. bottom: 73/1209
  52362. }
  52363. },
  52364. side: {
  52365. height: math.unit(11 + 10/12, "feet"),
  52366. weight: math.unit(1587, "kg"),
  52367. name: "Side",
  52368. image: {
  52369. source: "./media/characters/maple-javira-dragon/side.svg",
  52370. extra: 712/505,
  52371. bottom: 17/729
  52372. }
  52373. },
  52374. head: {
  52375. height: math.unit(8.05, "feet"),
  52376. name: "Head",
  52377. image: {
  52378. source: "./media/characters/maple-javira-dragon/head.svg",
  52379. extra: 1420/1344,
  52380. bottom: 0/1420
  52381. }
  52382. },
  52383. },
  52384. [
  52385. {
  52386. name: "Normal",
  52387. height: math.unit(11 + 10/12, "feet"),
  52388. default: true
  52389. },
  52390. ]
  52391. ))
  52392. characterMakers.push(() => makeCharacter(
  52393. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52394. {
  52395. front: {
  52396. height: math.unit(117, "cm"),
  52397. weight: math.unit(50, "kg"),
  52398. name: "Front",
  52399. image: {
  52400. source: "./media/characters/sonia-wyverntail/front.svg",
  52401. extra: 708/592,
  52402. bottom: 25/733
  52403. }
  52404. },
  52405. },
  52406. [
  52407. {
  52408. name: "Normal",
  52409. height: math.unit(117, "cm"),
  52410. default: true
  52411. },
  52412. ]
  52413. ))
  52414. characterMakers.push(() => makeCharacter(
  52415. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52416. {
  52417. front: {
  52418. height: math.unit(6 + 5/12, "feet"),
  52419. name: "Front",
  52420. image: {
  52421. source: "./media/characters/micah/front.svg",
  52422. extra: 1758/1546,
  52423. bottom: 214/1972
  52424. }
  52425. },
  52426. },
  52427. [
  52428. {
  52429. name: "Normal",
  52430. height: math.unit(6 + 5/12, "feet"),
  52431. default: true
  52432. },
  52433. ]
  52434. ))
  52435. characterMakers.push(() => makeCharacter(
  52436. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52437. {
  52438. front: {
  52439. height: math.unit(1.75, "meters"),
  52440. weight: math.unit(100, "kg"),
  52441. name: "Front",
  52442. image: {
  52443. source: "./media/characters/zarya/front.svg",
  52444. extra: 741/735,
  52445. bottom: 44/785
  52446. },
  52447. extraAttributes: {
  52448. "tailLength": {
  52449. name: "Tail Length",
  52450. power: 1,
  52451. type: "length",
  52452. base: math.unit(180, "cm")
  52453. },
  52454. "pawLength": {
  52455. name: "Paw Length",
  52456. power: 1,
  52457. type: "length",
  52458. base: math.unit(31, "cm")
  52459. },
  52460. }
  52461. },
  52462. side: {
  52463. height: math.unit(1.75, "meters"),
  52464. weight: math.unit(100, "kg"),
  52465. name: "Side",
  52466. image: {
  52467. source: "./media/characters/zarya/side.svg",
  52468. extra: 776/770,
  52469. bottom: 17/793
  52470. },
  52471. extraAttributes: {
  52472. "tailLength": {
  52473. name: "Tail Length",
  52474. power: 1,
  52475. type: "length",
  52476. base: math.unit(180, "cm")
  52477. },
  52478. "pawLength": {
  52479. name: "Paw Length",
  52480. power: 1,
  52481. type: "length",
  52482. base: math.unit(31, "cm")
  52483. },
  52484. }
  52485. },
  52486. back: {
  52487. height: math.unit(1.75, "meters"),
  52488. weight: math.unit(100, "kg"),
  52489. name: "Back",
  52490. image: {
  52491. source: "./media/characters/zarya/back.svg",
  52492. extra: 741/735,
  52493. bottom: 44/785
  52494. },
  52495. extraAttributes: {
  52496. "tailLength": {
  52497. name: "Tail Length",
  52498. power: 1,
  52499. type: "length",
  52500. base: math.unit(180, "cm")
  52501. },
  52502. "pawLength": {
  52503. name: "Paw Length",
  52504. power: 1,
  52505. type: "length",
  52506. base: math.unit(31, "cm")
  52507. },
  52508. }
  52509. },
  52510. frontNoTail: {
  52511. height: math.unit(1.75, "meters"),
  52512. weight: math.unit(100, "kg"),
  52513. name: "Front (No Tail)",
  52514. image: {
  52515. source: "./media/characters/zarya/front-no-tail.svg",
  52516. extra: 741/735,
  52517. bottom: 44/785
  52518. },
  52519. extraAttributes: {
  52520. "tailLength": {
  52521. name: "Tail Length",
  52522. power: 1,
  52523. type: "length",
  52524. base: math.unit(180, "cm")
  52525. },
  52526. "pawLength": {
  52527. name: "Paw Length",
  52528. power: 1,
  52529. type: "length",
  52530. base: math.unit(31, "cm")
  52531. },
  52532. }
  52533. },
  52534. dressed: {
  52535. height: math.unit(1.75, "meters"),
  52536. weight: math.unit(100, "kg"),
  52537. name: "Dressed",
  52538. image: {
  52539. source: "./media/characters/zarya/dressed.svg",
  52540. extra: 683/672,
  52541. bottom: 79/762
  52542. },
  52543. extraAttributes: {
  52544. "tailLength": {
  52545. name: "Tail Length",
  52546. power: 1,
  52547. type: "length",
  52548. base: math.unit(180, "cm")
  52549. },
  52550. "pawLength": {
  52551. name: "Paw Length",
  52552. power: 1,
  52553. type: "length",
  52554. base: math.unit(31, "cm")
  52555. },
  52556. }
  52557. },
  52558. },
  52559. [
  52560. {
  52561. name: "Micro",
  52562. height: math.unit(5, "cm")
  52563. },
  52564. {
  52565. name: "Normal",
  52566. height: math.unit(1.75, "meters"),
  52567. default: true
  52568. },
  52569. {
  52570. name: "Macro",
  52571. height: math.unit(122, "meters")
  52572. },
  52573. ]
  52574. ))
  52575. characterMakers.push(() => makeCharacter(
  52576. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52577. {
  52578. front: {
  52579. height: math.unit(7.5, "feet"),
  52580. name: "Front",
  52581. image: {
  52582. source: "./media/characters/sven-hatisson/front.svg",
  52583. extra: 917/857,
  52584. bottom: 42/959
  52585. }
  52586. },
  52587. back: {
  52588. height: math.unit(7.5, "feet"),
  52589. name: "Back",
  52590. image: {
  52591. source: "./media/characters/sven-hatisson/back.svg",
  52592. extra: 903/856,
  52593. bottom: 15/918
  52594. }
  52595. },
  52596. },
  52597. [
  52598. {
  52599. name: "Base Height",
  52600. height: math.unit(7.5, "feet")
  52601. },
  52602. {
  52603. name: "Usual Height",
  52604. height: math.unit(13.5, "feet"),
  52605. default: true
  52606. },
  52607. {
  52608. name: "Smaller Macro",
  52609. height: math.unit(85, "feet")
  52610. },
  52611. {
  52612. name: "Moderate Macro",
  52613. height: math.unit(320, "feet")
  52614. },
  52615. {
  52616. name: "Large Macro",
  52617. height: math.unit(1000, "feet")
  52618. },
  52619. {
  52620. name: "Largest Size",
  52621. height: math.unit(2, "miles")
  52622. },
  52623. ]
  52624. ))
  52625. characterMakers.push(() => makeCharacter(
  52626. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52627. {
  52628. side: {
  52629. height: math.unit(1.8, "meters"),
  52630. weight: math.unit(275, "kg"),
  52631. name: "Side",
  52632. image: {
  52633. source: "./media/characters/terra/side.svg",
  52634. extra: 1273/1147,
  52635. bottom: 0/1273
  52636. }
  52637. },
  52638. },
  52639. [
  52640. {
  52641. name: "Normal",
  52642. height: math.unit(16.2, "meters"),
  52643. default: true
  52644. },
  52645. ]
  52646. ))
  52647. characterMakers.push(() => makeCharacter(
  52648. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52649. {
  52650. borzoiFront: {
  52651. height: math.unit(6 + 9/12, "feet"),
  52652. name: "Front",
  52653. image: {
  52654. source: "./media/characters/rae/borzoi-front.svg",
  52655. extra: 1161/1098,
  52656. bottom: 31/1192
  52657. },
  52658. form: "borzoi",
  52659. default: true
  52660. },
  52661. werewolfFront: {
  52662. height: math.unit(8 + 7/12, "feet"),
  52663. name: "Front",
  52664. image: {
  52665. source: "./media/characters/rae/werewolf-front.svg",
  52666. extra: 1411/1334,
  52667. bottom: 127/1538
  52668. },
  52669. form: "werewolf",
  52670. default: true
  52671. },
  52672. },
  52673. [
  52674. {
  52675. name: "Normal",
  52676. height: math.unit(6 + 9/12, "feet"),
  52677. default: true,
  52678. form: "borzoi"
  52679. },
  52680. {
  52681. name: "Normal",
  52682. height: math.unit(8 + 7/12, "feet"),
  52683. default: true,
  52684. form: "werewolf"
  52685. },
  52686. ],
  52687. {
  52688. "borzoi": {
  52689. name: "Borzoi",
  52690. default: true
  52691. },
  52692. "werewolf": {
  52693. name: "Werewolf",
  52694. },
  52695. }
  52696. ))
  52697. characterMakers.push(() => makeCharacter(
  52698. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52699. {
  52700. front: {
  52701. height: math.unit(8 + 7/12, "feet"),
  52702. weight: math.unit(482, "lb"),
  52703. name: "Front",
  52704. image: {
  52705. source: "./media/characters/kit/front.svg",
  52706. extra: 1247/1103,
  52707. bottom: 41/1288
  52708. }
  52709. },
  52710. back: {
  52711. height: math.unit(8 + 7/12, "feet"),
  52712. weight: math.unit(482, "lb"),
  52713. name: "Back",
  52714. image: {
  52715. source: "./media/characters/kit/back.svg",
  52716. extra: 1252/1123,
  52717. bottom: 21/1273
  52718. }
  52719. },
  52720. paw: {
  52721. height: math.unit(1.46, "feet"),
  52722. name: "Paw",
  52723. image: {
  52724. source: "./media/characters/kit/paw.svg"
  52725. }
  52726. },
  52727. },
  52728. [
  52729. {
  52730. name: "Normal",
  52731. height: math.unit(2.61, "meters"),
  52732. default: true
  52733. },
  52734. {
  52735. name: "\"Tall\"",
  52736. height: math.unit(8.21, "meters")
  52737. },
  52738. {
  52739. name: "Tall",
  52740. height: math.unit(19.6, "meters")
  52741. },
  52742. {
  52743. name: "Very Tall",
  52744. height: math.unit(57.91, "meters")
  52745. },
  52746. {
  52747. name: "Semi-Macro",
  52748. height: math.unit(138.64, "meters")
  52749. },
  52750. {
  52751. name: "Macro",
  52752. height: math.unit(831.99, "meters")
  52753. },
  52754. {
  52755. name: "EX-Macro",
  52756. height: math.unit(96451121, "meters")
  52757. },
  52758. {
  52759. name: "S1-Omnipotent",
  52760. height: math.unit(4.42074e+9, "meters")
  52761. },
  52762. {
  52763. name: "S2-Omnipotent",
  52764. height: math.unit(9.42074e+17, "meters")
  52765. },
  52766. {
  52767. name: "Omnipotent",
  52768. height: math.unit(4.23112e+24, "meters")
  52769. },
  52770. {
  52771. name: "Hypergod",
  52772. height: math.unit(5.05176e+27, "meters")
  52773. },
  52774. {
  52775. name: "Hypergod-EX",
  52776. height: math.unit(9.45532e+49, "meters")
  52777. },
  52778. {
  52779. name: "Hypergod-SP",
  52780. height: math.unit(9.45532e+195, "meters")
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52786. {
  52787. side: {
  52788. height: math.unit(0.6, "meters"),
  52789. weight: math.unit(24, "kg"),
  52790. name: "Side",
  52791. image: {
  52792. source: "./media/characters/celeste/side.svg",
  52793. extra: 810/517,
  52794. bottom: 53/863
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Velociraptor",
  52801. height: math.unit(0.6, "meters"),
  52802. default: true
  52803. },
  52804. {
  52805. name: "Utahraptor",
  52806. height: math.unit(1.8, "meters")
  52807. },
  52808. {
  52809. name: "Gallimimus",
  52810. height: math.unit(4.0, "meters")
  52811. },
  52812. {
  52813. name: "Large",
  52814. height: math.unit(20, "meters")
  52815. },
  52816. {
  52817. name: "Planetary",
  52818. height: math.unit(50, "megameters")
  52819. },
  52820. {
  52821. name: "Stellar",
  52822. height: math.unit(1.5, "gigameters")
  52823. },
  52824. {
  52825. name: "Galactic",
  52826. height: math.unit(100, "exameters")
  52827. },
  52828. ]
  52829. ))
  52830. characterMakers.push(() => makeCharacter(
  52831. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52832. {
  52833. front: {
  52834. height: math.unit(6, "feet"),
  52835. weight: math.unit(210, "lb"),
  52836. name: "Front",
  52837. image: {
  52838. source: "./media/characters/glacia/front.svg",
  52839. extra: 958/901,
  52840. bottom: 45/1003
  52841. }
  52842. },
  52843. },
  52844. [
  52845. {
  52846. name: "Macro",
  52847. height: math.unit(1000, "meters"),
  52848. default: true
  52849. },
  52850. ]
  52851. ))
  52852. characterMakers.push(() => makeCharacter(
  52853. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52854. {
  52855. front: {
  52856. height: math.unit(4, "meters"),
  52857. name: "Front",
  52858. image: {
  52859. source: "./media/characters/giri/front.svg",
  52860. extra: 966/894,
  52861. bottom: 21/987
  52862. }
  52863. },
  52864. },
  52865. [
  52866. {
  52867. name: "Normal",
  52868. height: math.unit(4, "meters"),
  52869. default: true
  52870. },
  52871. ]
  52872. ))
  52873. characterMakers.push(() => makeCharacter(
  52874. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52875. {
  52876. back: {
  52877. height: math.unit(4, "feet"),
  52878. weight: math.unit(37, "lb"),
  52879. name: "Back",
  52880. image: {
  52881. source: "./media/characters/tin/back.svg",
  52882. extra: 845/780,
  52883. bottom: 28/873
  52884. }
  52885. },
  52886. },
  52887. [
  52888. {
  52889. name: "Normal",
  52890. height: math.unit(4, "feet"),
  52891. default: true
  52892. },
  52893. ]
  52894. ))
  52895. characterMakers.push(() => makeCharacter(
  52896. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52897. {
  52898. front: {
  52899. height: math.unit(25, "feet"),
  52900. name: "Front",
  52901. image: {
  52902. source: "./media/characters/cadenza-vivace/front.svg",
  52903. extra: 1842/1578,
  52904. bottom: 30/1872
  52905. }
  52906. },
  52907. },
  52908. [
  52909. {
  52910. name: "Macro",
  52911. height: math.unit(25, "feet"),
  52912. default: true
  52913. },
  52914. ]
  52915. ))
  52916. characterMakers.push(() => makeCharacter(
  52917. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52918. {
  52919. front: {
  52920. height: math.unit(10, "feet"),
  52921. weight: math.unit(625, "kg"),
  52922. name: "Front",
  52923. image: {
  52924. source: "./media/characters/zain/front.svg",
  52925. extra: 1682/1498,
  52926. bottom: 223/1905
  52927. }
  52928. },
  52929. back: {
  52930. height: math.unit(10, "feet"),
  52931. weight: math.unit(625, "kg"),
  52932. name: "Back",
  52933. image: {
  52934. source: "./media/characters/zain/back.svg",
  52935. extra: 1814/1657,
  52936. bottom: 152/1966
  52937. }
  52938. },
  52939. head: {
  52940. height: math.unit(10, "feet"),
  52941. weight: math.unit(625, "kg"),
  52942. name: "Head",
  52943. image: {
  52944. source: "./media/characters/zain/head.svg",
  52945. extra: 1059/762,
  52946. bottom: 0/1059
  52947. }
  52948. },
  52949. },
  52950. [
  52951. {
  52952. name: "Normal",
  52953. height: math.unit(10, "feet"),
  52954. default: true
  52955. },
  52956. ]
  52957. ))
  52958. characterMakers.push(() => makeCharacter(
  52959. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52960. {
  52961. front: {
  52962. height: math.unit(6 + 5/12, "feet"),
  52963. weight: math.unit(750, "lb"),
  52964. name: "Front",
  52965. image: {
  52966. source: "./media/characters/ruchex/front.svg",
  52967. extra: 877/820,
  52968. bottom: 17/894
  52969. },
  52970. extraAttributes: {
  52971. "width": {
  52972. name: "Width",
  52973. power: 1,
  52974. type: "length",
  52975. base: math.unit(4.757, "feet")
  52976. },
  52977. }
  52978. },
  52979. },
  52980. [
  52981. {
  52982. name: "Normal",
  52983. height: math.unit(6 + 5/12, "feet"),
  52984. default: true
  52985. },
  52986. ]
  52987. ))
  52988. characterMakers.push(() => makeCharacter(
  52989. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52990. {
  52991. dressedFront: {
  52992. height: math.unit(191, "cm"),
  52993. weight: math.unit(80, "kg"),
  52994. name: "Front",
  52995. image: {
  52996. source: "./media/characters/buster/dressed-front.svg",
  52997. extra: 1022/973,
  52998. bottom: 69/1091
  52999. }
  53000. },
  53001. dressedBack: {
  53002. height: math.unit(191, "cm"),
  53003. weight: math.unit(80, "kg"),
  53004. name: "Back",
  53005. image: {
  53006. source: "./media/characters/buster/dressed-back.svg",
  53007. extra: 1018/970,
  53008. bottom: 55/1073
  53009. }
  53010. },
  53011. nudeFront: {
  53012. height: math.unit(191, "cm"),
  53013. weight: math.unit(80, "kg"),
  53014. name: "Front (Nude)",
  53015. image: {
  53016. source: "./media/characters/buster/nude-front.svg",
  53017. extra: 1022/973,
  53018. bottom: 69/1091
  53019. }
  53020. },
  53021. nudeBack: {
  53022. height: math.unit(191, "cm"),
  53023. weight: math.unit(80, "kg"),
  53024. name: "Back (Nude)",
  53025. image: {
  53026. source: "./media/characters/buster/nude-back.svg",
  53027. extra: 1018/970,
  53028. bottom: 55/1073
  53029. }
  53030. },
  53031. dick: {
  53032. height: math.unit(2.59, "feet"),
  53033. name: "Dick",
  53034. image: {
  53035. source: "./media/characters/buster/dick.svg"
  53036. }
  53037. },
  53038. ass: {
  53039. height: math.unit(1.2, "feet"),
  53040. name: "Ass",
  53041. image: {
  53042. source: "./media/characters/buster/ass.svg"
  53043. }
  53044. },
  53045. },
  53046. [
  53047. {
  53048. name: "Normal",
  53049. height: math.unit(191, "cm"),
  53050. default: true
  53051. },
  53052. ]
  53053. ))
  53054. characterMakers.push(() => makeCharacter(
  53055. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53056. {
  53057. side: {
  53058. height: math.unit(8.1, "feet"),
  53059. weight: math.unit(3500, "lb"),
  53060. name: "Side",
  53061. image: {
  53062. source: "./media/characters/sonya/side.svg",
  53063. extra: 1730/1317,
  53064. bottom: 86/1816
  53065. }
  53066. },
  53067. },
  53068. [
  53069. {
  53070. name: "Normal",
  53071. height: math.unit(8.1, "feet"),
  53072. default: true
  53073. },
  53074. ]
  53075. ))
  53076. characterMakers.push(() => makeCharacter(
  53077. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53078. {
  53079. front: {
  53080. height: math.unit(6, "feet"),
  53081. weight: math.unit(150, "lb"),
  53082. name: "Front",
  53083. image: {
  53084. source: "./media/characters/cadence-andrysiak/front.svg",
  53085. extra: 1164/1121,
  53086. bottom: 60/1224
  53087. }
  53088. },
  53089. back: {
  53090. height: math.unit(6, "feet"),
  53091. weight: math.unit(150, "lb"),
  53092. name: "Back",
  53093. image: {
  53094. source: "./media/characters/cadence-andrysiak/back.svg",
  53095. extra: 1200/1165,
  53096. bottom: 9/1209
  53097. }
  53098. },
  53099. dressed: {
  53100. height: math.unit(6, "feet"),
  53101. weight: math.unit(150, "lb"),
  53102. name: "Dressed",
  53103. image: {
  53104. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53105. extra: 1164/1121,
  53106. bottom: 60/1224
  53107. }
  53108. },
  53109. },
  53110. [
  53111. {
  53112. name: "Micro",
  53113. height: math.unit(1, "mm")
  53114. },
  53115. {
  53116. name: "Normal",
  53117. height: math.unit(6, "feet"),
  53118. default: true
  53119. },
  53120. ]
  53121. ))
  53122. characterMakers.push(() => makeCharacter(
  53123. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53124. {
  53125. front: {
  53126. height: math.unit(60, "inches"),
  53127. weight: math.unit(16, "lb"),
  53128. preyCapacity: math.unit(80, "liters"),
  53129. name: "Front",
  53130. image: {
  53131. source: "./media/characters/penny-lynx/front.svg",
  53132. extra: 1959/1769,
  53133. bottom: 49/2008
  53134. }
  53135. },
  53136. },
  53137. [
  53138. {
  53139. name: "Nokia",
  53140. height: math.unit(2, "inches")
  53141. },
  53142. {
  53143. name: "Desktop",
  53144. height: math.unit(24, "inches")
  53145. },
  53146. {
  53147. name: "TV",
  53148. height: math.unit(60, "inches")
  53149. },
  53150. {
  53151. name: "Jumbotron",
  53152. height: math.unit(12, "feet")
  53153. },
  53154. {
  53155. name: "Billboard",
  53156. height: math.unit(48, "feet"),
  53157. default: true
  53158. },
  53159. {
  53160. name: "IMAX",
  53161. height: math.unit(96, "feet")
  53162. },
  53163. {
  53164. name: "SINGULARITY",
  53165. height: math.unit(864938, "miles")
  53166. },
  53167. ]
  53168. ))
  53169. characterMakers.push(() => makeCharacter(
  53170. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53171. {
  53172. front: {
  53173. height: math.unit(5 + 4/12, "feet"),
  53174. weight: math.unit(230, "lb"),
  53175. name: "Front",
  53176. image: {
  53177. source: "./media/characters/sukebe/front.svg",
  53178. extra: 2130/2038,
  53179. bottom: 90/2220
  53180. }
  53181. },
  53182. back: {
  53183. height: math.unit(3.48, "feet"),
  53184. weight: math.unit(230, "lb"),
  53185. name: "Back",
  53186. image: {
  53187. source: "./media/characters/sukebe/back.svg",
  53188. extra: 1670/1604,
  53189. bottom: 0/1670
  53190. }
  53191. },
  53192. },
  53193. [
  53194. {
  53195. name: "Normal",
  53196. height: math.unit(5 + 4/12, "feet"),
  53197. default: true
  53198. },
  53199. ]
  53200. ))
  53201. characterMakers.push(() => makeCharacter(
  53202. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53203. {
  53204. front: {
  53205. height: math.unit(6, "feet"),
  53206. name: "Front",
  53207. image: {
  53208. source: "./media/characters/nylla/front.svg",
  53209. extra: 1868/1699,
  53210. bottom: 97/1965
  53211. }
  53212. },
  53213. back: {
  53214. height: math.unit(6, "feet"),
  53215. name: "Back",
  53216. image: {
  53217. source: "./media/characters/nylla/back.svg",
  53218. extra: 1889/1712,
  53219. bottom: 93/1982
  53220. }
  53221. },
  53222. frontNsfw: {
  53223. height: math.unit(6, "feet"),
  53224. name: "Front (NSFW)",
  53225. image: {
  53226. source: "./media/characters/nylla/front-nsfw.svg",
  53227. extra: 1868/1699,
  53228. bottom: 97/1965
  53229. },
  53230. extraAttributes: {
  53231. "dickLength": {
  53232. name: "Dick Length",
  53233. power: 1,
  53234. type: "length",
  53235. base: math.unit(1.4, "feet")
  53236. },
  53237. "cumVolume": {
  53238. name: "Cum Volume",
  53239. power: 3,
  53240. type: "volume",
  53241. base: math.unit(100, "mL")
  53242. },
  53243. }
  53244. },
  53245. backNsfw: {
  53246. height: math.unit(6, "feet"),
  53247. name: "Back (NSFW)",
  53248. image: {
  53249. source: "./media/characters/nylla/back-nsfw.svg",
  53250. extra: 1889/1712,
  53251. bottom: 93/1982
  53252. }
  53253. },
  53254. maw: {
  53255. height: math.unit(2.10, "feet"),
  53256. name: "Maw",
  53257. image: {
  53258. source: "./media/characters/nylla/maw.svg"
  53259. }
  53260. },
  53261. paws: {
  53262. height: math.unit(2.06, "feet"),
  53263. name: "Paws",
  53264. image: {
  53265. source: "./media/characters/nylla/paws.svg"
  53266. }
  53267. },
  53268. muzzle: {
  53269. height: math.unit(0.61, "feet"),
  53270. name: "Muzzle",
  53271. image: {
  53272. source: "./media/characters/nylla/muzzle.svg"
  53273. }
  53274. },
  53275. sheath: {
  53276. height: math.unit(1.305, "feet"),
  53277. name: "Sheath",
  53278. image: {
  53279. source: "./media/characters/nylla/sheath.svg"
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Micro",
  53286. height: math.unit(7.5, "inches")
  53287. },
  53288. {
  53289. name: "Normal",
  53290. height: math.unit(7, "feet"),
  53291. default: true
  53292. },
  53293. {
  53294. name: "Macro",
  53295. height: math.unit(60, "feet")
  53296. },
  53297. {
  53298. name: "Mega",
  53299. height: math.unit(200, "feet")
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53305. {
  53306. front: {
  53307. height: math.unit(10, "feet"),
  53308. weight: math.unit(2300, "lb"),
  53309. name: "Front",
  53310. image: {
  53311. source: "./media/characters/hunt3r/front.svg",
  53312. extra: 1909/1742,
  53313. bottom: 46/1955
  53314. }
  53315. },
  53316. },
  53317. [
  53318. {
  53319. name: "Normal",
  53320. height: math.unit(10, "feet"),
  53321. default: true
  53322. },
  53323. ]
  53324. ))
  53325. characterMakers.push(() => makeCharacter(
  53326. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53327. {
  53328. dressed: {
  53329. height: math.unit(11, "feet"),
  53330. weight: math.unit(18500, "lb"),
  53331. preyCapacity: math.unit(9, "people"),
  53332. name: "Dressed",
  53333. image: {
  53334. source: "./media/characters/cylphis/dressed.svg",
  53335. extra: 1028/1003,
  53336. bottom: 75/1103
  53337. },
  53338. },
  53339. undressed: {
  53340. height: math.unit(11, "feet"),
  53341. weight: math.unit(18500, "lb"),
  53342. preyCapacity: math.unit(9, "people"),
  53343. name: "Undressed",
  53344. image: {
  53345. source: "./media/characters/cylphis/undressed.svg",
  53346. extra: 1028/1003,
  53347. bottom: 75/1103
  53348. }
  53349. },
  53350. full: {
  53351. height: math.unit(11, "feet"),
  53352. weight: math.unit(18500 + 150*9, "lb"),
  53353. preyCapacity: math.unit(9, "people"),
  53354. name: "Full",
  53355. image: {
  53356. source: "./media/characters/cylphis/full.svg",
  53357. extra: 1028/1003,
  53358. bottom: 75/1103
  53359. }
  53360. },
  53361. },
  53362. [
  53363. {
  53364. name: "Small",
  53365. height: math.unit(8, "feet")
  53366. },
  53367. {
  53368. name: "Normal",
  53369. height: math.unit(11, "feet"),
  53370. default: true
  53371. },
  53372. ]
  53373. ))
  53374. characterMakers.push(() => makeCharacter(
  53375. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53376. {
  53377. front: {
  53378. height: math.unit(2 + 7/12, "feet"),
  53379. name: "Front",
  53380. image: {
  53381. source: "./media/characters/orishan/front.svg",
  53382. extra: 1058/1023,
  53383. bottom: 23/1081
  53384. }
  53385. },
  53386. back: {
  53387. height: math.unit(2 + 7/12, "feet"),
  53388. name: "Back",
  53389. image: {
  53390. source: "./media/characters/orishan/back.svg",
  53391. extra: 1058/1023,
  53392. bottom: 23/1081
  53393. }
  53394. },
  53395. },
  53396. [
  53397. {
  53398. name: "Micro",
  53399. height: math.unit(2, "cm")
  53400. },
  53401. {
  53402. name: "Normal",
  53403. height: math.unit(2 + 7/12, "feet"),
  53404. default: true
  53405. },
  53406. ]
  53407. ))
  53408. characterMakers.push(() => makeCharacter(
  53409. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53410. {
  53411. front: {
  53412. height: math.unit(3, "meters"),
  53413. weight: math.unit(508, "kg"),
  53414. name: "Front",
  53415. image: {
  53416. source: "./media/characters/seranis/front.svg",
  53417. extra: 1478/1454,
  53418. bottom: 41/1519
  53419. }
  53420. },
  53421. },
  53422. [
  53423. {
  53424. name: "Normal",
  53425. height: math.unit(3, "meters"),
  53426. default: true
  53427. },
  53428. {
  53429. name: "Macro",
  53430. height: math.unit(108, "meters")
  53431. },
  53432. {
  53433. name: "Megamacro",
  53434. height: math.unit(1250, "meters")
  53435. },
  53436. ]
  53437. ))
  53438. characterMakers.push(() => makeCharacter(
  53439. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53440. {
  53441. undressed: {
  53442. height: math.unit(5 + 3/12, "feet"),
  53443. name: "Undressed",
  53444. image: {
  53445. source: "./media/characters/ankou/undressed.svg",
  53446. extra: 1301/1213,
  53447. bottom: 87/1388
  53448. }
  53449. },
  53450. dressed: {
  53451. height: math.unit(5 + 3/12, "feet"),
  53452. name: "Dressed",
  53453. image: {
  53454. source: "./media/characters/ankou/dressed.svg",
  53455. extra: 1301/1213,
  53456. bottom: 87/1388
  53457. }
  53458. },
  53459. head: {
  53460. height: math.unit(1.61, "feet"),
  53461. name: "Head",
  53462. image: {
  53463. source: "./media/characters/ankou/head.svg"
  53464. }
  53465. },
  53466. },
  53467. [
  53468. {
  53469. name: "Normal",
  53470. height: math.unit(5 + 3/12, "feet"),
  53471. default: true
  53472. },
  53473. ]
  53474. ))
  53475. characterMakers.push(() => makeCharacter(
  53476. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53477. {
  53478. side: {
  53479. height: math.unit(6 + 3/12, "feet"),
  53480. weight: math.unit(200, "kg"),
  53481. name: "Side",
  53482. image: {
  53483. source: "./media/characters/juniper-skunktaur/side.svg",
  53484. extra: 1574/1229,
  53485. bottom: 38/1612
  53486. }
  53487. },
  53488. front: {
  53489. height: math.unit(6 + 3/12, "feet"),
  53490. weight: math.unit(200, "kg"),
  53491. name: "Front",
  53492. image: {
  53493. source: "./media/characters/juniper-skunktaur/front.svg",
  53494. extra: 1337/1278,
  53495. bottom: 22/1359
  53496. }
  53497. },
  53498. back: {
  53499. height: math.unit(6 + 3/12, "feet"),
  53500. weight: math.unit(200, "kg"),
  53501. name: "Back",
  53502. image: {
  53503. source: "./media/characters/juniper-skunktaur/back.svg",
  53504. extra: 1618/1273,
  53505. bottom: 13/1631
  53506. }
  53507. },
  53508. top: {
  53509. height: math.unit(2.62, "feet"),
  53510. weight: math.unit(200, "kg"),
  53511. name: "Top",
  53512. image: {
  53513. source: "./media/characters/juniper-skunktaur/top.svg"
  53514. }
  53515. },
  53516. },
  53517. [
  53518. {
  53519. name: "Normal",
  53520. height: math.unit(6 + 3/12, "feet"),
  53521. default: true
  53522. },
  53523. ]
  53524. ))
  53525. characterMakers.push(() => makeCharacter(
  53526. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53527. {
  53528. front: {
  53529. height: math.unit(20.5, "feet"),
  53530. name: "Front",
  53531. image: {
  53532. source: "./media/characters/rei/front.svg",
  53533. extra: 1349/1195,
  53534. bottom: 31/1380
  53535. }
  53536. },
  53537. back: {
  53538. height: math.unit(20.5, "feet"),
  53539. name: "Back",
  53540. image: {
  53541. source: "./media/characters/rei/back.svg",
  53542. extra: 1358/1204,
  53543. bottom: 22/1380
  53544. }
  53545. },
  53546. pawsDigi: {
  53547. height: math.unit(3.45, "feet"),
  53548. name: "Paws (Digi)",
  53549. image: {
  53550. source: "./media/characters/rei/paws-digi.svg"
  53551. }
  53552. },
  53553. pawsPlanti: {
  53554. height: math.unit(3.45, "feet"),
  53555. name: "Paws (Planti)",
  53556. image: {
  53557. source: "./media/characters/rei/paws-planti.svg"
  53558. }
  53559. },
  53560. },
  53561. [
  53562. {
  53563. name: "Normal",
  53564. height: math.unit(20.5, "feet"),
  53565. default: true
  53566. },
  53567. ]
  53568. ))
  53569. characterMakers.push(() => makeCharacter(
  53570. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53571. {
  53572. front: {
  53573. height: math.unit(5 + 11/12, "feet"),
  53574. name: "Front",
  53575. image: {
  53576. source: "./media/characters/carina/front.svg",
  53577. extra: 1720/1449,
  53578. bottom: 14/1734
  53579. }
  53580. },
  53581. back: {
  53582. height: math.unit(5 + 11/12, "feet"),
  53583. name: "Back",
  53584. image: {
  53585. source: "./media/characters/carina/back.svg",
  53586. extra: 1493/1445,
  53587. bottom: 17/1510
  53588. }
  53589. },
  53590. paw: {
  53591. height: math.unit(0.92, "feet"),
  53592. name: "Paw",
  53593. image: {
  53594. source: "./media/characters/carina/paw.svg"
  53595. }
  53596. },
  53597. },
  53598. [
  53599. {
  53600. name: "Normal",
  53601. height: math.unit(5 + 11/12, "feet"),
  53602. default: true
  53603. },
  53604. ]
  53605. ))
  53606. characterMakers.push(() => makeCharacter(
  53607. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53608. {
  53609. normal_front: {
  53610. height: math.unit(4.88, "meters"),
  53611. name: "Front",
  53612. image: {
  53613. source: "./media/characters/maya/normal-front.svg",
  53614. extra: 1222/1145,
  53615. bottom: 57/1279
  53616. },
  53617. form: "normal",
  53618. default: true
  53619. },
  53620. monstrous_front: {
  53621. height: math.unit(10, "meters"),
  53622. name: "Front",
  53623. image: {
  53624. source: "./media/characters/maya/monstrous-front.svg",
  53625. extra: 1523/1109,
  53626. bottom: 113/1636
  53627. },
  53628. form: "monstrous",
  53629. extraAttributes: {
  53630. "swallowSize": {
  53631. name: "Tailmaw Bite Size",
  53632. power: 3,
  53633. type: "volume",
  53634. base: math.unit(43000, "liters")
  53635. },
  53636. }
  53637. },
  53638. taur_front: {
  53639. height: math.unit(10, "meters"),
  53640. name: "Front",
  53641. image: {
  53642. source: "./media/characters/maya/taur-front.svg",
  53643. extra: 743/506,
  53644. bottom: 101/844
  53645. },
  53646. form: "taur",
  53647. },
  53648. },
  53649. [
  53650. {
  53651. name: "Normal",
  53652. height: math.unit(4.88, "meters"),
  53653. default: true,
  53654. form: "normal"
  53655. },
  53656. {
  53657. name: "Macro",
  53658. height: math.unit(38.1, "meters"),
  53659. form: "normal"
  53660. },
  53661. {
  53662. name: "Macro+",
  53663. height: math.unit(152.4, "meters"),
  53664. form: "normal"
  53665. },
  53666. {
  53667. name: "Macro++",
  53668. height: math.unit(16.09, "km"),
  53669. form: "normal"
  53670. },
  53671. {
  53672. name: "Mega-macro",
  53673. height: math.unit(700, "megameters"),
  53674. form: "normal"
  53675. },
  53676. {
  53677. name: "Satiated",
  53678. height: math.unit(10, "meters"),
  53679. default: true,
  53680. form: "monstrous"
  53681. },
  53682. {
  53683. name: "Hungry",
  53684. height: math.unit(75, "meters"),
  53685. form: "monstrous"
  53686. },
  53687. {
  53688. name: "Ravenous",
  53689. height: math.unit(500, "meters"),
  53690. form: "monstrous"
  53691. },
  53692. {
  53693. name: "\"Normal\"",
  53694. height: math.unit(10, "meters"),
  53695. form: "taur"
  53696. },
  53697. {
  53698. name: "Macro",
  53699. height: math.unit(50, "meters"),
  53700. form: "taur"
  53701. },
  53702. ],
  53703. {
  53704. "normal": {
  53705. name: "Normal",
  53706. default: true
  53707. },
  53708. "monstrous": {
  53709. name: "Monstrous",
  53710. },
  53711. "taur": {
  53712. name: "Taur",
  53713. },
  53714. }
  53715. ))
  53716. characterMakers.push(() => makeCharacter(
  53717. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53718. {
  53719. front: {
  53720. height: math.unit(6 + 2/12, "feet"),
  53721. weight: math.unit(500, "lb"),
  53722. preyCapacity: math.unit(4, "people"),
  53723. name: "Front",
  53724. image: {
  53725. source: "./media/characters/yepir/front.svg"
  53726. }
  53727. },
  53728. side: {
  53729. height: math.unit(6 + 2/12, "feet"),
  53730. weight: math.unit(500, "lb"),
  53731. preyCapacity: math.unit(4, "people"),
  53732. name: "Side",
  53733. image: {
  53734. source: "./media/characters/yepir/side.svg"
  53735. }
  53736. },
  53737. paw: {
  53738. height: math.unit(1.05, "feet"),
  53739. name: "Paw",
  53740. image: {
  53741. source: "./media/characters/yepir/paw.svg"
  53742. }
  53743. },
  53744. },
  53745. [
  53746. {
  53747. name: "Normal",
  53748. height: math.unit(6 + 2/12, "feet"),
  53749. default: true
  53750. },
  53751. ]
  53752. ))
  53753. characterMakers.push(() => makeCharacter(
  53754. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53755. {
  53756. front: {
  53757. height: math.unit(5 + 4/12, "feet"),
  53758. name: "Front",
  53759. image: {
  53760. source: "./media/characters/russec/front.svg",
  53761. extra: 1926/1626,
  53762. bottom: 72/1998
  53763. }
  53764. },
  53765. back: {
  53766. height: math.unit(5 + 4/12, "feet"),
  53767. name: "Back",
  53768. image: {
  53769. source: "./media/characters/russec/back.svg",
  53770. extra: 1910/1591,
  53771. bottom: 48/1958
  53772. }
  53773. },
  53774. },
  53775. [
  53776. {
  53777. name: "Small",
  53778. height: math.unit(5 + 4/12, "feet")
  53779. },
  53780. {
  53781. name: "Normal",
  53782. height: math.unit(72, "feet"),
  53783. default: true
  53784. },
  53785. ]
  53786. ))
  53787. characterMakers.push(() => makeCharacter(
  53788. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53789. {
  53790. side: {
  53791. height: math.unit(12, "feet"),
  53792. name: "Side",
  53793. image: {
  53794. source: "./media/characters/cianus/side.svg",
  53795. extra: 808/526,
  53796. bottom: 61/869
  53797. }
  53798. },
  53799. },
  53800. [
  53801. {
  53802. name: "Normal",
  53803. height: math.unit(12, "feet"),
  53804. default: true
  53805. },
  53806. ]
  53807. ))
  53808. characterMakers.push(() => makeCharacter(
  53809. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53810. {
  53811. front: {
  53812. height: math.unit(9 + 6/12, "feet"),
  53813. weight: math.unit(300, "lb"),
  53814. name: "Front",
  53815. image: {
  53816. source: "./media/characters/ahab/front.svg",
  53817. extra: 1897/1868,
  53818. bottom: 121/2018
  53819. }
  53820. },
  53821. frontNsfw: {
  53822. height: math.unit(9 + 6/12, "feet"),
  53823. weight: math.unit(300, "lb"),
  53824. name: "Front-nsfw",
  53825. image: {
  53826. source: "./media/characters/ahab/front-nsfw.svg",
  53827. extra: 1897/1868,
  53828. bottom: 121/2018
  53829. }
  53830. },
  53831. },
  53832. [
  53833. {
  53834. name: "Normal",
  53835. height: math.unit(9 + 6/12, "feet")
  53836. },
  53837. {
  53838. name: "Macro",
  53839. height: math.unit(657, "feet"),
  53840. default: true
  53841. },
  53842. ]
  53843. ))
  53844. characterMakers.push(() => makeCharacter(
  53845. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53846. {
  53847. front: {
  53848. height: math.unit(2.69, "meters"),
  53849. weight: math.unit(132, "kg"),
  53850. name: "Front",
  53851. image: {
  53852. source: "./media/characters/aarkus/front.svg",
  53853. extra: 1400/1231,
  53854. bottom: 34/1434
  53855. }
  53856. },
  53857. back: {
  53858. height: math.unit(2.69, "meters"),
  53859. weight: math.unit(132, "kg"),
  53860. name: "Back",
  53861. image: {
  53862. source: "./media/characters/aarkus/back.svg",
  53863. extra: 1381/1218,
  53864. bottom: 30/1411
  53865. }
  53866. },
  53867. frontNsfw: {
  53868. height: math.unit(2.69, "meters"),
  53869. weight: math.unit(132, "kg"),
  53870. name: "Front (NSFW)",
  53871. image: {
  53872. source: "./media/characters/aarkus/front-nsfw.svg",
  53873. extra: 1400/1231,
  53874. bottom: 34/1434
  53875. }
  53876. },
  53877. foot: {
  53878. height: math.unit(1.45, "feet"),
  53879. name: "Foot",
  53880. image: {
  53881. source: "./media/characters/aarkus/foot.svg"
  53882. }
  53883. },
  53884. head: {
  53885. height: math.unit(2.85, "feet"),
  53886. name: "Head",
  53887. image: {
  53888. source: "./media/characters/aarkus/head.svg"
  53889. }
  53890. },
  53891. headAlt: {
  53892. height: math.unit(3.07, "feet"),
  53893. name: "Head (Alt)",
  53894. image: {
  53895. source: "./media/characters/aarkus/head-alt.svg"
  53896. }
  53897. },
  53898. mouth: {
  53899. height: math.unit(1.25, "feet"),
  53900. name: "Mouth",
  53901. image: {
  53902. source: "./media/characters/aarkus/mouth.svg"
  53903. }
  53904. },
  53905. dick: {
  53906. height: math.unit(1.77, "feet"),
  53907. name: "Dick",
  53908. image: {
  53909. source: "./media/characters/aarkus/dick.svg"
  53910. }
  53911. },
  53912. },
  53913. [
  53914. {
  53915. name: "Normal",
  53916. height: math.unit(2.69, "meters"),
  53917. default: true
  53918. },
  53919. {
  53920. name: "Macro",
  53921. height: math.unit(269, "meters")
  53922. },
  53923. {
  53924. name: "Macro+",
  53925. height: math.unit(672.5, "meters")
  53926. },
  53927. {
  53928. name: "Megamacro",
  53929. height: math.unit(2.017, "km")
  53930. },
  53931. ]
  53932. ))
  53933. characterMakers.push(() => makeCharacter(
  53934. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53935. {
  53936. front: {
  53937. height: math.unit(23.47, "cm"),
  53938. weight: math.unit(600, "grams"),
  53939. name: "Front",
  53940. image: {
  53941. source: "./media/characters/diode/front.svg",
  53942. extra: 1778/1396,
  53943. bottom: 95/1873
  53944. }
  53945. },
  53946. side: {
  53947. height: math.unit(23.47, "cm"),
  53948. weight: math.unit(600, "grams"),
  53949. name: "Side",
  53950. image: {
  53951. source: "./media/characters/diode/side.svg",
  53952. extra: 1831/1404,
  53953. bottom: 86/1917
  53954. }
  53955. },
  53956. wings: {
  53957. height: math.unit(0.683, "feet"),
  53958. name: "Wings",
  53959. image: {
  53960. source: "./media/characters/diode/wings.svg"
  53961. }
  53962. },
  53963. },
  53964. [
  53965. {
  53966. name: "Normal",
  53967. height: math.unit(23.47, "cm"),
  53968. default: true
  53969. },
  53970. ]
  53971. ))
  53972. characterMakers.push(() => makeCharacter(
  53973. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53974. {
  53975. front: {
  53976. height: math.unit(6 + 3/12, "feet"),
  53977. weight: math.unit(250, "lb"),
  53978. name: "Front",
  53979. image: {
  53980. source: "./media/characters/reika/front.svg",
  53981. extra: 1120/1078,
  53982. bottom: 86/1206
  53983. }
  53984. },
  53985. },
  53986. [
  53987. {
  53988. name: "Normal",
  53989. height: math.unit(6 + 3/12, "feet"),
  53990. default: true
  53991. },
  53992. ]
  53993. ))
  53994. characterMakers.push(() => makeCharacter(
  53995. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53996. {
  53997. front: {
  53998. height: math.unit(16 + 8/12, "feet"),
  53999. weight: math.unit(9000, "lb"),
  54000. name: "Front",
  54001. image: {
  54002. source: "./media/characters/lokuto-takama/front.svg",
  54003. extra: 1774/1632,
  54004. bottom: 147/1921
  54005. },
  54006. extraAttributes: {
  54007. "bustWidth": {
  54008. name: "Bust Width",
  54009. power: 1,
  54010. type: "length",
  54011. base: math.unit(2.4, "meters")
  54012. },
  54013. "breastWeight": {
  54014. name: "Breast Weight",
  54015. power: 3,
  54016. type: "mass",
  54017. base: math.unit(1000, "kg")
  54018. },
  54019. }
  54020. },
  54021. },
  54022. [
  54023. {
  54024. name: "Normal",
  54025. height: math.unit(16 + 8/12, "feet"),
  54026. default: true
  54027. },
  54028. ]
  54029. ))
  54030. characterMakers.push(() => makeCharacter(
  54031. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54032. {
  54033. front: {
  54034. height: math.unit(10, "cm"),
  54035. weight: math.unit(850, "grams"),
  54036. name: "Front",
  54037. image: {
  54038. source: "./media/characters/owak-bone/front.svg",
  54039. extra: 1965/1801,
  54040. bottom: 31/1996
  54041. }
  54042. },
  54043. },
  54044. [
  54045. {
  54046. name: "Normal",
  54047. height: math.unit(10, "cm"),
  54048. default: true
  54049. },
  54050. ]
  54051. ))
  54052. characterMakers.push(() => makeCharacter(
  54053. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54054. {
  54055. front: {
  54056. height: math.unit(2 + 6/12, "feet"),
  54057. weight: math.unit(9, "lb"),
  54058. name: "Front",
  54059. image: {
  54060. source: "./media/characters/muffin/front.svg",
  54061. extra: 1220/1195,
  54062. bottom: 84/1304
  54063. }
  54064. },
  54065. },
  54066. [
  54067. {
  54068. name: "Normal",
  54069. height: math.unit(2 + 6/12, "feet"),
  54070. default: true
  54071. },
  54072. ]
  54073. ))
  54074. characterMakers.push(() => makeCharacter(
  54075. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54076. {
  54077. front: {
  54078. height: math.unit(7, "feet"),
  54079. name: "Front",
  54080. image: {
  54081. source: "./media/characters/chimera/front.svg",
  54082. extra: 1752/1614,
  54083. bottom: 68/1820
  54084. }
  54085. },
  54086. },
  54087. [
  54088. {
  54089. name: "Normal",
  54090. height: math.unit(7, "feet")
  54091. },
  54092. {
  54093. name: "Gigamacro",
  54094. height: math.unit(2.9, "gigameters"),
  54095. default: true
  54096. },
  54097. {
  54098. name: "Universal",
  54099. height: math.unit(1.56e26, "yottameters")
  54100. },
  54101. ]
  54102. ))
  54103. characterMakers.push(() => makeCharacter(
  54104. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54105. {
  54106. front: {
  54107. height: math.unit(3, "feet"),
  54108. weight: math.unit(20, "lb"),
  54109. name: "Front",
  54110. image: {
  54111. source: "./media/characters/kit-fennec-fox/front.svg",
  54112. extra: 1027/932,
  54113. bottom: 16/1043
  54114. }
  54115. },
  54116. back: {
  54117. height: math.unit(3, "feet"),
  54118. weight: math.unit(20, "lb"),
  54119. name: "Back",
  54120. image: {
  54121. source: "./media/characters/kit-fennec-fox/back.svg",
  54122. extra: 1027/932,
  54123. bottom: 16/1043
  54124. }
  54125. },
  54126. },
  54127. [
  54128. {
  54129. name: "Normal",
  54130. height: math.unit(3, "feet"),
  54131. default: true
  54132. },
  54133. ]
  54134. ))
  54135. characterMakers.push(() => makeCharacter(
  54136. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54137. {
  54138. front: {
  54139. height: math.unit(167, "cm"),
  54140. name: "Front",
  54141. image: {
  54142. source: "./media/characters/blue-otter/front.svg",
  54143. extra: 1951/1920,
  54144. bottom: 31/1982
  54145. }
  54146. },
  54147. },
  54148. [
  54149. {
  54150. name: "Otter-Sized",
  54151. height: math.unit(100, "cm")
  54152. },
  54153. {
  54154. name: "Normal",
  54155. height: math.unit(167, "cm"),
  54156. default: true
  54157. },
  54158. ]
  54159. ))
  54160. characterMakers.push(() => makeCharacter(
  54161. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54162. {
  54163. front: {
  54164. height: math.unit(4 + 4/12, "feet"),
  54165. name: "Front",
  54166. image: {
  54167. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54168. extra: 1072/1067,
  54169. bottom: 117/1189
  54170. }
  54171. },
  54172. back: {
  54173. height: math.unit(4 + 4/12, "feet"),
  54174. name: "Back",
  54175. image: {
  54176. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54177. extra: 1135/1129,
  54178. bottom: 57/1192
  54179. }
  54180. },
  54181. head: {
  54182. height: math.unit(1.77, "feet"),
  54183. name: "Head",
  54184. image: {
  54185. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54186. }
  54187. },
  54188. },
  54189. [
  54190. {
  54191. name: "Normal",
  54192. height: math.unit(4 + 4/12, "feet"),
  54193. default: true
  54194. },
  54195. ]
  54196. ))
  54197. characterMakers.push(() => makeCharacter(
  54198. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54199. {
  54200. front: {
  54201. height: math.unit(2, "inches"),
  54202. name: "Front",
  54203. image: {
  54204. source: "./media/characters/carley-hartford/front.svg",
  54205. extra: 1035/988,
  54206. bottom: 23/1058
  54207. }
  54208. },
  54209. back: {
  54210. height: math.unit(2, "inches"),
  54211. name: "Back",
  54212. image: {
  54213. source: "./media/characters/carley-hartford/back.svg",
  54214. extra: 1035/988,
  54215. bottom: 23/1058
  54216. }
  54217. },
  54218. dressed: {
  54219. height: math.unit(2, "inches"),
  54220. name: "Dressed",
  54221. image: {
  54222. source: "./media/characters/carley-hartford/dressed.svg",
  54223. extra: 651/620,
  54224. bottom: 0/651
  54225. }
  54226. },
  54227. },
  54228. [
  54229. {
  54230. name: "Micro",
  54231. height: math.unit(2, "inches"),
  54232. default: true
  54233. },
  54234. {
  54235. name: "Macro",
  54236. height: math.unit(6 + 3/12, "feet")
  54237. },
  54238. ]
  54239. ))
  54240. characterMakers.push(() => makeCharacter(
  54241. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54242. {
  54243. front: {
  54244. height: math.unit(2 + 3/12, "feet"),
  54245. weight: math.unit(15 + 7/16, "lb"),
  54246. name: "Front",
  54247. image: {
  54248. source: "./media/characters/duke/front.svg",
  54249. extra: 910/815,
  54250. bottom: 30/940
  54251. }
  54252. },
  54253. },
  54254. [
  54255. {
  54256. name: "Normal",
  54257. height: math.unit(2 + 3/12, "feet"),
  54258. default: true
  54259. },
  54260. ]
  54261. ))
  54262. characterMakers.push(() => makeCharacter(
  54263. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54264. {
  54265. front: {
  54266. height: math.unit(5 + 4/12, "feet"),
  54267. weight: math.unit(156, "lb"),
  54268. name: "Front",
  54269. image: {
  54270. source: "./media/characters/dein/front.svg",
  54271. extra: 855/815,
  54272. bottom: 48/903
  54273. }
  54274. },
  54275. side: {
  54276. height: math.unit(5 + 4/12, "feet"),
  54277. weight: math.unit(156, "lb"),
  54278. name: "side",
  54279. image: {
  54280. source: "./media/characters/dein/side.svg",
  54281. extra: 846/803,
  54282. bottom: 25/871
  54283. }
  54284. },
  54285. maw: {
  54286. height: math.unit(1.45, "feet"),
  54287. name: "Maw",
  54288. image: {
  54289. source: "./media/characters/dein/maw.svg"
  54290. }
  54291. },
  54292. },
  54293. [
  54294. {
  54295. name: "Ferret Sized",
  54296. height: math.unit(2 + 5/12, "feet")
  54297. },
  54298. {
  54299. name: "Normal",
  54300. height: math.unit(5 + 4/12, "feet"),
  54301. default: true
  54302. },
  54303. ]
  54304. ))
  54305. characterMakers.push(() => makeCharacter(
  54306. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54307. {
  54308. front: {
  54309. height: math.unit(84 + 8/12, "feet"),
  54310. weight: math.unit(942180, "lb"),
  54311. name: "Front",
  54312. image: {
  54313. source: "./media/characters/daurine-arima/front.svg",
  54314. extra: 1989/1782,
  54315. bottom: 37/2026
  54316. }
  54317. },
  54318. side: {
  54319. height: math.unit(84 + 8/12, "feet"),
  54320. weight: math.unit(942180, "lb"),
  54321. name: "Side",
  54322. image: {
  54323. source: "./media/characters/daurine-arima/side.svg",
  54324. extra: 1997/1790,
  54325. bottom: 21/2018
  54326. }
  54327. },
  54328. back: {
  54329. height: math.unit(84 + 8/12, "feet"),
  54330. weight: math.unit(942180, "lb"),
  54331. name: "Back",
  54332. image: {
  54333. source: "./media/characters/daurine-arima/back.svg",
  54334. extra: 1992/1800,
  54335. bottom: 12/2004
  54336. }
  54337. },
  54338. head: {
  54339. height: math.unit(15.5, "feet"),
  54340. name: "Head",
  54341. image: {
  54342. source: "./media/characters/daurine-arima/head.svg"
  54343. }
  54344. },
  54345. headAlt: {
  54346. height: math.unit(19.19, "feet"),
  54347. name: "Head (Alt)",
  54348. image: {
  54349. source: "./media/characters/daurine-arima/head-alt.svg"
  54350. }
  54351. },
  54352. },
  54353. [
  54354. {
  54355. name: "Minimum height",
  54356. height: math.unit(8 + 10/12, "feet")
  54357. },
  54358. {
  54359. name: "Comfort height",
  54360. height: math.unit(19 + 6 /12, "feet")
  54361. },
  54362. {
  54363. name: "\"Normal\" height",
  54364. height: math.unit(28 + 10/12, "feet")
  54365. },
  54366. {
  54367. name: "Base height",
  54368. height: math.unit(84 + 8/12, "feet"),
  54369. default: true
  54370. },
  54371. {
  54372. name: "Mini-macro",
  54373. height: math.unit(2360, "feet")
  54374. },
  54375. {
  54376. name: "Macro",
  54377. height: math.unit(10, "miles")
  54378. },
  54379. {
  54380. name: "Goddess",
  54381. height: math.unit(9.99e40, "yottameters")
  54382. },
  54383. ]
  54384. ))
  54385. characterMakers.push(() => makeCharacter(
  54386. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54387. {
  54388. front: {
  54389. height: math.unit(2.3, "meters"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/cilenomon/front.svg",
  54393. extra: 1963/1778,
  54394. bottom: 54/2017
  54395. }
  54396. },
  54397. },
  54398. [
  54399. {
  54400. name: "Normal",
  54401. height: math.unit(2.3, "meters"),
  54402. default: true
  54403. },
  54404. {
  54405. name: "Big",
  54406. height: math.unit(5, "meters")
  54407. },
  54408. {
  54409. name: "Macro",
  54410. height: math.unit(30, "meters")
  54411. },
  54412. {
  54413. name: "True",
  54414. height: math.unit(1, "universe")
  54415. },
  54416. ]
  54417. ))
  54418. characterMakers.push(() => makeCharacter(
  54419. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54420. {
  54421. front: {
  54422. height: math.unit(5, "feet"),
  54423. name: "Front",
  54424. image: {
  54425. source: "./media/characters/sen-mink/front.svg",
  54426. extra: 1727/1675,
  54427. bottom: 35/1762
  54428. }
  54429. },
  54430. },
  54431. [
  54432. {
  54433. name: "Normal",
  54434. height: math.unit(5, "feet"),
  54435. default: true
  54436. },
  54437. ]
  54438. ))
  54439. characterMakers.push(() => makeCharacter(
  54440. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54441. {
  54442. front: {
  54443. height: math.unit(5.42999, "feet"),
  54444. weight: math.unit(100, "lb"),
  54445. name: "Front",
  54446. image: {
  54447. source: "./media/characters/ophois/front.svg",
  54448. extra: 1429/1286,
  54449. bottom: 60/1489
  54450. }
  54451. },
  54452. },
  54453. [
  54454. {
  54455. name: "Normal",
  54456. height: math.unit(5.42999, "feet"),
  54457. default: true
  54458. },
  54459. ]
  54460. ))
  54461. characterMakers.push(() => makeCharacter(
  54462. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54463. {
  54464. front: {
  54465. height: math.unit(2, "meters"),
  54466. name: "Front",
  54467. image: {
  54468. source: "./media/characters/riley/front.svg",
  54469. extra: 1779/1754,
  54470. bottom: 139/1918
  54471. }
  54472. },
  54473. },
  54474. [
  54475. {
  54476. name: "Normal",
  54477. height: math.unit(2, "meters"),
  54478. default: true
  54479. },
  54480. ]
  54481. ))
  54482. characterMakers.push(() => makeCharacter(
  54483. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54484. {
  54485. front: {
  54486. height: math.unit(6 + 2/12, "feet"),
  54487. weight: math.unit(195, "lb"),
  54488. preyCapacity: math.unit(6, "people"),
  54489. name: "Front",
  54490. image: {
  54491. source: "./media/characters/shuken-flash/front.svg",
  54492. extra: 1905/1739,
  54493. bottom: 65/1970
  54494. }
  54495. },
  54496. back: {
  54497. height: math.unit(6 + 2/12, "feet"),
  54498. weight: math.unit(195, "lb"),
  54499. preyCapacity: math.unit(6, "people"),
  54500. name: "Back",
  54501. image: {
  54502. source: "./media/characters/shuken-flash/back.svg",
  54503. extra: 1912/1751,
  54504. bottom: 13/1925
  54505. }
  54506. },
  54507. },
  54508. [
  54509. {
  54510. name: "Normal",
  54511. height: math.unit(6 + 2/12, "feet"),
  54512. default: true
  54513. },
  54514. ]
  54515. ))
  54516. characterMakers.push(() => makeCharacter(
  54517. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54518. {
  54519. front: {
  54520. height: math.unit(5 + 9/12, "feet"),
  54521. weight: math.unit(150, "lb"),
  54522. name: "Front",
  54523. image: {
  54524. source: "./media/characters/plat/front.svg",
  54525. extra: 1816/1703,
  54526. bottom: 43/1859
  54527. }
  54528. },
  54529. side: {
  54530. height: math.unit(5 + 9/12, "feet"),
  54531. weight: math.unit(300, "lb"),
  54532. name: "Side",
  54533. image: {
  54534. source: "./media/characters/plat/side.svg",
  54535. extra: 1824/1699,
  54536. bottom: 18/1842
  54537. }
  54538. },
  54539. },
  54540. [
  54541. {
  54542. name: "Normal",
  54543. height: math.unit(5 + 9/12, "feet"),
  54544. default: true
  54545. },
  54546. ]
  54547. ))
  54548. characterMakers.push(() => makeCharacter(
  54549. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54550. {
  54551. front: {
  54552. height: math.unit(9, "feet"),
  54553. weight: math.unit(1800, "lb"),
  54554. name: "Front",
  54555. image: {
  54556. source: "./media/characters/elaine/front.svg",
  54557. extra: 1833/1354,
  54558. bottom: 25/1858
  54559. }
  54560. },
  54561. back: {
  54562. height: math.unit(8.8, "feet"),
  54563. weight: math.unit(1800, "lb"),
  54564. name: "Back",
  54565. image: {
  54566. source: "./media/characters/elaine/back.svg",
  54567. extra: 1641/1233,
  54568. bottom: 53/1694
  54569. }
  54570. },
  54571. },
  54572. [
  54573. {
  54574. name: "Normal",
  54575. height: math.unit(9, "feet"),
  54576. default: true
  54577. },
  54578. ]
  54579. ))
  54580. characterMakers.push(() => makeCharacter(
  54581. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54582. {
  54583. front: {
  54584. height: math.unit(17 + 9/12, "feet"),
  54585. weight: math.unit(8000, "lb"),
  54586. name: "Front",
  54587. image: {
  54588. source: "./media/characters/vera-raven/front.svg",
  54589. extra: 1457/1412,
  54590. bottom: 121/1578
  54591. }
  54592. },
  54593. side: {
  54594. height: math.unit(17 + 9/12, "feet"),
  54595. weight: math.unit(8000, "lb"),
  54596. name: "Side",
  54597. image: {
  54598. source: "./media/characters/vera-raven/side.svg",
  54599. extra: 1510/1464,
  54600. bottom: 54/1564
  54601. }
  54602. },
  54603. },
  54604. [
  54605. {
  54606. name: "Normal",
  54607. height: math.unit(17 + 9/12, "feet"),
  54608. default: true
  54609. },
  54610. ]
  54611. ))
  54612. characterMakers.push(() => makeCharacter(
  54613. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54614. {
  54615. dressed: {
  54616. height: math.unit(6 + 9/12, "feet"),
  54617. name: "Dressed",
  54618. image: {
  54619. source: "./media/characters/nakisha/dressed.svg",
  54620. extra: 1909/1757,
  54621. bottom: 48/1957
  54622. }
  54623. },
  54624. nude: {
  54625. height: math.unit(6 + 9/12, "feet"),
  54626. name: "Nude",
  54627. image: {
  54628. source: "./media/characters/nakisha/nude.svg",
  54629. extra: 1917/1765,
  54630. bottom: 34/1951
  54631. }
  54632. },
  54633. },
  54634. [
  54635. {
  54636. name: "Normal",
  54637. height: math.unit(6 + 9/12, "feet"),
  54638. default: true
  54639. },
  54640. ]
  54641. ))
  54642. characterMakers.push(() => makeCharacter(
  54643. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54644. {
  54645. front: {
  54646. height: math.unit(87, "meters"),
  54647. name: "Front",
  54648. image: {
  54649. source: "./media/characters/serafin/front.svg",
  54650. extra: 1919/1776,
  54651. bottom: 65/1984
  54652. }
  54653. },
  54654. },
  54655. [
  54656. {
  54657. name: "Normal",
  54658. height: math.unit(87, "meters"),
  54659. default: true
  54660. },
  54661. ]
  54662. ))
  54663. characterMakers.push(() => makeCharacter(
  54664. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54665. {
  54666. front: {
  54667. height: math.unit(6, "feet"),
  54668. weight: math.unit(200, "lb"),
  54669. name: "Front",
  54670. image: {
  54671. source: "./media/characters/poptart/front.svg",
  54672. extra: 615/583,
  54673. bottom: 23/638
  54674. }
  54675. },
  54676. back: {
  54677. height: math.unit(6, "feet"),
  54678. weight: math.unit(200, "lb"),
  54679. name: "Back",
  54680. image: {
  54681. source: "./media/characters/poptart/back.svg",
  54682. extra: 617/584,
  54683. bottom: 22/639
  54684. }
  54685. },
  54686. frontNsfw: {
  54687. height: math.unit(6, "feet"),
  54688. weight: math.unit(200, "lb"),
  54689. name: "Front (NSFW)",
  54690. image: {
  54691. source: "./media/characters/poptart/front-nsfw.svg",
  54692. extra: 615/583,
  54693. bottom: 23/638
  54694. }
  54695. },
  54696. backNsfw: {
  54697. height: math.unit(6, "feet"),
  54698. weight: math.unit(200, "lb"),
  54699. name: "Back (NSFW)",
  54700. image: {
  54701. source: "./media/characters/poptart/back-nsfw.svg",
  54702. extra: 617/584,
  54703. bottom: 22/639
  54704. }
  54705. },
  54706. hand: {
  54707. height: math.unit(1.14, "feet"),
  54708. name: "Hand",
  54709. image: {
  54710. source: "./media/characters/poptart/hand.svg"
  54711. }
  54712. },
  54713. foot: {
  54714. height: math.unit(1.5, "feet"),
  54715. name: "Foot",
  54716. image: {
  54717. source: "./media/characters/poptart/foot.svg"
  54718. }
  54719. },
  54720. },
  54721. [
  54722. {
  54723. name: "Normal",
  54724. height: math.unit(6, "feet"),
  54725. default: true
  54726. },
  54727. {
  54728. name: "Grande",
  54729. height: math.unit(350, "feet")
  54730. },
  54731. {
  54732. name: "Massif",
  54733. height: math.unit(967, "feet")
  54734. },
  54735. ]
  54736. ))
  54737. characterMakers.push(() => makeCharacter(
  54738. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54739. {
  54740. hyenaSide: {
  54741. height: math.unit(120, "cm"),
  54742. weight: math.unit(120, "lb"),
  54743. name: "Side",
  54744. image: {
  54745. source: "./media/characters/trance/hyena-side.svg",
  54746. extra: 998/904,
  54747. bottom: 76/1074
  54748. }
  54749. },
  54750. },
  54751. [
  54752. {
  54753. name: "Normal",
  54754. height: math.unit(120, "cm"),
  54755. default: true
  54756. },
  54757. {
  54758. name: "Dire",
  54759. height: math.unit(230, "cm")
  54760. },
  54761. {
  54762. name: "Macro",
  54763. height: math.unit(37, "feet")
  54764. },
  54765. ]
  54766. ))
  54767. characterMakers.push(() => makeCharacter(
  54768. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54769. {
  54770. front: {
  54771. height: math.unit(6 + 3/12, "feet"),
  54772. name: "Front",
  54773. image: {
  54774. source: "./media/characters/michael-berretta/front.svg",
  54775. extra: 515/494,
  54776. bottom: 20/535
  54777. }
  54778. },
  54779. back: {
  54780. height: math.unit(6 + 3/12, "feet"),
  54781. name: "Back",
  54782. image: {
  54783. source: "./media/characters/michael-berretta/back.svg",
  54784. extra: 520/497,
  54785. bottom: 21/541
  54786. }
  54787. },
  54788. frontNsfw: {
  54789. height: math.unit(6 + 3/12, "feet"),
  54790. name: "Front (NSFW)",
  54791. image: {
  54792. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54793. extra: 515/494,
  54794. bottom: 20/535
  54795. }
  54796. },
  54797. dick: {
  54798. height: math.unit(1, "feet"),
  54799. name: "Dick",
  54800. image: {
  54801. source: "./media/characters/michael-berretta/dick.svg"
  54802. }
  54803. },
  54804. },
  54805. [
  54806. {
  54807. name: "Normal",
  54808. height: math.unit(6 + 3/12, "feet"),
  54809. default: true
  54810. },
  54811. {
  54812. name: "Big",
  54813. height: math.unit(12, "feet")
  54814. },
  54815. {
  54816. name: "Macro",
  54817. height: math.unit(187.5, "feet")
  54818. },
  54819. ]
  54820. ))
  54821. characterMakers.push(() => makeCharacter(
  54822. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54823. {
  54824. front: {
  54825. height: math.unit(9 + 9/12, "feet"),
  54826. weight: math.unit(1244, "lb"),
  54827. name: "Front",
  54828. image: {
  54829. source: "./media/characters/stella-edgecomb/front.svg",
  54830. extra: 1835/1706,
  54831. bottom: 49/1884
  54832. }
  54833. },
  54834. pen: {
  54835. height: math.unit(0.95, "feet"),
  54836. name: "Pen",
  54837. image: {
  54838. source: "./media/characters/stella-edgecomb/pen.svg"
  54839. }
  54840. },
  54841. },
  54842. [
  54843. {
  54844. name: "Cozy Bear",
  54845. height: math.unit(0.5, "inches")
  54846. },
  54847. {
  54848. name: "Normal",
  54849. height: math.unit(9 + 9/12, "feet"),
  54850. default: true
  54851. },
  54852. {
  54853. name: "Giga Bear",
  54854. height: math.unit(1, "mile")
  54855. },
  54856. {
  54857. name: "Great Bear",
  54858. height: math.unit(53, "miles")
  54859. },
  54860. {
  54861. name: "Goddess Bear",
  54862. height: math.unit(40000, "miles")
  54863. },
  54864. {
  54865. name: "Sun Bear",
  54866. height: math.unit(900000, "miles")
  54867. },
  54868. ]
  54869. ))
  54870. characterMakers.push(() => makeCharacter(
  54871. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54872. {
  54873. anthroFront: {
  54874. height: math.unit(556, "cm"),
  54875. weight: math.unit(2650, "kg"),
  54876. preyCapacity: math.unit(3, "people"),
  54877. name: "Front",
  54878. image: {
  54879. source: "./media/characters/ash´iika/front.svg",
  54880. extra: 710/673,
  54881. bottom: 15/725
  54882. },
  54883. form: "anthro",
  54884. default: true
  54885. },
  54886. anthroSide: {
  54887. height: math.unit(556, "cm"),
  54888. weight: math.unit(2650, "kg"),
  54889. preyCapacity: math.unit(3, "people"),
  54890. name: "Side",
  54891. image: {
  54892. source: "./media/characters/ash´iika/side.svg",
  54893. extra: 696/676,
  54894. bottom: 13/709
  54895. },
  54896. form: "anthro"
  54897. },
  54898. anthroDressed: {
  54899. height: math.unit(556, "cm"),
  54900. weight: math.unit(2650, "kg"),
  54901. preyCapacity: math.unit(3, "people"),
  54902. name: "Dressed",
  54903. image: {
  54904. source: "./media/characters/ash´iika/dressed.svg",
  54905. extra: 710/673,
  54906. bottom: 15/725
  54907. },
  54908. form: "anthro"
  54909. },
  54910. anthroHead: {
  54911. height: math.unit(3.5, "feet"),
  54912. name: "Head",
  54913. image: {
  54914. source: "./media/characters/ash´iika/head.svg",
  54915. extra: 348/291,
  54916. bottom: 45/393
  54917. },
  54918. form: "anthro"
  54919. },
  54920. feralSide: {
  54921. height: math.unit(870, "cm"),
  54922. weight: math.unit(17500, "kg"),
  54923. preyCapacity: math.unit(15, "people"),
  54924. name: "Side",
  54925. image: {
  54926. source: "./media/characters/ash´iika/feral.svg",
  54927. extra: 595/199,
  54928. bottom: 7/602
  54929. },
  54930. form: "feral",
  54931. default: true,
  54932. },
  54933. },
  54934. [
  54935. {
  54936. name: "Normal",
  54937. height: math.unit(556, "cm"),
  54938. default: true,
  54939. form: "anthro"
  54940. },
  54941. {
  54942. name: "Macro",
  54943. height: math.unit(88, "meters"),
  54944. form: "anthro"
  54945. },
  54946. {
  54947. name: "Normal",
  54948. height: math.unit(870, "cm"),
  54949. default: true,
  54950. form: "feral"
  54951. },
  54952. {
  54953. name: "Large",
  54954. height: math.unit(25, "meters"),
  54955. form: "feral"
  54956. },
  54957. ],
  54958. {
  54959. "anthro": {
  54960. name: "Anthro",
  54961. default: true
  54962. },
  54963. "feral": {
  54964. name: "Feral",
  54965. },
  54966. }
  54967. ))
  54968. characterMakers.push(() => makeCharacter(
  54969. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54970. {
  54971. front: {
  54972. height: math.unit(10, "feet"),
  54973. weight: math.unit(800, "lb"),
  54974. name: "Front",
  54975. image: {
  54976. source: "./media/characters/yen/front.svg",
  54977. extra: 443/411,
  54978. bottom: 6/449
  54979. }
  54980. },
  54981. sleeping: {
  54982. height: math.unit(10, "feet"),
  54983. weight: math.unit(800, "lb"),
  54984. name: "Sleeping",
  54985. image: {
  54986. source: "./media/characters/yen/sleeping.svg",
  54987. extra: 470/422,
  54988. bottom: 0/470
  54989. }
  54990. },
  54991. head: {
  54992. height: math.unit(2.2, "feet"),
  54993. name: "Head",
  54994. image: {
  54995. source: "./media/characters/yen/head.svg"
  54996. }
  54997. },
  54998. headAlt: {
  54999. height: math.unit(2.1, "feet"),
  55000. name: "Head (Alt)",
  55001. image: {
  55002. source: "./media/characters/yen/head-alt.svg"
  55003. }
  55004. },
  55005. },
  55006. [
  55007. {
  55008. name: "Normal",
  55009. height: math.unit(10, "feet"),
  55010. default: true
  55011. },
  55012. ]
  55013. ))
  55014. characterMakers.push(() => makeCharacter(
  55015. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55016. {
  55017. front: {
  55018. height: math.unit(12, "feet"),
  55019. name: "Front",
  55020. image: {
  55021. source: "./media/characters/citra/front.svg",
  55022. extra: 1950/1710,
  55023. bottom: 47/1997
  55024. }
  55025. },
  55026. },
  55027. [
  55028. {
  55029. name: "Normal",
  55030. height: math.unit(12, "feet"),
  55031. default: true
  55032. },
  55033. ]
  55034. ))
  55035. characterMakers.push(() => makeCharacter(
  55036. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55037. {
  55038. side: {
  55039. height: math.unit(7 + 10/12, "feet"),
  55040. name: "Side",
  55041. image: {
  55042. source: "./media/characters/sholstim/side.svg",
  55043. extra: 786/682,
  55044. bottom: 40/826
  55045. }
  55046. },
  55047. },
  55048. [
  55049. {
  55050. name: "Normal",
  55051. height: math.unit(7 + 10/12, "feet"),
  55052. default: true
  55053. },
  55054. ]
  55055. ))
  55056. characterMakers.push(() => makeCharacter(
  55057. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55058. {
  55059. front: {
  55060. height: math.unit(3.10, "meters"),
  55061. name: "Front",
  55062. image: {
  55063. source: "./media/characters/aggyn/front.svg",
  55064. extra: 1188/963,
  55065. bottom: 24/1212
  55066. }
  55067. },
  55068. },
  55069. [
  55070. {
  55071. name: "Normal",
  55072. height: math.unit(3.10, "meters"),
  55073. default: true
  55074. },
  55075. ]
  55076. ))
  55077. characterMakers.push(() => makeCharacter(
  55078. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55079. {
  55080. front: {
  55081. height: math.unit(7 + 5/12, "feet"),
  55082. weight: math.unit(687, "lb"),
  55083. name: "Front",
  55084. image: {
  55085. source: "./media/characters/alsandair-hergenroether/front.svg",
  55086. extra: 1251/1186,
  55087. bottom: 75/1326
  55088. }
  55089. },
  55090. back: {
  55091. height: math.unit(7 + 5/12, "feet"),
  55092. weight: math.unit(687, "lb"),
  55093. name: "Back",
  55094. image: {
  55095. source: "./media/characters/alsandair-hergenroether/back.svg",
  55096. extra: 1290/1229,
  55097. bottom: 17/1307
  55098. }
  55099. },
  55100. },
  55101. [
  55102. {
  55103. name: "Max Compression",
  55104. height: math.unit(7 + 5/12, "feet"),
  55105. default: true
  55106. },
  55107. {
  55108. name: "\"Normal\"",
  55109. height: math.unit(2, "universes")
  55110. },
  55111. ]
  55112. ))
  55113. characterMakers.push(() => makeCharacter(
  55114. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55115. {
  55116. front: {
  55117. height: math.unit(4 + 1/12, "feet"),
  55118. weight: math.unit(92, "lb"),
  55119. name: "Front",
  55120. image: {
  55121. source: "./media/characters/ie/front.svg",
  55122. extra: 1585/1352,
  55123. bottom: 91/1676
  55124. }
  55125. },
  55126. },
  55127. [
  55128. {
  55129. name: "Normal",
  55130. height: math.unit(4 + 1/12, "feet"),
  55131. default: true
  55132. },
  55133. ]
  55134. ))
  55135. characterMakers.push(() => makeCharacter(
  55136. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55137. {
  55138. anthro: {
  55139. height: math.unit(6, "feet"),
  55140. weight: math.unit(150, "lb"),
  55141. name: "Front",
  55142. image: {
  55143. source: "./media/characters/willow/anthro.svg",
  55144. extra: 1073/986,
  55145. bottom: 34/1107
  55146. },
  55147. form: "anthro",
  55148. default: true
  55149. },
  55150. taur: {
  55151. height: math.unit(6, "feet"),
  55152. weight: math.unit(150, "lb"),
  55153. name: "Side",
  55154. image: {
  55155. source: "./media/characters/willow/taur.svg",
  55156. extra: 647/512,
  55157. bottom: 136/783
  55158. },
  55159. form: "taur",
  55160. default: true
  55161. },
  55162. },
  55163. [
  55164. {
  55165. name: "Humanoid",
  55166. height: math.unit(2.7, "meters"),
  55167. form: "anthro"
  55168. },
  55169. {
  55170. name: "Normal",
  55171. height: math.unit(9, "meters"),
  55172. form: "anthro",
  55173. default: true
  55174. },
  55175. {
  55176. name: "Humanoid",
  55177. height: math.unit(2.1, "meters"),
  55178. form: "taur"
  55179. },
  55180. {
  55181. name: "Normal",
  55182. height: math.unit(7, "meters"),
  55183. form: "taur",
  55184. default: true
  55185. },
  55186. ],
  55187. {
  55188. "anthro": {
  55189. name: "Anthro",
  55190. default: true
  55191. },
  55192. "taur": {
  55193. name: "Taur",
  55194. },
  55195. }
  55196. ))
  55197. characterMakers.push(() => makeCharacter(
  55198. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55199. {
  55200. front: {
  55201. height: math.unit(2 + 5/12, "feet"),
  55202. name: "Front",
  55203. image: {
  55204. source: "./media/characters/kyan/front.svg",
  55205. extra: 460/334,
  55206. bottom: 23/483
  55207. },
  55208. extraAttributes: {
  55209. "toeLength": {
  55210. name: "Toe Length",
  55211. power: 1,
  55212. type: "length",
  55213. base: math.unit(7, "cm")
  55214. },
  55215. "toeclawLength": {
  55216. name: "Toeclaw Length",
  55217. power: 1,
  55218. type: "length",
  55219. base: math.unit(4.7, "cm")
  55220. },
  55221. "earHeight": {
  55222. name: "Ear Height",
  55223. power: 1,
  55224. type: "length",
  55225. base: math.unit(14.1, "cm")
  55226. },
  55227. }
  55228. },
  55229. paws: {
  55230. height: math.unit(0.45, "feet"),
  55231. name: "Paws",
  55232. image: {
  55233. source: "./media/characters/kyan/paws.svg",
  55234. extra: 581/581,
  55235. bottom: 114/695
  55236. }
  55237. },
  55238. },
  55239. [
  55240. {
  55241. name: "Normal",
  55242. height: math.unit(2 + 5/12, "feet"),
  55243. default: true
  55244. },
  55245. ]
  55246. ))
  55247. characterMakers.push(() => makeCharacter(
  55248. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55249. {
  55250. front: {
  55251. height: math.unit(2 + 2/3, "feet"),
  55252. name: "Front",
  55253. image: {
  55254. source: "./media/characters/xazzon/front.svg",
  55255. extra: 1109/984,
  55256. bottom: 42/1151
  55257. }
  55258. },
  55259. back: {
  55260. height: math.unit(2 + 2/3, "feet"),
  55261. name: "Back",
  55262. image: {
  55263. source: "./media/characters/xazzon/back.svg",
  55264. extra: 1095/971,
  55265. bottom: 23/1118
  55266. }
  55267. },
  55268. },
  55269. [
  55270. {
  55271. name: "Normal",
  55272. height: math.unit(2 + 2/3, "feet"),
  55273. default: true
  55274. },
  55275. ]
  55276. ))
  55277. characterMakers.push(() => makeCharacter(
  55278. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55279. {
  55280. front: {
  55281. height: math.unit(8, "feet"),
  55282. weight: math.unit(300, "lb"),
  55283. name: "Front",
  55284. image: {
  55285. source: "./media/characters/khyla-shadowsong/front.svg",
  55286. extra: 861/798,
  55287. bottom: 32/893
  55288. }
  55289. },
  55290. side: {
  55291. height: math.unit(8, "feet"),
  55292. weight: math.unit(300, "lb"),
  55293. name: "Side",
  55294. image: {
  55295. source: "./media/characters/khyla-shadowsong/side.svg",
  55296. extra: 790/750,
  55297. bottom: 87/877
  55298. }
  55299. },
  55300. back: {
  55301. height: math.unit(8, "feet"),
  55302. weight: math.unit(300, "lb"),
  55303. name: "Back",
  55304. image: {
  55305. source: "./media/characters/khyla-shadowsong/back.svg",
  55306. extra: 855/808,
  55307. bottom: 14/869
  55308. }
  55309. },
  55310. head: {
  55311. height: math.unit(2.7, "feet"),
  55312. name: "Head",
  55313. image: {
  55314. source: "./media/characters/khyla-shadowsong/head.svg"
  55315. }
  55316. },
  55317. },
  55318. [
  55319. {
  55320. name: "Micro",
  55321. height: math.unit(6, "inches")
  55322. },
  55323. {
  55324. name: "Normal",
  55325. height: math.unit(8, "feet"),
  55326. default: true
  55327. },
  55328. ]
  55329. ))
  55330. characterMakers.push(() => makeCharacter(
  55331. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55332. {
  55333. hyperFront: {
  55334. height: math.unit(9 + 4/12, "feet"),
  55335. weight: math.unit(2000, "lb"),
  55336. name: "Front",
  55337. image: {
  55338. source: "./media/characters/tiden/hyper-front.svg",
  55339. extra: 400/382,
  55340. bottom: 6/406
  55341. },
  55342. form: "hyper",
  55343. },
  55344. regularFront: {
  55345. height: math.unit(7 + 10/12, "feet"),
  55346. weight: math.unit(470, "lb"),
  55347. name: "Front",
  55348. image: {
  55349. source: "./media/characters/tiden/regular-front.svg",
  55350. extra: 468/442,
  55351. bottom: 6/474
  55352. },
  55353. form: "regular",
  55354. },
  55355. },
  55356. [
  55357. {
  55358. name: "Normal",
  55359. height: math.unit(9 + 4/12, "feet"),
  55360. default: true,
  55361. form: "hyper"
  55362. },
  55363. {
  55364. name: "Normal",
  55365. height: math.unit(7 + 10/12, "feet"),
  55366. default: true,
  55367. form: "regular"
  55368. },
  55369. ],
  55370. {
  55371. "hyper": {
  55372. name: "Hyper",
  55373. default: true
  55374. },
  55375. "regular": {
  55376. name: "Regular",
  55377. },
  55378. }
  55379. ))
  55380. characterMakers.push(() => makeCharacter(
  55381. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55382. {
  55383. side: {
  55384. height: math.unit(6, "feet"),
  55385. weight: math.unit(150, "lb"),
  55386. name: "Side",
  55387. image: {
  55388. source: "./media/characters/jason-crowe/side.svg",
  55389. extra: 1771/766,
  55390. bottom: 219/1990
  55391. }
  55392. },
  55393. },
  55394. [
  55395. {
  55396. name: "Pocket Gryphon",
  55397. height: math.unit(6, "cm")
  55398. },
  55399. {
  55400. name: "Raven",
  55401. height: math.unit(60, "cm")
  55402. },
  55403. {
  55404. name: "Normal",
  55405. height: math.unit(1, "meter"),
  55406. default: true
  55407. },
  55408. ]
  55409. ))
  55410. characterMakers.push(() => makeCharacter(
  55411. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55412. {
  55413. front: {
  55414. height: math.unit(9 + 6/12, "feet"),
  55415. weight: math.unit(1100, "lb"),
  55416. name: "Front",
  55417. image: {
  55418. source: "./media/characters/django/front.svg",
  55419. extra: 1231/1136,
  55420. bottom: 34/1265
  55421. }
  55422. },
  55423. side: {
  55424. height: math.unit(9 + 6/12, "feet"),
  55425. weight: math.unit(1100, "lb"),
  55426. name: "Side",
  55427. image: {
  55428. source: "./media/characters/django/side.svg",
  55429. extra: 1267/1174,
  55430. bottom: 9/1276
  55431. }
  55432. },
  55433. },
  55434. [
  55435. {
  55436. name: "Normal",
  55437. height: math.unit(9 + 6/12, "feet"),
  55438. default: true
  55439. },
  55440. {
  55441. name: "Macro 1",
  55442. height: math.unit(50, "feet")
  55443. },
  55444. {
  55445. name: "Macro 2",
  55446. height: math.unit(500, "feet")
  55447. },
  55448. {
  55449. name: "Mega Macro",
  55450. height: math.unit(5300, "feet")
  55451. },
  55452. ]
  55453. ))
  55454. characterMakers.push(() => makeCharacter(
  55455. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55456. {
  55457. frontSfw: {
  55458. height: math.unit(120, "cm"),
  55459. weight: math.unit(15, "kg"),
  55460. name: "Front (SFW)",
  55461. image: {
  55462. source: "./media/characters/eri/front-sfw.svg",
  55463. extra: 1014/939,
  55464. bottom: 37/1051
  55465. },
  55466. form: "moth",
  55467. },
  55468. frontNsfw: {
  55469. height: math.unit(120, "cm"),
  55470. weight: math.unit(15, "kg"),
  55471. name: "Front (NSFW)",
  55472. image: {
  55473. source: "./media/characters/eri/front-nsfw.svg",
  55474. extra: 1014/939,
  55475. bottom: 37/1051
  55476. },
  55477. form: "moth",
  55478. default: true
  55479. },
  55480. egg: {
  55481. height: math.unit(10, "cm"),
  55482. name: "Egg",
  55483. image: {
  55484. source: "./media/characters/eri/egg.svg"
  55485. },
  55486. form: "egg",
  55487. default: true
  55488. },
  55489. },
  55490. [
  55491. {
  55492. name: "Normal",
  55493. height: math.unit(120, "cm"),
  55494. default: true,
  55495. form: "moth"
  55496. },
  55497. {
  55498. name: "Normal",
  55499. height: math.unit(10, "cm"),
  55500. default: true,
  55501. form: "egg"
  55502. },
  55503. ],
  55504. {
  55505. "moth": {
  55506. name: "Moth",
  55507. default: true
  55508. },
  55509. "egg": {
  55510. name: "Egg",
  55511. },
  55512. }
  55513. ))
  55514. characterMakers.push(() => makeCharacter(
  55515. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55516. {
  55517. front: {
  55518. height: math.unit(200, "feet"),
  55519. name: "Front",
  55520. image: {
  55521. source: "./media/characters/bishop-dowser/front.svg",
  55522. extra: 933/868,
  55523. bottom: 106/1039
  55524. }
  55525. },
  55526. },
  55527. [
  55528. {
  55529. name: "Giant",
  55530. height: math.unit(200, "feet"),
  55531. default: true
  55532. },
  55533. ]
  55534. ))
  55535. characterMakers.push(() => makeCharacter(
  55536. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55537. {
  55538. front: {
  55539. height: math.unit(2, "meters"),
  55540. preyCapacity: math.unit(3, "people"),
  55541. name: "Front",
  55542. image: {
  55543. source: "./media/characters/fryra/front.svg",
  55544. extra: 1025/948,
  55545. bottom: 30/1055
  55546. },
  55547. extraAttributes: {
  55548. "breastVolume": {
  55549. name: "Breast Volume",
  55550. power: 3,
  55551. type: "volume",
  55552. base: math.unit(8, "liters")
  55553. },
  55554. }
  55555. },
  55556. back: {
  55557. height: math.unit(2, "meters"),
  55558. preyCapacity: math.unit(3, "people"),
  55559. name: "Back",
  55560. image: {
  55561. source: "./media/characters/fryra/back.svg",
  55562. extra: 993/938,
  55563. bottom: 38/1031
  55564. },
  55565. extraAttributes: {
  55566. "breastVolume": {
  55567. name: "Breast Volume",
  55568. power: 3,
  55569. type: "volume",
  55570. base: math.unit(8, "liters")
  55571. },
  55572. }
  55573. },
  55574. head: {
  55575. height: math.unit(1.33, "feet"),
  55576. name: "Head",
  55577. image: {
  55578. source: "./media/characters/fryra/head.svg"
  55579. }
  55580. },
  55581. maw: {
  55582. height: math.unit(0.56, "feet"),
  55583. name: "Maw",
  55584. image: {
  55585. source: "./media/characters/fryra/maw.svg"
  55586. }
  55587. },
  55588. },
  55589. [
  55590. {
  55591. name: "Micro",
  55592. height: math.unit(5, "cm")
  55593. },
  55594. {
  55595. name: "Normal",
  55596. height: math.unit(2, "meters"),
  55597. default: true
  55598. },
  55599. {
  55600. name: "Small Macro",
  55601. height: math.unit(8, "meters")
  55602. },
  55603. {
  55604. name: "Macro",
  55605. height: math.unit(50, "meters")
  55606. },
  55607. {
  55608. name: "Megamacro",
  55609. height: math.unit(1, "km")
  55610. },
  55611. {
  55612. name: "Planetary",
  55613. height: math.unit(300000, "km")
  55614. },
  55615. {
  55616. name: "Universal",
  55617. height: math.unit(250, "lightyears")
  55618. },
  55619. {
  55620. name: "Fabric of Reality",
  55621. height: math.unit(1000, "multiverses")
  55622. },
  55623. ]
  55624. ))
  55625. characterMakers.push(() => makeCharacter(
  55626. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55627. {
  55628. frontDressed: {
  55629. height: math.unit(6 + 2/12, "feet"),
  55630. name: "Front (Dressed)",
  55631. image: {
  55632. source: "./media/characters/fiera/front-dressed.svg",
  55633. extra: 1883/1793,
  55634. bottom: 70/1953
  55635. }
  55636. },
  55637. backDressed: {
  55638. height: math.unit(6 + 2/12, "feet"),
  55639. name: "Back (Dressed)",
  55640. image: {
  55641. source: "./media/characters/fiera/back-dressed.svg",
  55642. extra: 1847/1780,
  55643. bottom: 70/1917
  55644. }
  55645. },
  55646. frontNude: {
  55647. height: math.unit(6 + 2/12, "feet"),
  55648. name: "Front (Nude)",
  55649. image: {
  55650. source: "./media/characters/fiera/front-nude.svg",
  55651. extra: 1875/1785,
  55652. bottom: 66/1941
  55653. }
  55654. },
  55655. backNude: {
  55656. height: math.unit(6 + 2/12, "feet"),
  55657. name: "Back (Nude)",
  55658. image: {
  55659. source: "./media/characters/fiera/back-nude.svg",
  55660. extra: 1855/1788,
  55661. bottom: 44/1899
  55662. }
  55663. },
  55664. maw: {
  55665. height: math.unit(1.3, "feet"),
  55666. name: "Maw",
  55667. image: {
  55668. source: "./media/characters/fiera/maw.svg"
  55669. }
  55670. },
  55671. paw: {
  55672. height: math.unit(1, "feet"),
  55673. name: "Paw",
  55674. image: {
  55675. source: "./media/characters/fiera/paw.svg"
  55676. }
  55677. },
  55678. shoe: {
  55679. height: math.unit(1.05, "feet"),
  55680. name: "Shoe",
  55681. image: {
  55682. source: "./media/characters/fiera/shoe.svg"
  55683. }
  55684. },
  55685. },
  55686. [
  55687. {
  55688. name: "Normal",
  55689. height: math.unit(6 + 2/12, "feet"),
  55690. default: true
  55691. },
  55692. {
  55693. name: "Size Difference",
  55694. height: math.unit(13, "feet")
  55695. },
  55696. {
  55697. name: "Macro",
  55698. height: math.unit(60, "feet")
  55699. },
  55700. {
  55701. name: "Mega Macro",
  55702. height: math.unit(200, "feet")
  55703. },
  55704. ]
  55705. ))
  55706. characterMakers.push(() => makeCharacter(
  55707. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55708. {
  55709. back: {
  55710. height: math.unit(6, "feet"),
  55711. name: "Back",
  55712. image: {
  55713. source: "./media/characters/flare/back.svg",
  55714. extra: 1883/1765,
  55715. bottom: 32/1915
  55716. }
  55717. },
  55718. },
  55719. [
  55720. {
  55721. name: "Normal",
  55722. height: math.unit(6 + 2/12, "feet"),
  55723. default: true
  55724. },
  55725. {
  55726. name: "Size Difference",
  55727. height: math.unit(13, "feet")
  55728. },
  55729. {
  55730. name: "Macro",
  55731. height: math.unit(60, "feet")
  55732. },
  55733. {
  55734. name: "Macro 2",
  55735. height: math.unit(100, "feet")
  55736. },
  55737. {
  55738. name: "Mega Macro",
  55739. height: math.unit(200, "feet")
  55740. },
  55741. ]
  55742. ))
  55743. characterMakers.push(() => makeCharacter(
  55744. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55745. {
  55746. front: {
  55747. height: math.unit(2.2, "m"),
  55748. weight: math.unit(300, "kg"),
  55749. name: "Front",
  55750. image: {
  55751. source: "./media/characters/hanna/front.svg",
  55752. extra: 1696/1502,
  55753. bottom: 206/1902
  55754. }
  55755. },
  55756. },
  55757. [
  55758. {
  55759. name: "Humanoid",
  55760. height: math.unit(2.2, "meters")
  55761. },
  55762. {
  55763. name: "Normal",
  55764. height: math.unit(4.8, "meters"),
  55765. default: true
  55766. },
  55767. ]
  55768. ))
  55769. characterMakers.push(() => makeCharacter(
  55770. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55771. {
  55772. front: {
  55773. height: math.unit(2.8, "meters"),
  55774. name: "Front",
  55775. image: {
  55776. source: "./media/characters/argo/front.svg",
  55777. extra: 731/518,
  55778. bottom: 84/815
  55779. }
  55780. },
  55781. },
  55782. [
  55783. {
  55784. name: "Normal",
  55785. height: math.unit(3, "meters"),
  55786. default: true
  55787. },
  55788. ]
  55789. ))
  55790. characterMakers.push(() => makeCharacter(
  55791. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55792. {
  55793. side: {
  55794. height: math.unit(3.8, "meters"),
  55795. name: "Side",
  55796. image: {
  55797. source: "./media/characters/sybil/side.svg",
  55798. extra: 382/361,
  55799. bottom: 25/407
  55800. }
  55801. },
  55802. },
  55803. [
  55804. {
  55805. name: "Normal",
  55806. height: math.unit(3.8, "meters"),
  55807. default: true
  55808. },
  55809. ]
  55810. ))
  55811. characterMakers.push(() => makeCharacter(
  55812. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55813. {
  55814. side: {
  55815. height: math.unit(6, "meters"),
  55816. name: "Side",
  55817. image: {
  55818. source: "./media/characters/plum/side.svg",
  55819. extra: 858/755,
  55820. bottom: 45/903
  55821. },
  55822. form: "taur",
  55823. default: true
  55824. },
  55825. back: {
  55826. height: math.unit(6.3, "meters"),
  55827. name: "Back",
  55828. image: {
  55829. source: "./media/characters/plum/back.svg",
  55830. extra: 887/813,
  55831. bottom: 32/919
  55832. },
  55833. form: "taur",
  55834. },
  55835. feral: {
  55836. height: math.unit(5.5, "meter"),
  55837. name: "Front",
  55838. image: {
  55839. source: "./media/characters/plum/feral.svg",
  55840. extra: 568/403,
  55841. bottom: 51/619
  55842. },
  55843. form: "feral",
  55844. default: true
  55845. },
  55846. head: {
  55847. height: math.unit(1.46, "meter"),
  55848. name: "Head",
  55849. image: {
  55850. source: "./media/characters/plum/head.svg"
  55851. },
  55852. form: "taur"
  55853. },
  55854. tailTop: {
  55855. height: math.unit(5.6, "meter"),
  55856. name: "Tail (Top)",
  55857. image: {
  55858. source: "./media/characters/plum/tail-top.svg"
  55859. },
  55860. form: "taur",
  55861. },
  55862. tailBottom: {
  55863. height: math.unit(5.6, "meter"),
  55864. name: "Tail (Bottom)",
  55865. image: {
  55866. source: "./media/characters/plum/tail-bottom.svg"
  55867. },
  55868. form: "taur",
  55869. },
  55870. feralHead: {
  55871. height: math.unit(2.56549521, "meter"),
  55872. name: "Head",
  55873. image: {
  55874. source: "./media/characters/plum/head.svg"
  55875. },
  55876. form: "feral"
  55877. },
  55878. feralTailTop: {
  55879. height: math.unit(5.44728435, "meter"),
  55880. name: "Tail (Top)",
  55881. image: {
  55882. source: "./media/characters/plum/tail-top.svg"
  55883. },
  55884. form: "feral",
  55885. },
  55886. feralTailBottom: {
  55887. height: math.unit(5.44728435, "meter"),
  55888. name: "Tail (Bottom)",
  55889. image: {
  55890. source: "./media/characters/plum/tail-bottom.svg"
  55891. },
  55892. form: "feral",
  55893. },
  55894. },
  55895. [
  55896. {
  55897. name: "Normal",
  55898. height: math.unit(6, "meters"),
  55899. default: true,
  55900. form: "taur"
  55901. },
  55902. {
  55903. name: "Normal",
  55904. height: math.unit(5.5, "meters"),
  55905. default: true,
  55906. form: "feral"
  55907. },
  55908. ],
  55909. {
  55910. "taur": {
  55911. name: "Taur",
  55912. default: true
  55913. },
  55914. "feral": {
  55915. name: "Feral",
  55916. },
  55917. }
  55918. ))
  55919. characterMakers.push(() => makeCharacter(
  55920. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55921. {
  55922. front: {
  55923. height: math.unit(6, "feet"),
  55924. weight: math.unit(115, "lb"),
  55925. name: "Front",
  55926. image: {
  55927. source: "./media/characters/celeste-kitsune/front.svg",
  55928. extra: 393/366,
  55929. bottom: 7/400
  55930. }
  55931. },
  55932. side: {
  55933. height: math.unit(6, "feet"),
  55934. weight: math.unit(115, "lb"),
  55935. name: "Side",
  55936. image: {
  55937. source: "./media/characters/celeste-kitsune/side.svg",
  55938. extra: 818/765,
  55939. bottom: 40/858
  55940. }
  55941. },
  55942. },
  55943. [
  55944. {
  55945. name: "Megamacro",
  55946. height: math.unit(1500, "miles"),
  55947. default: true
  55948. },
  55949. ]
  55950. ))
  55951. characterMakers.push(() => makeCharacter(
  55952. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55953. {
  55954. front: {
  55955. height: math.unit(8, "meters"),
  55956. name: "Front",
  55957. image: {
  55958. source: "./media/characters/io/front.svg",
  55959. extra: 865/722,
  55960. bottom: 58/923
  55961. }
  55962. },
  55963. back: {
  55964. height: math.unit(8, "meters"),
  55965. name: "Back",
  55966. image: {
  55967. source: "./media/characters/io/back.svg",
  55968. extra: 920/776,
  55969. bottom: 42/962
  55970. }
  55971. },
  55972. head: {
  55973. height: math.unit(5.09, "meters"),
  55974. name: "Head",
  55975. image: {
  55976. source: "./media/characters/io/head.svg"
  55977. }
  55978. },
  55979. hand: {
  55980. height: math.unit(1.6, "meters"),
  55981. name: "Hand",
  55982. image: {
  55983. source: "./media/characters/io/hand.svg"
  55984. }
  55985. },
  55986. foot: {
  55987. height: math.unit(2.4, "meters"),
  55988. name: "Foot",
  55989. image: {
  55990. source: "./media/characters/io/foot.svg"
  55991. }
  55992. },
  55993. },
  55994. [
  55995. {
  55996. name: "Normal",
  55997. height: math.unit(8, "meters"),
  55998. default: true
  55999. },
  56000. ]
  56001. ))
  56002. characterMakers.push(() => makeCharacter(
  56003. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56004. {
  56005. side: {
  56006. height: math.unit(6 + 3/12, "feet"),
  56007. weight: math.unit(225, "lb"),
  56008. name: "Side",
  56009. image: {
  56010. source: "./media/characters/silas/side.svg",
  56011. extra: 703/653,
  56012. bottom: 23/726
  56013. },
  56014. extraAttributes: {
  56015. "pawLength": {
  56016. name: "Paw Length",
  56017. power: 1,
  56018. type: "length",
  56019. base: math.unit(12, "inches")
  56020. },
  56021. "pawWidth": {
  56022. name: "Paw Width",
  56023. power: 1,
  56024. type: "length",
  56025. base: math.unit(4.5, "inches")
  56026. },
  56027. "pawArea": {
  56028. name: "Paw Area",
  56029. power: 2,
  56030. type: "area",
  56031. base: math.unit(12 * 4.5, "inches^2")
  56032. },
  56033. }
  56034. },
  56035. },
  56036. [
  56037. {
  56038. name: "Normal",
  56039. height: math.unit(6 + 3/12, "feet"),
  56040. default: true
  56041. },
  56042. ]
  56043. ))
  56044. characterMakers.push(() => makeCharacter(
  56045. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56046. {
  56047. back: {
  56048. height: math.unit(1.6, "meters"),
  56049. weight: math.unit(150, "lb"),
  56050. name: "Back",
  56051. image: {
  56052. source: "./media/characters/zari/back.svg",
  56053. extra: 424/411,
  56054. bottom: 32/456
  56055. },
  56056. extraAttributes: {
  56057. "bladderCapacity": {
  56058. name: "Bladder Size",
  56059. power: 3,
  56060. type: "volume",
  56061. base: math.unit(500, "mL")
  56062. },
  56063. "bladderFlow": {
  56064. name: "Flow Rate",
  56065. power: 3,
  56066. type: "volume",
  56067. base: math.unit(25, "mL")
  56068. },
  56069. }
  56070. },
  56071. },
  56072. [
  56073. {
  56074. name: "Normal",
  56075. height: math.unit(1.6, "meters"),
  56076. default: true
  56077. },
  56078. ]
  56079. ))
  56080. characterMakers.push(() => makeCharacter(
  56081. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56082. {
  56083. front: {
  56084. height: math.unit(25, "feet"),
  56085. weight: math.unit(5, "tons"),
  56086. name: "Front",
  56087. image: {
  56088. source: "./media/characters/charlie-human/front.svg",
  56089. extra: 1870/1740,
  56090. bottom: 102/1972
  56091. },
  56092. extraAttributes: {
  56093. "dickLength": {
  56094. name: "Dick Length",
  56095. power: 1,
  56096. type: "length",
  56097. base: math.unit(9, "feet")
  56098. },
  56099. }
  56100. },
  56101. back: {
  56102. height: math.unit(25, "feet"),
  56103. weight: math.unit(5, "tons"),
  56104. name: "Back",
  56105. image: {
  56106. source: "./media/characters/charlie-human/back.svg",
  56107. extra: 1858/1733,
  56108. bottom: 105/1963
  56109. },
  56110. extraAttributes: {
  56111. "dickLength": {
  56112. name: "Dick Length",
  56113. power: 1,
  56114. type: "length",
  56115. base: math.unit(9, "feet")
  56116. },
  56117. }
  56118. },
  56119. },
  56120. [
  56121. {
  56122. name: "\"Normal\"",
  56123. height: math.unit(6 + 4/12, "feet")
  56124. },
  56125. {
  56126. name: "Big",
  56127. height: math.unit(25, "feet"),
  56128. default: true
  56129. },
  56130. ]
  56131. ))
  56132. characterMakers.push(() => makeCharacter(
  56133. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56134. {
  56135. front: {
  56136. height: math.unit(6 + 4/12, "feet"),
  56137. weight: math.unit(320, "lb"),
  56138. name: "Front",
  56139. image: {
  56140. source: "./media/characters/ookitsu/front.svg",
  56141. extra: 1160/976,
  56142. bottom: 38/1198
  56143. }
  56144. },
  56145. frontNsfw: {
  56146. height: math.unit(6 + 4/12, "feet"),
  56147. weight: math.unit(320, "lb"),
  56148. name: "Front (NSFW)",
  56149. image: {
  56150. source: "./media/characters/ookitsu/front-nsfw.svg",
  56151. extra: 1160/976,
  56152. bottom: 38/1198
  56153. }
  56154. },
  56155. back: {
  56156. height: math.unit(6 + 4/12, "feet"),
  56157. weight: math.unit(320, "lb"),
  56158. name: "Back",
  56159. image: {
  56160. source: "./media/characters/ookitsu/back.svg",
  56161. extra: 1030/975,
  56162. bottom: 70/1100
  56163. }
  56164. },
  56165. head: {
  56166. height: math.unit(1.79, "feet"),
  56167. name: "Head",
  56168. image: {
  56169. source: "./media/characters/ookitsu/head.svg"
  56170. }
  56171. },
  56172. hand: {
  56173. height: math.unit(0.92, "feet"),
  56174. name: "Hand",
  56175. image: {
  56176. source: "./media/characters/ookitsu/hand.svg"
  56177. }
  56178. },
  56179. tails: {
  56180. height: math.unit(3.3, "feet"),
  56181. name: "Tails",
  56182. image: {
  56183. source: "./media/characters/ookitsu/tails.svg"
  56184. }
  56185. },
  56186. dick: {
  56187. height: math.unit(1.10833, "feet"),
  56188. name: "Dick",
  56189. image: {
  56190. source: "./media/characters/ookitsu/dick.svg"
  56191. }
  56192. },
  56193. },
  56194. [
  56195. {
  56196. name: "Normal",
  56197. height: math.unit(6 + 4/12, "feet"),
  56198. default: true
  56199. },
  56200. {
  56201. name: "Macro",
  56202. height: math.unit(30, "feet")
  56203. },
  56204. ]
  56205. ))
  56206. characterMakers.push(() => makeCharacter(
  56207. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56208. {
  56209. anthroFront: {
  56210. height: math.unit(6, "feet"),
  56211. weight: math.unit(250, "lb"),
  56212. name: "Front",
  56213. image: {
  56214. source: "./media/characters/jhusky/anthro-front.svg",
  56215. extra: 474/439,
  56216. bottom: 7/481
  56217. },
  56218. form: "anthro",
  56219. default: true
  56220. },
  56221. taurSideSfw: {
  56222. height: math.unit(6 + 4/12, "feet"),
  56223. weight: math.unit(500, "lb"),
  56224. name: "Side (SFW)",
  56225. image: {
  56226. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56227. extra: 1741/1629,
  56228. bottom: 196/1937
  56229. },
  56230. form: "taur",
  56231. default: true
  56232. },
  56233. taurSideNsfw: {
  56234. height: math.unit(6 + 4/12, "feet"),
  56235. weight: math.unit(500, "lb"),
  56236. name: "Taur (NSFW)",
  56237. image: {
  56238. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56239. extra: 1741/1629,
  56240. bottom: 196/1937
  56241. },
  56242. form: "taur",
  56243. },
  56244. },
  56245. [
  56246. {
  56247. name: "Huge",
  56248. height: math.unit(500, "feet"),
  56249. form: "anthro"
  56250. },
  56251. {
  56252. name: "Macro",
  56253. height: math.unit(1000, "feet"),
  56254. default: true,
  56255. form: "anthro"
  56256. },
  56257. {
  56258. name: "Megamacro",
  56259. height: math.unit(10000, "feet"),
  56260. form: "anthro"
  56261. },
  56262. {
  56263. name: "Huge",
  56264. height: math.unit(528, "feet"),
  56265. form: "taur"
  56266. },
  56267. {
  56268. name: "Macro",
  56269. height: math.unit(1056, "feet"),
  56270. default: true,
  56271. form: "taur"
  56272. },
  56273. {
  56274. name: "Megamacro",
  56275. height: math.unit(10556, "feet"),
  56276. form: "taur"
  56277. },
  56278. ],
  56279. {
  56280. "anthro": {
  56281. name: "Anthro",
  56282. default: true
  56283. },
  56284. "taur": {
  56285. name: "Taur",
  56286. },
  56287. }
  56288. ))
  56289. characterMakers.push(() => makeCharacter(
  56290. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56291. {
  56292. front: {
  56293. height: math.unit(8, "feet"),
  56294. weight: math.unit(500, "lb"),
  56295. name: "Front",
  56296. image: {
  56297. source: "./media/characters/armail/front.svg",
  56298. extra: 1753/1669,
  56299. bottom: 155/1908
  56300. }
  56301. },
  56302. back: {
  56303. height: math.unit(8, "feet"),
  56304. weight: math.unit(500, "lb"),
  56305. name: "Back",
  56306. image: {
  56307. source: "./media/characters/armail/back.svg",
  56308. extra: 1872/1803,
  56309. bottom: 63/1935
  56310. }
  56311. },
  56312. },
  56313. [
  56314. {
  56315. name: "Micro",
  56316. height: math.unit(0.25, "feet")
  56317. },
  56318. {
  56319. name: "Normal",
  56320. height: math.unit(8, "feet"),
  56321. default: true
  56322. },
  56323. {
  56324. name: "Mini-macro",
  56325. height: math.unit(30, "feet")
  56326. },
  56327. {
  56328. name: "Macro",
  56329. height: math.unit(400, "feet")
  56330. },
  56331. {
  56332. name: "Mega-macro",
  56333. height: math.unit(6000, "feet")
  56334. },
  56335. ]
  56336. ))
  56337. characterMakers.push(() => makeCharacter(
  56338. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56339. {
  56340. front: {
  56341. height: math.unit(6 + 7/12, "feet"),
  56342. weight: math.unit(210, "lb"),
  56343. name: "Front",
  56344. image: {
  56345. source: "./media/characters/wilfred-t-buxton/front.svg",
  56346. extra: 1068/882,
  56347. bottom: 28/1096
  56348. }
  56349. },
  56350. },
  56351. [
  56352. {
  56353. name: "Normal",
  56354. height: math.unit(6 + 7/12, "feet"),
  56355. default: true
  56356. },
  56357. ]
  56358. ))
  56359. characterMakers.push(() => makeCharacter(
  56360. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56361. {
  56362. front: {
  56363. height: math.unit(5 + 2/12, "feet"),
  56364. weight: math.unit(120, "lb"),
  56365. name: "Front",
  56366. image: {
  56367. source: "./media/characters/leighton-marrow/front.svg",
  56368. extra: 441/409,
  56369. bottom: 37/478
  56370. }
  56371. },
  56372. },
  56373. [
  56374. {
  56375. name: "Normal",
  56376. height: math.unit(5 + 2/12, "feet"),
  56377. default: true
  56378. },
  56379. ]
  56380. ))
  56381. characterMakers.push(() => makeCharacter(
  56382. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56383. {
  56384. front: {
  56385. height: math.unit(4, "meters"),
  56386. weight: math.unit(1200, "kg"),
  56387. name: "Front",
  56388. image: {
  56389. source: "./media/characters/licos/front.svg",
  56390. extra: 1727/1604,
  56391. bottom: 101/1828
  56392. },
  56393. form: "anthro",
  56394. default: true
  56395. },
  56396. taur_side: {
  56397. height: math.unit(20, "meters"),
  56398. weight: math.unit(1100000, "kg"),
  56399. name: "Side",
  56400. image: {
  56401. source: "./media/characters/licos/taur.svg",
  56402. extra: 1158/1091,
  56403. bottom: 80/1238
  56404. },
  56405. form: "taur",
  56406. default: true
  56407. },
  56408. },
  56409. [
  56410. {
  56411. name: "Normal",
  56412. height: math.unit(4, "meters"),
  56413. default: true,
  56414. form: "anthro"
  56415. },
  56416. {
  56417. name: "Normal",
  56418. height: math.unit(20, "meters"),
  56419. default: true,
  56420. form: "taur"
  56421. },
  56422. ],
  56423. {
  56424. "anthro": {
  56425. name: "Anthro",
  56426. default: true
  56427. },
  56428. "taur": {
  56429. name: "Taur",
  56430. },
  56431. }
  56432. ))
  56433. characterMakers.push(() => makeCharacter(
  56434. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56435. {
  56436. front: {
  56437. height: math.unit(10 + 3/12, "feet"),
  56438. name: "Front",
  56439. image: {
  56440. source: "./media/characters/theo-monkey/front.svg",
  56441. extra: 1735/1658,
  56442. bottom: 73/1808
  56443. }
  56444. },
  56445. back: {
  56446. height: math.unit(10 + 3/12, "feet"),
  56447. name: "Back",
  56448. image: {
  56449. source: "./media/characters/theo-monkey/back.svg",
  56450. extra: 1742/1664,
  56451. bottom: 33/1775
  56452. }
  56453. },
  56454. head: {
  56455. height: math.unit(2.29, "feet"),
  56456. name: "Head",
  56457. image: {
  56458. source: "./media/characters/theo-monkey/head.svg"
  56459. }
  56460. },
  56461. handPalm: {
  56462. height: math.unit(1.73, "feet"),
  56463. name: "Hand (Palm)",
  56464. image: {
  56465. source: "./media/characters/theo-monkey/hand-palm.svg"
  56466. }
  56467. },
  56468. handBack: {
  56469. height: math.unit(1.63, "feet"),
  56470. name: "Hand (Back)",
  56471. image: {
  56472. source: "./media/characters/theo-monkey/hand-back.svg"
  56473. }
  56474. },
  56475. footSole: {
  56476. height: math.unit(2.15, "feet"),
  56477. name: "Foot (Sole)",
  56478. image: {
  56479. source: "./media/characters/theo-monkey/foot-sole.svg"
  56480. }
  56481. },
  56482. footSide: {
  56483. height: math.unit(1.6, "feet"),
  56484. name: "Foot (Side)",
  56485. image: {
  56486. source: "./media/characters/theo-monkey/foot-side.svg"
  56487. }
  56488. },
  56489. },
  56490. [
  56491. {
  56492. name: "Normal",
  56493. height: math.unit(10 + 3/12, "feet"),
  56494. default: true
  56495. },
  56496. ]
  56497. ))
  56498. characterMakers.push(() => makeCharacter(
  56499. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56500. {
  56501. front: {
  56502. height: math.unit(11, "feet"),
  56503. weight: math.unit(3000, "lb"),
  56504. preyCapacity: math.unit(10, "people"),
  56505. name: "Front",
  56506. image: {
  56507. source: "./media/characters/brook/front.svg",
  56508. extra: 909/835,
  56509. bottom: 108/1017
  56510. }
  56511. },
  56512. back: {
  56513. height: math.unit(11, "feet"),
  56514. weight: math.unit(3000, "lb"),
  56515. preyCapacity: math.unit(10, "people"),
  56516. name: "Back",
  56517. image: {
  56518. source: "./media/characters/brook/back.svg",
  56519. extra: 976/916,
  56520. bottom: 34/1010
  56521. }
  56522. },
  56523. backAlt: {
  56524. height: math.unit(11, "feet"),
  56525. weight: math.unit(3000, "lb"),
  56526. preyCapacity: math.unit(10, "people"),
  56527. name: "Back (Alt)",
  56528. image: {
  56529. source: "./media/characters/brook/back-alt.svg",
  56530. extra: 1283/1213,
  56531. bottom: 35/1318
  56532. }
  56533. },
  56534. bust: {
  56535. height: math.unit(9.0859030837, "feet"),
  56536. weight: math.unit(3000, "lb"),
  56537. preyCapacity: math.unit(10, "people"),
  56538. name: "Bust",
  56539. image: {
  56540. source: "./media/characters/brook/bust.svg",
  56541. extra: 2043/1923,
  56542. bottom: 0/2043
  56543. }
  56544. },
  56545. },
  56546. [
  56547. {
  56548. name: "Small",
  56549. height: math.unit(11, "feet"),
  56550. default: true
  56551. },
  56552. {
  56553. name: "Towering",
  56554. height: math.unit(5, "km")
  56555. },
  56556. {
  56557. name: "Enormous",
  56558. height: math.unit(25, "earths")
  56559. },
  56560. ]
  56561. ))
  56562. characterMakers.push(() => makeCharacter(
  56563. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56564. {
  56565. front: {
  56566. height: math.unit(4, "feet"),
  56567. weight: math.unit(150, "lb"),
  56568. name: "Front",
  56569. image: {
  56570. source: "./media/characters/squishi/front.svg",
  56571. extra: 1428/1271,
  56572. bottom: 30/1458
  56573. },
  56574. extraAttributes: {
  56575. "pawSize": {
  56576. name: "Paw Size",
  56577. power: 1,
  56578. type: "length",
  56579. base: math.unit(14, "ShoeSizeMensUS"),
  56580. defaultUnit: "ShoeSizeMensUS"
  56581. },
  56582. }
  56583. },
  56584. side: {
  56585. height: math.unit(4, "feet"),
  56586. weight: math.unit(150, "lb"),
  56587. name: "Side",
  56588. image: {
  56589. source: "./media/characters/squishi/side.svg",
  56590. extra: 1428/1271,
  56591. bottom: 30/1458
  56592. },
  56593. extraAttributes: {
  56594. "pawSize": {
  56595. name: "Paw Size",
  56596. power: 1,
  56597. type: "length",
  56598. base: math.unit(14, "ShoeSizeMensUS"),
  56599. defaultUnit: "ShoeSizeMensUS"
  56600. },
  56601. }
  56602. },
  56603. back: {
  56604. height: math.unit(4, "feet"),
  56605. weight: math.unit(150, "lb"),
  56606. name: "Back",
  56607. image: {
  56608. source: "./media/characters/squishi/back.svg",
  56609. extra: 1428/1271,
  56610. bottom: 30/1458
  56611. },
  56612. extraAttributes: {
  56613. "pawSize": {
  56614. name: "Paw Size",
  56615. power: 1,
  56616. type: "length",
  56617. base: math.unit(14, "ShoeSizeMensUS"),
  56618. defaultUnit: "ShoeSizeMensUS"
  56619. },
  56620. }
  56621. },
  56622. },
  56623. [
  56624. {
  56625. name: "Normal",
  56626. height: math.unit(4, "feet"),
  56627. default: true
  56628. },
  56629. ]
  56630. ))
  56631. characterMakers.push(() => makeCharacter(
  56632. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56633. {
  56634. front: {
  56635. height: math.unit(7 + 8/12, "feet"),
  56636. weight: math.unit(333, "lb"),
  56637. name: "Front",
  56638. image: {
  56639. source: "./media/characters/vincent-vasroc/front.svg",
  56640. extra: 1962/1860,
  56641. bottom: 41/2003
  56642. }
  56643. },
  56644. back: {
  56645. height: math.unit(7 + 8/12, "feet"),
  56646. weight: math.unit(333, "lb"),
  56647. name: "Back",
  56648. image: {
  56649. source: "./media/characters/vincent-vasroc/back.svg",
  56650. extra: 1952/1815,
  56651. bottom: 33/1985
  56652. }
  56653. },
  56654. paw: {
  56655. height: math.unit(1.24, "feet"),
  56656. name: "Paw",
  56657. image: {
  56658. source: "./media/characters/vincent-vasroc/paw.svg"
  56659. }
  56660. },
  56661. ear: {
  56662. height: math.unit(0.75, "feet"),
  56663. name: "Ear",
  56664. image: {
  56665. source: "./media/characters/vincent-vasroc/ear.svg"
  56666. }
  56667. },
  56668. },
  56669. [
  56670. {
  56671. name: "Nano",
  56672. height: math.unit(92, "micrometers")
  56673. },
  56674. {
  56675. name: "Normal",
  56676. height: math.unit(7 + 8/12, "feet"),
  56677. default: true
  56678. },
  56679. ]
  56680. ))
  56681. characterMakers.push(() => makeCharacter(
  56682. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56683. {
  56684. frontNsfw: {
  56685. height: math.unit(40, "feet"),
  56686. weight: math.unit(58, "tons"),
  56687. name: "Front (NSFW)",
  56688. image: {
  56689. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56690. extra: 1265/965,
  56691. bottom: 155/1420
  56692. }
  56693. },
  56694. frontSfw: {
  56695. height: math.unit(40, "feet"),
  56696. weight: math.unit(58, "tons"),
  56697. name: "Front (SFW)",
  56698. image: {
  56699. source: "./media/characters/ru-kahn/front-sfw.svg",
  56700. extra: 1265/965,
  56701. bottom: 80/1345
  56702. }
  56703. },
  56704. },
  56705. [
  56706. {
  56707. name: "Small",
  56708. height: math.unit(4, "feet")
  56709. },
  56710. {
  56711. name: "Normal",
  56712. height: math.unit(40, "feet"),
  56713. default: true
  56714. },
  56715. {
  56716. name: "Macro",
  56717. height: math.unit(400, "feet")
  56718. },
  56719. ]
  56720. ))
  56721. characterMakers.push(() => makeCharacter(
  56722. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56723. {
  56724. frontNude: {
  56725. height: math.unit(6 + 5/12, "feet"),
  56726. name: "Front (Nude)",
  56727. image: {
  56728. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56729. extra: 1369/1366,
  56730. bottom: 68/1437
  56731. }
  56732. },
  56733. frontDressed: {
  56734. height: math.unit(6 + 5/12, "feet"),
  56735. name: "Front (Dressed)",
  56736. image: {
  56737. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56738. extra: 1369/1366,
  56739. bottom: 68/1437
  56740. }
  56741. },
  56742. },
  56743. [
  56744. {
  56745. name: "Normal",
  56746. height: math.unit(6 + 5/12, "feet"),
  56747. default: true
  56748. },
  56749. {
  56750. name: "Maximum",
  56751. height: math.unit(1930, "feet")
  56752. },
  56753. ]
  56754. ))
  56755. characterMakers.push(() => makeCharacter(
  56756. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56757. {
  56758. front: {
  56759. height: math.unit(5 + 6/12, "feet"),
  56760. name: "Front",
  56761. image: {
  56762. source: "./media/characters/kaja/front.svg",
  56763. extra: 1874/1514,
  56764. bottom: 117/1991
  56765. }
  56766. },
  56767. },
  56768. [
  56769. {
  56770. name: "Normal",
  56771. height: math.unit(5 + 6/12, "feet"),
  56772. default: true
  56773. },
  56774. ]
  56775. ))
  56776. characterMakers.push(() => makeCharacter(
  56777. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56778. {
  56779. front: {
  56780. height: math.unit(5 + 9/12, "feet"),
  56781. weight: math.unit(200, "lb"),
  56782. name: "Front",
  56783. image: {
  56784. source: "./media/characters/mark-smith/front.svg",
  56785. extra: 1004/943,
  56786. bottom: 58/1062
  56787. }
  56788. },
  56789. back: {
  56790. height: math.unit(5 + 9/12, "feet"),
  56791. weight: math.unit(200, "lb"),
  56792. name: "Back",
  56793. image: {
  56794. source: "./media/characters/mark-smith/back.svg",
  56795. extra: 1023/953,
  56796. bottom: 24/1047
  56797. }
  56798. },
  56799. head: {
  56800. height: math.unit(1.82, "feet"),
  56801. name: "Head",
  56802. image: {
  56803. source: "./media/characters/mark-smith/head.svg"
  56804. }
  56805. },
  56806. hand: {
  56807. height: math.unit(1.4, "feet"),
  56808. name: "Hand",
  56809. image: {
  56810. source: "./media/characters/mark-smith/hand.svg"
  56811. }
  56812. },
  56813. paw: {
  56814. height: math.unit(1.69, "feet"),
  56815. name: "Paw",
  56816. image: {
  56817. source: "./media/characters/mark-smith/paw.svg"
  56818. }
  56819. },
  56820. },
  56821. [
  56822. {
  56823. name: "Micro",
  56824. height: math.unit(0.25, "inches")
  56825. },
  56826. {
  56827. name: "Normal",
  56828. height: math.unit(5 + 9/12, "feet"),
  56829. default: true
  56830. },
  56831. {
  56832. name: "Macro",
  56833. height: math.unit(500, "feet")
  56834. },
  56835. ]
  56836. ))
  56837. characterMakers.push(() => makeCharacter(
  56838. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56839. {
  56840. frontNude: {
  56841. height: math.unit(6, "feet"),
  56842. name: "Front (Nude)",
  56843. image: {
  56844. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56845. extra: 1384/1321,
  56846. bottom: 57/1441
  56847. }
  56848. },
  56849. frontDressed: {
  56850. height: math.unit(6, "feet"),
  56851. name: "Front (Dressed)",
  56852. image: {
  56853. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56854. extra: 1384/1321,
  56855. bottom: 57/1441
  56856. }
  56857. },
  56858. },
  56859. [
  56860. {
  56861. name: "Normal",
  56862. height: math.unit(6, "feet"),
  56863. default: true
  56864. },
  56865. {
  56866. name: "Maximum",
  56867. height: math.unit(1776, "feet")
  56868. },
  56869. ]
  56870. ))
  56871. characterMakers.push(() => makeCharacter(
  56872. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56873. {
  56874. front: {
  56875. height: math.unit(2 + 4/12, "feet"),
  56876. weight: math.unit(350, "lb"),
  56877. name: "Front",
  56878. image: {
  56879. source: "./media/characters/devos/front.svg",
  56880. extra: 958/852,
  56881. bottom: 143/1101
  56882. }
  56883. },
  56884. },
  56885. [
  56886. {
  56887. name: "Base",
  56888. height: math.unit(2 + 4/12, "feet"),
  56889. default: true
  56890. },
  56891. ]
  56892. ))
  56893. characterMakers.push(() => makeCharacter(
  56894. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56895. {
  56896. front: {
  56897. height: math.unit(9 + 2/12, "feet"),
  56898. name: "Front",
  56899. image: {
  56900. source: "./media/characters/hiveheart/front.svg",
  56901. extra: 394/364,
  56902. bottom: 65/459
  56903. }
  56904. },
  56905. back: {
  56906. height: math.unit(9 + 2/12, "feet"),
  56907. name: "Back",
  56908. image: {
  56909. source: "./media/characters/hiveheart/back.svg",
  56910. extra: 374/357,
  56911. bottom: 63/437
  56912. }
  56913. },
  56914. },
  56915. [
  56916. {
  56917. name: "Base",
  56918. height: math.unit(9 + 2/12, "feet"),
  56919. default: true
  56920. },
  56921. ]
  56922. ))
  56923. characterMakers.push(() => makeCharacter(
  56924. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56925. {
  56926. front: {
  56927. height: math.unit(2.5, "inches"),
  56928. weight: math.unit(0.6, "oz"),
  56929. name: "Front",
  56930. image: {
  56931. source: "./media/characters/bryn/front.svg",
  56932. extra: 1484/1119,
  56933. bottom: 66/1550
  56934. }
  56935. },
  56936. back: {
  56937. height: math.unit(2.5, "inches"),
  56938. weight: math.unit(0.6, "oz"),
  56939. name: "Back",
  56940. image: {
  56941. source: "./media/characters/bryn/back.svg",
  56942. extra: 1472/1170,
  56943. bottom: 32/1504
  56944. }
  56945. },
  56946. wings: {
  56947. height: math.unit(2.5, "inches"),
  56948. weight: math.unit(0.6, "oz"),
  56949. name: "Wings",
  56950. image: {
  56951. source: "./media/characters/bryn/wings.svg",
  56952. extra: 567/448,
  56953. bottom: 10/577
  56954. }
  56955. },
  56956. dressed: {
  56957. height: math.unit(2.5, "inches"),
  56958. weight: math.unit(0.6, "oz"),
  56959. name: "Dressed",
  56960. image: {
  56961. source: "./media/characters/bryn/dressed.svg",
  56962. extra: 719/589,
  56963. bottom: 54/773
  56964. }
  56965. },
  56966. head: {
  56967. height: math.unit(1.75, "inches"),
  56968. name: "Head",
  56969. image: {
  56970. source: "./media/characters/bryn/head.svg"
  56971. }
  56972. },
  56973. foot: {
  56974. height: math.unit(0.4, "inches"),
  56975. name: "Foot",
  56976. image: {
  56977. source: "./media/characters/bryn/foot.svg"
  56978. }
  56979. },
  56980. },
  56981. [
  56982. {
  56983. name: "Normal",
  56984. height: math.unit(2.5, "inches"),
  56985. default: true
  56986. },
  56987. ]
  56988. ))
  56989. characterMakers.push(() => makeCharacter(
  56990. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56991. {
  56992. side: {
  56993. height: math.unit(7, "feet"),
  56994. weight: math.unit(657, "kg"),
  56995. name: "Side",
  56996. image: {
  56997. source: "./media/characters/delta/side.svg",
  56998. extra: 781/212,
  56999. bottom: 7/788
  57000. },
  57001. extraAttributes: {
  57002. "wingspan": {
  57003. name: "Wingspan",
  57004. power: 1,
  57005. type: "length",
  57006. base: math.unit(48, "feet")
  57007. },
  57008. "length": {
  57009. name: "Length",
  57010. power: 1,
  57011. type: "length",
  57012. base: math.unit(21, "feet")
  57013. },
  57014. "pawSize": {
  57015. name: "Paw Size",
  57016. power: 2,
  57017. type: "area",
  57018. base: math.unit(1.5*1.4, "feet^2")
  57019. },
  57020. }
  57021. },
  57022. },
  57023. [
  57024. {
  57025. name: "Normal",
  57026. height: math.unit(6, "feet"),
  57027. default: true
  57028. },
  57029. ]
  57030. ))
  57031. characterMakers.push(() => makeCharacter(
  57032. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57033. {
  57034. front: {
  57035. height: math.unit(6, "feet"),
  57036. name: "Front",
  57037. image: {
  57038. source: "./media/characters/pyrow/front.svg",
  57039. extra: 513/486,
  57040. bottom: 14/527
  57041. }
  57042. },
  57043. frontWing: {
  57044. height: math.unit(6, "feet"),
  57045. name: "Front (Wing)",
  57046. image: {
  57047. source: "./media/characters/pyrow/front-wing.svg",
  57048. extra: 539/383,
  57049. bottom: 20/559
  57050. }
  57051. },
  57052. back: {
  57053. height: math.unit(6, "feet"),
  57054. name: "Back",
  57055. image: {
  57056. source: "./media/characters/pyrow/back.svg",
  57057. extra: 500/473,
  57058. bottom: 9/509
  57059. }
  57060. },
  57061. },
  57062. [
  57063. {
  57064. name: "Normal",
  57065. height: math.unit(6, "feet"),
  57066. default: true
  57067. },
  57068. ]
  57069. ))
  57070. characterMakers.push(() => makeCharacter(
  57071. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57072. {
  57073. front: {
  57074. height: math.unit(5, "meters"),
  57075. weight: math.unit(3, "tonnes"),
  57076. name: "Front",
  57077. image: {
  57078. source: "./media/characters/velikan/front.svg",
  57079. extra: 867/744,
  57080. bottom: 71/938
  57081. },
  57082. extraAttributes: {
  57083. "shoeSize": {
  57084. name: "Shoe Size",
  57085. power: 1,
  57086. type: "length",
  57087. base: math.unit(135, "ShoeSizeUK"),
  57088. defaultUnit: "ShoeSizeUK"
  57089. },
  57090. }
  57091. },
  57092. },
  57093. [
  57094. {
  57095. name: "Normal",
  57096. height: math.unit(5, "meters"),
  57097. default: true
  57098. },
  57099. {
  57100. name: "Macro",
  57101. height: math.unit(1, "km")
  57102. },
  57103. {
  57104. name: "Mega Macro",
  57105. height: math.unit(100, "km")
  57106. },
  57107. {
  57108. name: "Giga Macro",
  57109. height: math.unit(2, "megameters")
  57110. },
  57111. {
  57112. name: "Planetary",
  57113. height: math.unit(22, "megameters")
  57114. },
  57115. {
  57116. name: "Solar",
  57117. height: math.unit(8, "gigameters")
  57118. },
  57119. {
  57120. name: "Cosmic",
  57121. height: math.unit(10, "zettameters")
  57122. },
  57123. {
  57124. name: "Omni",
  57125. height: math.unit(9e260, "multiverses")
  57126. },
  57127. ]
  57128. ))
  57129. characterMakers.push(() => makeCharacter(
  57130. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57131. {
  57132. front: {
  57133. height: math.unit(4 + 3/12, "feet"),
  57134. weight: math.unit(90, "lb"),
  57135. name: "Front",
  57136. image: {
  57137. source: "./media/characters/sabiki/front.svg",
  57138. extra: 1662/1423,
  57139. bottom: 65/1727
  57140. }
  57141. },
  57142. },
  57143. [
  57144. {
  57145. name: "Normal",
  57146. height: math.unit(4 + 3/12, "feet"),
  57147. default: true
  57148. },
  57149. ]
  57150. ))
  57151. characterMakers.push(() => makeCharacter(
  57152. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57153. {
  57154. frontSfw: {
  57155. height: math.unit(2, "mm"),
  57156. name: "Front (SFW)",
  57157. image: {
  57158. source: "./media/characters/carmel/front-sfw.svg",
  57159. extra: 1131/1006,
  57160. bottom: 66/1197
  57161. }
  57162. },
  57163. frontNsfw: {
  57164. height: math.unit(2, "mm"),
  57165. name: "Front (NSFW)",
  57166. image: {
  57167. source: "./media/characters/carmel/front-nsfw.svg",
  57168. extra: 1131/1006,
  57169. bottom: 66/1197
  57170. }
  57171. },
  57172. foot: {
  57173. height: math.unit(0.3, "mm"),
  57174. name: "Foot",
  57175. image: {
  57176. source: "./media/characters/carmel/foot.svg"
  57177. }
  57178. },
  57179. tongue: {
  57180. height: math.unit(0.71, "mm"),
  57181. name: "Tongue",
  57182. image: {
  57183. source: "./media/characters/carmel/tongue.svg"
  57184. }
  57185. },
  57186. dick: {
  57187. height: math.unit(0.085, "mm"),
  57188. name: "Dick",
  57189. image: {
  57190. source: "./media/characters/carmel/dick.svg"
  57191. }
  57192. },
  57193. },
  57194. [
  57195. {
  57196. name: "Micro",
  57197. height: math.unit(2, "mm"),
  57198. default: true
  57199. },
  57200. {
  57201. name: "Normal",
  57202. height: math.unit(4 + 8/12, "feet")
  57203. },
  57204. {
  57205. name: "Mega Macro",
  57206. height: math.unit(250, "feet")
  57207. },
  57208. {
  57209. name: "BIGGER",
  57210. height: math.unit(1000, "feet")
  57211. },
  57212. {
  57213. name: "BIGGEST",
  57214. height: math.unit(2, "miles")
  57215. },
  57216. ]
  57217. ))
  57218. characterMakers.push(() => makeCharacter(
  57219. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57220. {
  57221. front: {
  57222. height: math.unit(6.5, "feet"),
  57223. weight: math.unit(198, "lb"),
  57224. name: "Front",
  57225. image: {
  57226. source: "./media/characters/tamani/anthro.svg",
  57227. extra: 930/890,
  57228. bottom: 34/964
  57229. },
  57230. form: "anthro",
  57231. default: true
  57232. },
  57233. side: {
  57234. height: math.unit(6, "feet"),
  57235. weight: math.unit(198*2, "lb"),
  57236. name: "Side",
  57237. image: {
  57238. source: "./media/characters/tamani/feral.svg",
  57239. extra: 559/519,
  57240. bottom: 43/602
  57241. },
  57242. form: "feral"
  57243. },
  57244. },
  57245. [
  57246. {
  57247. name: "Normal",
  57248. height: math.unit(6.5, "feet"),
  57249. default: true,
  57250. form: "anthro"
  57251. },
  57252. {
  57253. name: "Normal",
  57254. height: math.unit(6, "feet"),
  57255. default: true,
  57256. form: "feral"
  57257. },
  57258. ],
  57259. {
  57260. "anthro": {
  57261. name: "Anthro",
  57262. default: true
  57263. },
  57264. "feral": {
  57265. name: "Feral",
  57266. },
  57267. }
  57268. ))
  57269. characterMakers.push(() => makeCharacter(
  57270. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57271. {
  57272. front: {
  57273. height: math.unit(4 + 1/12, "feet"),
  57274. weight: math.unit(114, "lb"),
  57275. name: "Front",
  57276. image: {
  57277. source: "./media/characters/dex/front.svg",
  57278. extra: 787/680,
  57279. bottom: 18/805
  57280. }
  57281. },
  57282. side: {
  57283. height: math.unit(4 + 1/12, "feet"),
  57284. weight: math.unit(114, "lb"),
  57285. name: "Side",
  57286. image: {
  57287. source: "./media/characters/dex/side.svg",
  57288. extra: 785/680,
  57289. bottom: 12/797
  57290. }
  57291. },
  57292. back: {
  57293. height: math.unit(4 + 1/12, "feet"),
  57294. weight: math.unit(114, "lb"),
  57295. name: "Back",
  57296. image: {
  57297. source: "./media/characters/dex/back.svg",
  57298. extra: 785/681,
  57299. bottom: 17/802
  57300. }
  57301. },
  57302. loungewear: {
  57303. height: math.unit(4 + 1/12, "feet"),
  57304. weight: math.unit(114, "lb"),
  57305. name: "Loungewear",
  57306. image: {
  57307. source: "./media/characters/dex/loungewear.svg",
  57308. extra: 787/680,
  57309. bottom: 18/805
  57310. }
  57311. },
  57312. workout: {
  57313. height: math.unit(4 + 1/12, "feet"),
  57314. weight: math.unit(114, "lb"),
  57315. name: "Workout",
  57316. image: {
  57317. source: "./media/characters/dex/workout.svg",
  57318. extra: 787/680,
  57319. bottom: 18/805
  57320. }
  57321. },
  57322. schoolUniform: {
  57323. height: math.unit(4 + 1/12, "feet"),
  57324. weight: math.unit(114, "lb"),
  57325. name: "School-uniform",
  57326. image: {
  57327. source: "./media/characters/dex/school-uniform.svg",
  57328. extra: 787/680,
  57329. bottom: 18/805
  57330. }
  57331. },
  57332. maw: {
  57333. height: math.unit(0.55, "feet"),
  57334. name: "Maw",
  57335. image: {
  57336. source: "./media/characters/dex/maw.svg"
  57337. }
  57338. },
  57339. paw: {
  57340. height: math.unit(0.87, "feet"),
  57341. name: "Paw",
  57342. image: {
  57343. source: "./media/characters/dex/paw.svg"
  57344. }
  57345. },
  57346. bust: {
  57347. height: math.unit(1.67, "feet"),
  57348. name: "Bust",
  57349. image: {
  57350. source: "./media/characters/dex/bust.svg"
  57351. }
  57352. },
  57353. },
  57354. [
  57355. {
  57356. name: "Normal",
  57357. height: math.unit(4 + 1/12, "feet"),
  57358. default: true
  57359. },
  57360. ]
  57361. ))
  57362. characterMakers.push(() => makeCharacter(
  57363. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57364. {
  57365. front: {
  57366. height: math.unit(4 + 3/12, "feet"),
  57367. weight: math.unit(60, "lb"),
  57368. name: "Front",
  57369. image: {
  57370. source: "./media/characters/silke/front.svg",
  57371. extra: 1334/1122,
  57372. bottom: 21/1355
  57373. }
  57374. },
  57375. back: {
  57376. height: math.unit(4 + 3/12, "feet"),
  57377. weight: math.unit(60, "lb"),
  57378. name: "Back",
  57379. image: {
  57380. source: "./media/characters/silke/back.svg",
  57381. extra: 1328/1092,
  57382. bottom: 16/1344
  57383. }
  57384. },
  57385. dressed: {
  57386. height: math.unit(4 + 3/12, "feet"),
  57387. weight: math.unit(60, "lb"),
  57388. name: "Dressed",
  57389. image: {
  57390. source: "./media/characters/silke/dressed.svg",
  57391. extra: 1334/1122,
  57392. bottom: 43/1377
  57393. }
  57394. },
  57395. },
  57396. [
  57397. {
  57398. name: "Normal",
  57399. height: math.unit(4 + 3/12, "feet"),
  57400. default: true
  57401. },
  57402. ]
  57403. ))
  57404. characterMakers.push(() => makeCharacter(
  57405. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57406. {
  57407. front: {
  57408. height: math.unit(1.58, "meters"),
  57409. weight: math.unit(47, "kg"),
  57410. name: "Front",
  57411. image: {
  57412. source: "./media/characters/wireshark/front.svg",
  57413. extra: 883/838,
  57414. bottom: 66/949
  57415. }
  57416. },
  57417. },
  57418. [
  57419. {
  57420. name: "Normal",
  57421. height: math.unit(1.58, "meters"),
  57422. default: true
  57423. },
  57424. ]
  57425. ))
  57426. characterMakers.push(() => makeCharacter(
  57427. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57428. {
  57429. front: {
  57430. height: math.unit(6, "meters"),
  57431. weight: math.unit(15000, "kg"),
  57432. name: "Front",
  57433. image: {
  57434. source: "./media/characters/gallagher/front.svg",
  57435. extra: 532/493,
  57436. bottom: 0/532
  57437. }
  57438. },
  57439. },
  57440. [
  57441. {
  57442. name: "Normal",
  57443. height: math.unit(6, "meters"),
  57444. default: true
  57445. },
  57446. ]
  57447. ))
  57448. characterMakers.push(() => makeCharacter(
  57449. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57450. {
  57451. front: {
  57452. height: math.unit(2.4, "meters"),
  57453. weight: math.unit(270, "kg"),
  57454. name: "Front",
  57455. image: {
  57456. source: "./media/characters/alice/front.svg",
  57457. extra: 950/900,
  57458. bottom: 36/986
  57459. }
  57460. },
  57461. side: {
  57462. height: math.unit(2.4, "meters"),
  57463. weight: math.unit(270, "kg"),
  57464. name: "Side",
  57465. image: {
  57466. source: "./media/characters/alice/side.svg",
  57467. extra: 921/876,
  57468. bottom: 19/940
  57469. }
  57470. },
  57471. dressed: {
  57472. height: math.unit(2.4, "meters"),
  57473. weight: math.unit(270, "kg"),
  57474. name: "Dressed",
  57475. image: {
  57476. source: "./media/characters/alice/dressed.svg",
  57477. extra: 905/850,
  57478. bottom: 81/986
  57479. }
  57480. },
  57481. fishnet: {
  57482. height: math.unit(2.4, "meters"),
  57483. weight: math.unit(270, "kg"),
  57484. name: "Fishnet",
  57485. image: {
  57486. source: "./media/characters/alice/fishnet.svg",
  57487. extra: 905/850,
  57488. bottom: 81/986
  57489. }
  57490. },
  57491. },
  57492. [
  57493. {
  57494. name: "Normal",
  57495. height: math.unit(2.4, "meters"),
  57496. default: true
  57497. },
  57498. ]
  57499. ))
  57500. characterMakers.push(() => makeCharacter(
  57501. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57502. {
  57503. front: {
  57504. height: math.unit(175.25, "feet"),
  57505. name: "Front",
  57506. image: {
  57507. source: "./media/characters/fio/front.svg",
  57508. extra: 1883/1591,
  57509. bottom: 34/1917
  57510. }
  57511. },
  57512. },
  57513. [
  57514. {
  57515. name: "Normal",
  57516. height: math.unit(175.25, "cm"),
  57517. default: true
  57518. },
  57519. ]
  57520. ))
  57521. characterMakers.push(() => makeCharacter(
  57522. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57523. {
  57524. side: {
  57525. height: math.unit(6, "meters"),
  57526. weight: math.unit(3400, "kg"),
  57527. preyCapacity: math.unit(1700, "liters"),
  57528. name: "Side",
  57529. image: {
  57530. source: "./media/characters/hass/side.svg",
  57531. extra: 1058/997,
  57532. bottom: 177/1235
  57533. }
  57534. },
  57535. feeding: {
  57536. height: math.unit(6*0.63, "meters"),
  57537. weight: math.unit(3400, "kg"),
  57538. preyCapacity: math.unit(1700, "liters"),
  57539. name: "Feeding",
  57540. image: {
  57541. source: "./media/characters/hass/feeding.svg",
  57542. extra: 689/579,
  57543. bottom: 146/835
  57544. }
  57545. },
  57546. guts: {
  57547. height: math.unit(6, "meters"),
  57548. weight: math.unit(3400, "kg"),
  57549. name: "Guts",
  57550. image: {
  57551. source: "./media/characters/hass/guts.svg",
  57552. extra: 1223/1198,
  57553. bottom: 182/1405
  57554. }
  57555. },
  57556. dickFront: {
  57557. height: math.unit(1.4, "meters"),
  57558. name: "Dick (Front)",
  57559. image: {
  57560. source: "./media/characters/hass/dick-front.svg"
  57561. }
  57562. },
  57563. dickSide: {
  57564. height: math.unit(1.3, "meters"),
  57565. name: "Dick (Side)",
  57566. image: {
  57567. source: "./media/characters/hass/dick-side.svg"
  57568. }
  57569. },
  57570. dickBack: {
  57571. height: math.unit(1.4, "meters"),
  57572. name: "Dick (Back)",
  57573. image: {
  57574. source: "./media/characters/hass/dick-back.svg"
  57575. }
  57576. },
  57577. },
  57578. [
  57579. {
  57580. name: "Normal",
  57581. height: math.unit(6, "meters"),
  57582. default: true
  57583. },
  57584. ]
  57585. ))
  57586. characterMakers.push(() => makeCharacter(
  57587. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57588. {
  57589. front: {
  57590. height: math.unit(4, "feet"),
  57591. weight: math.unit(60, "lb"),
  57592. name: "Front",
  57593. image: {
  57594. source: "./media/characters/hickory-finnegan/front.svg",
  57595. extra: 444/411,
  57596. bottom: 10/454
  57597. }
  57598. },
  57599. side: {
  57600. height: math.unit(4, "feet"),
  57601. weight: math.unit(60, "lb"),
  57602. name: "Side",
  57603. image: {
  57604. source: "./media/characters/hickory-finnegan/side.svg",
  57605. extra: 444/411,
  57606. bottom: 10/454
  57607. }
  57608. },
  57609. back: {
  57610. height: math.unit(4, "feet"),
  57611. weight: math.unit(60, "lb"),
  57612. name: "Back",
  57613. image: {
  57614. source: "./media/characters/hickory-finnegan/back.svg",
  57615. extra: 444/411,
  57616. bottom: 10/454
  57617. }
  57618. },
  57619. },
  57620. [
  57621. {
  57622. name: "Normal",
  57623. height: math.unit(4, "feet"),
  57624. default: true
  57625. },
  57626. ]
  57627. ))
  57628. characterMakers.push(() => makeCharacter(
  57629. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57630. {
  57631. snivy_front: {
  57632. height: math.unit(2, "feet"),
  57633. weight: math.unit(17.9, "lb"),
  57634. name: "Front",
  57635. image: {
  57636. source: "./media/characters/robin-phox/snivy-front.svg",
  57637. extra: 569/504,
  57638. bottom: 33/602
  57639. },
  57640. form: "snivy",
  57641. default: true
  57642. },
  57643. snivy_frontNsfw: {
  57644. height: math.unit(2, "feet"),
  57645. weight: math.unit(17.9, "lb"),
  57646. name: "Front (NSFW)",
  57647. image: {
  57648. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57649. extra: 569/504,
  57650. bottom: 33/602
  57651. },
  57652. form: "snivy",
  57653. },
  57654. snivy_back: {
  57655. height: math.unit(2, "feet"),
  57656. weight: math.unit(17.9, "lb"),
  57657. name: "Back",
  57658. image: {
  57659. source: "./media/characters/robin-phox/snivy-back.svg",
  57660. extra: 577/508,
  57661. bottom: 21/598
  57662. },
  57663. form: "snivy",
  57664. },
  57665. snivy_foot: {
  57666. height: math.unit(0.68, "feet"),
  57667. name: "Foot",
  57668. image: {
  57669. source: "./media/characters/robin-phox/snivy-foot.svg"
  57670. },
  57671. form: "snivy",
  57672. },
  57673. snivy_sole: {
  57674. height: math.unit(0.68, "feet"),
  57675. name: "Sole",
  57676. image: {
  57677. source: "./media/characters/robin-phox/snivy-sole.svg"
  57678. },
  57679. form: "snivy",
  57680. },
  57681. yoshi_front: {
  57682. height: math.unit(6, "feet"),
  57683. weight: math.unit(150, "lb"),
  57684. name: "Front",
  57685. image: {
  57686. source: "./media/characters/robin-phox/yoshi-front.svg",
  57687. extra: 890/792,
  57688. bottom: 29/919
  57689. },
  57690. form: "yoshi",
  57691. default: true
  57692. },
  57693. yoshi_frontNsfw: {
  57694. height: math.unit(6, "feet"),
  57695. weight: math.unit(150, "lb"),
  57696. name: "Front (NSFW)",
  57697. image: {
  57698. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57699. extra: 890/792,
  57700. bottom: 29/919
  57701. },
  57702. form: "yoshi",
  57703. },
  57704. yoshi_back: {
  57705. height: math.unit(6, "feet"),
  57706. weight: math.unit(150, "lb"),
  57707. name: "Back",
  57708. image: {
  57709. source: "./media/characters/robin-phox/yoshi-back.svg",
  57710. extra: 890/792,
  57711. bottom: 29/919
  57712. },
  57713. form: "yoshi",
  57714. },
  57715. yoshi_foot: {
  57716. height: math.unit(1.5, "feet"),
  57717. name: "Foot",
  57718. image: {
  57719. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57720. },
  57721. form: "yoshi",
  57722. },
  57723. delphox_front: {
  57724. height: math.unit(4 + 11/12, "feet"),
  57725. weight: math.unit(86, "lb"),
  57726. name: "Front",
  57727. image: {
  57728. source: "./media/characters/robin-phox/delphox-front.svg",
  57729. extra: 1266/1069,
  57730. bottom: 32/1298
  57731. },
  57732. form: "delphox",
  57733. default: true
  57734. },
  57735. delphox_frontNsfw: {
  57736. height: math.unit(4 + 11/12, "feet"),
  57737. weight: math.unit(86, "lb"),
  57738. name: "Front (NSFW)",
  57739. image: {
  57740. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57741. extra: 1266/1069,
  57742. bottom: 32/1298
  57743. },
  57744. form: "delphox",
  57745. },
  57746. delphox_back: {
  57747. height: math.unit(4 + 11/12, "feet"),
  57748. weight: math.unit(86, "lb"),
  57749. name: "Back",
  57750. image: {
  57751. source: "./media/characters/robin-phox/delphox-back.svg",
  57752. extra: 1269/1083,
  57753. bottom: 15/1284
  57754. },
  57755. form: "delphox",
  57756. },
  57757. mienshao_front: {
  57758. height: math.unit(4 + 7/12, "feet"),
  57759. weight: math.unit(78.3, "lb"),
  57760. name: "Front",
  57761. image: {
  57762. source: "./media/characters/robin-phox/mienshao-front.svg",
  57763. extra: 1052/970,
  57764. bottom: 108/1160
  57765. },
  57766. form: "mienshao",
  57767. default: true
  57768. },
  57769. mienshao_frontNsfw: {
  57770. height: math.unit(4 + 7/12, "feet"),
  57771. weight: math.unit(78.3, "lb"),
  57772. name: "Front (NSFW)",
  57773. image: {
  57774. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57775. extra: 1052/970,
  57776. bottom: 108/1160
  57777. },
  57778. form: "mienshao",
  57779. },
  57780. mienshao_back: {
  57781. height: math.unit(4 + 7/12, "feet"),
  57782. weight: math.unit(78.3, "lb"),
  57783. name: "Back",
  57784. image: {
  57785. source: "./media/characters/robin-phox/mienshao-back.svg",
  57786. extra: 1102/982,
  57787. bottom: 32/1134
  57788. },
  57789. form: "mienshao",
  57790. },
  57791. inteleon_front: {
  57792. height: math.unit(6 + 3/12, "feet"),
  57793. weight: math.unit(99.6, "lb"),
  57794. name: "Front",
  57795. image: {
  57796. source: "./media/characters/robin-phox/inteleon-front.svg",
  57797. extra: 910/799,
  57798. bottom: 76/986
  57799. },
  57800. form: "inteleon",
  57801. default: true
  57802. },
  57803. inteleon_frontNsfw: {
  57804. height: math.unit(6 + 3/12, "feet"),
  57805. weight: math.unit(99.6, "lb"),
  57806. name: "Front (NSFW)",
  57807. image: {
  57808. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57809. extra: 910/799,
  57810. bottom: 76/986
  57811. },
  57812. form: "inteleon",
  57813. },
  57814. inteleon_back: {
  57815. height: math.unit(6 + 3/12, "feet"),
  57816. weight: math.unit(99.6, "lb"),
  57817. name: "Back",
  57818. image: {
  57819. source: "./media/characters/robin-phox/inteleon-back.svg",
  57820. extra: 907/796,
  57821. bottom: 25/932
  57822. },
  57823. form: "inteleon",
  57824. },
  57825. reshiram_front: {
  57826. height: math.unit(10 + 6/12, "feet"),
  57827. weight: math.unit(727.5, "lb"),
  57828. name: "Front",
  57829. image: {
  57830. source: "./media/characters/robin-phox/reshiram-front.svg",
  57831. extra: 1198/940,
  57832. bottom: 123/1321
  57833. },
  57834. form: "reshiram",
  57835. },
  57836. reshiram_frontNsfw: {
  57837. height: math.unit(10 + 6/12, "feet"),
  57838. weight: math.unit(727.5, "lb"),
  57839. name: "Front-nsfw",
  57840. image: {
  57841. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57842. extra: 1198/940,
  57843. bottom: 123/1321
  57844. },
  57845. form: "reshiram",
  57846. },
  57847. reshiram_back: {
  57848. height: math.unit(10 + 6/12, "feet"),
  57849. weight: math.unit(727.5, "lb"),
  57850. name: "Back",
  57851. image: {
  57852. source: "./media/characters/robin-phox/reshiram-back.svg",
  57853. extra: 1024/904,
  57854. bottom: 85/1109
  57855. },
  57856. form: "reshiram",
  57857. },
  57858. samurott_front: {
  57859. height: math.unit(8, "feet"),
  57860. weight: math.unit(208.6, "lb"),
  57861. name: "Front",
  57862. image: {
  57863. source: "./media/characters/robin-phox/samurott-front.svg",
  57864. extra: 1048/984,
  57865. bottom: 100/1148
  57866. },
  57867. form: "samurott",
  57868. },
  57869. samurott_frontNsfw: {
  57870. height: math.unit(8, "feet"),
  57871. weight: math.unit(208.6, "lb"),
  57872. name: "Front-nsfw",
  57873. image: {
  57874. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57875. extra: 1048/984,
  57876. bottom: 100/1148
  57877. },
  57878. form: "samurott",
  57879. },
  57880. samurott_back: {
  57881. height: math.unit(8, "feet"),
  57882. weight: math.unit(208.6, "lb"),
  57883. name: "Back",
  57884. image: {
  57885. source: "./media/characters/robin-phox/samurott-back.svg",
  57886. extra: 1110/1042,
  57887. bottom: 12/1122
  57888. },
  57889. form: "samurott",
  57890. },
  57891. samurott_feral: {
  57892. height: math.unit(4 + 11/12, "feet"),
  57893. weight: math.unit(208.6, "lb"),
  57894. name: "Feral",
  57895. image: {
  57896. source: "./media/characters/robin-phox/samurott-feral.svg",
  57897. extra: 766/681,
  57898. bottom: 108/874
  57899. },
  57900. form: "samurott",
  57901. },
  57902. },
  57903. [
  57904. {
  57905. name: "Normal",
  57906. height: math.unit(2, "feet"),
  57907. default: true,
  57908. form: "snivy"
  57909. },
  57910. {
  57911. name: "Normal",
  57912. height: math.unit(6, "feet"),
  57913. default: true,
  57914. form: "yoshi"
  57915. },
  57916. {
  57917. name: "Normal",
  57918. height: math.unit(4 + 11/12, "feet"),
  57919. default: true,
  57920. form: "delphox"
  57921. },
  57922. {
  57923. name: "Normal",
  57924. height: math.unit(4 + 7/12, "feet"),
  57925. default: true,
  57926. form: "mienshao"
  57927. },
  57928. {
  57929. name: "Normal",
  57930. height: math.unit(6 + 3/12, "feet"),
  57931. default: true,
  57932. form: "inteleon"
  57933. },
  57934. {
  57935. name: "Normal",
  57936. height: math.unit(10 + 6/12, "feet"),
  57937. default: true,
  57938. form: "reshiram"
  57939. },
  57940. {
  57941. name: "Normal",
  57942. height: math.unit(8, "feet"),
  57943. default: true,
  57944. form: "samurott"
  57945. },
  57946. {
  57947. name: "Macro",
  57948. height: math.unit(500, "feet"),
  57949. allForms: true
  57950. },
  57951. {
  57952. name: "Mega Macro",
  57953. height: math.unit(10, "earths"),
  57954. allForms: true
  57955. },
  57956. {
  57957. name: "Giga Macro",
  57958. height: math.unit(1, "galaxy"),
  57959. allForms: true
  57960. },
  57961. {
  57962. name: "Godly Macro",
  57963. height: math.unit(1e10, "multiverses"),
  57964. allForms: true
  57965. },
  57966. ],
  57967. {
  57968. "snivy": {
  57969. name: "Snivy",
  57970. default: true
  57971. },
  57972. "yoshi": {
  57973. name: "Yoshi",
  57974. },
  57975. "delphox": {
  57976. name: "Delphox",
  57977. },
  57978. "mienshao": {
  57979. name: "Mienshao",
  57980. },
  57981. "inteleon": {
  57982. name: "Inteleon",
  57983. },
  57984. "reshiram": {
  57985. name: "Reshiram",
  57986. },
  57987. "samurott": {
  57988. name: "Samurott",
  57989. },
  57990. }
  57991. ))
  57992. characterMakers.push(() => makeCharacter(
  57993. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57994. {
  57995. front: {
  57996. height: math.unit(4, "feet"),
  57997. name: "Front",
  57998. image: {
  57999. source: "./media/characters/ash-leung/front.svg",
  58000. extra: 1916/1792,
  58001. bottom: 50/1966
  58002. }
  58003. },
  58004. },
  58005. [
  58006. {
  58007. name: "Atomic",
  58008. height: math.unit(1, "angstrom")
  58009. },
  58010. {
  58011. name: "Microscopic",
  58012. height: math.unit(4000, "angstroms")
  58013. },
  58014. {
  58015. name: "Speck",
  58016. height: math.unit(1, "mm")
  58017. },
  58018. {
  58019. name: "Small",
  58020. height: math.unit(1, "inch")
  58021. },
  58022. {
  58023. name: "Normal",
  58024. height: math.unit(4, "feet"),
  58025. default: true
  58026. },
  58027. ]
  58028. ))
  58029. characterMakers.push(() => makeCharacter(
  58030. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58031. {
  58032. frontDressed: {
  58033. height: math.unit(2.08, "meters"),
  58034. weight: math.unit(175, "lb"),
  58035. name: "Front (Dressed)",
  58036. image: {
  58037. source: "./media/characters/carie/front-dressed.svg",
  58038. extra: 456/417,
  58039. bottom: 7/463
  58040. }
  58041. },
  58042. backDressed: {
  58043. height: math.unit(2.08, "meters"),
  58044. weight: math.unit(175, "lb"),
  58045. name: "Back (Dressed)",
  58046. image: {
  58047. source: "./media/characters/carie/back-dressed.svg",
  58048. extra: 455/414,
  58049. bottom: 11/466
  58050. }
  58051. },
  58052. front: {
  58053. height: math.unit(2, "meters"),
  58054. weight: math.unit(175, "lb"),
  58055. name: "Front",
  58056. image: {
  58057. source: "./media/characters/carie/front.svg",
  58058. extra: 438/399,
  58059. bottom: 12/450
  58060. }
  58061. },
  58062. back: {
  58063. height: math.unit(2, "meters"),
  58064. weight: math.unit(175, "lb"),
  58065. name: "Back",
  58066. image: {
  58067. source: "./media/characters/carie/back.svg",
  58068. extra: 438/397,
  58069. bottom: 7/445
  58070. }
  58071. },
  58072. },
  58073. [
  58074. {
  58075. name: "Normal",
  58076. height: math.unit(2.08, "meters"),
  58077. default: true
  58078. },
  58079. {
  58080. name: "Macro",
  58081. height: math.unit(2.08e3, "meters")
  58082. },
  58083. {
  58084. name: "Mega Macro",
  58085. height: math.unit(2.08e6, "meters")
  58086. },
  58087. {
  58088. name: "Giga Macro",
  58089. height: math.unit(2.08e9, "meters")
  58090. },
  58091. {
  58092. name: "Tera Macro",
  58093. height: math.unit(2.08e12, "meters")
  58094. },
  58095. {
  58096. name: "Peta Macro",
  58097. height: math.unit(2.08e15, "meters")
  58098. },
  58099. {
  58100. name: "Exa Macro",
  58101. height: math.unit(2.08e18, "meters")
  58102. },
  58103. {
  58104. name: "Zetta Macro",
  58105. height: math.unit(2.08e21, "meters")
  58106. },
  58107. {
  58108. name: "Yotta Macro",
  58109. height: math.unit(2.08e24, "meters")
  58110. },
  58111. ]
  58112. ))
  58113. characterMakers.push(() => makeCharacter(
  58114. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58115. {
  58116. front: {
  58117. height: math.unit(5 + 2/12, "feet"),
  58118. weight: math.unit(120, "lb"),
  58119. name: "Front",
  58120. image: {
  58121. source: "./media/characters/sai-bree/front.svg",
  58122. extra: 1843/1702,
  58123. bottom: 91/1934
  58124. }
  58125. },
  58126. back: {
  58127. height: math.unit(5 + 2/12, "feet"),
  58128. weight: math.unit(120, "lb"),
  58129. name: "Back",
  58130. image: {
  58131. source: "./media/characters/sai-bree/back.svg",
  58132. extra: 1809/1637,
  58133. bottom: 56/1865
  58134. }
  58135. },
  58136. },
  58137. [
  58138. {
  58139. name: "Normal",
  58140. height: math.unit(5 + 2/12, "feet"),
  58141. default: true
  58142. },
  58143. {
  58144. name: "Macro",
  58145. height: math.unit(500, "feet")
  58146. },
  58147. ]
  58148. ))
  58149. characterMakers.push(() => makeCharacter(
  58150. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58151. {
  58152. side: {
  58153. height: math.unit(0.77, "meters"),
  58154. weight: math.unit(120, "lb"),
  58155. name: "Side",
  58156. image: {
  58157. source: "./media/characters/davwyn/side.svg",
  58158. extra: 1557/1225,
  58159. bottom: 131/1688
  58160. }
  58161. },
  58162. front: {
  58163. height: math.unit(0.835410, "meters"),
  58164. weight: math.unit(120, "lb"),
  58165. name: "Front",
  58166. image: {
  58167. source: "./media/characters/davwyn/front.svg",
  58168. extra: 870/843,
  58169. bottom: 175/1045
  58170. }
  58171. },
  58172. },
  58173. [
  58174. {
  58175. name: "Minidrake",
  58176. height: math.unit(0.77/4, "meters")
  58177. },
  58178. {
  58179. name: "Normal",
  58180. height: math.unit(0.77, "meters"),
  58181. default: true
  58182. },
  58183. ]
  58184. ))
  58185. characterMakers.push(() => makeCharacter(
  58186. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58187. {
  58188. front: {
  58189. height: math.unit(10 + 3/12, "feet"),
  58190. weight: math.unit(2857, "lb"),
  58191. name: "Front",
  58192. image: {
  58193. source: "./media/characters/balans/front.svg",
  58194. extra: 427/402,
  58195. bottom: 26/453
  58196. }
  58197. },
  58198. side: {
  58199. height: math.unit(10 + 3/12, "feet"),
  58200. weight: math.unit(2857, "lb"),
  58201. name: "Side",
  58202. image: {
  58203. source: "./media/characters/balans/side.svg",
  58204. extra: 397/371,
  58205. bottom: 17/414
  58206. }
  58207. },
  58208. back: {
  58209. height: math.unit(10 + 3/12, "feet"),
  58210. weight: math.unit(2857, "lb"),
  58211. name: "Back",
  58212. image: {
  58213. source: "./media/characters/balans/back.svg",
  58214. extra: 408/381,
  58215. bottom: 14/422
  58216. }
  58217. },
  58218. hand: {
  58219. height: math.unit(1.15, "feet"),
  58220. name: "Hand",
  58221. image: {
  58222. source: "./media/characters/balans/hand.svg"
  58223. }
  58224. },
  58225. footRest: {
  58226. height: math.unit(3.1, "feet"),
  58227. name: "Foot (Rest)",
  58228. image: {
  58229. source: "./media/characters/balans/foot-rest.svg"
  58230. }
  58231. },
  58232. footActive: {
  58233. height: math.unit(3.5, "feet"),
  58234. name: "Foot (Active)",
  58235. image: {
  58236. source: "./media/characters/balans/foot-active.svg"
  58237. }
  58238. },
  58239. },
  58240. [
  58241. {
  58242. name: "Normal",
  58243. height: math.unit(10 + 3/12, "feet"),
  58244. default: true
  58245. },
  58246. ]
  58247. ))
  58248. characterMakers.push(() => makeCharacter(
  58249. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58250. {
  58251. side: {
  58252. height: math.unit(9, "meters"),
  58253. weight: math.unit(114, "tonnes"),
  58254. name: "Side",
  58255. image: {
  58256. source: "./media/characters/eldkveikir/side.svg",
  58257. extra: 1927/338,
  58258. bottom: 42/1969
  58259. }
  58260. },
  58261. sitting: {
  58262. height: math.unit(13.4, "meters"),
  58263. weight: math.unit(114, "tonnes"),
  58264. name: "Sitting",
  58265. image: {
  58266. source: "./media/characters/eldkveikir/sitting.svg",
  58267. extra: 1108/963,
  58268. bottom: 610/1718
  58269. }
  58270. },
  58271. maw: {
  58272. height: math.unit(8.36, "meters"),
  58273. name: "Maw",
  58274. image: {
  58275. source: "./media/characters/eldkveikir/maw.svg"
  58276. }
  58277. },
  58278. hand: {
  58279. height: math.unit(4.84, "meters"),
  58280. name: "Hand",
  58281. image: {
  58282. source: "./media/characters/eldkveikir/hand.svg"
  58283. }
  58284. },
  58285. foot: {
  58286. height: math.unit(6.9, "meters"),
  58287. name: "Foot",
  58288. image: {
  58289. source: "./media/characters/eldkveikir/foot.svg"
  58290. }
  58291. },
  58292. genitals: {
  58293. height: math.unit(9.6, "meters"),
  58294. name: "Genitals",
  58295. image: {
  58296. source: "./media/characters/eldkveikir/genitals.svg"
  58297. }
  58298. },
  58299. },
  58300. [
  58301. {
  58302. name: "Normal",
  58303. height: math.unit(9, "meters"),
  58304. default: true
  58305. },
  58306. ]
  58307. ))
  58308. characterMakers.push(() => makeCharacter(
  58309. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58310. {
  58311. front: {
  58312. height: math.unit(14, "feet"),
  58313. weight: math.unit(4100, "lb"),
  58314. name: "Front",
  58315. image: {
  58316. source: "./media/characters/arrow/front.svg",
  58317. extra: 330/318,
  58318. bottom: 56/386
  58319. }
  58320. },
  58321. },
  58322. [
  58323. {
  58324. name: "Normal",
  58325. height: math.unit(14, "feet"),
  58326. default: true
  58327. },
  58328. {
  58329. name: "Minimacro",
  58330. height: math.unit(63, "feet")
  58331. },
  58332. {
  58333. name: "Macro",
  58334. height: math.unit(630, "feet")
  58335. },
  58336. {
  58337. name: "Megamacro",
  58338. height: math.unit(12600, "feet")
  58339. },
  58340. {
  58341. name: "Gigamacro",
  58342. height: math.unit(18000, "miles")
  58343. },
  58344. ]
  58345. ))
  58346. characterMakers.push(() => makeCharacter(
  58347. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58348. {
  58349. front: {
  58350. height: math.unit(10, "feet"),
  58351. weight: math.unit(2.4, "tons"),
  58352. name: "Front",
  58353. image: {
  58354. source: "./media/characters/3yk-k0-unit/front.svg",
  58355. extra: 573/561,
  58356. bottom: 33/606
  58357. }
  58358. },
  58359. back: {
  58360. height: math.unit(10, "feet"),
  58361. weight: math.unit(2.4, "tons"),
  58362. name: "Back",
  58363. image: {
  58364. source: "./media/characters/3yk-k0-unit/back.svg",
  58365. extra: 614/573,
  58366. bottom: 32/646
  58367. }
  58368. },
  58369. maw: {
  58370. height: math.unit(2.15, "feet"),
  58371. name: "Maw",
  58372. image: {
  58373. source: "./media/characters/3yk-k0-unit/maw.svg"
  58374. }
  58375. },
  58376. },
  58377. [
  58378. {
  58379. name: "Normal",
  58380. height: math.unit(10, "feet"),
  58381. default: true
  58382. },
  58383. ]
  58384. ))
  58385. characterMakers.push(() => makeCharacter(
  58386. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58387. {
  58388. front: {
  58389. height: math.unit(8 + 8/12, "feet"),
  58390. name: "Front",
  58391. image: {
  58392. source: "./media/characters/nemo/front.svg",
  58393. extra: 1308/1217,
  58394. bottom: 57/1365
  58395. }
  58396. },
  58397. },
  58398. [
  58399. {
  58400. name: "Normal",
  58401. height: math.unit(8 + 8/12, "feet"),
  58402. default: true
  58403. },
  58404. ]
  58405. ))
  58406. characterMakers.push(() => makeCharacter(
  58407. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58408. {
  58409. front: {
  58410. height: math.unit(8, "feet"),
  58411. weight: math.unit(760, "lb"),
  58412. name: "Front",
  58413. image: {
  58414. source: "./media/characters/rexx/front.svg",
  58415. extra: 786/750,
  58416. bottom: 17/803
  58417. },
  58418. extraAttributes: {
  58419. "pawLength": {
  58420. name: "Paw Length",
  58421. power: 1,
  58422. type: "length",
  58423. base: math.unit(27, "inches")
  58424. },
  58425. }
  58426. },
  58427. },
  58428. [
  58429. {
  58430. name: "Micro",
  58431. height: math.unit(2, "inches")
  58432. },
  58433. {
  58434. name: "Normal",
  58435. height: math.unit(8, "feet"),
  58436. default: true
  58437. },
  58438. {
  58439. name: "Macro",
  58440. height: math.unit(150, "feet")
  58441. },
  58442. ]
  58443. ))
  58444. characterMakers.push(() => makeCharacter(
  58445. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58446. {
  58447. front: {
  58448. height: math.unit(18, "feet"),
  58449. weight: math.unit(1975, "lb"),
  58450. name: "Front",
  58451. image: {
  58452. source: "./media/characters/draco/front.svg",
  58453. extra: 1325/1241,
  58454. bottom: 83/1408
  58455. }
  58456. },
  58457. back: {
  58458. height: math.unit(18, "feet"),
  58459. weight: math.unit(1975, "lb"),
  58460. name: "Back",
  58461. image: {
  58462. source: "./media/characters/draco/back.svg",
  58463. extra: 1332/1250,
  58464. bottom: 43/1375
  58465. }
  58466. },
  58467. dick: {
  58468. height: math.unit(7.5, "feet"),
  58469. name: "Dick",
  58470. image: {
  58471. source: "./media/characters/draco/dick.svg"
  58472. }
  58473. },
  58474. },
  58475. [
  58476. {
  58477. name: "Normal",
  58478. height: math.unit(18, "feet"),
  58479. default: true
  58480. },
  58481. ]
  58482. ))
  58483. characterMakers.push(() => makeCharacter(
  58484. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58485. {
  58486. front: {
  58487. height: math.unit(3.2, "meters"),
  58488. name: "Front",
  58489. image: {
  58490. source: "./media/characters/harriett/front.svg",
  58491. extra: 1966/1915,
  58492. bottom: 9/1975
  58493. }
  58494. },
  58495. },
  58496. [
  58497. {
  58498. name: "Normal",
  58499. height: math.unit(3.2, "meters"),
  58500. default: true
  58501. },
  58502. ]
  58503. ))
  58504. characterMakers.push(() => makeCharacter(
  58505. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58506. {
  58507. sitting: {
  58508. height: math.unit(0.8, "meter"),
  58509. name: "Sitting",
  58510. image: {
  58511. source: "./media/characters/serpentus/sitting.svg",
  58512. extra: 293/290,
  58513. bottom: 140/433
  58514. }
  58515. },
  58516. },
  58517. [
  58518. {
  58519. name: "Normal",
  58520. height: math.unit(0.8, "meter"),
  58521. default: true
  58522. },
  58523. ]
  58524. ))
  58525. characterMakers.push(() => makeCharacter(
  58526. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58527. {
  58528. front: {
  58529. height: math.unit(5.7174385736, "feet"),
  58530. name: "Front",
  58531. image: {
  58532. source: "./media/characters/nova-polecat/front.svg",
  58533. extra: 1317/1216,
  58534. bottom: 92/1409
  58535. }
  58536. },
  58537. },
  58538. [
  58539. {
  58540. name: "Normal",
  58541. height: math.unit(5.7174385736, "feet"),
  58542. default: true
  58543. },
  58544. ]
  58545. ))
  58546. characterMakers.push(() => makeCharacter(
  58547. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58548. {
  58549. front: {
  58550. height: math.unit(5 + 4/12, "feet"),
  58551. weight: math.unit(250, "lb"),
  58552. name: "Front",
  58553. image: {
  58554. source: "./media/characters/mook/front.svg",
  58555. extra: 1088/1037,
  58556. bottom: 132/1220
  58557. }
  58558. },
  58559. back: {
  58560. height: math.unit(5 + 1/12, "feet"),
  58561. weight: math.unit(250, "lb"),
  58562. name: "Back",
  58563. image: {
  58564. source: "./media/characters/mook/back.svg",
  58565. extra: 1184/905,
  58566. bottom: 96/1280
  58567. }
  58568. },
  58569. head: {
  58570. height: math.unit(1.85, "feet"),
  58571. name: "Head",
  58572. image: {
  58573. source: "./media/characters/mook/head.svg"
  58574. }
  58575. },
  58576. hand: {
  58577. height: math.unit(1.9, "feet"),
  58578. name: "Hand",
  58579. image: {
  58580. source: "./media/characters/mook/hand.svg"
  58581. }
  58582. },
  58583. palm: {
  58584. height: math.unit(1.84, "feet"),
  58585. name: "Palm",
  58586. image: {
  58587. source: "./media/characters/mook/palm.svg"
  58588. }
  58589. },
  58590. foot: {
  58591. height: math.unit(1.44, "feet"),
  58592. name: "Foot",
  58593. image: {
  58594. source: "./media/characters/mook/foot.svg"
  58595. }
  58596. },
  58597. sole: {
  58598. height: math.unit(1.44, "feet"),
  58599. name: "Sole",
  58600. image: {
  58601. source: "./media/characters/mook/sole.svg"
  58602. }
  58603. },
  58604. },
  58605. [
  58606. {
  58607. name: "Normal",
  58608. height: math.unit(5 + 4/12, "feet"),
  58609. default: true
  58610. },
  58611. {
  58612. name: "Big",
  58613. height: math.unit(12, "feet")
  58614. },
  58615. ]
  58616. ))
  58617. characterMakers.push(() => makeCharacter(
  58618. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58619. {
  58620. front: {
  58621. height: math.unit(6 + 10/12, "feet"),
  58622. weight: math.unit(233, "lb"),
  58623. name: "Front",
  58624. image: {
  58625. source: "./media/characters/kayla/front.svg",
  58626. extra: 1850/1775,
  58627. bottom: 65/1915
  58628. }
  58629. },
  58630. },
  58631. [
  58632. {
  58633. name: "Normal",
  58634. height: math.unit(6 + 10/12, "feet"),
  58635. default: true
  58636. },
  58637. {
  58638. name: "Amazonian",
  58639. height: math.unit(12 + 5/12, "feet")
  58640. },
  58641. {
  58642. name: "Mini Giantess",
  58643. height: math.unit(26, "feet")
  58644. },
  58645. {
  58646. name: "Giantess",
  58647. height: math.unit(200, "feet")
  58648. },
  58649. {
  58650. name: "Mega Giantess",
  58651. height: math.unit(2500, "feet")
  58652. },
  58653. {
  58654. name: "City Sized",
  58655. height: math.unit(50, "miles")
  58656. },
  58657. {
  58658. name: "Country Sized",
  58659. height: math.unit(500, "miles")
  58660. },
  58661. {
  58662. name: "Continent Sized",
  58663. height: math.unit(2500, "miles")
  58664. },
  58665. {
  58666. name: "Planet Sized",
  58667. height: math.unit(10000, "miles")
  58668. },
  58669. {
  58670. name: "Star Sized",
  58671. height: math.unit(5e6, "miles")
  58672. },
  58673. {
  58674. name: "Solar System Sized",
  58675. height: math.unit(125, "AU")
  58676. },
  58677. {
  58678. name: "Galaxy Sized",
  58679. height: math.unit(300e3, "lightyears")
  58680. },
  58681. {
  58682. name: "Universe Sized",
  58683. height: math.unit(200e9, "lightyears")
  58684. },
  58685. {
  58686. name: "Multiverse Sized",
  58687. height: math.unit(20, "exauniverses")
  58688. },
  58689. {
  58690. name: "Mother of Existence",
  58691. height: math.unit(1e6, "yottauniverses")
  58692. },
  58693. ]
  58694. ))
  58695. characterMakers.push(() => makeCharacter(
  58696. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58697. {
  58698. side: {
  58699. height: math.unit(9.5, "meters"),
  58700. name: "Side",
  58701. image: {
  58702. source: "./media/characters/kulve-ragnarok/side.svg",
  58703. extra: 364/326,
  58704. bottom: 50/414
  58705. }
  58706. },
  58707. },
  58708. [
  58709. {
  58710. name: "Normal",
  58711. height: math.unit(9.5, "meters"),
  58712. default: true
  58713. },
  58714. ]
  58715. ))
  58716. characterMakers.push(() => makeCharacter(
  58717. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58718. {
  58719. front: {
  58720. height: math.unit(8 + 9/12, "feet"),
  58721. name: "Front",
  58722. image: {
  58723. source: "./media/characters/atlas-goat/front.svg",
  58724. extra: 1462/1323,
  58725. bottom: 12/1474
  58726. }
  58727. },
  58728. },
  58729. [
  58730. {
  58731. name: "Normal",
  58732. height: math.unit(8 + 9/12, "feet"),
  58733. default: true
  58734. },
  58735. {
  58736. name: "Skyline",
  58737. height: math.unit(845, "feet")
  58738. },
  58739. {
  58740. name: "Orbital",
  58741. height: math.unit(93000, "miles")
  58742. },
  58743. {
  58744. name: "Constellation",
  58745. height: math.unit(27000, "lightyears")
  58746. },
  58747. ]
  58748. ))
  58749. characterMakers.push(() => makeCharacter(
  58750. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58751. {
  58752. side: {
  58753. height: math.unit(1.8, "meters"),
  58754. weight: math.unit(120, "kg"),
  58755. name: "Side",
  58756. image: {
  58757. source: "./media/characters/xie-ling/side.svg",
  58758. extra: 646/574,
  58759. bottom: 44/690
  58760. }
  58761. },
  58762. },
  58763. [
  58764. {
  58765. name: "Tiny",
  58766. height: math.unit(1.80, "meters")
  58767. },
  58768. {
  58769. name: "Small",
  58770. height: math.unit(6, "meters")
  58771. },
  58772. {
  58773. name: "Medium",
  58774. height: math.unit(15, "meters")
  58775. },
  58776. {
  58777. name: "Normal",
  58778. height: math.unit(30, "meters"),
  58779. default: true
  58780. },
  58781. {
  58782. name: "Above Normal",
  58783. height: math.unit(60, "meters")
  58784. },
  58785. {
  58786. name: "Big",
  58787. height: math.unit(220, "meters")
  58788. },
  58789. {
  58790. name: "Giant",
  58791. height: math.unit(2.2, "km")
  58792. },
  58793. {
  58794. name: "Macro",
  58795. height: math.unit(25, "km")
  58796. },
  58797. {
  58798. name: "Mega Macro",
  58799. height: math.unit(350, "km")
  58800. },
  58801. {
  58802. name: "Mega Macro+",
  58803. height: math.unit(5000, "km")
  58804. },
  58805. {
  58806. name: "Goddess",
  58807. height: math.unit(3, "multiverses")
  58808. },
  58809. ]
  58810. ))
  58811. characterMakers.push(() => makeCharacter(
  58812. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58813. {
  58814. frontSfw: {
  58815. height: math.unit(5 + 11/12, "feet"),
  58816. weight: math.unit(210, "lb"),
  58817. name: "Front",
  58818. image: {
  58819. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58820. extra: 1928/1821,
  58821. bottom: 45/1973
  58822. }
  58823. },
  58824. backSfw: {
  58825. height: math.unit(5 + 11/12, "feet"),
  58826. weight: math.unit(210, "lb"),
  58827. name: "Back",
  58828. image: {
  58829. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58830. extra: 1920/1813,
  58831. bottom: 34/1954
  58832. }
  58833. },
  58834. frontNsfw: {
  58835. height: math.unit(5 + 11/12, "feet"),
  58836. weight: math.unit(210, "lb"),
  58837. name: "Front (NSFW)",
  58838. image: {
  58839. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58840. extra: 1928/1821,
  58841. bottom: 45/1973
  58842. }
  58843. },
  58844. backNsfw: {
  58845. height: math.unit(5 + 11/12, "feet"),
  58846. weight: math.unit(210, "lb"),
  58847. name: "Back (NSFW)",
  58848. image: {
  58849. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58850. extra: 1920/1813,
  58851. bottom: 34/1954
  58852. }
  58853. },
  58854. },
  58855. [
  58856. {
  58857. name: "Normal",
  58858. height: math.unit(5 + 11/12, "feet"),
  58859. default: true
  58860. },
  58861. {
  58862. name: "Goddess",
  58863. height: math.unit(20 + 3/12, "feet")
  58864. },
  58865. {
  58866. name: "Breaker of Man",
  58867. height: math.unit(329 + 9/12, "feet")
  58868. },
  58869. {
  58870. name: "Solar Justice",
  58871. height: math.unit(0.6, "solarradii")
  58872. },
  58873. {
  58874. name: "She Who Judges",
  58875. height: math.unit(1, "universe")
  58876. },
  58877. ]
  58878. ))
  58879. characterMakers.push(() => makeCharacter(
  58880. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58881. {
  58882. casual_front: {
  58883. height: math.unit(6 + 1/12, "feet"),
  58884. weight: math.unit(190, "lb"),
  58885. preyCapacity: math.unit(1, "people"),
  58886. name: "Front",
  58887. image: {
  58888. source: "./media/characters/managarmr/casual-front.svg",
  58889. extra: 411/381,
  58890. bottom: 15/426
  58891. },
  58892. extraAttributes: {
  58893. "pawSize": {
  58894. name: "Paw Size",
  58895. power: 1,
  58896. type: "length",
  58897. base: math.unit(0.2, "meters")
  58898. },
  58899. },
  58900. form: "casual",
  58901. },
  58902. casual_back: {
  58903. height: math.unit(6 + 1/12, "feet"),
  58904. weight: math.unit(190, "lb"),
  58905. preyCapacity: math.unit(1, "people"),
  58906. name: "Back",
  58907. image: {
  58908. source: "./media/characters/managarmr/casual-back.svg",
  58909. extra: 413/383,
  58910. bottom: 13/426
  58911. },
  58912. extraAttributes: {
  58913. "pawSize": {
  58914. name: "Paw Size",
  58915. power: 1,
  58916. type: "length",
  58917. base: math.unit(0.2, "meters")
  58918. },
  58919. },
  58920. form: "casual",
  58921. },
  58922. base_front: {
  58923. height: math.unit(7, "feet"),
  58924. weight: math.unit(210, "lb"),
  58925. preyCapacity: math.unit(2, "people"),
  58926. name: "Front",
  58927. image: {
  58928. source: "./media/characters/managarmr/base-front.svg",
  58929. extra: 580/485,
  58930. bottom: 32/612
  58931. },
  58932. extraAttributes: {
  58933. "wingspan": {
  58934. name: "Wingspan",
  58935. power: 1,
  58936. type: "length",
  58937. base: math.unit(4, "meters")
  58938. },
  58939. "pawSize": {
  58940. name: "Paw Size",
  58941. power: 1,
  58942. type: "length",
  58943. base: math.unit(0.2, "meters")
  58944. },
  58945. },
  58946. form: "base",
  58947. },
  58948. "true-divine_front": {
  58949. height: math.unit(40, "feet"),
  58950. weight: math.unit(39000, "lb"),
  58951. preyCapacity: math.unit(375, "people"),
  58952. name: "Front",
  58953. image: {
  58954. source: "./media/characters/managarmr/true-divine-front.svg",
  58955. extra: 725/573,
  58956. bottom: 120/845
  58957. },
  58958. extraAttributes: {
  58959. "wingspan": {
  58960. name: "Wingspan",
  58961. power: 1,
  58962. type: "length",
  58963. base: math.unit(20, "meters")
  58964. },
  58965. "pawSize": {
  58966. name: "Paw Size",
  58967. power: 1,
  58968. type: "length",
  58969. base: math.unit(1.5, "meters")
  58970. },
  58971. },
  58972. form: "true-divine",
  58973. },
  58974. },
  58975. [
  58976. {
  58977. name: "Normal",
  58978. height: math.unit(6 + 1/12, "feet"),
  58979. form: "casual",
  58980. default: true
  58981. },
  58982. {
  58983. name: "Normal",
  58984. height: math.unit(7, "feet"),
  58985. form: "base",
  58986. default: true
  58987. },
  58988. ],
  58989. {
  58990. "casual": {
  58991. name: "Casual",
  58992. default: true
  58993. },
  58994. "base": {
  58995. name: "Base",
  58996. },
  58997. "true-divine": {
  58998. name: "True Divine",
  58999. },
  59000. }
  59001. ))
  59002. characterMakers.push(() => makeCharacter(
  59003. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59004. {
  59005. front: {
  59006. height: math.unit(1.8, "meters"),
  59007. weight: math.unit(110, "kg"),
  59008. name: "Front",
  59009. image: {
  59010. source: "./media/characters/mystra/front.svg",
  59011. extra: 529/442,
  59012. bottom: 31/560
  59013. }
  59014. },
  59015. frontLewd: {
  59016. height: math.unit(1.8, "meters"),
  59017. weight: math.unit(110, "kg"),
  59018. name: "Front (Lewd)",
  59019. image: {
  59020. source: "./media/characters/mystra/front-lewd.svg",
  59021. extra: 529/442,
  59022. bottom: 31/560
  59023. }
  59024. },
  59025. head: {
  59026. height: math.unit(1.63, "feet"),
  59027. name: "Head",
  59028. image: {
  59029. source: "./media/characters/mystra/head.svg"
  59030. }
  59031. },
  59032. paw: {
  59033. height: math.unit(1.9, "feet"),
  59034. name: "Paw",
  59035. image: {
  59036. source: "./media/characters/mystra/paw.svg"
  59037. }
  59038. },
  59039. },
  59040. [
  59041. {
  59042. name: "Incognito",
  59043. height: math.unit(2.3, "meters")
  59044. },
  59045. {
  59046. name: "Small Macro",
  59047. height: math.unit(300, "meters")
  59048. },
  59049. {
  59050. name: "Small Mega",
  59051. height: math.unit(2, "km")
  59052. },
  59053. {
  59054. name: "Mega",
  59055. height: math.unit(30, "km")
  59056. },
  59057. {
  59058. name: "Small Giga",
  59059. height: math.unit(100, "km")
  59060. },
  59061. {
  59062. name: "Giga",
  59063. height: math.unit(1000, "km"),
  59064. default: true
  59065. },
  59066. {
  59067. name: "Continental",
  59068. height: math.unit(5000, "km")
  59069. },
  59070. {
  59071. name: "Terra",
  59072. height: math.unit(20000, "km")
  59073. },
  59074. {
  59075. name: "Solar",
  59076. height: math.unit(2e6, "km")
  59077. },
  59078. {
  59079. name: "Galactic",
  59080. height: math.unit(528502, "lightyears")
  59081. },
  59082. {
  59083. name: "Universal",
  59084. height: math.unit(20, "universes")
  59085. },
  59086. ]
  59087. ))
  59088. characterMakers.push(() => makeCharacter(
  59089. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59090. {
  59091. front: {
  59092. height: math.unit(2, "meters"),
  59093. weight: math.unit(140, "kg"),
  59094. name: "Front",
  59095. image: {
  59096. source: "./media/characters/caleb/front.svg",
  59097. extra: 873/817,
  59098. bottom: 47/920
  59099. }
  59100. },
  59101. back: {
  59102. height: math.unit(2, "meters"),
  59103. weight: math.unit(140, "kg"),
  59104. name: "Back",
  59105. image: {
  59106. source: "./media/characters/caleb/back.svg",
  59107. extra: 877/828,
  59108. bottom: 24/901
  59109. }
  59110. },
  59111. snakeTail: {
  59112. height: math.unit(1.44, "feet"),
  59113. name: "Snake Tail",
  59114. image: {
  59115. source: "./media/characters/caleb/snake-tail.svg"
  59116. }
  59117. },
  59118. dick: {
  59119. height: math.unit(2.6, "feet"),
  59120. name: "Dick",
  59121. image: {
  59122. source: "./media/characters/caleb/dick.svg"
  59123. }
  59124. },
  59125. },
  59126. [
  59127. {
  59128. name: "Incognito",
  59129. height: math.unit(3, "meters")
  59130. },
  59131. {
  59132. name: "Home Size",
  59133. height: math.unit(200, "meters"),
  59134. default: true
  59135. },
  59136. {
  59137. name: "Macro",
  59138. height: math.unit(500, "meters")
  59139. },
  59140. {
  59141. name: "Big Macro",
  59142. height: math.unit(5, "km")
  59143. },
  59144. {
  59145. name: "Giga",
  59146. height: math.unit(250, "km")
  59147. },
  59148. {
  59149. name: "Giga+",
  59150. height: math.unit(5000, "km")
  59151. },
  59152. {
  59153. name: "Small Terra",
  59154. height: math.unit(35e3, "km")
  59155. },
  59156. {
  59157. name: "Terra",
  59158. height: math.unit(2e6, "km")
  59159. },
  59160. {
  59161. name: "Terra+",
  59162. height: math.unit(1.5e6, "km")
  59163. },
  59164. ]
  59165. ))
  59166. characterMakers.push(() => makeCharacter(
  59167. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59168. {
  59169. front: {
  59170. height: math.unit(2, "meters"),
  59171. weight: math.unit(120, "kg"),
  59172. name: "Front",
  59173. image: {
  59174. source: "./media/characters/gilirian/front.svg",
  59175. extra: 805/737,
  59176. bottom: 13/818
  59177. }
  59178. },
  59179. side: {
  59180. height: math.unit(2, "meters"),
  59181. weight: math.unit(120, "kg"),
  59182. name: "Side",
  59183. image: {
  59184. source: "./media/characters/gilirian/side.svg",
  59185. extra: 810/746,
  59186. bottom: 6/816
  59187. }
  59188. },
  59189. back: {
  59190. height: math.unit(2, "meters"),
  59191. weight: math.unit(120, "kg"),
  59192. name: "Back",
  59193. image: {
  59194. source: "./media/characters/gilirian/back.svg",
  59195. extra: 815/745,
  59196. bottom: 15/830
  59197. }
  59198. },
  59199. frontNsfw: {
  59200. height: math.unit(2, "meters"),
  59201. weight: math.unit(120, "kg"),
  59202. name: "Front (NSFW)",
  59203. image: {
  59204. source: "./media/characters/gilirian/front-nsfw.svg",
  59205. extra: 805/737,
  59206. bottom: 13/818
  59207. }
  59208. },
  59209. sideNsfw: {
  59210. height: math.unit(2, "meters"),
  59211. weight: math.unit(120, "kg"),
  59212. name: "Side (NSFW)",
  59213. image: {
  59214. source: "./media/characters/gilirian/side-nsfw.svg",
  59215. extra: 810/746,
  59216. bottom: 6/816
  59217. }
  59218. },
  59219. },
  59220. [
  59221. {
  59222. name: "Incognito",
  59223. height: math.unit(2, "meters"),
  59224. default: true
  59225. },
  59226. {
  59227. name: "Macro",
  59228. height: math.unit(250, "meters")
  59229. },
  59230. {
  59231. name: "Big Macro",
  59232. height: math.unit(1500, "meters")
  59233. },
  59234. {
  59235. name: "Mega",
  59236. height: math.unit(40, "km")
  59237. },
  59238. {
  59239. name: "Giga",
  59240. height: math.unit(300, "km")
  59241. },
  59242. {
  59243. name: "Extra Giga",
  59244. height: math.unit(5000, "km")
  59245. },
  59246. {
  59247. name: "Small Terra",
  59248. height: math.unit(10e3, "km")
  59249. },
  59250. {
  59251. name: "Terra",
  59252. height: math.unit(3e5, "km")
  59253. },
  59254. {
  59255. name: "Galactic",
  59256. height: math.unit(369950, "lightyears")
  59257. },
  59258. ]
  59259. ))
  59260. characterMakers.push(() => makeCharacter(
  59261. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59262. {
  59263. front: {
  59264. height: math.unit(2.5, "meters"),
  59265. weight: math.unit(230, "lb"),
  59266. name: "Front",
  59267. image: {
  59268. source: "./media/characters/tarken/front.svg",
  59269. extra: 764/720,
  59270. bottom: 49/813
  59271. }
  59272. },
  59273. back: {
  59274. height: math.unit(2.5, "meters"),
  59275. weight: math.unit(230, "lb"),
  59276. name: "Back",
  59277. image: {
  59278. source: "./media/characters/tarken/back.svg",
  59279. extra: 756/720,
  59280. bottom: 35/791
  59281. }
  59282. },
  59283. frontNsfw: {
  59284. height: math.unit(2.5, "meters"),
  59285. weight: math.unit(230, "lb"),
  59286. name: "Front (NSFW)",
  59287. image: {
  59288. source: "./media/characters/tarken/front-nsfw.svg",
  59289. extra: 764/720,
  59290. bottom: 49/813
  59291. }
  59292. },
  59293. backNsfw: {
  59294. height: math.unit(2.5, "meters"),
  59295. weight: math.unit(230, "lb"),
  59296. name: "Back (NSFW)",
  59297. image: {
  59298. source: "./media/characters/tarken/back-nsfw.svg",
  59299. extra: 756/720,
  59300. bottom: 35/791
  59301. }
  59302. },
  59303. head: {
  59304. height: math.unit(2.22, "feet"),
  59305. name: "Head",
  59306. image: {
  59307. source: "./media/characters/tarken/head.svg"
  59308. }
  59309. },
  59310. tail: {
  59311. height: math.unit(5.25, "feet"),
  59312. name: "Tail",
  59313. image: {
  59314. source: "./media/characters/tarken/tail.svg"
  59315. }
  59316. },
  59317. dick: {
  59318. height: math.unit(1.95, "feet"),
  59319. name: "Dick",
  59320. image: {
  59321. source: "./media/characters/tarken/dick.svg"
  59322. }
  59323. },
  59324. hand: {
  59325. height: math.unit(1.78, "feet"),
  59326. name: "Hand",
  59327. image: {
  59328. source: "./media/characters/tarken/hand.svg"
  59329. }
  59330. },
  59331. beam: {
  59332. height: math.unit(1.5, "feet"),
  59333. name: "Beam",
  59334. image: {
  59335. source: "./media/characters/tarken/beam.svg"
  59336. }
  59337. },
  59338. },
  59339. [
  59340. {
  59341. name: "Original Size",
  59342. height: math.unit(2.5, "meters")
  59343. },
  59344. {
  59345. name: "Macro",
  59346. height: math.unit(150, "meters"),
  59347. default: true
  59348. },
  59349. {
  59350. name: "Macro+",
  59351. height: math.unit(300, "meters")
  59352. },
  59353. {
  59354. name: "Mega",
  59355. height: math.unit(2, "km")
  59356. },
  59357. {
  59358. name: "Mega+",
  59359. height: math.unit(35, "km")
  59360. },
  59361.  {
  59362. name: "Mega++",
  59363. height: math.unit(60, "km")
  59364. },
  59365. {
  59366. name: "Giga",
  59367. height: math.unit(200, "km")
  59368. },
  59369. {
  59370. name: "Giga+",
  59371. height: math.unit(2500, "km")
  59372. },
  59373. {
  59374. name: "Giga++",
  59375. height: math.unit(6600, "km")
  59376. },
  59377. {
  59378. name: "Terra",
  59379. height: math.unit(20000, "km")
  59380. },
  59381. {
  59382. name: "Terra+",
  59383. height: math.unit(300000, "km")
  59384. },
  59385. ]
  59386. ))
  59387. characterMakers.push(() => makeCharacter(
  59388. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59389. {
  59390. magpie_dressed: {
  59391. height: math.unit(1.7, "meters"),
  59392. weight: math.unit(70, "kg"),
  59393. name: "Dressed",
  59394. image: {
  59395. source: "./media/characters/otreus/magpie-dressed.svg",
  59396. extra: 691/672,
  59397. bottom: 116/807
  59398. },
  59399. form: "magpie",
  59400. default: true
  59401. },
  59402. magpie_nude: {
  59403. height: math.unit(1.7, "meters"),
  59404. weight: math.unit(70, "kg"),
  59405. name: "Nude",
  59406. image: {
  59407. source: "./media/characters/otreus/magpie-nude.svg",
  59408. extra: 691/672,
  59409. bottom: 116/807
  59410. },
  59411. form: "magpie",
  59412. },
  59413. magpie_dressedLewd: {
  59414. height: math.unit(1.7, "meters"),
  59415. weight: math.unit(70, "kg"),
  59416. name: "Dressed (Lewd)",
  59417. image: {
  59418. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59419. extra: 691/672,
  59420. bottom: 116/807
  59421. },
  59422. form: "magpie",
  59423. },
  59424. magpie_nudeLewd: {
  59425. height: math.unit(1.7, "meters"),
  59426. weight: math.unit(70, "kg"),
  59427. name: "Nude (Lewd)",
  59428. image: {
  59429. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59430. extra: 691/672,
  59431. bottom: 116/807
  59432. },
  59433. form: "magpie",
  59434. },
  59435. magpie_leftFoot: {
  59436. height: math.unit(1.58, "feet"),
  59437. name: "Left Foot",
  59438. image: {
  59439. source: "./media/characters/otreus/magpie-left-foot.svg"
  59440. },
  59441. form: "magpie",
  59442. },
  59443. magpie_rightFoot: {
  59444. height: math.unit(1.58, "feet"),
  59445. name: "Right Foot",
  59446. image: {
  59447. source: "./media/characters/otreus/magpie-right-foot.svg"
  59448. },
  59449. form: "magpie",
  59450. },
  59451. magpie_wingspan: {
  59452. height: math.unit(2, "meters"),
  59453. weight: math.unit(70, "kg"),
  59454. name: "Wingspan",
  59455. image: {
  59456. source: "./media/characters/otreus/magpie-wingspan.svg"
  59457. },
  59458. extraAttributes: {
  59459. "wingspan": {
  59460. name: "Wingspan",
  59461. power: 1,
  59462. type: "length",
  59463. base: math.unit(3.35, "meters")
  59464. },
  59465. },
  59466. form: "magpie",
  59467. },
  59468. hippogriff_dressed: {
  59469. height: math.unit(1.7, "meters"),
  59470. weight: math.unit(70, "kg"),
  59471. name: "Dressed",
  59472. image: {
  59473. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59474. extra: 710/689,
  59475. bottom: 67/777
  59476. },
  59477. form: "hippogriff",
  59478. default: true
  59479. },
  59480. hippogriff_nude: {
  59481. height: math.unit(1.7, "meters"),
  59482. weight: math.unit(70, "kg"),
  59483. name: "Nude",
  59484. image: {
  59485. source: "./media/characters/otreus/hippogriff-nude.svg",
  59486. extra: 710/689,
  59487. bottom: 67/777
  59488. },
  59489. form: "hippogriff",
  59490. },
  59491. hippogriff_dressedLewd: {
  59492. height: math.unit(1.7, "meters"),
  59493. weight: math.unit(70, "kg"),
  59494. name: "Dressed (Lewd)",
  59495. image: {
  59496. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59497. extra: 710/689,
  59498. bottom: 67/777
  59499. },
  59500. form: "hippogriff",
  59501. },
  59502. hippogriff_nudeLewd: {
  59503. height: math.unit(1.7, "meters"),
  59504. weight: math.unit(70, "kg"),
  59505. name: "Nude (Lewd)",
  59506. image: {
  59507. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59508. extra: 710/689,
  59509. bottom: 67/777
  59510. },
  59511. form: "hippogriff",
  59512. },
  59513. },
  59514. [
  59515. {
  59516. name: "Original Size",
  59517. height: math.unit(1.7, "meters"),
  59518. allForms: true
  59519. },
  59520. {
  59521. name: "Incognito Size",
  59522. height: math.unit(2, "meters"),
  59523. allForms: true
  59524. },
  59525. {
  59526. name: "Mega",
  59527. height: math.unit(2, "km"),
  59528. allForms: true
  59529. },
  59530. {
  59531. name: "Mega+",
  59532. height: math.unit(40, "km"),
  59533. allForms: true
  59534. },
  59535. {
  59536. name: "Giga",
  59537. height: math.unit(250, "km"),
  59538. allForms: true
  59539. },
  59540. {
  59541. name: "Giga+",
  59542. height: math.unit(3000, "km"),
  59543. allForms: true
  59544. },
  59545. {
  59546. name: "Terra",
  59547. height: math.unit(20000, "km"),
  59548. allForms: true
  59549. },
  59550. {
  59551. name: "Solar (Home Size)",
  59552. height: math.unit(3e6, "km"),
  59553. allForms: true,
  59554. default: true
  59555. },
  59556. ],
  59557. {
  59558. "magpie": {
  59559. name: "Magpie",
  59560. default: true
  59561. },
  59562. "hippogriff": {
  59563. name: "Hippogriff",
  59564. },
  59565. }
  59566. ))
  59567. characterMakers.push(() => makeCharacter(
  59568. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59569. {
  59570. frontDressed: {
  59571. height: math.unit(1.8, "meters"),
  59572. weight: math.unit(90, "kg"),
  59573. name: "Front (Dressed)",
  59574. image: {
  59575. source: "./media/characters/thalia/front-dressed.svg",
  59576. extra: 478/402,
  59577. bottom: 55/533
  59578. }
  59579. },
  59580. backDressed: {
  59581. height: math.unit(1.8, "meters"),
  59582. weight: math.unit(90, "kg"),
  59583. name: "Back (Dressed)",
  59584. image: {
  59585. source: "./media/characters/thalia/back-dressed.svg",
  59586. extra: 500/424,
  59587. bottom: 15/515
  59588. }
  59589. },
  59590. frontNude: {
  59591. height: math.unit(1.8, "meters"),
  59592. weight: math.unit(90, "kg"),
  59593. name: "Front (Nude)",
  59594. image: {
  59595. source: "./media/characters/thalia/front-nude.svg",
  59596. extra: 478/402,
  59597. bottom: 55/533
  59598. }
  59599. },
  59600. backNude: {
  59601. height: math.unit(1.8, "meters"),
  59602. weight: math.unit(90, "kg"),
  59603. name: "Back (Nude)",
  59604. image: {
  59605. source: "./media/characters/thalia/back-nude.svg",
  59606. extra: 500/424,
  59607. bottom: 15/515
  59608. }
  59609. },
  59610. },
  59611. [
  59612. {
  59613. name: "Incognito",
  59614. height: math.unit(3, "meters")
  59615. },
  59616. {
  59617. name: "Macro",
  59618. height: math.unit(500, "meters")
  59619. },
  59620. {
  59621. name: "Mega",
  59622. height: math.unit(5, "km")
  59623. },
  59624. {
  59625. name: "Mega+",
  59626. height: math.unit(30, "km")
  59627. },
  59628. {
  59629. name: "Giga",
  59630. height: math.unit(350, "km")
  59631. },
  59632. {
  59633. name: "Giga+",
  59634. height: math.unit(4000, "km")
  59635. },
  59636. {
  59637. name: "Terra",
  59638. height: math.unit(35000, "km")
  59639. },
  59640. {
  59641. name: "Original Size",
  59642. height: math.unit(130000, "km")
  59643. },
  59644. {
  59645. name: "Solar (Home Size)",
  59646. height: math.unit(4e6, "km"),
  59647. default: true
  59648. },
  59649. ]
  59650. ))
  59651. characterMakers.push(() => makeCharacter(
  59652. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59653. {
  59654. front: {
  59655. height: math.unit(1.8, "meters"),
  59656. weight: math.unit(95, "kg"),
  59657. name: "Front",
  59658. image: {
  59659. source: "./media/characters/shango/front.svg",
  59660. extra: 1925/1774,
  59661. bottom: 67/1992
  59662. }
  59663. },
  59664. back: {
  59665. height: math.unit(1.8, "meters"),
  59666. weight: math.unit(95, "kg"),
  59667. name: "Back",
  59668. image: {
  59669. source: "./media/characters/shango/back.svg",
  59670. extra: 1915/1766,
  59671. bottom: 52/1967
  59672. }
  59673. },
  59674. frontLewd: {
  59675. height: math.unit(1.8, "meters"),
  59676. weight: math.unit(95, "kg"),
  59677. name: "Front (Lewd)",
  59678. image: {
  59679. source: "./media/characters/shango/front-lewd.svg",
  59680. extra: 1925/1774,
  59681. bottom: 67/1992
  59682. }
  59683. },
  59684. backLewd: {
  59685. height: math.unit(1.8, "meters"),
  59686. weight: math.unit(95, "kg"),
  59687. name: "Back (Lewd)",
  59688. image: {
  59689. source: "./media/characters/shango/back-lewd.svg",
  59690. extra: 1915/1766,
  59691. bottom: 52/1967
  59692. }
  59693. },
  59694. maw: {
  59695. height: math.unit(1.64, "feet"),
  59696. name: "Maw",
  59697. image: {
  59698. source: "./media/characters/shango/maw.svg"
  59699. }
  59700. },
  59701. dick: {
  59702. height: math.unit(2.14, "feet"),
  59703. name: "Dick",
  59704. image: {
  59705. source: "./media/characters/shango/dick.svg"
  59706. }
  59707. },
  59708. },
  59709. [
  59710. {
  59711. name: "Incognito",
  59712. height: math.unit(1.8, "meters")
  59713. },
  59714. {
  59715. name: "Home Size",
  59716. height: math.unit(60, "meters"),
  59717. default: true
  59718. },
  59719. {
  59720. name: "Macro",
  59721. height: math.unit(450, "meters")
  59722. },
  59723. {
  59724. name: "Mega",
  59725. height: math.unit(6, "km")
  59726. },
  59727. {
  59728. name: "Mega+",
  59729. height: math.unit(35, "km")
  59730. },
  59731. {
  59732. name: "Giga",
  59733. height: math.unit(500, "km")
  59734. },
  59735. {
  59736. name: "Giga+",
  59737. height: math.unit(5000, "km")
  59738. },
  59739. {
  59740. name: "Terra",
  59741. height: math.unit(60000, "km")
  59742. },
  59743. {
  59744. name: "Terra+",
  59745. height: math.unit(400000, "km")
  59746. },
  59747. ]
  59748. ))
  59749. characterMakers.push(() => makeCharacter(
  59750. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59751. {
  59752. front: {
  59753. height: math.unit(2, "meters"),
  59754. weight: math.unit(95, "kg"),
  59755. name: "Front",
  59756. image: {
  59757. source: "./media/characters/osiris-gryphon/front.svg",
  59758. extra: 1508/1313,
  59759. bottom: 87/1595
  59760. }
  59761. },
  59762. back: {
  59763. height: math.unit(2, "meters"),
  59764. weight: math.unit(95, "kg"),
  59765. name: "Back",
  59766. image: {
  59767. source: "./media/characters/osiris-gryphon/back.svg",
  59768. extra: 1436/1309,
  59769. bottom: 64/1500
  59770. }
  59771. },
  59772. frontLewd: {
  59773. height: math.unit(2, "meters"),
  59774. weight: math.unit(95, "kg"),
  59775. name: "Front-lewd",
  59776. image: {
  59777. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59778. extra: 1508/1313,
  59779. bottom: 87/1595
  59780. }
  59781. },
  59782. wing: {
  59783. height: math.unit(6.3333, "feet"),
  59784. name: "Wing",
  59785. image: {
  59786. source: "./media/characters/osiris-gryphon/wing.svg"
  59787. }
  59788. },
  59789. },
  59790. [
  59791. {
  59792. name: "Incognito",
  59793. height: math.unit(2, "meters")
  59794. },
  59795. {
  59796. name: "Home Size",
  59797. height: math.unit(30, "meters"),
  59798. default: true
  59799. },
  59800. {
  59801. name: "Macro",
  59802. height: math.unit(100, "meters")
  59803. },
  59804. {
  59805. name: "Macro+",
  59806. height: math.unit(350, "meters")
  59807. },
  59808. {
  59809. name: "Mega",
  59810. height: math.unit(40, "km")
  59811. },
  59812. {
  59813. name: "Giga",
  59814. height: math.unit(300, "km")
  59815. },
  59816. {
  59817. name: "Giga+",
  59818. height: math.unit(2000, "km")
  59819. },
  59820. {
  59821. name: "Terra",
  59822. height: math.unit(30000, "km")
  59823. },
  59824. ]
  59825. ))
  59826. characterMakers.push(() => makeCharacter(
  59827. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59828. {
  59829. front: {
  59830. height: math.unit(2.5, "meters"),
  59831. weight: math.unit(200, "kg"),
  59832. name: "Front",
  59833. image: {
  59834. source: "./media/characters/atlas-dragon/front.svg",
  59835. extra: 745/462,
  59836. bottom: 36/781
  59837. }
  59838. },
  59839. back: {
  59840. height: math.unit(2.5, "meters"),
  59841. weight: math.unit(200, "kg"),
  59842. name: "Back",
  59843. image: {
  59844. source: "./media/characters/atlas-dragon/back.svg",
  59845. extra: 848/822,
  59846. bottom: 57/905
  59847. }
  59848. },
  59849. frontLewd: {
  59850. height: math.unit(2.5, "meters"),
  59851. weight: math.unit(200, "kg"),
  59852. name: "Front (Lewd)",
  59853. image: {
  59854. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59855. extra: 745/462,
  59856. bottom: 36/781
  59857. }
  59858. },
  59859. backLewd: {
  59860. height: math.unit(2.5, "meters"),
  59861. weight: math.unit(200, "kg"),
  59862. name: "Back (Lewd)",
  59863. image: {
  59864. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59865. extra: 848/822,
  59866. bottom: 57/905
  59867. }
  59868. },
  59869. },
  59870. [
  59871. {
  59872. name: "Incognito",
  59873. height: math.unit(2.5, "meters")
  59874. },
  59875. {
  59876. name: "Small Macro",
  59877. height: math.unit(50, "meters")
  59878. },
  59879. {
  59880. name: "Macro",
  59881. height: math.unit(350, "meters")
  59882. },
  59883. {
  59884. name: "Mega",
  59885. height: math.unit(5.5, "kilometers")
  59886. },
  59887. {
  59888. name: "Mega+",
  59889. height: math.unit(50, "km")
  59890. },
  59891. {
  59892. name: "Giga",
  59893. height: math.unit(350, "km")
  59894. },
  59895. {
  59896. name: "Giga+",
  59897. height: math.unit(2000, "km")
  59898. },
  59899. {
  59900. name: "Giga++",
  59901. height: math.unit(6500, "km")
  59902. },
  59903. {
  59904. name: "Terra",
  59905. height: math.unit(30000, "km")
  59906. },
  59907. {
  59908. name: "Terra+",
  59909. height: math.unit(250000, "km")
  59910. },
  59911. {
  59912. name: "True Size",
  59913. height: math.unit(100, "multiverses"),
  59914. default: true
  59915. },
  59916. ]
  59917. ))
  59918. characterMakers.push(() => makeCharacter(
  59919. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59920. {
  59921. front: {
  59922. height: math.unit(1.8, "m"),
  59923. weight: math.unit(120, "kg"),
  59924. name: "Front",
  59925. image: {
  59926. source: "./media/characters/chey/front.svg",
  59927. extra: 1359/1270,
  59928. bottom: 18/1377
  59929. }
  59930. },
  59931. arm: {
  59932. height: math.unit(2.05, "feet"),
  59933. name: "Arm",
  59934. image: {
  59935. source: "./media/characters/chey/arm.svg"
  59936. }
  59937. },
  59938. head: {
  59939. height: math.unit(1.89, "feet"),
  59940. name: "Head",
  59941. image: {
  59942. source: "./media/characters/chey/head.svg"
  59943. }
  59944. },
  59945. },
  59946. [
  59947. {
  59948. name: "Original Size",
  59949. height: math.unit(5, "cm")
  59950. },
  59951. {
  59952. name: "Incognito Size",
  59953. height: math.unit(2.4, "m")
  59954. },
  59955. {
  59956. name: "Home Size",
  59957. height: math.unit(200, "meters"),
  59958. default: true
  59959. },
  59960. {
  59961. name: "Mega",
  59962. height: math.unit(2, "km")
  59963. },
  59964. {
  59965. name: "Giga (Preferred Size)",
  59966. height: math.unit(2000, "km")
  59967. },
  59968. {
  59969. name: "Giga+",
  59970. height: math.unit(6000, "km")
  59971. },
  59972. {
  59973. name: "Terra",
  59974. height: math.unit(17000, "km")
  59975. },
  59976. {
  59977. name: "Terra+",
  59978. height: math.unit(75000, "km")
  59979. },
  59980. {
  59981. name: "Terra++",
  59982. height: math.unit(225000, "km")
  59983. },
  59984. ]
  59985. ))
  59986. characterMakers.push(() => makeCharacter(
  59987. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59988. {
  59989. side: {
  59990. height: math.unit(7.8, "meters"),
  59991. name: "Side",
  59992. image: {
  59993. source: "./media/characters/ragnarok/side.svg",
  59994. extra: 725/621,
  59995. bottom: 72/797
  59996. }
  59997. },
  59998. },
  59999. [
  60000. {
  60001. name: "Normal",
  60002. height: math.unit(7.8, "meters"),
  60003. default: true
  60004. },
  60005. ]
  60006. ))
  60007. characterMakers.push(() => makeCharacter(
  60008. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60009. {
  60010. hyena_front: {
  60011. height: math.unit(2.1, "meters"),
  60012. weight: math.unit(110, "kg"),
  60013. name: "Front",
  60014. image: {
  60015. source: "./media/characters/nima/hyena-front.svg",
  60016. extra: 1904/1796,
  60017. bottom: 67/1971
  60018. },
  60019. form: "hyena",
  60020. },
  60021. hyena_back: {
  60022. height: math.unit(2.1, "meters"),
  60023. weight: math.unit(110, "kg"),
  60024. name: "Back",
  60025. image: {
  60026. source: "./media/characters/nima/hyena-back.svg",
  60027. extra: 1964/1884,
  60028. bottom: 35/1999
  60029. },
  60030. form: "hyena",
  60031. },
  60032. shark_front: {
  60033. height: math.unit(1.95, "meters"),
  60034. weight: math.unit(110, "kg"),
  60035. name: "Front",
  60036. image: {
  60037. source: "./media/characters/nima/shark-front.svg",
  60038. extra: 2238/2013,
  60039. bottom: 0/223
  60040. },
  60041. form: "shark",
  60042. },
  60043. paw: {
  60044. height: math.unit(1, "feet"),
  60045. name: "Paw",
  60046. image: {
  60047. source: "./media/characters/nima/paw.svg"
  60048. }
  60049. },
  60050. circlet: {
  60051. height: math.unit(0.3, "feet"),
  60052. name: "Circlet",
  60053. image: {
  60054. source: "./media/characters/nima/circlet.svg"
  60055. }
  60056. },
  60057. necklace: {
  60058. height: math.unit(1.2, "feet"),
  60059. name: "Necklace",
  60060. image: {
  60061. source: "./media/characters/nima/necklace.svg"
  60062. }
  60063. },
  60064. bracelet: {
  60065. height: math.unit(0.51, "feet"),
  60066. name: "Bracelet",
  60067. image: {
  60068. source: "./media/characters/nima/bracelet.svg"
  60069. }
  60070. },
  60071. armband: {
  60072. height: math.unit(1.3, "feet"),
  60073. name: "Armband",
  60074. image: {
  60075. source: "./media/characters/nima/armband.svg"
  60076. }
  60077. },
  60078. },
  60079. [
  60080. {
  60081. name: "Incognito",
  60082. height: math.unit(2.1, "meters"),
  60083. allForms: true
  60084. },
  60085. {
  60086. name: "Small Macro",
  60087. height: math.unit(50, "meters"),
  60088. allForms: true
  60089. },
  60090. {
  60091. name: "Macro",
  60092. height: math.unit(200, "meters"),
  60093. allForms: true
  60094. },
  60095. {
  60096. name: "Mega",
  60097. height: math.unit(2.5, "km"),
  60098. allForms: true
  60099. },
  60100. {
  60101. name: "Mega+",
  60102. height: math.unit(30, "km"),
  60103. allForms: true
  60104. },
  60105. {
  60106. name: "Giga (Home Size)",
  60107. height: math.unit(400, "km"),
  60108. allForms: true,
  60109. default: true
  60110. },
  60111. {
  60112. name: "Giga+",
  60113. height: math.unit(2500, "km"),
  60114. allForms: true
  60115. },
  60116. {
  60117. name: "Giga++",
  60118. height: math.unit(8000, "km"),
  60119. allForms: true
  60120. },
  60121. {
  60122. name: "Terra",
  60123. height: math.unit(20000, "km"),
  60124. allForms: true
  60125. },
  60126. {
  60127. name: "Terra+",
  60128. height: math.unit(70000, "km"),
  60129. allForms: true
  60130. },
  60131. {
  60132. name: "Terra++",
  60133. height: math.unit(600000, "km"),
  60134. allForms: true
  60135. },
  60136. {
  60137. name: "Galactic",
  60138. height: math.unit(40, "galaxies"),
  60139. allForms: true
  60140. },
  60141. {
  60142. name: "Universal",
  60143. height: math.unit(40, "universes"),
  60144. allForms: true
  60145. },
  60146. ],
  60147. {
  60148. "hyena": {
  60149. name: "Hyena",
  60150. default: true
  60151. },
  60152. "shark": {
  60153. name: "Shark",
  60154. },
  60155. }
  60156. ))
  60157. characterMakers.push(() => makeCharacter(
  60158. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60159. {
  60160. anthro_front: {
  60161. height: math.unit(1.5, "meters"),
  60162. name: "Front",
  60163. image: {
  60164. source: "./media/characters/adelaide/anthro-front.svg",
  60165. extra: 860/783,
  60166. bottom: 60/920
  60167. },
  60168. form: "anthro",
  60169. default: true
  60170. },
  60171. hand: {
  60172. height: math.unit(0.65, "feet"),
  60173. name: "Hand",
  60174. image: {
  60175. source: "./media/characters/adelaide/hand.svg"
  60176. },
  60177. form: "anthro"
  60178. },
  60179. foot: {
  60180. height: math.unit(1.38 * 259 / 314, "feet"),
  60181. name: "Foot",
  60182. image: {
  60183. source: "./media/characters/adelaide/foot.svg",
  60184. extra: 259/259,
  60185. bottom: 55/314
  60186. },
  60187. form: "anthro"
  60188. },
  60189. feather: {
  60190. height: math.unit(0.85, "feet"),
  60191. name: "Feather",
  60192. image: {
  60193. source: "./media/characters/adelaide/feather.svg"
  60194. },
  60195. form: "anthro"
  60196. },
  60197. feral_side: {
  60198. height: math.unit(1, "meters"),
  60199. name: "Side",
  60200. image: {
  60201. source: "./media/characters/adelaide/feral-side.svg",
  60202. extra: 550/467,
  60203. bottom: 37/587
  60204. },
  60205. form: "feral",
  60206. default: true
  60207. },
  60208. feral_hand: {
  60209. height: math.unit(0.58, "feet"),
  60210. name: "Hand",
  60211. image: {
  60212. source: "./media/characters/adelaide/hand.svg"
  60213. },
  60214. form: "feral"
  60215. },
  60216. feral_foot: {
  60217. height: math.unit(1.2 * 259 / 314, "feet"),
  60218. name: "Foot",
  60219. image: {
  60220. source: "./media/characters/adelaide/foot.svg",
  60221. extra: 259/259,
  60222. bottom: 55/314
  60223. },
  60224. form: "feral"
  60225. },
  60226. feral_feather: {
  60227. height: math.unit(0.63, "feet"),
  60228. name: "Feather",
  60229. image: {
  60230. source: "./media/characters/adelaide/feather.svg"
  60231. },
  60232. form: "feral"
  60233. },
  60234. },
  60235. [
  60236. {
  60237. name: "Normal",
  60238. height: math.unit(1.5, "meters"),
  60239. form: "anthro",
  60240. default: true
  60241. },
  60242. {
  60243. name: "Normal",
  60244. height: math.unit(1, "meters"),
  60245. form: "feral",
  60246. default: true
  60247. },
  60248. ],
  60249. {
  60250. "anthro": {
  60251. name: "Anthro",
  60252. default: true
  60253. },
  60254. "feral": {
  60255. name: "Feral",
  60256. },
  60257. }
  60258. ))
  60259. characterMakers.push(() => makeCharacter(
  60260. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60261. {
  60262. front: {
  60263. height: math.unit(2.5, "meters"),
  60264. name: "Front",
  60265. image: {
  60266. source: "./media/characters/goa/front.svg",
  60267. extra: 1109/1013,
  60268. bottom: 150/1259
  60269. }
  60270. },
  60271. },
  60272. [
  60273. {
  60274. name: "Normal",
  60275. height: math.unit(2.5, "meters"),
  60276. default: true
  60277. },
  60278. ]
  60279. ))
  60280. characterMakers.push(() => makeCharacter(
  60281. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60282. {
  60283. front: {
  60284. height: math.unit(2, "meters"),
  60285. weight: math.unit(100, "kg"),
  60286. name: "Front",
  60287. image: {
  60288. source: "./media/characters/kiki-weavile/front.svg",
  60289. extra: 357/332,
  60290. bottom: 60/417
  60291. }
  60292. },
  60293. },
  60294. [
  60295. {
  60296. name: "Normal",
  60297. height: math.unit(2, "meters"),
  60298. default: true
  60299. },
  60300. ]
  60301. ))
  60302. characterMakers.push(() => makeCharacter(
  60303. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60304. {
  60305. side: {
  60306. height: math.unit(1.6, "meters"),
  60307. name: "Side",
  60308. image: {
  60309. source: "./media/characters/liza/side.svg",
  60310. extra: 943/915,
  60311. bottom: 72/1015
  60312. }
  60313. },
  60314. },
  60315. [
  60316. {
  60317. name: "Normal",
  60318. height: math.unit(1.6, "meters"),
  60319. default: true
  60320. },
  60321. ]
  60322. ))
  60323. characterMakers.push(() => makeCharacter(
  60324. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60325. {
  60326. side: {
  60327. height: math.unit(2.5, "meters"),
  60328. preyCapacity: math.unit(1, "people"),
  60329. name: "Side",
  60330. image: {
  60331. source: "./media/characters/persephone-sweetbreath/side.svg",
  60332. extra: 796/700,
  60333. bottom: 44/840
  60334. }
  60335. },
  60336. sideVore: {
  60337. height: math.unit(2.5, "meters"),
  60338. preyCapacity: math.unit(1, "people"),
  60339. name: "Side (Full)",
  60340. image: {
  60341. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60342. extra: 796/700,
  60343. bottom: 44/840
  60344. }
  60345. },
  60346. },
  60347. [
  60348. {
  60349. name: "Normal",
  60350. height: math.unit(2.5, "meters"),
  60351. default: true
  60352. },
  60353. ]
  60354. ))
  60355. characterMakers.push(() => makeCharacter(
  60356. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60357. {
  60358. front: {
  60359. height: math.unit(32, "meters"),
  60360. name: "Front",
  60361. image: {
  60362. source: "./media/characters/pierce/front.svg",
  60363. extra: 1695/1475,
  60364. bottom: 185/1880
  60365. }
  60366. },
  60367. side: {
  60368. height: math.unit(32, "meters"),
  60369. name: "Side",
  60370. image: {
  60371. source: "./media/characters/pierce/side.svg",
  60372. extra: 974/859,
  60373. bottom: 43/1017
  60374. }
  60375. },
  60376. frontWingless: {
  60377. height: math.unit(32, "meters"),
  60378. name: "Front (Wingless)",
  60379. image: {
  60380. source: "./media/characters/pierce/front-wingless.svg",
  60381. extra: 1695/1475,
  60382. bottom: 185/1880
  60383. }
  60384. },
  60385. sideWingless: {
  60386. height: math.unit(32, "meters"),
  60387. name: "Side (Wingless)",
  60388. image: {
  60389. source: "./media/characters/pierce/side-wingless.svg",
  60390. extra: 974/859,
  60391. bottom: 43/1017
  60392. }
  60393. },
  60394. maw: {
  60395. height: math.unit(19.3, "meters"),
  60396. name: "Maw",
  60397. image: {
  60398. source: "./media/characters/pierce/maw.svg"
  60399. }
  60400. },
  60401. },
  60402. [
  60403. {
  60404. name: "Small",
  60405. height: math.unit(8.5, "meters")
  60406. },
  60407. {
  60408. name: "Normal",
  60409. height: math.unit(32, "meters"),
  60410. default: true
  60411. },
  60412. ]
  60413. ))
  60414. characterMakers.push(() => makeCharacter(
  60415. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60416. {
  60417. front: {
  60418. height: math.unit(2.3, "meters"),
  60419. weight: math.unit(165, "kg"),
  60420. name: "Front",
  60421. image: {
  60422. source: "./media/characters/shira/front.svg",
  60423. extra: 924/919,
  60424. bottom: 17/941
  60425. },
  60426. form: "cobra",
  60427. default: true
  60428. },
  60429. back: {
  60430. height: math.unit(2.3, "meters"),
  60431. weight: math.unit(165, "kg"),
  60432. name: "Back",
  60433. image: {
  60434. source: "./media/characters/shira/back.svg",
  60435. extra: 928/922,
  60436. bottom: 18/946
  60437. },
  60438. form: "cobra"
  60439. },
  60440. frontLewd: {
  60441. height: math.unit(2.3, "meters"),
  60442. weight: math.unit(165, "kg"),
  60443. name: "Front (Lewd)",
  60444. image: {
  60445. source: "./media/characters/shira/front-lewd.svg",
  60446. extra: 924/919,
  60447. bottom: 17/941
  60448. },
  60449. form: "cobra"
  60450. },
  60451. backLewd: {
  60452. height: math.unit(2.3, "meters"),
  60453. weight: math.unit(165, "kg"),
  60454. name: "Back (Lewd)",
  60455. image: {
  60456. source: "./media/characters/shira/back-lewd.svg",
  60457. extra: 928/922,
  60458. bottom: 18/946
  60459. },
  60460. form: "cobra"
  60461. },
  60462. maw: {
  60463. height: math.unit(1.14, "feet"),
  60464. name: "Maw",
  60465. image: {
  60466. source: "./media/characters/shira/maw.svg"
  60467. },
  60468. form: "cobra"
  60469. },
  60470. magma_front: {
  60471. height: math.unit(2.3, "meters"),
  60472. weight: math.unit(165, "kg"),
  60473. name: "Front",
  60474. image: {
  60475. source: "./media/characters/shira/magma-front.svg",
  60476. extra: 1870/1693,
  60477. bottom: 24/1894
  60478. },
  60479. form: "magma",
  60480. },
  60481. magma_back: {
  60482. height: math.unit(2.3, "meters"),
  60483. weight: math.unit(165, "kg"),
  60484. name: "Back",
  60485. image: {
  60486. source: "./media/characters/shira/magma-back.svg",
  60487. extra: 1918/1756,
  60488. bottom: 46/1964
  60489. },
  60490. form: "magma",
  60491. },
  60492. },
  60493. [
  60494. {
  60495. name: "Incognito",
  60496. height: math.unit(2.3, "meters"),
  60497. allForms: true
  60498. },
  60499. {
  60500. name: "Home Size",
  60501. height: math.unit(150, "meters"),
  60502. default: true,
  60503. allForms: true
  60504. },
  60505. {
  60506. name: "Macro",
  60507. height: math.unit(2, "km"),
  60508. allForms: true
  60509. },
  60510. {
  60511. name: "Mega",
  60512. height: math.unit(30, "km"),
  60513. allForms: true
  60514. },
  60515. {
  60516. name: "Giga",
  60517. height: math.unit(450, "km"),
  60518. allForms: true
  60519. },
  60520. {
  60521. name: "Giga+",
  60522. height: math.unit(3000, "km"),
  60523. allForms: true
  60524. },
  60525. {
  60526. name: "Giga++",
  60527. height: math.unit(6000, "km"),
  60528. allForms: true
  60529. },
  60530. {
  60531. name: "Terra",
  60532. height: math.unit(80000, "km"),
  60533. allForms: true
  60534. },
  60535. {
  60536. name: "Terra+",
  60537. height: math.unit(350000, "km"),
  60538. allForms: true
  60539. },
  60540. {
  60541. name: "Solar",
  60542. height: math.unit(1e6, "km"),
  60543. allForms: true
  60544. },
  60545. ],
  60546. {
  60547. "cobra": {
  60548. name: "Cobra",
  60549. default: true
  60550. },
  60551. "magma": {
  60552. name: "Magma Dragon",
  60553. },
  60554. }
  60555. ))
  60556. characterMakers.push(() => makeCharacter(
  60557. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60558. {
  60559. front: {
  60560. height: math.unit(2, "meters"),
  60561. weight: math.unit(160, "kg"),
  60562. name: "Front",
  60563. image: {
  60564. source: "./media/characters/daxerios/front.svg",
  60565. extra: 1334/1277,
  60566. bottom: 45/1379
  60567. }
  60568. },
  60569. frontLewd: {
  60570. height: math.unit(2, "meters"),
  60571. weight: math.unit(160, "kg"),
  60572. name: "Front (Lewd)",
  60573. image: {
  60574. source: "./media/characters/daxerios/front-lewd.svg",
  60575. extra: 1334/1277,
  60576. bottom: 45/1379
  60577. }
  60578. },
  60579. dick: {
  60580. height: math.unit(2.35, "feet"),
  60581. name: "Dick",
  60582. image: {
  60583. source: "./media/characters/daxerios/dick.svg"
  60584. }
  60585. },
  60586. },
  60587. [
  60588. {
  60589. name: "\"Small\"",
  60590. height: math.unit(5, "meters")
  60591. },
  60592. {
  60593. name: "Original Size",
  60594. height: math.unit(500, "meters"),
  60595. default: true
  60596. },
  60597. {
  60598. name: "Mega",
  60599. height: math.unit(2, "km")
  60600. },
  60601. {
  60602. name: "Mega+",
  60603. height: math.unit(35, "km")
  60604. },
  60605. {
  60606. name: "Giga",
  60607. height: math.unit(250, "km")
  60608. },
  60609. {
  60610. name: "Giga+",
  60611. height: math.unit(3000, "km")
  60612. },
  60613. {
  60614. name: "Terra",
  60615. height: math.unit(25000, "km")
  60616. },
  60617. {
  60618. name: "Terra+",
  60619. height: math.unit(300000, "km")
  60620. },
  60621. {
  60622. name: "Solar",
  60623. height: math.unit(1e6, "km")
  60624. },
  60625. ]
  60626. ))
  60627. characterMakers.push(() => makeCharacter(
  60628. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60629. {
  60630. front: {
  60631. height: math.unit(8 + 4/12, "feet"),
  60632. weight: math.unit(464, "lb"),
  60633. name: "Front",
  60634. image: {
  60635. source: "./media/characters/caveat/front.svg",
  60636. extra: 1861/1678,
  60637. bottom: 40/1901
  60638. }
  60639. },
  60640. },
  60641. [
  60642. {
  60643. name: "Normal",
  60644. height: math.unit(8 + 4/12, "feet"),
  60645. default: true
  60646. },
  60647. ]
  60648. ))
  60649. characterMakers.push(() => makeCharacter(
  60650. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60651. {
  60652. front: {
  60653. height: math.unit(12, "feet"),
  60654. weight: math.unit(1800, "lb"),
  60655. name: "Front",
  60656. image: {
  60657. source: "./media/characters/centbair/front.svg",
  60658. extra: 781/663,
  60659. bottom: 25/806
  60660. }
  60661. },
  60662. frontNsfw: {
  60663. height: math.unit(12, "feet"),
  60664. weight: math.unit(1800, "lb"),
  60665. name: "Front (NSFW)",
  60666. image: {
  60667. source: "./media/characters/centbair/front-nsfw.svg",
  60668. extra: 781/663,
  60669. bottom: 25/806
  60670. }
  60671. },
  60672. back: {
  60673. height: math.unit(12, "feet"),
  60674. weight: math.unit(1800, "lb"),
  60675. name: "Back",
  60676. image: {
  60677. source: "./media/characters/centbair/back.svg",
  60678. extra: 808/761,
  60679. bottom: 19/827
  60680. }
  60681. },
  60682. dick: {
  60683. height: math.unit(6.5, "feet"),
  60684. name: "Dick",
  60685. image: {
  60686. source: "./media/characters/centbair/dick.svg"
  60687. }
  60688. },
  60689. slit: {
  60690. height: math.unit(3.25, "feet"),
  60691. name: "Slit",
  60692. image: {
  60693. source: "./media/characters/centbair/slit.svg"
  60694. }
  60695. },
  60696. },
  60697. [
  60698. {
  60699. name: "Normal",
  60700. height: math.unit(12, "feet"),
  60701. default: true
  60702. },
  60703. ]
  60704. ))
  60705. characterMakers.push(() => makeCharacter(
  60706. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60707. {
  60708. front: {
  60709. height: math.unit(5 + 7/12, "feet"),
  60710. name: "Front",
  60711. image: {
  60712. source: "./media/characters/andy/front.svg",
  60713. extra: 634/588,
  60714. bottom: 36/670
  60715. },
  60716. extraAttributes: {
  60717. "pawLength": {
  60718. name: "Paw Length",
  60719. power: 1,
  60720. type: "length",
  60721. base: math.unit(1, "feet")
  60722. },
  60723. }
  60724. },
  60725. side: {
  60726. height: math.unit(5 + 7/12, "feet"),
  60727. name: "Side",
  60728. image: {
  60729. source: "./media/characters/andy/side.svg",
  60730. extra: 641/596,
  60731. bottom: 34/675
  60732. },
  60733. extraAttributes: {
  60734. "pawLength": {
  60735. name: "Paw Length",
  60736. power: 1,
  60737. type: "length",
  60738. base: math.unit(1, "feet")
  60739. },
  60740. }
  60741. },
  60742. back: {
  60743. height: math.unit(5 + 7/12, "feet"),
  60744. name: "Back",
  60745. image: {
  60746. source: "./media/characters/andy/back.svg",
  60747. extra: 618/583,
  60748. bottom: 39/657
  60749. },
  60750. extraAttributes: {
  60751. "pawLength": {
  60752. name: "Paw Length",
  60753. power: 1,
  60754. type: "length",
  60755. base: math.unit(1, "feet")
  60756. },
  60757. }
  60758. },
  60759. paw: {
  60760. height: math.unit(1.13, "feet"),
  60761. name: "Paw",
  60762. image: {
  60763. source: "./media/characters/andy/paw.svg"
  60764. }
  60765. },
  60766. },
  60767. [
  60768. {
  60769. name: "Micro",
  60770. height: math.unit(4, "inches")
  60771. },
  60772. {
  60773. name: "Normal",
  60774. height: math.unit(5 + 7/12, "feet"),
  60775. default: true
  60776. },
  60777. {
  60778. name: "Macro",
  60779. height: math.unit(390.42, "feet")
  60780. },
  60781. ]
  60782. ))
  60783. characterMakers.push(() => makeCharacter(
  60784. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60785. {
  60786. front: {
  60787. height: math.unit(7, "feet"),
  60788. weight: math.unit(250, "lb"),
  60789. name: "Front",
  60790. image: {
  60791. source: "./media/characters/vix-titan/front.svg",
  60792. extra: 460/428,
  60793. bottom: 15/475
  60794. },
  60795. extraAttributes: {
  60796. "pawWidth": {
  60797. name: "Paw Width",
  60798. power: 1,
  60799. type: "length",
  60800. base: math.unit(0.75, "feet")
  60801. },
  60802. }
  60803. },
  60804. },
  60805. [
  60806. {
  60807. name: "Normal",
  60808. height: math.unit(7, "feet"),
  60809. default: true
  60810. },
  60811. {
  60812. name: "Giant",
  60813. height: math.unit(1500, "feet")
  60814. },
  60815. {
  60816. name: "Mega",
  60817. height: math.unit(10, "miles")
  60818. },
  60819. {
  60820. name: "Giga",
  60821. height: math.unit(150, "miles")
  60822. },
  60823. {
  60824. name: "Tera",
  60825. height: math.unit(144000, "miles")
  60826. },
  60827. ]
  60828. ))
  60829. characterMakers.push(() => makeCharacter(
  60830. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60831. {
  60832. front: {
  60833. height: math.unit(6 + 2/12, "feet"),
  60834. name: "Front",
  60835. image: {
  60836. source: "./media/characters/reiku/front.svg",
  60837. extra: 1910/1757,
  60838. bottom: 103/2013
  60839. },
  60840. extraAttributes: {
  60841. "thighThickness": {
  60842. name: "Thigh Thickness",
  60843. power: 1,
  60844. type: "length",
  60845. base: math.unit(1.12, "feet")
  60846. },
  60847. "assThickness": {
  60848. name: "Ass Thickness",
  60849. power: 1,
  60850. type: "length",
  60851. base: math.unit(1.12*2, "feet")
  60852. },
  60853. }
  60854. },
  60855. side: {
  60856. height: math.unit(6 + 2/12, "feet"),
  60857. name: "Side",
  60858. image: {
  60859. source: "./media/characters/reiku/side.svg",
  60860. extra: 1846/1748,
  60861. bottom: 99/1945
  60862. },
  60863. extraAttributes: {
  60864. "thighThickness": {
  60865. name: "Thigh Thickness",
  60866. power: 1,
  60867. type: "length",
  60868. base: math.unit(1.12, "feet")
  60869. },
  60870. "assThickness": {
  60871. name: "Ass Thickness",
  60872. power: 1,
  60873. type: "length",
  60874. base: math.unit(1.12*2, "feet")
  60875. },
  60876. }
  60877. },
  60878. back: {
  60879. height: math.unit(6 + 2/12, "feet"),
  60880. name: "Back",
  60881. image: {
  60882. source: "./media/characters/reiku/back.svg",
  60883. extra: 1941/1786,
  60884. bottom: 34/1975
  60885. },
  60886. extraAttributes: {
  60887. "thighThickness": {
  60888. name: "Thigh Thickness",
  60889. power: 1,
  60890. type: "length",
  60891. base: math.unit(1.12, "feet")
  60892. },
  60893. "assThickness": {
  60894. name: "Ass Thickness",
  60895. power: 1,
  60896. type: "length",
  60897. base: math.unit(1.12*2, "feet")
  60898. },
  60899. }
  60900. },
  60901. head: {
  60902. height: math.unit(1.8, "feet"),
  60903. name: "Head",
  60904. image: {
  60905. source: "./media/characters/reiku/head.svg"
  60906. }
  60907. },
  60908. tailTop: {
  60909. height: math.unit(8.4, "feet"),
  60910. name: "Tail (Top)",
  60911. image: {
  60912. source: "./media/characters/reiku/tail-top.svg"
  60913. }
  60914. },
  60915. tailBottom: {
  60916. height: math.unit(8.4, "feet"),
  60917. name: "Tail (Bottom)",
  60918. image: {
  60919. source: "./media/characters/reiku/tail-bottom.svg"
  60920. }
  60921. },
  60922. foot: {
  60923. height: math.unit(2.6, "feet"),
  60924. name: "Foot",
  60925. image: {
  60926. source: "./media/characters/reiku/foot.svg"
  60927. }
  60928. },
  60929. footCurled: {
  60930. height: math.unit(2.3, "feet"),
  60931. name: "Foot (Curled)",
  60932. image: {
  60933. source: "./media/characters/reiku/foot-curled.svg"
  60934. }
  60935. },
  60936. footSide: {
  60937. height: math.unit(1.26, "feet"),
  60938. name: "Foot (Side)",
  60939. image: {
  60940. source: "./media/characters/reiku/foot-side.svg"
  60941. }
  60942. },
  60943. },
  60944. [
  60945. {
  60946. name: "Normal",
  60947. height: math.unit(6 + 2/12, "feet"),
  60948. default: true
  60949. },
  60950. ]
  60951. ))
  60952. characterMakers.push(() => makeCharacter(
  60953. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60954. {
  60955. front: {
  60956. height: math.unit(7, "feet"),
  60957. weight: math.unit(500, "kg"),
  60958. name: "Front",
  60959. image: {
  60960. source: "./media/characters/cialda/front.svg",
  60961. extra: 912/745,
  60962. bottom: 55/967
  60963. }
  60964. },
  60965. },
  60966. [
  60967. {
  60968. name: "Normal",
  60969. height: math.unit(7, "feet"),
  60970. default: true
  60971. },
  60972. ]
  60973. ))
  60974. characterMakers.push(() => makeCharacter(
  60975. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60976. {
  60977. side: {
  60978. height: math.unit(6, "feet"),
  60979. weight: math.unit(600, "lb"),
  60980. preyCapacity: math.unit(25, "liters"),
  60981. name: "Side",
  60982. image: {
  60983. source: "./media/characters/darkkin/side.svg",
  60984. extra: 1597/1447,
  60985. bottom: 101/1698
  60986. }
  60987. },
  60988. },
  60989. [
  60990. {
  60991. name: "Canon Height",
  60992. height: math.unit(568, "feet"),
  60993. default: true
  60994. },
  60995. ]
  60996. ))
  60997. characterMakers.push(() => makeCharacter(
  60998. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60999. {
  61000. front: {
  61001. height: math.unit(6, "feet"),
  61002. weight: math.unit(1500, "lb"),
  61003. preyCapacity: math.unit(3, "people"),
  61004. name: "Front",
  61005. image: {
  61006. source: "./media/characters/livnia/front.svg",
  61007. extra: 934/932,
  61008. bottom: 83/1017
  61009. }
  61010. },
  61011. back: {
  61012. height: math.unit(6, "feet"),
  61013. weight: math.unit(1500, "lb"),
  61014. preyCapacity: math.unit(3, "people"),
  61015. name: "Back",
  61016. image: {
  61017. source: "./media/characters/livnia/back.svg",
  61018. extra: 916/915,
  61019. bottom: 58/974
  61020. }
  61021. },
  61022. head: {
  61023. height: math.unit(1.53, "feet"),
  61024. name: "Head",
  61025. image: {
  61026. source: "./media/characters/livnia/head.svg"
  61027. }
  61028. },
  61029. maw: {
  61030. height: math.unit(0.78, "feet"),
  61031. name: "Maw",
  61032. image: {
  61033. source: "./media/characters/livnia/maw.svg"
  61034. }
  61035. },
  61036. genitals: {
  61037. height: math.unit(0.35, "feet"),
  61038. name: "Genitals",
  61039. image: {
  61040. source: "./media/characters/livnia/genitals.svg"
  61041. }
  61042. },
  61043. },
  61044. [
  61045. {
  61046. name: "Normal",
  61047. height: math.unit(1000, "feet"),
  61048. default: true
  61049. },
  61050. ]
  61051. ))
  61052. characterMakers.push(() => makeCharacter(
  61053. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61054. {
  61055. front: {
  61056. height: math.unit(4, "feet"),
  61057. weight: math.unit(73, "lb"),
  61058. name: "Front",
  61059. image: {
  61060. source: "./media/characters/hayaku/front.svg",
  61061. extra: 1011/888,
  61062. bottom: 33/1044
  61063. }
  61064. },
  61065. back: {
  61066. height: math.unit(4, "feet"),
  61067. weight: math.unit(73, "lb"),
  61068. name: "Back",
  61069. image: {
  61070. source: "./media/characters/hayaku/back.svg",
  61071. extra: 1040/930,
  61072. bottom: 20/1060
  61073. }
  61074. },
  61075. },
  61076. [
  61077. {
  61078. name: "Normal",
  61079. height: math.unit(4, "feet"),
  61080. default: true
  61081. },
  61082. ]
  61083. ))
  61084. characterMakers.push(() => makeCharacter(
  61085. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61086. {
  61087. front: {
  61088. height: math.unit(6 + 7/12, "feet"),
  61089. weight: math.unit(300, "lb"),
  61090. name: "Front",
  61091. image: {
  61092. source: "./media/characters/athena-bryzant/front.svg",
  61093. extra: 870/835,
  61094. bottom: 33/903
  61095. }
  61096. },
  61097. back: {
  61098. height: math.unit(6 + 7/12, "feet"),
  61099. weight: math.unit(300, "lb"),
  61100. name: "Back",
  61101. image: {
  61102. source: "./media/characters/athena-bryzant/back.svg",
  61103. extra: 858/823,
  61104. bottom: 30/888
  61105. }
  61106. },
  61107. head: {
  61108. height: math.unit(2.38, "feet"),
  61109. name: "Head",
  61110. image: {
  61111. source: "./media/characters/athena-bryzant/head.svg"
  61112. }
  61113. },
  61114. wings: {
  61115. height: math.unit(2.85, "feet"),
  61116. name: "Wings",
  61117. image: {
  61118. source: "./media/characters/athena-bryzant/wings.svg"
  61119. }
  61120. },
  61121. },
  61122. [
  61123. {
  61124. name: "Normal",
  61125. height: math.unit(6 + 7/12, "feet"),
  61126. default: true
  61127. },
  61128. {
  61129. name: "Big",
  61130. height: math.unit(8, "feet")
  61131. },
  61132. {
  61133. name: "Very Big",
  61134. height: math.unit(11, "feet")
  61135. },
  61136. ]
  61137. ))
  61138. characterMakers.push(() => makeCharacter(
  61139. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61140. {
  61141. side: {
  61142. height: math.unit(3, "meters"),
  61143. weight: math.unit(7500, "kg"),
  61144. preyCapacity: math.unit(1e12, "people"),
  61145. name: "Side",
  61146. image: {
  61147. source: "./media/characters/zel-kesh/side.svg",
  61148. extra: 910/407,
  61149. bottom: 147/1057
  61150. }
  61151. },
  61152. },
  61153. [
  61154. {
  61155. name: "Normal",
  61156. height: math.unit(3, "meters"),
  61157. default: true
  61158. },
  61159. ]
  61160. ))
  61161. characterMakers.push(() => makeCharacter(
  61162. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61163. {
  61164. front: {
  61165. height: math.unit(2, "meters"),
  61166. weight: math.unit(95, "kg"),
  61167. name: "Front",
  61168. image: {
  61169. source: "./media/characters/kane-fox/front.svg",
  61170. extra: 945/888,
  61171. bottom: 27/972
  61172. }
  61173. },
  61174. back: {
  61175. height: math.unit(2, "meters"),
  61176. weight: math.unit(95, "kg"),
  61177. name: "Back",
  61178. image: {
  61179. source: "./media/characters/kane-fox/back.svg",
  61180. extra: 959/914,
  61181. bottom: 15/974
  61182. }
  61183. },
  61184. frontLewd: {
  61185. height: math.unit(2, "meters"),
  61186. weight: math.unit(95, "kg"),
  61187. name: "Front (Lewd)",
  61188. image: {
  61189. source: "./media/characters/kane-fox/front-lewd.svg",
  61190. extra: 945/888,
  61191. bottom: 27/972
  61192. }
  61193. },
  61194. },
  61195. [
  61196. {
  61197. name: "Home Size",
  61198. height: math.unit(2, "meters"),
  61199. default: true
  61200. },
  61201. {
  61202. name: "Macro",
  61203. height: math.unit(200, "meters")
  61204. },
  61205. {
  61206. name: "Small Mega",
  61207. height: math.unit(3, "km")
  61208. },
  61209. {
  61210. name: "Mega",
  61211. height: math.unit(50, "km")
  61212. },
  61213. {
  61214. name: "Giga",
  61215. height: math.unit(200, "km")
  61216. },
  61217. {
  61218. name: "Giga+",
  61219. height: math.unit(2500, "km")
  61220. },
  61221. {
  61222. name: "Terra",
  61223. height: math.unit(70000, "km")
  61224. },
  61225. {
  61226. name: "Terra+",
  61227. height: math.unit(150000, "km")
  61228. },
  61229. {
  61230. name: "Terra++",
  61231. height: math.unit(400000, "km")
  61232. },
  61233. ]
  61234. ))
  61235. characterMakers.push(() => makeCharacter(
  61236. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61237. {
  61238. otter_front: {
  61239. height: math.unit(1.8, "meters"),
  61240. weight: math.unit(90, "kg"),
  61241. name: "Front",
  61242. image: {
  61243. source: "./media/characters/ayranus/otter-front.svg",
  61244. extra: 468/452,
  61245. bottom: 43/511
  61246. },
  61247. form: "otter",
  61248. },
  61249. otter_frontLewd: {
  61250. height: math.unit(1.8, "meters"),
  61251. weight: math.unit(90, "kg"),
  61252. name: "Front (Lewd)",
  61253. image: {
  61254. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61255. extra: 468/452,
  61256. bottom: 43/511
  61257. },
  61258. form: "otter",
  61259. },
  61260. lionbat_front: {
  61261. height: math.unit(1.8, "meters"),
  61262. weight: math.unit(90, "kg"),
  61263. name: "Front (Lewd)",
  61264. image: {
  61265. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61266. extra: 797/740,
  61267. bottom: 78/875
  61268. },
  61269. form: "lionbat",
  61270. },
  61271. paw: {
  61272. height: math.unit(1.5, "feet"),
  61273. name: "Paw",
  61274. image: {
  61275. source: "./media/characters/ayranus/paw.svg"
  61276. },
  61277. },
  61278. },
  61279. [
  61280. {
  61281. name: "Incognito",
  61282. height: math.unit(1.8, "meters"),
  61283. allForms: true
  61284. },
  61285. {
  61286. name: "Macro",
  61287. height: math.unit(60, "meters"),
  61288. allForms: true
  61289. },
  61290. {
  61291. name: "Macro+",
  61292. height: math.unit(200, "meters"),
  61293. allForms: true
  61294. },
  61295. {
  61296. name: "Mega",
  61297. height: math.unit(35, "km"),
  61298. allForms: true
  61299. },
  61300. {
  61301. name: "Giga",
  61302. height: math.unit(220, "km"),
  61303. allForms: true
  61304. },
  61305. {
  61306. name: "Giga+",
  61307. height: math.unit(1500, "km"),
  61308. allForms: true
  61309. },
  61310. {
  61311. name: "Terra",
  61312. height: math.unit(13000, "km"),
  61313. allForms: true
  61314. },
  61315. {
  61316. name: "Terra+",
  61317. height: math.unit(500000, "km"),
  61318. allForms: true
  61319. },
  61320. {
  61321. name: "Galactic",
  61322. height: math.unit(486080, "parsecs"),
  61323. default: true,
  61324. allForms: true
  61325. },
  61326. ],
  61327. {
  61328. "otter": {
  61329. name: "Otter",
  61330. default: true
  61331. },
  61332. "lionbat": {
  61333. name: "Lionbat",
  61334. },
  61335. }
  61336. ))
  61337. characterMakers.push(() => makeCharacter(
  61338. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61339. {
  61340. front: {
  61341. height: math.unit(7 + 4/12, "feet"),
  61342. weight: math.unit(400, "lb"),
  61343. name: "Front",
  61344. image: {
  61345. source: "./media/characters/proxy/front.svg",
  61346. extra: 1605/1542,
  61347. bottom: 55/1660
  61348. }
  61349. },
  61350. side: {
  61351. height: math.unit(7 + 4/12, "feet"),
  61352. weight: math.unit(400, "lb"),
  61353. name: "Side",
  61354. image: {
  61355. source: "./media/characters/proxy/side.svg",
  61356. extra: 794/759,
  61357. bottom: 6/800
  61358. }
  61359. },
  61360. hand: {
  61361. height: math.unit(1.54, "feet"),
  61362. name: "Hand",
  61363. image: {
  61364. source: "./media/characters/proxy/hand.svg"
  61365. }
  61366. },
  61367. paw: {
  61368. height: math.unit(1.53, "feet"),
  61369. name: "Paw",
  61370. image: {
  61371. source: "./media/characters/proxy/paw.svg"
  61372. }
  61373. },
  61374. maw: {
  61375. height: math.unit(1.9, "feet"),
  61376. name: "Maw",
  61377. image: {
  61378. source: "./media/characters/proxy/maw.svg"
  61379. }
  61380. },
  61381. },
  61382. [
  61383. {
  61384. name: "Normal",
  61385. height: math.unit(7 + 4/12, "feet"),
  61386. default: true
  61387. },
  61388. ]
  61389. ))
  61390. characterMakers.push(() => makeCharacter(
  61391. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61392. {
  61393. front: {
  61394. height: math.unit(4, "meters"),
  61395. name: "Front",
  61396. image: {
  61397. source: "./media/characters/crocozilla/front.svg",
  61398. extra: 1790/1742,
  61399. bottom: 78/1868
  61400. }
  61401. },
  61402. },
  61403. [
  61404. {
  61405. name: "Normal",
  61406. height: math.unit(4, "meters"),
  61407. default: true
  61408. },
  61409. ]
  61410. ))
  61411. characterMakers.push(() => makeCharacter(
  61412. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61413. {
  61414. front: {
  61415. height: math.unit(1.8, "meters"),
  61416. weight: math.unit(120, "kg"),
  61417. name: "Front",
  61418. image: {
  61419. source: "./media/characters/kurz/front.svg",
  61420. extra: 1960/1824,
  61421. bottom: 41/2001
  61422. }
  61423. },
  61424. back: {
  61425. height: math.unit(1.8, "meters"),
  61426. weight: math.unit(120, "kg"),
  61427. name: "Back",
  61428. image: {
  61429. source: "./media/characters/kurz/back.svg",
  61430. extra: 1906/1787,
  61431. bottom: 60/1966
  61432. }
  61433. },
  61434. frontLewd: {
  61435. height: math.unit(1.8, "meters"),
  61436. weight: math.unit(120, "kg"),
  61437. name: "Front (Lewd)",
  61438. image: {
  61439. source: "./media/characters/kurz/front-lewd.svg",
  61440. extra: 1960/1824,
  61441. bottom: 41/2001
  61442. }
  61443. },
  61444. maw: {
  61445. height: math.unit(0.69, "meters"),
  61446. name: "Maw",
  61447. image: {
  61448. source: "./media/characters/kurz/maw.svg"
  61449. }
  61450. },
  61451. },
  61452. [
  61453. {
  61454. name: "Original Size",
  61455. height: math.unit(1.8, "meters")
  61456. },
  61457. {
  61458. name: "Incognito Size",
  61459. height: math.unit(2.4, "meters"),
  61460. default: true
  61461. },
  61462. {
  61463. name: "Macro",
  61464. height: math.unit(30, "meters")
  61465. },
  61466. {
  61467. name: "Macro+",
  61468. height: math.unit(250, "meters")
  61469. },
  61470. {
  61471. name: "Mega",
  61472. height: math.unit(2, "km")
  61473. },
  61474. {
  61475. name: "Mega+",
  61476. height: math.unit(35, "km")
  61477. },
  61478. {
  61479. name: "Mega++",
  61480. height: math.unit(75, "km")
  61481. },
  61482. {
  61483. name: "Giga",
  61484. height: math.unit(250, "km")
  61485. },
  61486. {
  61487. name: "Terra",
  61488. height: math.unit(15000, "km")
  61489. },
  61490. {
  61491. name: "Terra+",
  61492. height: math.unit(2250000, "km")
  61493. },
  61494. ]
  61495. ))
  61496. characterMakers.push(() => makeCharacter(
  61497. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61498. {
  61499. front: {
  61500. height: math.unit(16 + 3/12, "feet"),
  61501. weight: math.unit(3575, "lb"),
  61502. name: "Front",
  61503. image: {
  61504. source: "./media/characters/nikita/front.svg",
  61505. extra: 1064/955,
  61506. bottom: 47/1111
  61507. }
  61508. },
  61509. },
  61510. [
  61511. {
  61512. name: "Normal",
  61513. height: math.unit(16 + 3/12, "feet"),
  61514. default: true
  61515. },
  61516. {
  61517. name: "Big",
  61518. height: math.unit(21, "feet")
  61519. },
  61520. {
  61521. name: "Biggest",
  61522. height: math.unit(50, "feet")
  61523. },
  61524. ]
  61525. ))
  61526. characterMakers.push(() => makeCharacter(
  61527. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61528. {
  61529. front: {
  61530. height: math.unit(1.92, "m"),
  61531. weight: math.unit(76, "kg"),
  61532. name: "Front",
  61533. image: {
  61534. source: "./media/characters/kyara/front.svg",
  61535. extra: 1550/1438,
  61536. bottom: 139/1689
  61537. }
  61538. },
  61539. back: {
  61540. height: math.unit(1.92, "m"),
  61541. weight: math.unit(76, "kg"),
  61542. name: "Back",
  61543. image: {
  61544. source: "./media/characters/kyara/back.svg",
  61545. extra: 1523/1427,
  61546. bottom: 83/1606
  61547. }
  61548. },
  61549. head: {
  61550. height: math.unit(1.22, "feet"),
  61551. name: "Head",
  61552. image: {
  61553. source: "./media/characters/kyara/head.svg"
  61554. }
  61555. },
  61556. maw: {
  61557. height: math.unit(0.73, "feet"),
  61558. name: "Maw",
  61559. image: {
  61560. source: "./media/characters/kyara/maw.svg"
  61561. }
  61562. },
  61563. paws: {
  61564. height: math.unit(0.95, "feet"),
  61565. name: "Paws",
  61566. image: {
  61567. source: "./media/characters/kyara/paws.svg"
  61568. }
  61569. },
  61570. },
  61571. [
  61572. {
  61573. name: "Normal",
  61574. height: math.unit(1.92, "meters"),
  61575. default: true
  61576. },
  61577. {
  61578. name: "Mini Macro",
  61579. height: math.unit(192, "meters")
  61580. },
  61581. {
  61582. name: "Macro",
  61583. height: math.unit(480, "meters")
  61584. },
  61585. {
  61586. name: "Mega Macro",
  61587. height: math.unit(1440, "meters")
  61588. },
  61589. ]
  61590. ))
  61591. characterMakers.push(() => makeCharacter(
  61592. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61593. {
  61594. front: {
  61595. height: math.unit(6, "feet"),
  61596. weight: math.unit(160, "lbs"),
  61597. preyCapacity: math.unit(0.05, "people"),
  61598. name: "Front",
  61599. image: {
  61600. source: "./media/characters/layla-amari/front.svg",
  61601. extra: 1922/1723,
  61602. bottom: 90/2012
  61603. }
  61604. },
  61605. back: {
  61606. height: math.unit(6, "feet"),
  61607. weight: math.unit(160, "lbs"),
  61608. preyCapacity: math.unit(0.05, "people"),
  61609. name: "Back",
  61610. image: {
  61611. source: "./media/characters/layla-amari/back.svg",
  61612. extra: 1917/1718,
  61613. bottom: 50/1967
  61614. }
  61615. },
  61616. frontDressed: {
  61617. height: math.unit(6, "feet"),
  61618. weight: math.unit(160, "lbs"),
  61619. preyCapacity: math.unit(0.05, "people"),
  61620. name: "Front (Dressed)",
  61621. image: {
  61622. source: "./media/characters/layla-amari/front-dressed.svg",
  61623. extra: 1922/1723,
  61624. bottom: 90/2012
  61625. }
  61626. },
  61627. face: {
  61628. height: math.unit(0.93, "feet"),
  61629. name: "Face",
  61630. image: {
  61631. source: "./media/characters/layla-amari/face.svg"
  61632. }
  61633. },
  61634. hand: {
  61635. height: math.unit(0.66 , "feet"),
  61636. name: "Hand",
  61637. image: {
  61638. source: "./media/characters/layla-amari/hand.svg"
  61639. }
  61640. },
  61641. foot: {
  61642. height: math.unit(1, "feet"),
  61643. name: "Foot",
  61644. image: {
  61645. source: "./media/characters/layla-amari/foot.svg"
  61646. }
  61647. },
  61648. necklace: {
  61649. height: math.unit(0.32, "feet"),
  61650. name: "Necklace",
  61651. image: {
  61652. source: "./media/characters/layla-amari/necklace.svg"
  61653. }
  61654. },
  61655. nipple: {
  61656. height: math.unit(0.2, "feet"),
  61657. name: "Nipple",
  61658. image: {
  61659. source: "./media/characters/layla-amari/nipple.svg"
  61660. }
  61661. },
  61662. slit: {
  61663. height: math.unit(0.26, "feet"),
  61664. name: "Slit",
  61665. image: {
  61666. source: "./media/characters/layla-amari/slit.svg"
  61667. }
  61668. },
  61669. },
  61670. [
  61671. {
  61672. name: "Natural",
  61673. height: math.unit(825, "feet"),
  61674. default: true
  61675. },
  61676. {
  61677. name: "Enhanced",
  61678. height: math.unit(8250, "feet")
  61679. },
  61680. {
  61681. name: "Apparent Size",
  61682. height: math.unit(9.04363e+8, "meters")
  61683. },
  61684. ]
  61685. ))
  61686. characterMakers.push(() => makeCharacter(
  61687. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61688. {
  61689. front: {
  61690. height: math.unit(1.3, "meters"),
  61691. name: "Front",
  61692. image: {
  61693. source: "./media/characters/percy/front.svg",
  61694. extra: 1444/1289,
  61695. bottom: 54/1498
  61696. }
  61697. },
  61698. },
  61699. [
  61700. {
  61701. name: "Normal",
  61702. height: math.unit(1.3, "meters"),
  61703. default: true
  61704. },
  61705. ]
  61706. ))
  61707. characterMakers.push(() => makeCharacter(
  61708. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61709. {
  61710. side: {
  61711. height: math.unit(10, "meters"),
  61712. name: "Side",
  61713. image: {
  61714. source: "./media/characters/grev/side.svg",
  61715. extra: 653/266,
  61716. bottom: 77/730
  61717. }
  61718. },
  61719. head: {
  61720. height: math.unit(16.2, "m"),
  61721. name: "Head",
  61722. image: {
  61723. source: "./media/characters/grev/head.svg"
  61724. }
  61725. },
  61726. dick: {
  61727. height: math.unit(2.8135932034, "m"),
  61728. name: "Dick",
  61729. image: {
  61730. source: "./media/characters/grev/dick.svg"
  61731. }
  61732. },
  61733. },
  61734. [
  61735. {
  61736. name: "Friend-Sized",
  61737. height: math.unit(80, "cm")
  61738. },
  61739. {
  61740. name: "Normal",
  61741. height: math.unit(10, "meters"),
  61742. default: true
  61743. },
  61744. {
  61745. name: "Macro",
  61746. height: math.unit(200, "meters")
  61747. },
  61748. ]
  61749. ))
  61750. characterMakers.push(() => makeCharacter(
  61751. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61752. {
  61753. front: {
  61754. height: math.unit(19.75, "feet"),
  61755. weight: math.unit(20000, "lb"),
  61756. name: "Front",
  61757. image: {
  61758. source: "./media/characters/azuuca/front.svg",
  61759. extra: 1593/1511,
  61760. bottom: 55/1648
  61761. }
  61762. },
  61763. },
  61764. [
  61765. {
  61766. name: "Normal",
  61767. height: math.unit(19.75, "feet"),
  61768. default: true
  61769. },
  61770. ]
  61771. ))
  61772. characterMakers.push(() => makeCharacter(
  61773. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61774. {
  61775. front: {
  61776. height: math.unit(15, "feet"),
  61777. weight: math.unit(1500, "lb"),
  61778. name: "Front",
  61779. image: {
  61780. source: "./media/characters/valuria/front.svg",
  61781. extra: 1588/1486,
  61782. bottom: 31/1619
  61783. }
  61784. },
  61785. },
  61786. [
  61787. {
  61788. name: "Normal",
  61789. height: math.unit(15, "feet"),
  61790. default: true
  61791. },
  61792. {
  61793. name: "Small",
  61794. height: math.unit(500, "feet")
  61795. },
  61796. {
  61797. name: "Macro",
  61798. height: math.unit(4000, "feet")
  61799. },
  61800. {
  61801. name: "Mega Macro",
  61802. height: math.unit(2000, "miles")
  61803. },
  61804. {
  61805. name: "Giga Macro",
  61806. height: math.unit(3e6, "miles")
  61807. },
  61808. ]
  61809. ))
  61810. characterMakers.push(() => makeCharacter(
  61811. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61812. {
  61813. front: {
  61814. height: math.unit(3500, "solarradii"),
  61815. name: "Front",
  61816. image: {
  61817. source: "./media/characters/terigaia/front.svg",
  61818. extra: 1531/1451,
  61819. bottom: 98/1629
  61820. }
  61821. },
  61822. },
  61823. [
  61824. {
  61825. name: "Normal",
  61826. height: math.unit(3500, "solarradii"),
  61827. default: true
  61828. },
  61829. ]
  61830. ))
  61831. characterMakers.push(() => makeCharacter(
  61832. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61833. {
  61834. front: {
  61835. height: math.unit(9.34, "feet"),
  61836. weight: math.unit(600, "lb"),
  61837. name: "Front",
  61838. image: {
  61839. source: "./media/characters/blair-blaziken/front.svg",
  61840. extra: 1557/1462,
  61841. bottom: 55/1612
  61842. }
  61843. },
  61844. },
  61845. [
  61846. {
  61847. name: "Normal",
  61848. height: math.unit(9.34, "feet"),
  61849. default: true
  61850. },
  61851. ]
  61852. ))
  61853. characterMakers.push(() => makeCharacter(
  61854. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61855. {
  61856. pistrogre_front: {
  61857. height: math.unit(10, "feet"),
  61858. weight: math.unit(10, "tons"),
  61859. name: "Front",
  61860. image: {
  61861. source: "./media/characters/braxia/pistrogre-front.svg",
  61862. extra: 1531/1334,
  61863. bottom: 114/1645
  61864. },
  61865. form: "pistrogre",
  61866. default: true
  61867. },
  61868. human_front: {
  61869. height: math.unit(10, "feet"),
  61870. weight: math.unit(10, "tons"),
  61871. name: "Front",
  61872. image: {
  61873. source: "./media/characters/braxia/human-front.svg",
  61874. extra: 1574/1501,
  61875. bottom: 37/1611
  61876. },
  61877. form: "human",
  61878. default: true
  61879. },
  61880. },
  61881. [
  61882. {
  61883. name: "Normal",
  61884. height: math.unit(10, "feet"),
  61885. default: true,
  61886. allForms: true
  61887. },
  61888. {
  61889. name: "Macro",
  61890. height: math.unit(1000, "feet"),
  61891. allForms: true
  61892. },
  61893. {
  61894. name: "Mega Macro",
  61895. height: math.unit(100, "miles"),
  61896. allForms: true
  61897. },
  61898. {
  61899. name: "Cosmic",
  61900. height: math.unit(1000000, "lightyears"),
  61901. allForms: true
  61902. },
  61903. {
  61904. name: "ϐѮԆԬӁꭍϞԢ",
  61905. height: math.unit(1000, "multiverses"),
  61906. allForms: true
  61907. },
  61908. ],
  61909. {
  61910. "pistrogre": {
  61911. name: "Pistrogre",
  61912. default: true
  61913. },
  61914. "human": {
  61915. name: "Human",
  61916. },
  61917. }
  61918. ))
  61919. characterMakers.push(() => makeCharacter(
  61920. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61921. {
  61922. front: {
  61923. height: math.unit(6 + 1/12, "feet"),
  61924. weight: math.unit(280, "lb"),
  61925. name: "Front",
  61926. image: {
  61927. source: "./media/characters/kiriga-yato/front.svg",
  61928. extra: 445/394,
  61929. bottom: 11/456
  61930. }
  61931. },
  61932. },
  61933. [
  61934. {
  61935. name: "Descended",
  61936. height: math.unit(3, "feet")
  61937. },
  61938. {
  61939. name: "Average",
  61940. height: math.unit(6 + 1/12, "feet"),
  61941. default: true
  61942. },
  61943. {
  61944. name: "Ascended",
  61945. height: math.unit(9 + 2/12, "feet")
  61946. },
  61947. ]
  61948. ))
  61949. characterMakers.push(() => makeCharacter(
  61950. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61951. {
  61952. front: {
  61953. height: math.unit(6, "feet"),
  61954. weight: math.unit(150, "lb"),
  61955. name: "Front",
  61956. image: {
  61957. source: "./media/characters/kylie/front.svg",
  61958. extra: 1114/1046,
  61959. bottom: 65/1179
  61960. },
  61961. extraAttributes: {
  61962. "hoofSize": {
  61963. name: "Hoof Size",
  61964. power: 2,
  61965. type: "area",
  61966. base: math.unit(0.034, "m^2")
  61967. },
  61968. "footSize": {
  61969. name: "Foot Size",
  61970. power: 2,
  61971. type: "area",
  61972. base: math.unit(0.75, "m^2")
  61973. },
  61974. }
  61975. },
  61976. side: {
  61977. height: math.unit(6, "feet"),
  61978. weight: math.unit(150, "lb"),
  61979. name: "Side",
  61980. image: {
  61981. source: "./media/characters/kylie/side.svg",
  61982. extra: 1178/1110,
  61983. bottom: 21/1199
  61984. },
  61985. extraAttributes: {
  61986. "hoofSize": {
  61987. name: "Hoof Size",
  61988. power: 2,
  61989. type: "area",
  61990. base: math.unit(0.034, "m^2")
  61991. },
  61992. "footSize": {
  61993. name: "Foot Size",
  61994. power: 2,
  61995. type: "area",
  61996. base: math.unit(0.75, "m^2")
  61997. },
  61998. }
  61999. },
  62000. back: {
  62001. height: math.unit(6, "feet"),
  62002. weight: math.unit(150, "lb"),
  62003. name: "Back",
  62004. image: {
  62005. source: "./media/characters/kylie/back.svg",
  62006. extra: 1115/1047,
  62007. bottom: 66/1181
  62008. },
  62009. extraAttributes: {
  62010. "hoofSize": {
  62011. name: "Hoof Size",
  62012. power: 2,
  62013. type: "area",
  62014. base: math.unit(0.034, "m^2")
  62015. },
  62016. "footSize": {
  62017. name: "Foot Size",
  62018. power: 2,
  62019. type: "area",
  62020. base: math.unit(0.75, "m^2")
  62021. },
  62022. }
  62023. },
  62024. head: {
  62025. height: math.unit(1.85, "feet"),
  62026. name: "Head",
  62027. image: {
  62028. source: "./media/characters/kylie/head.svg"
  62029. }
  62030. },
  62031. },
  62032. [
  62033. {
  62034. name: "Normal",
  62035. height: math.unit(90, "meters"),
  62036. default: true
  62037. },
  62038. ]
  62039. ))
  62040. characterMakers.push(() => makeCharacter(
  62041. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62042. {
  62043. front: {
  62044. height: math.unit(245, "feet"),
  62045. weight: math.unit(400000, "lb"),
  62046. name: "Front",
  62047. image: {
  62048. source: "./media/characters/sabado/front.svg",
  62049. extra: 1309/1164,
  62050. bottom: 29/1338
  62051. }
  62052. },
  62053. },
  62054. [
  62055. {
  62056. name: "Normal",
  62057. height: math.unit(245, "feet"),
  62058. default: true
  62059. },
  62060. ]
  62061. ))
  62062. characterMakers.push(() => makeCharacter(
  62063. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62064. {
  62065. shark_front: {
  62066. height: math.unit(2, "meters"),
  62067. weight: math.unit(200, "kg"),
  62068. name: "Front",
  62069. image: {
  62070. source: "./media/characters/zechal/shark-front.svg",
  62071. extra: 969/925,
  62072. bottom: 74/1043
  62073. },
  62074. form: "shark",
  62075. },
  62076. shark_back: {
  62077. height: math.unit(2, "meters"),
  62078. weight: math.unit(200, "kg"),
  62079. name: "Back",
  62080. image: {
  62081. source: "./media/characters/zechal/shark-back.svg",
  62082. extra: 994/949,
  62083. bottom: 176/1170
  62084. },
  62085. form: "shark",
  62086. },
  62087. shark_frontLewd: {
  62088. height: math.unit(2, "meters"),
  62089. weight: math.unit(200, "kg"),
  62090. name: "Front (Lewd)",
  62091. image: {
  62092. source: "./media/characters/zechal/shark-front-lewd.svg",
  62093. extra: 969/925,
  62094. bottom: 74/1043
  62095. },
  62096. form: "shark",
  62097. },
  62098. shark_side: {
  62099. height: math.unit(1.56, "meters"),
  62100. weight: math.unit(200, "kg"),
  62101. name: "Side",
  62102. image: {
  62103. source: "./media/characters/zechal/shark-side.svg"
  62104. },
  62105. form: "shark",
  62106. },
  62107. dragon_front: {
  62108. height: math.unit(2, "meters"),
  62109. weight: math.unit(200, "kg"),
  62110. name: "Front",
  62111. image: {
  62112. source: "./media/characters/zechal/dragon-front.svg",
  62113. extra: 1041/925,
  62114. bottom: 74/1115
  62115. },
  62116. form: "dragon",
  62117. },
  62118. dragon_back: {
  62119. height: math.unit(2, "meters"),
  62120. weight: math.unit(200, "kg"),
  62121. name: "Back",
  62122. image: {
  62123. source: "./media/characters/zechal/dragon-back.svg",
  62124. extra: 1061/949,
  62125. bottom: 176/1237
  62126. },
  62127. form: "dragon",
  62128. },
  62129. dragon_frontLewd: {
  62130. height: math.unit(2, "meters"),
  62131. weight: math.unit(200, "kg"),
  62132. name: "Front (Lewd)",
  62133. image: {
  62134. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62135. extra: 1041/925,
  62136. bottom: 74/1115
  62137. },
  62138. form: "dragon",
  62139. },
  62140. dragon_side: {
  62141. height: math.unit(1.56, "meters"),
  62142. weight: math.unit(200, "kg"),
  62143. name: "Side",
  62144. image: {
  62145. source: "./media/characters/zechal/dragon-side.svg"
  62146. },
  62147. form: "dragon",
  62148. },
  62149. foot: {
  62150. height: math.unit(0.5, "meters"),
  62151. name: "Foot",
  62152. image: {
  62153. source: "./media/characters/zechal/foot.svg"
  62154. }
  62155. },
  62156. sheathFront: {
  62157. height: math.unit(0.45, "meters"),
  62158. name: "Sheath (Front)",
  62159. image: {
  62160. source: "./media/characters/zechal/sheath-front.svg"
  62161. }
  62162. },
  62163. sheathSide: {
  62164. height: math.unit(0.45, "meters"),
  62165. name: "Sheath (Side)",
  62166. image: {
  62167. source: "./media/characters/zechal/sheath-side.svg"
  62168. }
  62169. },
  62170. },
  62171. [
  62172. {
  62173. name: "Incognito",
  62174. height: math.unit(2, "meters"),
  62175. allForms: true
  62176. },
  62177. {
  62178. name: "Small Rampage",
  62179. height: math.unit(25, "meters"),
  62180. allForms: true
  62181. },
  62182. {
  62183. name: "Home Size",
  62184. height: math.unit(250, "meters"),
  62185. allForms: true,
  62186. default: true
  62187. },
  62188. {
  62189. name: "Macro+",
  62190. height: math.unit(700, "meters"),
  62191. allForms: true
  62192. },
  62193. {
  62194. name: "Small Mega",
  62195. height: math.unit(3, "km"),
  62196. allForms: true
  62197. },
  62198. {
  62199. name: "Mega",
  62200. height: math.unit(15, "km"),
  62201. allForms: true
  62202. },
  62203. {
  62204. name: "Giga",
  62205. height: math.unit(300, "km"),
  62206. allForms: true
  62207. },
  62208. {
  62209. name: "Giga+",
  62210. height: math.unit(1750, "km"),
  62211. allForms: true
  62212. },
  62213. {
  62214. name: "Continental",
  62215. height: math.unit(5000, "km"),
  62216. allForms: true
  62217. },
  62218. {
  62219. name: "Terra",
  62220. height: math.unit(20000, "km"),
  62221. allForms: true
  62222. },
  62223. {
  62224. name: "Terra+",
  62225. height: math.unit(300000, "km"),
  62226. allForms: true
  62227. },
  62228. {
  62229. name: "Solar",
  62230. height: math.unit(40000000, "km"),
  62231. allForms: true
  62232. },
  62233. {
  62234. name: "Galactic",
  62235. height: math.unit(810133, "parsecs"),
  62236. allForms: true
  62237. },
  62238. {
  62239. name: "Universal",
  62240. height: math.unit(25, "universes"),
  62241. allForms: true
  62242. },
  62243. ],
  62244. {
  62245. "shark": {
  62246. name: "Shark",
  62247. default: true
  62248. },
  62249. "dragon": {
  62250. name: "Dragon",
  62251. },
  62252. }
  62253. ))
  62254. characterMakers.push(() => makeCharacter(
  62255. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62256. {
  62257. front: {
  62258. height: math.unit(2.2, "meters"),
  62259. weight: math.unit(150, "kg"),
  62260. name: "Front",
  62261. image: {
  62262. source: "./media/characters/sergis/front.svg",
  62263. extra: 1314/1312,
  62264. bottom: 112/1426
  62265. }
  62266. },
  62267. back: {
  62268. height: math.unit(2.2, "meters"),
  62269. weight: math.unit(150, "kg"),
  62270. name: "Back",
  62271. image: {
  62272. source: "./media/characters/sergis/back.svg",
  62273. extra: 1335/1333,
  62274. bottom: 19/1354
  62275. }
  62276. },
  62277. frontLewd: {
  62278. height: math.unit(2.2, "meters"),
  62279. weight: math.unit(150, "kg"),
  62280. name: "Front (Lewd)",
  62281. image: {
  62282. source: "./media/characters/sergis/front-lewd.svg",
  62283. extra: 1314/1312,
  62284. bottom: 112/1426
  62285. }
  62286. },
  62287. frontDressed: {
  62288. height: math.unit(2.2, "meters"),
  62289. weight: math.unit(150, "kg"),
  62290. name: "Front (Dressed)",
  62291. image: {
  62292. source: "./media/characters/sergis/front-dressed.svg",
  62293. extra: 1330/1328,
  62294. bottom: 95/1425
  62295. }
  62296. },
  62297. frontDressedLewd: {
  62298. height: math.unit(2.2, "meters"),
  62299. weight: math.unit(150, "kg"),
  62300. name: "Front (Dressed, Lewd)",
  62301. image: {
  62302. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62303. extra: 1330/1328,
  62304. bottom: 95/1425
  62305. }
  62306. },
  62307. maw: {
  62308. height: math.unit(0.48, "meters"),
  62309. name: "Maw",
  62310. image: {
  62311. source: "./media/characters/sergis/maw.svg"
  62312. }
  62313. },
  62314. sheath: {
  62315. height: math.unit(0.38, "meters"),
  62316. name: "Sheath",
  62317. image: {
  62318. source: "./media/characters/sergis/sheath.svg"
  62319. }
  62320. },
  62321. },
  62322. [
  62323. {
  62324. name: "Incognito Size",
  62325. height: math.unit(2.2, "meters")
  62326. },
  62327. {
  62328. name: "Small Macro",
  62329. height: math.unit(40, "meters")
  62330. },
  62331. {
  62332. name: "Macro",
  62333. height: math.unit(150, "meters")
  62334. },
  62335. {
  62336. name: "Macro+",
  62337. height: math.unit(300, "meters")
  62338. },
  62339. {
  62340. name: "Mega",
  62341. height: math.unit(2.5, "km")
  62342. },
  62343. {
  62344. name: "Mega+",
  62345. height: math.unit(30, "km")
  62346. },
  62347. {
  62348. name: "Home Size",
  62349. height: math.unit(300, "km"),
  62350. default: true
  62351. },
  62352. {
  62353. name: "Giga+",
  62354. height: math.unit(1000, "km")
  62355. },
  62356. {
  62357. name: "Giga++",
  62358. height: math.unit(6000, "km")
  62359. },
  62360. {
  62361. name: "Terra",
  62362. height: math.unit(70000, "km")
  62363. },
  62364. {
  62365. name: "Terra+",
  62366. height: math.unit(200000, "km")
  62367. },
  62368. {
  62369. name: "Galactic",
  62370. height: math.unit(634200, "lightyears")
  62371. },
  62372. ]
  62373. ))
  62374. characterMakers.push(() => makeCharacter(
  62375. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62376. {
  62377. standard: {
  62378. height: math.unit(1 + 5/12, "feet"),
  62379. name: "Standard",
  62380. image: {
  62381. source: "./media/characters/spade/standard.svg",
  62382. extra: 1794/1703,
  62383. bottom: 115/1909
  62384. }
  62385. },
  62386. disguised: {
  62387. height: math.unit(1 + 5/12, "feet"),
  62388. name: "Disguised",
  62389. image: {
  62390. source: "./media/characters/spade/disguised.svg",
  62391. extra: 1794/1700,
  62392. bottom: 98/1892
  62393. }
  62394. },
  62395. },
  62396. [
  62397. {
  62398. name: "Normal",
  62399. height: math.unit(1 + 5/12, "feet"),
  62400. default: true
  62401. },
  62402. ]
  62403. ))
  62404. characterMakers.push(() => makeCharacter(
  62405. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62406. {
  62407. frontNsfw: {
  62408. height: math.unit(5, "meters"),
  62409. weight: math.unit(2000, "kg"),
  62410. preyCapacity: math.unit(5, "people"),
  62411. name: "Front (NSFW)",
  62412. image: {
  62413. source: "./media/characters/zeanlain/front-nsfw.svg",
  62414. extra: 1087/938,
  62415. bottom: 93/1180
  62416. },
  62417. extraAttributes: {
  62418. "wingspan": {
  62419. name: "Wingspan",
  62420. power: 1,
  62421. type: "length",
  62422. base: math.unit(10, "meters")
  62423. },
  62424. "footSize": {
  62425. name: "Foot Size",
  62426. power: 1,
  62427. type: "length",
  62428. base: math.unit(0.68, "meters")
  62429. },
  62430. "cockLength": {
  62431. name: "Cock Length",
  62432. power: 1,
  62433. type: "length",
  62434. base: math.unit(1.69, "meters")
  62435. },
  62436. "ballVolume": {
  62437. name: "Ball Volume",
  62438. power: 3,
  62439. type: "volume",
  62440. base: math.unit(0.028, "m^3")
  62441. },
  62442. }
  62443. },
  62444. front: {
  62445. height: math.unit(5, "meters"),
  62446. weight: math.unit(2000, "kg"),
  62447. preyCapacity: math.unit(3, "people"),
  62448. name: "Front",
  62449. image: {
  62450. source: "./media/characters/zeanlain/front.svg",
  62451. extra: 1087/938,
  62452. bottom: 93/1180
  62453. },
  62454. extraAttributes: {
  62455. "wingspan": {
  62456. name: "Wingspan",
  62457. power: 1,
  62458. type: "length",
  62459. base: math.unit(10, "meters")
  62460. },
  62461. "footSize": {
  62462. name: "Foot Size",
  62463. power: 1,
  62464. type: "length",
  62465. base: math.unit(0.68, "meters")
  62466. },
  62467. }
  62468. },
  62469. },
  62470. [
  62471. {
  62472. name: "Normal",
  62473. height: math.unit(5, "meters"),
  62474. default: true
  62475. },
  62476. ]
  62477. ))
  62478. characterMakers.push(() => makeCharacter(
  62479. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62480. {
  62481. front: {
  62482. height: math.unit(10, "meters"),
  62483. weight: math.unit(250000, "kg"),
  62484. name: "Front",
  62485. image: {
  62486. source: "./media/characters/airamis/front.svg",
  62487. extra: 865/835,
  62488. bottom: 13/878
  62489. }
  62490. },
  62491. },
  62492. [
  62493. {
  62494. name: "Normal",
  62495. height: math.unit(10, "meters"),
  62496. default: true
  62497. },
  62498. ]
  62499. ))
  62500. characterMakers.push(() => makeCharacter(
  62501. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62502. {
  62503. front: {
  62504. height: math.unit(3 + 3/12, "feet"),
  62505. weight: math.unit(75, "lb"),
  62506. name: "Front",
  62507. image: {
  62508. source: "./media/characters/corra-tourmaline/front.svg",
  62509. extra: 1037/864,
  62510. bottom: 39/1076
  62511. }
  62512. },
  62513. back: {
  62514. height: math.unit(3 + 3/12, "feet"),
  62515. weight: math.unit(75, "lb"),
  62516. name: "Back",
  62517. image: {
  62518. source: "./media/characters/corra-tourmaline/back.svg",
  62519. extra: 1022/849,
  62520. bottom: 26/1048
  62521. }
  62522. },
  62523. dressed: {
  62524. height: math.unit(3 + 3/12, "feet"),
  62525. weight: math.unit(75, "lb"),
  62526. name: "Dressed",
  62527. image: {
  62528. source: "./media/characters/corra-tourmaline/dressed.svg",
  62529. extra: 1037/864,
  62530. bottom: 39/1076
  62531. }
  62532. },
  62533. beans: {
  62534. height: math.unit(0.37, "feet"),
  62535. name: "Beans",
  62536. image: {
  62537. source: "./media/characters/corra-tourmaline/beans.svg"
  62538. }
  62539. },
  62540. },
  62541. [
  62542. {
  62543. name: "Normal",
  62544. height: math.unit(3 + 3/12, "feet"),
  62545. default: true
  62546. },
  62547. {
  62548. name: "Macro",
  62549. height: math.unit(32, "feet")
  62550. },
  62551. ]
  62552. ))
  62553. characterMakers.push(() => makeCharacter(
  62554. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62555. {
  62556. front: {
  62557. height: math.unit(6 + 2/12, "feet"),
  62558. weight: math.unit(203, "lb"),
  62559. name: "Front",
  62560. image: {
  62561. source: "./media/characters/maki-kawa/front.svg",
  62562. extra: 950/890,
  62563. bottom: 62/1012
  62564. }
  62565. },
  62566. back: {
  62567. height: math.unit(6 + 2/12, "feet"),
  62568. weight: math.unit(203, "lb"),
  62569. name: "Back",
  62570. image: {
  62571. source: "./media/characters/maki-kawa/back.svg",
  62572. extra: 953/878,
  62573. bottom: 49/1002
  62574. }
  62575. },
  62576. frontBarista: {
  62577. height: math.unit(6 + 2/12, "feet"),
  62578. weight: math.unit(203, "lb"),
  62579. name: "Front (Barista)",
  62580. image: {
  62581. source: "./media/characters/maki-kawa/front-barista.svg",
  62582. extra: 943/883,
  62583. bottom: 69/1012
  62584. }
  62585. },
  62586. backBarista: {
  62587. height: math.unit(6 + 2/12, "feet"),
  62588. weight: math.unit(203, "lb"),
  62589. name: "Back (Barista)",
  62590. image: {
  62591. source: "./media/characters/maki-kawa/back-barista.svg",
  62592. extra: 953/878,
  62593. bottom: 49/1002
  62594. }
  62595. },
  62596. frontWrestler: {
  62597. height: math.unit(6 + 2/12, "feet"),
  62598. weight: math.unit(203, "lb"),
  62599. name: "Front (Wrestler)",
  62600. image: {
  62601. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62602. extra: 950/890,
  62603. bottom: 62/1012
  62604. }
  62605. },
  62606. backWrestler: {
  62607. height: math.unit(6 + 2/12, "feet"),
  62608. weight: math.unit(203, "lb"),
  62609. name: "Back (Wrestler)",
  62610. image: {
  62611. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62612. extra: 953/878,
  62613. bottom: 49/1002
  62614. }
  62615. },
  62616. headFront: {
  62617. height: math.unit(1.64, "feet"),
  62618. name: "Head (Front)",
  62619. image: {
  62620. source: "./media/characters/maki-kawa/head-front.svg"
  62621. }
  62622. },
  62623. headSide: {
  62624. height: math.unit(1.59, "feet"),
  62625. name: "Head (Side)",
  62626. image: {
  62627. source: "./media/characters/maki-kawa/head-side.svg"
  62628. }
  62629. },
  62630. paw: {
  62631. height: math.unit(0.9, "feet"),
  62632. name: "Paw",
  62633. image: {
  62634. source: "./media/characters/maki-kawa/paw.svg"
  62635. }
  62636. },
  62637. },
  62638. [
  62639. {
  62640. name: "Normal",
  62641. height: math.unit(6 + 2/12, "feet"),
  62642. default: true
  62643. },
  62644. {
  62645. name: "Macro",
  62646. height: math.unit(617, "feet")
  62647. },
  62648. ]
  62649. ))
  62650. characterMakers.push(() => makeCharacter(
  62651. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62652. {
  62653. front: {
  62654. height: math.unit(10, "feet"),
  62655. weight: math.unit(1500, "lb"),
  62656. name: "Front",
  62657. image: {
  62658. source: "./media/characters/lennox/front.svg",
  62659. extra: 1623/1496,
  62660. bottom: 18/1641
  62661. }
  62662. },
  62663. back: {
  62664. height: math.unit(10, "feet"),
  62665. weight: math.unit(1500, "lb"),
  62666. name: "Back",
  62667. image: {
  62668. source: "./media/characters/lennox/back.svg",
  62669. extra: 1641/1481,
  62670. bottom: 13/1654
  62671. }
  62672. },
  62673. maw: {
  62674. height: math.unit(2.94, "feet"),
  62675. name: "Maw",
  62676. image: {
  62677. source: "./media/characters/lennox/maw.svg"
  62678. }
  62679. },
  62680. },
  62681. [
  62682. {
  62683. name: "Micro",
  62684. height: math.unit(1, "inch")
  62685. },
  62686. {
  62687. name: "Normal",
  62688. height: math.unit(10, "feet"),
  62689. default: true
  62690. },
  62691. {
  62692. name: "Macro",
  62693. height: math.unit(200, "feet")
  62694. },
  62695. ]
  62696. ))
  62697. characterMakers.push(() => makeCharacter(
  62698. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62699. {
  62700. frontDressed: {
  62701. height: math.unit(15 + 7/12, "feet"),
  62702. weight: math.unit(5000, "lb"),
  62703. name: "Front (Dressed)",
  62704. image: {
  62705. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62706. extra: 1136/1023,
  62707. bottom: 51/1187
  62708. }
  62709. },
  62710. backDressed: {
  62711. height: math.unit(15 + 7/12, "feet"),
  62712. weight: math.unit(5000, "lb"),
  62713. name: "Back (Dressed)",
  62714. image: {
  62715. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62716. extra: 2359/2143,
  62717. bottom: 103/2462
  62718. }
  62719. },
  62720. front: {
  62721. height: math.unit(15 + 7/12, "feet"),
  62722. weight: math.unit(5000, "lb"),
  62723. name: "Front",
  62724. image: {
  62725. source: "./media/characters/vyse-iron-thunder/front.svg",
  62726. extra: 1136/1023,
  62727. bottom: 51/1187
  62728. }
  62729. },
  62730. hand: {
  62731. height: math.unit(2.36, "feet"),
  62732. name: "Hand",
  62733. image: {
  62734. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62735. }
  62736. },
  62737. foot: {
  62738. height: math.unit(1.72, "feet"),
  62739. name: "Foot",
  62740. image: {
  62741. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62742. }
  62743. },
  62744. mouth: {
  62745. height: math.unit(2, "feet"),
  62746. name: "Mouth",
  62747. image: {
  62748. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62749. }
  62750. },
  62751. eye: {
  62752. height: math.unit(0.58, "feet"),
  62753. name: "Eye",
  62754. image: {
  62755. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62756. }
  62757. },
  62758. },
  62759. [
  62760. {
  62761. name: "Normal",
  62762. height: math.unit(15 + 7/12, "feet"),
  62763. default: true
  62764. },
  62765. {
  62766. name: "Macro",
  62767. height: math.unit(157, "feet")
  62768. },
  62769. {
  62770. name: "Macro+",
  62771. height: math.unit(1570, "feet")
  62772. },
  62773. {
  62774. name: "Macro++",
  62775. height: math.unit(15700, "feet")
  62776. },
  62777. {
  62778. name: "Macro+++",
  62779. height: math.unit(157000, "feet")
  62780. },
  62781. {
  62782. name: "Macro++++",
  62783. height: math.unit(1570000, "feet")
  62784. },
  62785. ]
  62786. ))
  62787. characterMakers.push(() => makeCharacter(
  62788. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62789. {
  62790. side: {
  62791. height: math.unit(6, "feet"),
  62792. weight: math.unit(115, "lb"),
  62793. name: "Side",
  62794. image: {
  62795. source: "./media/characters/moonbeam/side.svg",
  62796. extra: 839/485,
  62797. bottom: 60/899
  62798. }
  62799. },
  62800. },
  62801. [
  62802. {
  62803. name: "Normal",
  62804. height: math.unit(6, "feet"),
  62805. default: true
  62806. },
  62807. ]
  62808. ))
  62809. characterMakers.push(() => makeCharacter(
  62810. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62811. {
  62812. front: {
  62813. height: math.unit(3500, "miles"),
  62814. weight: math.unit(1659, "petatonnes"),
  62815. name: "Front",
  62816. image: {
  62817. source: "./media/characters/baltica/front.svg",
  62818. extra: 429/428,
  62819. bottom: 41/470
  62820. }
  62821. },
  62822. back: {
  62823. height: math.unit(3500, "miles"),
  62824. weight: math.unit(1659, "petatonnes"),
  62825. name: "Back",
  62826. image: {
  62827. source: "./media/characters/baltica/back.svg",
  62828. extra: 452/451,
  62829. bottom: 8/460
  62830. }
  62831. },
  62832. },
  62833. [
  62834. {
  62835. name: "Gigamacro",
  62836. height: math.unit(3500, "miles"),
  62837. default: true
  62838. },
  62839. ]
  62840. ))
  62841. characterMakers.push(() => makeCharacter(
  62842. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62843. {
  62844. front: {
  62845. height: math.unit(6 + 10/12, "feet"),
  62846. weight: math.unit(200, "lb"),
  62847. name: "Front",
  62848. image: {
  62849. source: "./media/characters/shadow-wolf/front.svg",
  62850. extra: 1931/1760,
  62851. bottom: 88/2019
  62852. }
  62853. },
  62854. },
  62855. [
  62856. {
  62857. name: "Normal",
  62858. height: math.unit(6 + 10/12, "feet"),
  62859. default: true
  62860. },
  62861. ]
  62862. ))
  62863. characterMakers.push(() => makeCharacter(
  62864. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62865. {
  62866. front: {
  62867. height: math.unit(5 + 10/12, "feet"),
  62868. name: "Front",
  62869. image: {
  62870. source: "./media/characters/quincy-praying-mantis/front.svg",
  62871. extra: 1055/891,
  62872. bottom: 92/1147
  62873. }
  62874. },
  62875. soles: {
  62876. height: math.unit(0.85, "feet"),
  62877. name: "Soles",
  62878. image: {
  62879. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62880. extra: 429/324,
  62881. bottom: 89/518
  62882. },
  62883. extraAttributes: {
  62884. "shoeSize": {
  62885. name: "Shoe Size",
  62886. power: 1,
  62887. type: "length",
  62888. base: math.unit(23, "ShoeSizeMensUS"),
  62889. defaultUnit: "ShoeSizeMensUS"
  62890. },
  62891. }
  62892. },
  62893. foot: {
  62894. height: math.unit(0.72, "feet"),
  62895. name: "Foot",
  62896. image: {
  62897. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62898. extra: 349/349,
  62899. bottom: 76/425
  62900. }
  62901. },
  62902. },
  62903. [
  62904. {
  62905. name: "Normal",
  62906. height: math.unit(5 + 10/12, "feet"),
  62907. default: true
  62908. },
  62909. ]
  62910. ))
  62911. characterMakers.push(() => makeCharacter(
  62912. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62913. {
  62914. front: {
  62915. height: math.unit(6, "feet"),
  62916. name: "Front",
  62917. image: {
  62918. source: "./media/characters/christopher-redwood/front.svg",
  62919. extra: 1402/1341,
  62920. bottom: 23/1425
  62921. }
  62922. },
  62923. back: {
  62924. height: math.unit(6, "feet"),
  62925. name: "Back",
  62926. image: {
  62927. source: "./media/characters/christopher-redwood/back.svg",
  62928. extra: 1406/1345,
  62929. bottom: 36/1442
  62930. }
  62931. },
  62932. head: {
  62933. height: math.unit(1.685, "feet"),
  62934. name: "Head",
  62935. image: {
  62936. source: "./media/characters/christopher-redwood/head.svg"
  62937. }
  62938. },
  62939. },
  62940. [
  62941. {
  62942. name: "Normal",
  62943. height: math.unit(6, "feet"),
  62944. default: true
  62945. },
  62946. ]
  62947. ))
  62948. characterMakers.push(() => makeCharacter(
  62949. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62950. {
  62951. front: {
  62952. height: math.unit(1.9, "meters"),
  62953. weight: math.unit(140, "lb"),
  62954. name: "Front",
  62955. image: {
  62956. source: "./media/characters/kara-fox/front.svg",
  62957. extra: 766/711,
  62958. bottom: 41/807
  62959. }
  62960. },
  62961. back: {
  62962. height: math.unit(1.9, "meters"),
  62963. weight: math.unit(140, "lb"),
  62964. name: "Back",
  62965. image: {
  62966. source: "./media/characters/kara-fox/back.svg",
  62967. extra: 766/596,
  62968. bottom: 29/795
  62969. }
  62970. },
  62971. maw: {
  62972. height: math.unit(0.78, "feet"),
  62973. name: "Maw",
  62974. image: {
  62975. source: "./media/characters/kara-fox/maw.svg"
  62976. }
  62977. },
  62978. pawpads: {
  62979. height: math.unit(0.96, "feet"),
  62980. name: "Pawpads",
  62981. image: {
  62982. source: "./media/characters/kara-fox/pawpads.svg"
  62983. }
  62984. },
  62985. },
  62986. [
  62987. {
  62988. name: "Normal",
  62989. height: math.unit(1.9, "meters"),
  62990. default: true
  62991. },
  62992. {
  62993. name: "Giantess",
  62994. height: math.unit(80, "meters")
  62995. },
  62996. ]
  62997. ))
  62998. characterMakers.push(() => makeCharacter(
  62999. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63000. {
  63001. front: {
  63002. height: math.unit(12, "feet"),
  63003. name: "Front",
  63004. image: {
  63005. source: "./media/characters/naomi-espeon/front.svg",
  63006. extra: 892/797,
  63007. bottom: 5/897
  63008. }
  63009. },
  63010. back: {
  63011. height: math.unit(12, "feet"),
  63012. name: "Back",
  63013. image: {
  63014. source: "./media/characters/naomi-espeon/back.svg",
  63015. extra: 890/785,
  63016. bottom: 12/902
  63017. }
  63018. },
  63019. },
  63020. [
  63021. {
  63022. name: "Normal",
  63023. height: math.unit(12, "feet"),
  63024. default: true
  63025. },
  63026. ]
  63027. ))
  63028. characterMakers.push(() => makeCharacter(
  63029. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63030. {
  63031. anthro_front: {
  63032. height: math.unit(8, "feet"),
  63033. weight: math.unit(625, "lb"),
  63034. name: "Front",
  63035. image: {
  63036. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63037. extra: 638/574,
  63038. bottom: 73/711
  63039. },
  63040. form: "anthro",
  63041. default: true
  63042. },
  63043. anthro_back: {
  63044. height: math.unit(8, "feet"),
  63045. weight: math.unit(625, "lb"),
  63046. name: "Back",
  63047. image: {
  63048. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63049. extra: 674/614,
  63050. bottom: 7/681
  63051. },
  63052. form: "anthro",
  63053. },
  63054. taur_side: {
  63055. height: math.unit(16, "feet"),
  63056. weight: math.unit(4.5, "tons"),
  63057. name: "Side",
  63058. image: {
  63059. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63060. extra: 704/646,
  63061. bottom: 132/836
  63062. },
  63063. form: "taur",
  63064. default: true
  63065. },
  63066. },
  63067. [
  63068. {
  63069. name: "Normal",
  63070. height: math.unit(8, "feet"),
  63071. default: true,
  63072. form: "anthro"
  63073. },
  63074. {
  63075. name: "Normal",
  63076. height: math.unit(16, "feet"),
  63077. default: true,
  63078. form: "taur"
  63079. },
  63080. ],
  63081. {
  63082. "anthro": {
  63083. name: "Anthro",
  63084. default: true
  63085. },
  63086. "taur": {
  63087. name: "Taur",
  63088. },
  63089. }
  63090. ))
  63091. characterMakers.push(() => makeCharacter(
  63092. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63093. {
  63094. front: {
  63095. height: math.unit(190, "cm"),
  63096. weight: math.unit(110, "kg"),
  63097. name: "Front",
  63098. image: {
  63099. source: "./media/characters/amelie/front.svg",
  63100. extra: 530/442,
  63101. bottom: 35/565
  63102. }
  63103. },
  63104. },
  63105. [
  63106. {
  63107. name: "Normal",
  63108. height: math.unit(190, "cm"),
  63109. default: true
  63110. },
  63111. ]
  63112. ))
  63113. characterMakers.push(() => makeCharacter(
  63114. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63115. {
  63116. front: {
  63117. height: math.unit(21, "feet"),
  63118. weight: math.unit(30000, "lb"),
  63119. name: "Front",
  63120. image: {
  63121. source: "./media/characters/valence/front.svg",
  63122. extra: 1430/1306,
  63123. bottom: 51/1481
  63124. }
  63125. },
  63126. },
  63127. [
  63128. {
  63129. name: "Normal",
  63130. height: math.unit(21, "feet"),
  63131. default: true
  63132. },
  63133. ]
  63134. ))
  63135. characterMakers.push(() => makeCharacter(
  63136. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63137. {
  63138. front: {
  63139. height: math.unit(5 + 9/12, "feet"),
  63140. weight: math.unit(170, "lb"),
  63141. name: "Front",
  63142. image: {
  63143. source: "./media/characters/aurora-adkins/front.svg",
  63144. extra: 1141/1089,
  63145. bottom: 41/1182
  63146. }
  63147. },
  63148. },
  63149. [
  63150. {
  63151. name: "Tiny",
  63152. height: math.unit(7, "mm")
  63153. },
  63154. {
  63155. name: "Small",
  63156. height: math.unit(3.4, "inches")
  63157. },
  63158. {
  63159. name: "Normal",
  63160. height: math.unit(5 + 9/12, "feet"),
  63161. default: true
  63162. },
  63163. {
  63164. name: "Big",
  63165. height: math.unit(31, "feet")
  63166. },
  63167. {
  63168. name: "Giant",
  63169. height: math.unit(300, "feet")
  63170. },
  63171. ]
  63172. ))
  63173. characterMakers.push(() => makeCharacter(
  63174. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63175. {
  63176. front: {
  63177. height: math.unit(5 + 6/12, "feet"),
  63178. weight: math.unit(210, "lb"),
  63179. name: "Front",
  63180. image: {
  63181. source: "./media/characters/cyber/front.svg",
  63182. extra: 1968/1798,
  63183. bottom: 10/1978
  63184. },
  63185. extraAttributes: {
  63186. "shoeSize": {
  63187. name: "Shoe Size",
  63188. power: 1,
  63189. type: "length",
  63190. base: math.unit(30, "ShoeSizeMensUS")
  63191. },
  63192. }
  63193. },
  63194. },
  63195. [
  63196. {
  63197. name: "Normal",
  63198. height: math.unit(5 + 6/12, "feet"),
  63199. default: true
  63200. },
  63201. ]
  63202. ))
  63203. characterMakers.push(() => makeCharacter(
  63204. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63205. {
  63206. front: {
  63207. height: math.unit(6 + 6/12, "feet"),
  63208. weight: math.unit(140, "lb"),
  63209. name: "Front",
  63210. image: {
  63211. source: "./media/characters/sapphire-wairimea/front.svg",
  63212. extra: 475/458,
  63213. bottom: 14/489
  63214. }
  63215. },
  63216. },
  63217. [
  63218. {
  63219. name: "Normal",
  63220. height: math.unit(6 + 6/12, "feet")
  63221. },
  63222. {
  63223. name: "Macro",
  63224. height: math.unit(132, "feet"),
  63225. default: true
  63226. },
  63227. ]
  63228. ))
  63229. characterMakers.push(() => makeCharacter(
  63230. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63231. {
  63232. front: {
  63233. height: math.unit(1.6, "meters"),
  63234. weight: math.unit(100, "lb"),
  63235. name: "Front",
  63236. image: {
  63237. source: "./media/characters/cirkazi/front.svg",
  63238. extra: 489/477,
  63239. bottom: 0/489
  63240. }
  63241. },
  63242. },
  63243. [
  63244. {
  63245. name: "Normal",
  63246. height: math.unit(1.6, "meters")
  63247. },
  63248. {
  63249. name: "Macro",
  63250. height: math.unit(800, "feet"),
  63251. default: true
  63252. },
  63253. ]
  63254. ))
  63255. characterMakers.push(() => makeCharacter(
  63256. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63257. {
  63258. front: {
  63259. height: math.unit(5 + 10/12, "feet"),
  63260. weight: math.unit(145, "lb"),
  63261. name: "Front",
  63262. image: {
  63263. source: "./media/characters/corrin-cavelli/front.svg",
  63264. extra: 483/464,
  63265. bottom: 6/489
  63266. }
  63267. },
  63268. },
  63269. [
  63270. {
  63271. name: "Human",
  63272. height: math.unit(5 + 10/12, "feet")
  63273. },
  63274. {
  63275. name: "Giant",
  63276. height: math.unit(210, "feet"),
  63277. default: true
  63278. },
  63279. ]
  63280. ))
  63281. characterMakers.push(() => makeCharacter(
  63282. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63283. {
  63284. back: {
  63285. height: math.unit(5 + 6/12, "feet"),
  63286. weight: math.unit(115, "lb"),
  63287. name: "Back",
  63288. image: {
  63289. source: "./media/characters/lori-lopez/back.svg",
  63290. extra: 483/474,
  63291. bottom: 6/489
  63292. }
  63293. },
  63294. },
  63295. [
  63296. {
  63297. name: "Human",
  63298. height: math.unit(5 + 6/12, "feet")
  63299. },
  63300. {
  63301. name: "Macro",
  63302. height: math.unit(198, "feet"),
  63303. default: true
  63304. },
  63305. ]
  63306. ))
  63307. characterMakers.push(() => makeCharacter(
  63308. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63309. {
  63310. front: {
  63311. height: math.unit(6, "feet"),
  63312. weight: math.unit(220, "lb"),
  63313. name: "Front",
  63314. image: {
  63315. source: "./media/characters/sylvia-beauregard/front.svg",
  63316. extra: 483/479,
  63317. bottom: 6/489
  63318. }
  63319. },
  63320. },
  63321. [
  63322. {
  63323. name: "Macro",
  63324. height: math.unit(2071, "feet"),
  63325. default: true
  63326. },
  63327. ]
  63328. ))
  63329. characterMakers.push(() => makeCharacter(
  63330. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63331. {
  63332. back: {
  63333. height: math.unit(5 + 6/12, "feet"),
  63334. weight: math.unit(160, "lb"),
  63335. name: "Back",
  63336. image: {
  63337. source: "./media/characters/akiko-takahashi/back.svg",
  63338. extra: 459/454,
  63339. bottom: 27/486
  63340. }
  63341. },
  63342. },
  63343. [
  63344. {
  63345. name: "Human",
  63346. height: math.unit(5 + 6/12, "feet")
  63347. },
  63348. {
  63349. name: "Macro",
  63350. height: math.unit(198, "feet"),
  63351. default: true
  63352. },
  63353. {
  63354. name: "Megamacro",
  63355. height: math.unit(7128, "feet")
  63356. },
  63357. ]
  63358. ))
  63359. characterMakers.push(() => makeCharacter(
  63360. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63361. {
  63362. front: {
  63363. height: math.unit(6, "feet"),
  63364. weight: math.unit(140, "lb"),
  63365. name: "Front",
  63366. image: {
  63367. source: "./media/characters/velvet-garza/front.svg",
  63368. extra: 480/462,
  63369. bottom: 7/487
  63370. }
  63371. },
  63372. },
  63373. [
  63374. {
  63375. name: "Macro",
  63376. height: math.unit(37, "feet"),
  63377. default: true
  63378. },
  63379. ]
  63380. ))
  63381. characterMakers.push(() => makeCharacter(
  63382. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63383. {
  63384. front: {
  63385. height: math.unit(7 + 6/12, "feet"),
  63386. weight: math.unit(400, "lb"),
  63387. name: "Front",
  63388. image: {
  63389. source: "./media/characters/gaia/front.svg",
  63390. extra: 474/463,
  63391. bottom: 13/487
  63392. }
  63393. },
  63394. },
  63395. [
  63396. {
  63397. name: "MiniMacro",
  63398. height: math.unit(7 + 6/12, "feet")
  63399. },
  63400. {
  63401. name: "GigaMacro",
  63402. height: math.unit(14500, "feet"),
  63403. default: true
  63404. },
  63405. ]
  63406. ))
  63407. characterMakers.push(() => makeCharacter(
  63408. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63409. {
  63410. front: {
  63411. height: math.unit(6, "feet"),
  63412. weight: math.unit(150, "lb"),
  63413. name: "Front",
  63414. image: {
  63415. source: "./media/characters/tim/front.svg",
  63416. extra: 1878/1743,
  63417. bottom: 9/1887
  63418. }
  63419. },
  63420. frontDressed: {
  63421. height: math.unit(6, "feet"),
  63422. weight: math.unit(150, "lb"),
  63423. name: "Front (Dressed)",
  63424. image: {
  63425. source: "./media/characters/tim/front-dressed.svg",
  63426. extra: 1765/1485,
  63427. bottom: 48/1813
  63428. }
  63429. },
  63430. backDressed: {
  63431. height: math.unit(6, "feet"),
  63432. weight: math.unit(150, "lb"),
  63433. name: "Back (Dressed)",
  63434. image: {
  63435. source: "./media/characters/tim/back-dressed.svg",
  63436. extra: 1750/1465,
  63437. bottom: 25/1775
  63438. }
  63439. },
  63440. dick: {
  63441. height: math.unit(1.5, "feet"),
  63442. weight: math.unit(6, "lb"),
  63443. name: "Dick",
  63444. image: {
  63445. source: "./media/characters/tim/dick.svg"
  63446. }
  63447. },
  63448. hand: {
  63449. height: math.unit(0.522, "feet"),
  63450. name: "Hand",
  63451. image: {
  63452. source: "./media/characters/tim/hand.svg"
  63453. }
  63454. },
  63455. palm: {
  63456. height: math.unit(0.48, "feet"),
  63457. name: "Palm",
  63458. image: {
  63459. source: "./media/characters/tim/palm.svg"
  63460. }
  63461. },
  63462. paw: {
  63463. height: math.unit(0.9, "feet"),
  63464. name: "Paw",
  63465. image: {
  63466. source: "./media/characters/tim/paw.svg"
  63467. }
  63468. },
  63469. sole: {
  63470. height: math.unit(0.88, "feet"),
  63471. name: "Sole",
  63472. image: {
  63473. source: "./media/characters/tim/sole.svg"
  63474. }
  63475. },
  63476. },
  63477. [
  63478. {
  63479. name: "Macro",
  63480. height: math.unit(1000, "feet")
  63481. },
  63482. {
  63483. name: "Megamacro",
  63484. height: math.unit(10000, "feet"),
  63485. default: true
  63486. },
  63487. {
  63488. name: "Megamacro+",
  63489. height: math.unit(50000, "feet")
  63490. },
  63491. {
  63492. name: "Gigamacro",
  63493. height: math.unit(150000, "km")
  63494. },
  63495. ]
  63496. ))
  63497. characterMakers.push(() => makeCharacter(
  63498. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63499. {
  63500. front: {
  63501. height: math.unit(5 + 8/12, "feet"),
  63502. weight: math.unit(170, "lb"),
  63503. name: "Front",
  63504. image: {
  63505. source: "./media/characters/abel-delreoux/front.svg",
  63506. extra: 1615/1500,
  63507. bottom: 82/1697
  63508. }
  63509. },
  63510. back: {
  63511. height: math.unit(5 + 8/12, "feet"),
  63512. weight: math.unit(170, "lb"),
  63513. name: "Back",
  63514. image: {
  63515. source: "./media/characters/abel-delreoux/back.svg",
  63516. extra: 1644/1534,
  63517. bottom: 24/1668
  63518. }
  63519. },
  63520. casual: {
  63521. height: math.unit(5 + 8/12, "feet"),
  63522. weight: math.unit(170, "lb"),
  63523. name: "Casual",
  63524. image: {
  63525. source: "./media/characters/abel-delreoux/casual.svg",
  63526. extra: 1716/1598,
  63527. bottom: 29/1745
  63528. }
  63529. },
  63530. sleepy: {
  63531. height: math.unit(5 + 8/12, "feet"),
  63532. weight: math.unit(170, "lb"),
  63533. name: "Sleepy",
  63534. image: {
  63535. source: "./media/characters/abel-delreoux/sleepy.svg",
  63536. extra: 1649/1573,
  63537. bottom: 22/1671
  63538. }
  63539. },
  63540. fem: {
  63541. height: math.unit(5 + 8/12, "feet"),
  63542. weight: math.unit(170, "lb"),
  63543. name: "Fem",
  63544. image: {
  63545. source: "./media/characters/abel-delreoux/fem.svg",
  63546. extra: 1680/1564,
  63547. bottom: 17/1697
  63548. }
  63549. },
  63550. hand: {
  63551. height: math.unit(0.78, "feet"),
  63552. name: "Hand",
  63553. image: {
  63554. source: "./media/characters/abel-delreoux/hand.svg"
  63555. }
  63556. },
  63557. paw: {
  63558. height: math.unit(0.78, "feet"),
  63559. name: "Paw",
  63560. image: {
  63561. source: "./media/characters/abel-delreoux/paw.svg"
  63562. }
  63563. },
  63564. },
  63565. [
  63566. {
  63567. name: "Normal",
  63568. height: math.unit(5 + 8/12, "feet"),
  63569. default: true
  63570. },
  63571. ]
  63572. ))
  63573. characterMakers.push(() => makeCharacter(
  63574. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63575. {
  63576. front: {
  63577. height: math.unit(6, "feet"),
  63578. weight: math.unit(159, "lb"),
  63579. name: "Front",
  63580. image: {
  63581. source: "./media/characters/meus/front.svg",
  63582. extra: 938/843,
  63583. bottom: 37/975
  63584. }
  63585. },
  63586. back: {
  63587. height: math.unit(6, "feet"),
  63588. weight: math.unit(159, "lb"),
  63589. name: "Back",
  63590. image: {
  63591. source: "./media/characters/meus/back.svg",
  63592. extra: 967/873,
  63593. bottom: 12/979
  63594. }
  63595. },
  63596. },
  63597. [
  63598. {
  63599. name: "Micro",
  63600. height: math.unit(2, "inches")
  63601. },
  63602. {
  63603. name: "Mini",
  63604. height: math.unit(6, "inches")
  63605. },
  63606. {
  63607. name: "Normal",
  63608. height: math.unit(6, "feet"),
  63609. default: true
  63610. },
  63611. {
  63612. name: "Macro",
  63613. height: math.unit(84, "feet")
  63614. },
  63615. ]
  63616. ))
  63617. characterMakers.push(() => makeCharacter(
  63618. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63619. {
  63620. front: {
  63621. height: math.unit(60, "cm"),
  63622. weight: math.unit(18, "kg"),
  63623. name: "Front",
  63624. image: {
  63625. source: "./media/characters/yamato/front.svg",
  63626. extra: 733/688,
  63627. bottom: 29/762
  63628. }
  63629. },
  63630. },
  63631. [
  63632. {
  63633. name: "Micro",
  63634. height: math.unit(6, "cm")
  63635. },
  63636. {
  63637. name: "Normal",
  63638. height: math.unit(60, "cm"),
  63639. default: true
  63640. },
  63641. ]
  63642. ))
  63643. characterMakers.push(() => makeCharacter(
  63644. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63645. {
  63646. front: {
  63647. height: math.unit(9, "feet"),
  63648. weight: math.unit(518, "lb"),
  63649. name: "Front",
  63650. image: {
  63651. source: "./media/characters/barus/front.svg",
  63652. extra: 1877/1795,
  63653. bottom: 55/1932
  63654. }
  63655. },
  63656. },
  63657. [
  63658. {
  63659. name: "Base Height",
  63660. height: math.unit(9, "feet"),
  63661. default: true
  63662. },
  63663. {
  63664. name: "Large",
  63665. height: math.unit(18, "feet")
  63666. },
  63667. {
  63668. name: "Giant",
  63669. height: math.unit(100, "feet")
  63670. },
  63671. {
  63672. name: "Huge",
  63673. height: math.unit(500, "feet")
  63674. },
  63675. {
  63676. name: "Enormous",
  63677. height: math.unit(300, "meters")
  63678. },
  63679. {
  63680. name: "Deity Among Man",
  63681. height: math.unit(3000, "meters")
  63682. },
  63683. ]
  63684. ))
  63685. characterMakers.push(() => makeCharacter(
  63686. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63687. {
  63688. front: {
  63689. height: math.unit(1.7, "meters"),
  63690. name: "Front",
  63691. image: {
  63692. source: "./media/characters/yari/front.svg",
  63693. extra: 1210/1125,
  63694. bottom: 283/1493
  63695. }
  63696. },
  63697. back: {
  63698. height: math.unit(1.7, "meters"),
  63699. name: "Back",
  63700. image: {
  63701. source: "./media/characters/yari/back.svg",
  63702. extra: 1240/1195,
  63703. bottom: 180/1420
  63704. }
  63705. },
  63706. head: {
  63707. height: math.unit(1.26, "feet"),
  63708. name: "Head",
  63709. image: {
  63710. source: "./media/characters/yari/head.svg"
  63711. }
  63712. },
  63713. },
  63714. [
  63715. {
  63716. name: "Nano",
  63717. height: math.unit(0.5, "mm")
  63718. },
  63719. {
  63720. name: "Micro",
  63721. height: math.unit(3, "inches")
  63722. },
  63723. {
  63724. name: "Short",
  63725. height: math.unit(1.5, "meters")
  63726. },
  63727. {
  63728. name: "Norm",
  63729. height: math.unit(1.7, "meters"),
  63730. default: true
  63731. },
  63732. ]
  63733. ))
  63734. characterMakers.push(() => makeCharacter(
  63735. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63736. {
  63737. front: {
  63738. height: math.unit(5 + 2/12, "feet"),
  63739. weight: math.unit(110, "lb"),
  63740. name: "Front",
  63741. image: {
  63742. source: "./media/characters/salem/front.svg",
  63743. extra: 1895/1800,
  63744. bottom: 23/1918
  63745. }
  63746. },
  63747. back: {
  63748. height: math.unit(5 + 2/12, "feet"),
  63749. weight: math.unit(110, "lb"),
  63750. name: "Back",
  63751. image: {
  63752. source: "./media/characters/salem/back.svg",
  63753. extra: 1875/1802,
  63754. bottom: 20/1895
  63755. }
  63756. },
  63757. head: {
  63758. height: math.unit(1, "feet"),
  63759. name: "Head",
  63760. image: {
  63761. source: "./media/characters/salem/head.svg"
  63762. }
  63763. },
  63764. paw: {
  63765. height: math.unit(0.59, "feet"),
  63766. name: "Paw",
  63767. image: {
  63768. source: "./media/characters/salem/paw.svg"
  63769. }
  63770. },
  63771. beans: {
  63772. height: math.unit(0.66, "feet"),
  63773. name: "Beans",
  63774. image: {
  63775. source: "./media/characters/salem/beans.svg"
  63776. }
  63777. },
  63778. eye: {
  63779. height: math.unit(0.224, "feet"),
  63780. name: "Eye",
  63781. image: {
  63782. source: "./media/characters/salem/eye.svg"
  63783. }
  63784. },
  63785. semiferal: {
  63786. height: math.unit(2.3, "feet"),
  63787. name: "Semiferal",
  63788. image: {
  63789. source: "./media/characters/salem/semiferal.svg",
  63790. extra: 914/839,
  63791. bottom: 32/946
  63792. }
  63793. },
  63794. },
  63795. [
  63796. {
  63797. name: "Micro",
  63798. height: math.unit(4, "inches")
  63799. },
  63800. {
  63801. name: "Normal",
  63802. height: math.unit(5 + 2/12, "feet"),
  63803. default: true
  63804. },
  63805. {
  63806. name: "Macro",
  63807. height: math.unit(108, "feet")
  63808. },
  63809. {
  63810. name: "Macro+",
  63811. height: math.unit(1500, "feet")
  63812. },
  63813. ]
  63814. ))
  63815. characterMakers.push(() => makeCharacter(
  63816. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63817. {
  63818. front: {
  63819. height: math.unit(7 + 6/12, "feet"),
  63820. weight: math.unit(600, "kg"),
  63821. preyCapacity: math.unit(10, "people"),
  63822. name: "Front",
  63823. image: {
  63824. source: "./media/characters/kii/front.svg",
  63825. extra: 3296/3087,
  63826. bottom: 130/3426
  63827. }
  63828. },
  63829. },
  63830. [
  63831. {
  63832. name: "Normal",
  63833. height: math.unit(7 + 6/12, "feet"),
  63834. default: true
  63835. },
  63836. ]
  63837. ))
  63838. characterMakers.push(() => makeCharacter(
  63839. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63840. {
  63841. front: {
  63842. height: math.unit(2, "meters"),
  63843. weight: math.unit(200, "lb"),
  63844. name: "Front",
  63845. image: {
  63846. source: "./media/characters/taffy/front.svg",
  63847. extra: 1666/1618,
  63848. bottom: 157/1823
  63849. }
  63850. },
  63851. back: {
  63852. height: math.unit(2, "meters"),
  63853. weight: math.unit(200, "lb"),
  63854. name: "Back",
  63855. image: {
  63856. source: "./media/characters/taffy/back.svg",
  63857. extra: 1635/1583,
  63858. bottom: 153/1788
  63859. }
  63860. },
  63861. },
  63862. [
  63863. {
  63864. name: "Normal",
  63865. height: math.unit(2, "meters"),
  63866. default: true
  63867. },
  63868. ]
  63869. ))
  63870. characterMakers.push(() => makeCharacter(
  63871. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63872. {
  63873. front: {
  63874. height: math.unit(1.55, "meters"),
  63875. weight: math.unit(60, "kg"),
  63876. name: "Front",
  63877. image: {
  63878. source: "./media/characters/barley/front.svg",
  63879. extra: 1520/1340,
  63880. bottom: 47/1567
  63881. }
  63882. },
  63883. back: {
  63884. height: math.unit(1.55, "meters"),
  63885. weight: math.unit(60, "kg"),
  63886. name: "Back",
  63887. image: {
  63888. source: "./media/characters/barley/back.svg",
  63889. extra: 1543/1341,
  63890. bottom: 12/1555
  63891. }
  63892. },
  63893. feet: {
  63894. height: math.unit(2.18, "feet"),
  63895. name: "Feet",
  63896. image: {
  63897. source: "./media/characters/barley/feet.svg"
  63898. }
  63899. },
  63900. },
  63901. [
  63902. {
  63903. name: "Normal",
  63904. height: math.unit(1.55, "meters"),
  63905. default: true
  63906. },
  63907. ]
  63908. ))
  63909. characterMakers.push(() => makeCharacter(
  63910. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63911. {
  63912. dressed: {
  63913. height: math.unit(6, "feet"),
  63914. name: "Dressed",
  63915. image: {
  63916. source: "./media/characters/lydia-lopez/dressed.svg",
  63917. extra: 1319/1277,
  63918. bottom: 90/1409
  63919. }
  63920. },
  63921. nude: {
  63922. height: math.unit(6, "feet"),
  63923. name: "Nude",
  63924. image: {
  63925. source: "./media/characters/lydia-lopez/nude.svg",
  63926. extra: 1319/1277,
  63927. bottom: 90/1409
  63928. }
  63929. },
  63930. },
  63931. [
  63932. {
  63933. name: "Normal",
  63934. height: math.unit(6, "feet"),
  63935. default: true
  63936. },
  63937. {
  63938. name: "Maximum",
  63939. height: math.unit(2101, "feet")
  63940. },
  63941. ]
  63942. ))
  63943. characterMakers.push(() => makeCharacter(
  63944. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63945. {
  63946. front: {
  63947. height: math.unit(5 + 4/12, "feet"),
  63948. weight: math.unit(250, "lb"),
  63949. volume: math.unit(20, "gallons"),
  63950. name: "Front",
  63951. image: {
  63952. source: "./media/characters/kira-slime/front.svg",
  63953. extra: 442/403,
  63954. bottom: 18/460
  63955. }
  63956. },
  63957. frontNsfw: {
  63958. height: math.unit(5 + 4/12, "feet"),
  63959. weight: math.unit(250, "lb"),
  63960. volume: math.unit(20, "gallons"),
  63961. name: "Front (NSFW)",
  63962. image: {
  63963. source: "./media/characters/kira-slime/front-nsfw.svg",
  63964. extra: 442/403,
  63965. bottom: 18/460
  63966. }
  63967. },
  63968. },
  63969. [
  63970. {
  63971. name: "Droplet",
  63972. height: math.unit(0.0464452, "feet")
  63973. },
  63974. {
  63975. name: "Pint",
  63976. height: math.unit(0.9824, "feet")
  63977. },
  63978. {
  63979. name: "Bucket",
  63980. height: math.unit(2.83, "feet")
  63981. },
  63982. {
  63983. name: "Normal",
  63984. height: math.unit(5 + 4/12, "feet"),
  63985. default: true
  63986. },
  63987. {
  63988. name: "Tub",
  63989. height: math.unit(8.46614, "feet")
  63990. },
  63991. {
  63992. name: "Pool",
  63993. height: math.unit(31.1895, "feet")
  63994. },
  63995. {
  63996. name: "Pond",
  63997. height: math.unit(170.349, "feet")
  63998. },
  63999. {
  64000. name: "Lake",
  64001. height: math.unit(289334, "feet")
  64002. },
  64003. {
  64004. name: "Ocean",
  64005. height: math.unit(1.11940e+7, "feet")
  64006. },
  64007. ]
  64008. ))
  64009. characterMakers.push(() => makeCharacter(
  64010. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64011. {
  64012. front: {
  64013. height: math.unit(5 + 6/12, "feet"),
  64014. weight: math.unit(120, "lb"),
  64015. name: "Front",
  64016. image: {
  64017. source: "./media/characters/holiday/front.svg",
  64018. extra: 456/403,
  64019. bottom: 4/460
  64020. }
  64021. },
  64022. back: {
  64023. height: math.unit(5 + 6/12, "feet"),
  64024. weight: math.unit(120, "lb"),
  64025. name: "Back",
  64026. image: {
  64027. source: "./media/characters/holiday/back.svg",
  64028. extra: 450/404,
  64029. bottom: 12/462
  64030. }
  64031. },
  64032. head: {
  64033. height: math.unit(2.3, "feet"),
  64034. name: "Head",
  64035. image: {
  64036. source: "./media/characters/holiday/head.svg"
  64037. }
  64038. },
  64039. },
  64040. [
  64041. {
  64042. name: "Normal",
  64043. height: math.unit(5 + 6/12, "feet"),
  64044. default: true
  64045. },
  64046. {
  64047. name: "Macro",
  64048. height: math.unit(6574.25, "feet")
  64049. },
  64050. ]
  64051. ))
  64052. characterMakers.push(() => makeCharacter(
  64053. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64054. {
  64055. front: {
  64056. height: math.unit(6 + 2/12, "feet"),
  64057. weight: math.unit(200, "lb"),
  64058. name: "Front",
  64059. image: {
  64060. source: "./media/characters/camina/front.svg",
  64061. extra: 1048/985,
  64062. bottom: 30/1078
  64063. }
  64064. },
  64065. },
  64066. [
  64067. {
  64068. name: "Normal",
  64069. height: math.unit(6 + 2/12, "feet"),
  64070. default: true
  64071. },
  64072. ]
  64073. ))
  64074. characterMakers.push(() => makeCharacter(
  64075. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64076. {
  64077. front: {
  64078. height: math.unit(30, "cm"),
  64079. weight: math.unit(420, "grams"),
  64080. name: "Front",
  64081. image: {
  64082. source: "./media/characters/smuck/front.svg",
  64083. extra: 379/345,
  64084. bottom: 36/415
  64085. }
  64086. },
  64087. },
  64088. [
  64089. {
  64090. name: "Smuck-Sized",
  64091. height: math.unit(30, "cm"),
  64092. default: true
  64093. },
  64094. ]
  64095. ))
  64096. characterMakers.push(() => makeCharacter(
  64097. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64098. {
  64099. frontSfw: {
  64100. height: math.unit(10, "feet"),
  64101. weight: math.unit(1000, "kg"),
  64102. preyCapacity: math.unit(2, "people"),
  64103. name: "Front (SFW)",
  64104. image: {
  64105. source: "./media/characters/bylur/front-sfw.svg",
  64106. extra: 419/343,
  64107. bottom: 3/422
  64108. },
  64109. default: true
  64110. },
  64111. frontSheath: {
  64112. height: math.unit(10, "feet"),
  64113. weight: math.unit(1000, "kg"),
  64114. preyCapacity: math.unit(2, "people"),
  64115. name: "Front (Sheath)",
  64116. image: {
  64117. source: "./media/characters/bylur/front-sheath.svg",
  64118. extra: 419/343,
  64119. bottom: 3/422
  64120. }
  64121. },
  64122. frontErect: {
  64123. height: math.unit(10, "feet"),
  64124. weight: math.unit(1000, "kg"),
  64125. preyCapacity: math.unit(2, "people"),
  64126. name: "Front (Erect)",
  64127. image: {
  64128. source: "./media/characters/bylur/front-erect.svg",
  64129. extra: 419/343,
  64130. bottom: 3/422
  64131. }
  64132. },
  64133. back: {
  64134. height: math.unit(10, "feet"),
  64135. weight: math.unit(1000, "kg"),
  64136. preyCapacity: math.unit(2, "people"),
  64137. name: "Back",
  64138. image: {
  64139. source: "./media/characters/bylur/back.svg",
  64140. extra: 392/315,
  64141. bottom: 3/395
  64142. }
  64143. },
  64144. maw: {
  64145. height: math.unit(3.65, "feet"),
  64146. name: "Maw",
  64147. image: {
  64148. source: "./media/characters/bylur/maw.svg"
  64149. }
  64150. },
  64151. },
  64152. [
  64153. {
  64154. name: "Slightly Human Sized",
  64155. height: math.unit(10, "feet")
  64156. },
  64157. {
  64158. name: "Normal",
  64159. height: math.unit(35, "feet"),
  64160. default: true
  64161. },
  64162. {
  64163. name: "Macro",
  64164. height: math.unit(130, "feet")
  64165. },
  64166. ]
  64167. ))
  64168. characterMakers.push(() => makeCharacter(
  64169. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64170. {
  64171. frontNsfw: {
  64172. height: math.unit(6, "feet"),
  64173. weight: math.unit(250, "lb"),
  64174. preyCapacity: math.unit(0.05, "people"),
  64175. name: "Front (NSFW)",
  64176. image: {
  64177. source: "./media/characters/oarven/front-nsfw.svg",
  64178. extra: 1795/1783,
  64179. bottom: 142/1937
  64180. }
  64181. },
  64182. frontSfw: {
  64183. height: math.unit(6, "feet"),
  64184. weight: math.unit(250, "lb"),
  64185. preyCapacity: math.unit(0.05, "people"),
  64186. name: "Front (SFW)",
  64187. image: {
  64188. source: "./media/characters/oarven/front-sfw.svg",
  64189. extra: 1795/1783,
  64190. bottom: 142/1937
  64191. }
  64192. },
  64193. },
  64194. [
  64195. {
  64196. name: "Megamacro",
  64197. height: math.unit(5, "miles"),
  64198. default: true
  64199. },
  64200. {
  64201. name: "Maximum Height",
  64202. height: math.unit(5, "AUs")
  64203. },
  64204. ]
  64205. ))
  64206. characterMakers.push(() => makeCharacter(
  64207. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64208. {
  64209. side: {
  64210. height: math.unit(1065, "meters"),
  64211. weight: math.unit(1e12, "kg"),
  64212. volume: math.unit(3265000000, "m^3"),
  64213. name: "Side",
  64214. image: {
  64215. source: "./media/characters/solidarity/side.svg"
  64216. }
  64217. },
  64218. front: {
  64219. height: math.unit(1065, "meters"),
  64220. weight: math.unit(3265000000000, "kg"),
  64221. volume: math.unit(3265000000, "m^3"),
  64222. name: "Front",
  64223. image: {
  64224. source: "./media/characters/solidarity/front.svg"
  64225. }
  64226. },
  64227. top: {
  64228. height: math.unit(5823, "meters"),
  64229. weight: math.unit(3265000000000, "kg"),
  64230. volume: math.unit(3265000000, "m^3"),
  64231. name: "Top",
  64232. image: {
  64233. source: "./media/characters/solidarity/top.svg"
  64234. }
  64235. },
  64236. },
  64237. [
  64238. {
  64239. name: "Normal",
  64240. height: math.unit(1065, "meters"),
  64241. default: true
  64242. },
  64243. ]
  64244. ))
  64245. characterMakers.push(() => makeCharacter(
  64246. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64247. {
  64248. side: {
  64249. height: math.unit(18 + 4/12, "feet"),
  64250. weight: math.unit(13000, "kg"),
  64251. name: "Side",
  64252. image: {
  64253. source: "./media/characters/ani'szi/side.svg",
  64254. extra: 468/459,
  64255. bottom: 60/528
  64256. }
  64257. },
  64258. head: {
  64259. height: math.unit(4.8, "feet"),
  64260. name: "Head",
  64261. image: {
  64262. source: "./media/characters/ani'szi/head.svg"
  64263. }
  64264. },
  64265. jaws: {
  64266. height: math.unit(2.25, "feet"),
  64267. name: "Jaws",
  64268. image: {
  64269. source: "./media/characters/ani'szi/jaws.svg"
  64270. }
  64271. },
  64272. bust: {
  64273. height: math.unit(8.9, "feet"),
  64274. name: "Bust",
  64275. image: {
  64276. source: "./media/characters/ani'szi/bust.svg"
  64277. }
  64278. },
  64279. back: {
  64280. height: math.unit(13.53, "feet"),
  64281. name: "Back",
  64282. image: {
  64283. source: "./media/characters/ani'szi/back.svg"
  64284. }
  64285. },
  64286. eye: {
  64287. height: math.unit(0.44, "feet"),
  64288. name: "Eye",
  64289. image: {
  64290. source: "./media/characters/ani'szi/eye.svg"
  64291. }
  64292. },
  64293. },
  64294. [
  64295. {
  64296. name: "Normal",
  64297. height: math.unit(18 + 4/12, "feet"),
  64298. default: true
  64299. },
  64300. ]
  64301. ))
  64302. characterMakers.push(() => makeCharacter(
  64303. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64304. {
  64305. front: {
  64306. height: math.unit(7 + 6/12, "feet"),
  64307. weight: math.unit(300, "lb"),
  64308. name: "Front",
  64309. image: {
  64310. source: "./media/characters/rain/front.svg",
  64311. extra: 2955/2698,
  64312. bottom: 235/3190
  64313. }
  64314. },
  64315. dressed: {
  64316. height: math.unit(7 + 6/12, "feet"),
  64317. weight: math.unit(300, "lb"),
  64318. name: "Dressed",
  64319. image: {
  64320. source: "./media/characters/rain/dressed.svg",
  64321. extra: 2783/2572,
  64322. bottom: 430/3213
  64323. }
  64324. },
  64325. },
  64326. [
  64327. {
  64328. name: "Normal",
  64329. height: math.unit(7 + 6/12, "feet"),
  64330. default: true
  64331. },
  64332. {
  64333. name: "Macro",
  64334. height: math.unit(200, "feet")
  64335. },
  64336. {
  64337. name: "Macro+",
  64338. height: math.unit(500, "feet")
  64339. },
  64340. {
  64341. name: "Megamacro",
  64342. height: math.unit(5, "miles")
  64343. },
  64344. ]
  64345. ))
  64346. characterMakers.push(() => makeCharacter(
  64347. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64348. {
  64349. taur_side: {
  64350. height: math.unit(3, "meters"),
  64351. name: "Side",
  64352. image: {
  64353. source: "./media/characters/anise/taur-side.svg",
  64354. extra: 1833/926,
  64355. bottom: 134/1967
  64356. },
  64357. form: "taur",
  64358. default: true
  64359. },
  64360. feral_side: {
  64361. height: math.unit(3, "meters"),
  64362. name: "Side",
  64363. image: {
  64364. source: "./media/characters/anise/feral-side.svg",
  64365. extra: 681/349,
  64366. bottom: 26/707
  64367. },
  64368. form: "feral"
  64369. },
  64370. },
  64371. [
  64372. {
  64373. name: "Normal",
  64374. height: math.unit(3, "meters"),
  64375. default: true,
  64376. allForms: true
  64377. },
  64378. ],
  64379. {
  64380. "taur": {
  64381. name: "Taur",
  64382. default: true
  64383. },
  64384. "feral": {
  64385. name: "Feral",
  64386. },
  64387. }
  64388. ))
  64389. characterMakers.push(() => makeCharacter(
  64390. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64391. {
  64392. front: {
  64393. height: math.unit(1.9, "meters"),
  64394. weight: math.unit(75, "kg"),
  64395. name: "Front",
  64396. image: {
  64397. source: "./media/characters/sarina/front.svg",
  64398. extra: 1275/1200,
  64399. bottom: 49/1324
  64400. }
  64401. },
  64402. back: {
  64403. height: math.unit(1.9, "meters"),
  64404. weight: math.unit(75, "kg"),
  64405. name: "Back",
  64406. image: {
  64407. source: "./media/characters/sarina/back.svg",
  64408. extra: 1279/1209,
  64409. bottom: 14/1293
  64410. }
  64411. },
  64412. dressed: {
  64413. height: math.unit(1.9, "meters"),
  64414. weight: math.unit(75, "kg"),
  64415. name: "Dressed",
  64416. image: {
  64417. source: "./media/characters/sarina/dressed.svg",
  64418. extra: 1256/1187,
  64419. bottom: 56/1312
  64420. }
  64421. },
  64422. paw: {
  64423. height: math.unit(0.57, "feet"),
  64424. name: "Paw",
  64425. image: {
  64426. source: "./media/characters/sarina/paw.svg"
  64427. }
  64428. },
  64429. toering: {
  64430. height: math.unit(0.27, "feet"),
  64431. name: "Toering",
  64432. image: {
  64433. source: "./media/characters/sarina/toering.svg"
  64434. }
  64435. },
  64436. },
  64437. [
  64438. {
  64439. name: "Incognito",
  64440. height: math.unit(1.9, "meters")
  64441. },
  64442. {
  64443. name: "Home Size",
  64444. height: math.unit(160, "meters"),
  64445. default: true
  64446. },
  64447. {
  64448. name: "Mega",
  64449. height: math.unit(50, "km")
  64450. },
  64451. {
  64452. name: "Small Giga",
  64453. height: math.unit(250, "km")
  64454. },
  64455. {
  64456. name: "Giga (Preferred Size)",
  64457. height: math.unit(3000, "km")
  64458. },
  64459. {
  64460. name: "Terra",
  64461. height: math.unit(40000, "km")
  64462. },
  64463. {
  64464. name: "Terra+",
  64465. height: math.unit(400000, "km")
  64466. },
  64467. {
  64468. name: "Solar",
  64469. height: math.unit(35e6, "km")
  64470. },
  64471. {
  64472. name: "Galactic",
  64473. height: math.unit(648106, "parsecs")
  64474. },
  64475. {
  64476. name: "Universal",
  64477. height: math.unit(7, "universes")
  64478. },
  64479. {
  64480. name: "Universal+",
  64481. height: math.unit(30, "universes")
  64482. },
  64483. ]
  64484. ))
  64485. characterMakers.push(() => makeCharacter(
  64486. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64487. {
  64488. front: {
  64489. height: math.unit(5 + 6/12, "feet"),
  64490. name: "Front",
  64491. image: {
  64492. source: "./media/characters/sifray/front.svg",
  64493. extra: 722/691,
  64494. bottom: 64/786
  64495. }
  64496. },
  64497. },
  64498. [
  64499. {
  64500. name: "Normal",
  64501. height: math.unit(5 + 6/12, "feet"),
  64502. default: true
  64503. },
  64504. ]
  64505. ))
  64506. characterMakers.push(() => makeCharacter(
  64507. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64508. {
  64509. side: {
  64510. height: math.unit(2.64, "feet"),
  64511. weight: math.unit(100, "lb"),
  64512. preyCapacity: math.unit(3, "people"),
  64513. name: "Side",
  64514. image: {
  64515. source: "./media/characters/spots/side.svg",
  64516. extra: 1859/977,
  64517. bottom: 19/1878
  64518. },
  64519. extraAttributes: {
  64520. "preyPerMinute": {
  64521. name: "Prey Per Minute",
  64522. power: 3,
  64523. type: "volume",
  64524. base: math.unit(6, "people"),
  64525. defaultUnit: "people"
  64526. },
  64527. "preyPerDay": {
  64528. name: "Prey Per Day",
  64529. power: 3,
  64530. type: "volume",
  64531. base: math.unit(6 * 60 * 24, "people"),
  64532. defaultUnit: "people"
  64533. },
  64534. }
  64535. },
  64536. },
  64537. [
  64538. {
  64539. name: "Normal",
  64540. height: math.unit(2.64, "feet"),
  64541. default: true
  64542. },
  64543. ]
  64544. ))
  64545. characterMakers.push(() => makeCharacter(
  64546. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64547. {
  64548. front: {
  64549. height: math.unit(29 + 11/12, "feet"),
  64550. weight: math.unit(40, "tons"),
  64551. name: "Front",
  64552. image: {
  64553. source: "./media/characters/mona/front.svg",
  64554. extra: 1257/1116,
  64555. bottom: 34/1291
  64556. }
  64557. },
  64558. },
  64559. [
  64560. {
  64561. name: "Normal",
  64562. height: math.unit(29 + 11/12, "feet"),
  64563. default: true
  64564. },
  64565. ]
  64566. ))
  64567. characterMakers.push(() => makeCharacter(
  64568. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64569. {
  64570. front: {
  64571. height: math.unit(15, "feet"),
  64572. weight: math.unit(3000, "kg"),
  64573. preyCapacity: math.unit(5, "people"),
  64574. name: "Front",
  64575. image: {
  64576. source: "./media/characters/frostfire/front.svg",
  64577. extra: 675/558,
  64578. bottom: 73/748
  64579. }
  64580. },
  64581. side: {
  64582. height: math.unit(15, "feet"),
  64583. weight: math.unit(3000, "kg"),
  64584. preyCapacity: math.unit(5, "people"),
  64585. name: "Side",
  64586. image: {
  64587. source: "./media/characters/frostfire/side.svg",
  64588. extra: 687/585,
  64589. bottom: 50/737
  64590. }
  64591. },
  64592. back: {
  64593. height: math.unit(15, "feet"),
  64594. weight: math.unit(3000, "kg"),
  64595. preyCapacity: math.unit(5, "people"),
  64596. name: "Back",
  64597. image: {
  64598. source: "./media/characters/frostfire/back.svg",
  64599. extra: 707/607,
  64600. bottom: 16/723
  64601. }
  64602. },
  64603. head: {
  64604. height: math.unit(9.35, "feet"),
  64605. name: "Head",
  64606. image: {
  64607. source: "./media/characters/frostfire/head.svg"
  64608. }
  64609. },
  64610. maw: {
  64611. height: math.unit(3.32, "feet"),
  64612. name: "Maw",
  64613. image: {
  64614. source: "./media/characters/frostfire/maw.svg"
  64615. }
  64616. },
  64617. hand: {
  64618. height: math.unit(3.7, "feet"),
  64619. name: "Hand",
  64620. image: {
  64621. source: "./media/characters/frostfire/hand.svg"
  64622. }
  64623. },
  64624. paw: {
  64625. height: math.unit(5.8, "feet"),
  64626. name: "Paw",
  64627. image: {
  64628. source: "./media/characters/frostfire/paw.svg"
  64629. }
  64630. },
  64631. },
  64632. [
  64633. {
  64634. name: "Normal",
  64635. height: math.unit(15, "feet"),
  64636. default: true
  64637. },
  64638. ]
  64639. ))
  64640. characterMakers.push(() => makeCharacter(
  64641. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64642. {
  64643. front: {
  64644. height: math.unit(5 + 2/12, "feet"),
  64645. weight: math.unit(122, "lb"),
  64646. name: "Front",
  64647. image: {
  64648. source: "./media/characters/valeroo/front.svg",
  64649. extra: 1789/1534,
  64650. bottom: 66/1855
  64651. }
  64652. },
  64653. back: {
  64654. height: math.unit(5 + 2/12, "feet"),
  64655. weight: math.unit(122, "lb"),
  64656. name: "Back",
  64657. image: {
  64658. source: "./media/characters/valeroo/back.svg",
  64659. extra: 1848/1588,
  64660. bottom: 68/1916
  64661. }
  64662. },
  64663. head: {
  64664. height: math.unit(1.87, "feet"),
  64665. name: "Head",
  64666. image: {
  64667. source: "./media/characters/valeroo/head.svg"
  64668. }
  64669. },
  64670. hand: {
  64671. height: math.unit(0.82, "feet"),
  64672. name: "Hand",
  64673. image: {
  64674. source: "./media/characters/valeroo/hand.svg"
  64675. }
  64676. },
  64677. foot: {
  64678. height: math.unit(2.42, "feet"),
  64679. name: "Foot",
  64680. image: {
  64681. source: "./media/characters/valeroo/foot.svg"
  64682. }
  64683. },
  64684. },
  64685. [
  64686. {
  64687. name: "Normal",
  64688. height: math.unit(5 + 2/12, "feet"),
  64689. default: true
  64690. },
  64691. ]
  64692. ))
  64693. characterMakers.push(() => makeCharacter(
  64694. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64695. {
  64696. front: {
  64697. height: math.unit(11 + 3/12, "feet"),
  64698. name: "Front",
  64699. image: {
  64700. source: "./media/characters/corrin/front.svg",
  64701. extra: 665/597,
  64702. bottom: 74/739
  64703. }
  64704. },
  64705. },
  64706. [
  64707. {
  64708. name: "Standard",
  64709. height: math.unit(11 + 3/12, "feet"),
  64710. default: true
  64711. },
  64712. {
  64713. name: "The Boss",
  64714. height: math.unit(110, "feet")
  64715. },
  64716. {
  64717. name: "Shipbreaker",
  64718. height: math.unit(38, "km")
  64719. },
  64720. ]
  64721. ))
  64722. characterMakers.push(() => makeCharacter(
  64723. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64724. {
  64725. front: {
  64726. height: math.unit(10, "feet"),
  64727. weight: math.unit(1750, "lb"),
  64728. name: "Front",
  64729. image: {
  64730. source: "./media/characters/kiba-ulrich/front.svg",
  64731. extra: 1037/973,
  64732. bottom: 36/1073
  64733. }
  64734. },
  64735. },
  64736. [
  64737. {
  64738. name: "Normal",
  64739. height: math.unit(10, "feet"),
  64740. default: true
  64741. },
  64742. {
  64743. name: "Minimacro",
  64744. height: math.unit(20, "feet")
  64745. },
  64746. {
  64747. name: "Macro",
  64748. height: math.unit(200, "feet")
  64749. },
  64750. {
  64751. name: "Megamacro",
  64752. height: math.unit(22500, "feet")
  64753. },
  64754. {
  64755. name: "Gigamacro",
  64756. height: math.unit(2700, "miles")
  64757. },
  64758. {
  64759. name: "Teramacro",
  64760. height: math.unit(10000, "miles")
  64761. },
  64762. ]
  64763. ))
  64764. characterMakers.push(() => makeCharacter(
  64765. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64766. {
  64767. gryphon_front: {
  64768. height: math.unit(220, "cm"),
  64769. weight: math.unit(160, "kg"),
  64770. name: "Front",
  64771. image: {
  64772. source: "./media/characters/ceanoth/gryphon-front.svg",
  64773. extra: 616/552,
  64774. bottom: 33/649
  64775. },
  64776. form: "gryphon",
  64777. default: true
  64778. },
  64779. },
  64780. [
  64781. {
  64782. name: "Normal",
  64783. height: math.unit(220, "cm"),
  64784. form: "gryphon",
  64785. default: true
  64786. },
  64787. ],
  64788. {
  64789. "gryphon": {
  64790. name: "Grpyhon",
  64791. default: true
  64792. },
  64793. }
  64794. ))
  64795. characterMakers.push(() => makeCharacter(
  64796. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64797. {
  64798. dressed: {
  64799. height: math.unit(2.2 * 0.79, "meters"),
  64800. weight: math.unit(0.5, "tonnes"),
  64801. name: "Dressed",
  64802. image: {
  64803. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64804. extra: 665/315,
  64805. bottom: 106/771
  64806. },
  64807. extraAttributes: {
  64808. "bodyLength": {
  64809. name: "Body Length",
  64810. power: 1,
  64811. type: "length",
  64812. base: math.unit(2.5, "meters")
  64813. },
  64814. "tailLength": {
  64815. name: "Tail Length",
  64816. power: 1,
  64817. type: "length",
  64818. base: math.unit(4.5, "meters")
  64819. },
  64820. "wingspan": {
  64821. name: "Wingspan",
  64822. power: 1,
  64823. type: "length",
  64824. base: math.unit(6, "meters")
  64825. },
  64826. "taurStomachCapacity": {
  64827. name: "Taur Stomach Capacity",
  64828. power: 3,
  64829. type: "volume",
  64830. base: math.unit(4, "people"),
  64831. defaultUnit: "people"
  64832. },
  64833. "anthroStomachCapacity": {
  64834. name: "Anthro Stomach Capacity",
  64835. power: 3,
  64836. type: "volume",
  64837. base: math.unit(1, "people"),
  64838. defaultUnit: "people"
  64839. },
  64840. }
  64841. },
  64842. nude: {
  64843. height: math.unit(2.2 * 0.79, "meters"),
  64844. weight: math.unit(0.5, "tonnes"),
  64845. name: "Nude",
  64846. image: {
  64847. source: "./media/characters/vanadiya-athelya/nude.svg",
  64848. extra: 665/315,
  64849. bottom: 106/771
  64850. },
  64851. extraAttributes: {
  64852. "bodyLength": {
  64853. name: "Body Length",
  64854. power: 1,
  64855. type: "length",
  64856. base: math.unit(2.5, "meters")
  64857. },
  64858. "tailLength": {
  64859. name: "Tail Length",
  64860. power: 1,
  64861. type: "length",
  64862. base: math.unit(4.5, "meters")
  64863. },
  64864. "wingspan": {
  64865. name: "Wingspan",
  64866. power: 1,
  64867. type: "length",
  64868. base: math.unit(6, "meters")
  64869. },
  64870. "taurStomachCapacity": {
  64871. name: "Taur Stomach Capacity",
  64872. power: 3,
  64873. type: "volume",
  64874. base: math.unit(4, "people"),
  64875. defaultUnit: "people"
  64876. },
  64877. "anthroStomachCapacity": {
  64878. name: "Anthro Stomach Capacity",
  64879. power: 3,
  64880. type: "volume",
  64881. base: math.unit(1, "people"),
  64882. defaultUnit: "people"
  64883. },
  64884. }
  64885. },
  64886. },
  64887. [
  64888. {
  64889. name: "Handheld",
  64890. height: math.unit(0.79 * 0.06, "meters")
  64891. },
  64892. {
  64893. name: "Mini",
  64894. height: math.unit(0.79 * 0.7, "meters")
  64895. },
  64896. {
  64897. name: "Short",
  64898. height: math.unit(0.79 * 1.4, "meters")
  64899. },
  64900. {
  64901. name: "Imposing",
  64902. height: math.unit(0.79 * 2.2, "meters"),
  64903. default: true
  64904. },
  64905. {
  64906. name: "Big",
  64907. height: math.unit(0.79 * 3.8, "meters")
  64908. },
  64909. {
  64910. name: "Giant",
  64911. height: math.unit(0.79 * 6.7, "meters")
  64912. },
  64913. {
  64914. name: "Airliner",
  64915. height: math.unit(0.79 * 64, "meters")
  64916. },
  64917. {
  64918. name: "Skyscraper",
  64919. height: math.unit(0.79 * 220, "meters")
  64920. },
  64921. {
  64922. name: "Mountain",
  64923. height: math.unit(0.79 * 3.6, "km")
  64924. },
  64925. {
  64926. name: "Spacescraper",
  64927. height: math.unit(0.79 * 70, "km")
  64928. },
  64929. {
  64930. name: "Continental",
  64931. height: math.unit(0.79 * 1290, "km")
  64932. },
  64933. {
  64934. name: "Moon",
  64935. height: math.unit(0.79 * 32200, "km")
  64936. },
  64937. {
  64938. name: "Planetary",
  64939. height: math.unit(0.79 * 145000, "km")
  64940. },
  64941. {
  64942. name: "Stellar",
  64943. height: math.unit(0.79 * 19e6, "km")
  64944. },
  64945. {
  64946. name: "Solar",
  64947. height: math.unit(0.79 * 40, "AU")
  64948. },
  64949. {
  64950. name: "Intersteller",
  64951. height: math.unit(0.79 * 3, "lightyears")
  64952. },
  64953. {
  64954. name: "Star Cluster",
  64955. height: math.unit(0.79 * 80, "lightyears")
  64956. },
  64957. {
  64958. name: "Ecumenical",
  64959. height: math.unit(0.79 * 2e3, "lightyears")
  64960. },
  64961. {
  64962. name: "Galactic",
  64963. height: math.unit(0.79 * 175000, "lightyears")
  64964. },
  64965. {
  64966. name: "Galaxy Cluster",
  64967. height: math.unit(0.79 * 25e6, "lightyears")
  64968. },
  64969. ]
  64970. ))
  64971. characterMakers.push(() => makeCharacter(
  64972. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  64973. {
  64974. front: {
  64975. height: math.unit(6 + 2/12, "feet"),
  64976. weight: math.unit(160, "lb"),
  64977. name: "Front",
  64978. image: {
  64979. source: "./media/characters/yana-amelin/front.svg",
  64980. extra: 1413/1295,
  64981. bottom: 42/1455
  64982. }
  64983. },
  64984. back: {
  64985. height: math.unit(6 + 2/12, "feet"),
  64986. weight: math.unit(160, "lb"),
  64987. name: "Back",
  64988. image: {
  64989. source: "./media/characters/yana-amelin/back.svg",
  64990. extra: 1424/1310,
  64991. bottom: 24/1448
  64992. }
  64993. },
  64994. paws: {
  64995. height: math.unit(1.48, "feet"),
  64996. name: "Paws",
  64997. image: {
  64998. source: "./media/characters/yana-amelin/paws.svg",
  64999. extra: 304/304,
  65000. bottom: 49/353
  65001. }
  65002. },
  65003. },
  65004. [
  65005. {
  65006. name: "Micro",
  65007. height: math.unit(4, "inches")
  65008. },
  65009. {
  65010. name: "Normal",
  65011. height: math.unit(6 + 2/12, "feet"),
  65012. default: true
  65013. },
  65014. {
  65015. name: "Minimacro",
  65016. height: math.unit(20, "feet")
  65017. },
  65018. {
  65019. name: "Macro",
  65020. height: math.unit(70, "feet")
  65021. },
  65022. ]
  65023. ))
  65024. characterMakers.push(() => makeCharacter(
  65025. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65026. {
  65027. frontNsfw: {
  65028. height: math.unit(2.48, "meters"),
  65029. weight: math.unit(112, "kg"),
  65030. name: "Front (NSFW)",
  65031. image: {
  65032. source: "./media/characters/titania/front-nsfw.svg",
  65033. extra: 1302/1232,
  65034. bottom: 90/1392
  65035. }
  65036. },
  65037. backNsfw: {
  65038. height: math.unit(2.48, "meters"),
  65039. weight: math.unit(112, "kg"),
  65040. name: "Back (NSFW)",
  65041. image: {
  65042. source: "./media/characters/titania/back-nsfw.svg",
  65043. extra: 1355/1288,
  65044. bottom: 18/1373
  65045. }
  65046. },
  65047. frontSfw: {
  65048. height: math.unit(2.48, "meters"),
  65049. weight: math.unit(112, "kg"),
  65050. name: "Front (SFW)",
  65051. image: {
  65052. source: "./media/characters/titania/front-sfw.svg",
  65053. extra: 1302/1232,
  65054. bottom: 90/1392
  65055. }
  65056. },
  65057. backSfw: {
  65058. height: math.unit(2.48, "meters"),
  65059. weight: math.unit(112, "kg"),
  65060. name: "Back (SFW)",
  65061. image: {
  65062. source: "./media/characters/titania/back-sfw.svg",
  65063. extra: 1355/1288,
  65064. bottom: 18/1373
  65065. }
  65066. },
  65067. head: {
  65068. height: math.unit(2.06, "feet"),
  65069. name: "Head",
  65070. image: {
  65071. source: "./media/characters/titania/head.svg"
  65072. }
  65073. },
  65074. maw: {
  65075. height: math.unit(0.8, "feet"),
  65076. name: "Maw",
  65077. image: {
  65078. source: "./media/characters/titania/maw.svg"
  65079. }
  65080. },
  65081. foot: {
  65082. height: math.unit(1.65, "feet"),
  65083. name: "Foot",
  65084. image: {
  65085. source: "./media/characters/titania/foot.svg"
  65086. }
  65087. },
  65088. nethers: {
  65089. height: math.unit(1.7, "feet"),
  65090. name: "Nethers",
  65091. image: {
  65092. source: "./media/characters/titania/nethers.svg"
  65093. }
  65094. },
  65095. },
  65096. [
  65097. {
  65098. name: "Normal",
  65099. height: math.unit(2.48, "meters"),
  65100. default: true
  65101. },
  65102. {
  65103. name: "Mini Macro",
  65104. height: math.unit(248, "meters")
  65105. },
  65106. {
  65107. name: "Macro",
  65108. height: math.unit(620, "meters")
  65109. },
  65110. {
  65111. name: "Mega Macro",
  65112. height: math.unit(1860, "meters")
  65113. },
  65114. ]
  65115. ))
  65116. characterMakers.push(() => makeCharacter(
  65117. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65118. {
  65119. front: {
  65120. height: math.unit(5 + 9/12, "feet"),
  65121. weight: math.unit(1500, "lb"),
  65122. name: "Front",
  65123. image: {
  65124. source: "./media/characters/tony-gray/front.svg",
  65125. extra: 700/575,
  65126. bottom: 71/771
  65127. }
  65128. },
  65129. },
  65130. [
  65131. {
  65132. name: "Normal",
  65133. height: math.unit(5 + 9/12, "feet"),
  65134. default: true
  65135. },
  65136. ]
  65137. ))
  65138. characterMakers.push(() => makeCharacter(
  65139. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65140. {
  65141. side: {
  65142. height: math.unit(8 + 2/12, "feet"),
  65143. name: "Side",
  65144. image: {
  65145. source: "./media/characters/kelby/side.svg",
  65146. extra: 804/578,
  65147. bottom: 70/874
  65148. },
  65149. form: "regular",
  65150. default: true
  65151. },
  65152. lounging: {
  65153. height: math.unit(12.41, "feet"),
  65154. name: "Lounging",
  65155. image: {
  65156. source: "./media/characters/kelby/lounging.svg"
  65157. },
  65158. form: "regular"
  65159. },
  65160. maw: {
  65161. height: math.unit(5, "feet"),
  65162. name: "Maw",
  65163. image: {
  65164. source: "./media/characters/kelby/maw.svg"
  65165. },
  65166. form: "regular"
  65167. },
  65168. dick: {
  65169. height: math.unit(2.4, "feet"),
  65170. name: "Dick",
  65171. image: {
  65172. source: "./media/characters/kelby/dick.svg"
  65173. },
  65174. form: "regular"
  65175. },
  65176. slit: {
  65177. height: math.unit(1.2, "feet"),
  65178. name: "Slit",
  65179. image: {
  65180. source: "./media/characters/kelby/slit.svg"
  65181. },
  65182. form: "regular"
  65183. },
  65184. chibi: {
  65185. height: math.unit(5, "feet"),
  65186. name: "Chibi",
  65187. image: {
  65188. source: "./media/characters/kelby/chibi.svg",
  65189. extra: 245/200,
  65190. bottom: 43/288
  65191. },
  65192. form: "chibi",
  65193. default: true
  65194. },
  65195. },
  65196. [
  65197. {
  65198. name: "Normal",
  65199. height: math.unit(8 + 2/12, "feet"),
  65200. default: true,
  65201. form: "regular"
  65202. },
  65203. {
  65204. name: "Normal",
  65205. height: math.unit(5, "feet"),
  65206. default: true,
  65207. form: "chibi"
  65208. },
  65209. ],
  65210. {
  65211. "regular": {
  65212. name: "Regular",
  65213. default: true
  65214. },
  65215. "chibi": {
  65216. name: "Chibi",
  65217. },
  65218. }
  65219. ))
  65220. //characters
  65221. function makeCharacters() {
  65222. const results = [];
  65223. characterMakers.forEach(character => {
  65224. results.push(character());
  65225. });
  65226. return results;
  65227. }